Utility
Terminal
█
text-area-demo █
Loading preview... █
█
█
█
█
█
█
█
█
█
█
█
█
█
█
█Installation
$ pnpm dlx shadcn@latest add @termcn/opentui/text-area
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 | - |
onChange | (value: string) => void | - |
onSubmit | (value: string) => void | - |
placeholder | string | "" |
rows | number | 4 |
label | string | - |
id | string | - |
borderStyle | "single" | "double" | "round" | "bold" | "singleDouble" | "doubleSingle" | "classic" | "round" |
paddingX | number | 1 |
cursor | string | "█" |