Component

Textarea

Multi-line text input. Matches Input styling — same height unit, border, focus ring.

Default

tsx
<Textarea placeholder="Write something..." />

With Label

tsx
<Label htmlFor="desc">Description</Label>
<Textarea id="desc" placeholder="Add a description..." rows={4} />

Disabled

Props

PropTypeDefaultDescription
placeholderstringPlaceholder text.
rowsnumber3Initial visible row count.
disabledbooleanfalseDisables the textarea.
classNamestringAdditional Tailwind classes.