Textarea

Multi-line text input. Same rounded surface as Input, with resize on the vertical axis only—no surprise horizontal scroll.

Default
<Textarea rows={4} placeholder="Write something…" />
With Label
<Label htmlFor="notes">Notes</Label>
<Textarea id="notes" rows={5} />
Disabled
<Textarea disabled defaultValue="…" />