25
A multi-line text input field for longer form content.
npx neobrutal add textareaimport { Textarea } from "@/components/ui/textarea"
import { Label } from "@/components/ui/label"<div className="grid w-full gap-1.5">
<Label htmlFor="message">Your message</Label>
<Textarea placeholder="Type your message here." id="message" />
</div>| Prop | Type | Default | Description |
|---|---|---|---|
| placeholder | string | - | Placeholder text displayed when the textarea is empty. |
| disabled | boolean | - | When true, prevents the user from interacting with the textarea. |
| rows | number | - | The number of visible text lines. |