# IBuyOnSpaceworxButtonProps

## Definition

```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';
```
