Utility
AI
Terminal
Installation
pnpm dlx shadcn@latest add https://termcn.dev/r/text-area.json
Usage
import { TextArea } from "@/components/ui/text-area";<TextArea
label="Description"
placeholder="Enter a description..."
rows={4}
onSubmit={(value) => console.log("Submitted:", value)}
/>API Reference
TextArea
| Prop | Type | Default |
|---|---|---|
value | string | undefined |
onChange | (value: string) => void | undefined |
onSubmit | (value: string) => void | undefined |
placeholder | string | "" |
rows | number | 4 |
label | string | undefined |
id | string | undefined |
borderStyle | "single" | "double" | "round" | "bold" | "singleDouble" | "doubleSingle" | "classic" | "round" |
paddingX | number | 1 |
cursor | string | "█" |