> For the complete documentation index, see [llms.txt](https://help.iviva.com/uxp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.iviva.com/uxp/types/ibuyonspaceworxbuttonprops.md).

# IBuyOnSpaceworxButtonProps

```tsx
interface IBuyOnSpaceworxButtonProps {
    /**
     * link to the marketplace product page 
     * this will be deprecated. use product ids instead
     */
    link?: string
    /**
     * product ids from spaceworx
     */
    productIds?: string[]
    /**
     * class name for additional styling 
     */
    className?: string
    /**
     * additional inline styles 
     */
    styles?: React.CSSProperties
}
```

## Usage

```tsx
import {IBuyOnSpaceworxButtonProps} from 'uxp/components';
```
