Components
Textarea
A multi-line text input. Defaults to vertical resize only.
States
Usage
import { Textarea, Label } from '@onersoft/design-system'
<Label htmlFor="bio">Bio</Label>
<Textarea id="bio" rows={4} placeholder="…" />Props
| Prop | Type | Default |
|---|---|---|
invalid | boolean | false |
resize | 'none' | 'vertical' | 'horizontal' | 'both' | 'vertical' |
Plus all native <textarea> attributes (rows, placeholder, disabled, value, onChange, …).