UNPKG

@sertec/button

Version:
34 lines (23 loc) 532 B
# @sertec/button Button component for the Sfera design system. ## Installation ```bash npm install @sertec/button ``` ## Usage ```tsx import { Button } from '@sertec/button' function MyComponent() { return ( <Button> Content here </Button> ) } ``` ## Props | Prop | Type | Default | Description | |------|------|---------|-------------| | `children` | `ReactNode` | - | Content to display | | `className` | `string` | `''` | Additional CSS classes | | `disabled` | `boolean` | `false` | Disabled state |