Skip to content
X

Textarea

---
import { Label } from "@/components/ui/label"
import { Textarea } from "@/components/ui/textarea"
---
<div class="grid w-full max-w-sm gap-2">
<Label for="message">Message</Label>
<Textarea id="message" placeholder="Type your message here..." />
<Textarea placeholder="Disabled textarea" disabled />
</div>

To install the textarea component, run the following command:

Terminal window
npx shadcn@latest add @fulldev/textarea
import { Textarea } from "@/components/ui/textarea"
<Textarea placeholder="Type your message here..." />