Textarea
A multi-line text input control.
Usage
import { Textarea } from "@/components/ui/textarea"<Textarea placeholder="Type your message here." />Examples
Disabled
<Textarea placeholder="Disabled textarea" disabled />With label
<div className="grid w-64 gap-1.5">
<Label htmlFor="message">Your message</Label>
<Textarea id="message" placeholder="Type your message here." />
</div>With button
<div className="flex w-64 flex-col gap-2">
<Textarea placeholder="Type your message here." />
<Button>Send message</Button>
</div>Last updated on