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