@sertec/button
Version:
Sfera Button Component
34 lines (23 loc) • 532 B
Markdown
# @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 |