Textarea
Multi-line text input with consistent styling
Preview
Usage
import { Textarea } from "@/components/ui/textarea"
import { Label } from "@/components/ui/label"
<div className="space-y-2">
<Label htmlFor="message">Message</Label>
<Textarea
id="message"
placeholder="Type your message here..."
rows={4}
/>
</div>Extends all native <textarea> HTML attributes. Shares the same border and focus styling as Input.
Install
npx shadcn add @bonsai/textarea