Preview
Installation
terminal
Other package managers
bunx --bun shadcn@latest add https://trents.tech/r/textarea.jsonUsage
example.tsx
import { Textarea } from "@/components/ui/textarea"
import { Label } from "@/components/ui/label"
<div className="grid gap-2 max-w-sm">
<Label htmlFor="message">Message</Label>
<Textarea id="message" placeholder="Type your message here..." />
</div>