1Sponsor

Text Area

Multi-line text editor with word wrap

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

PropTypeDefault
valuestringundefined
onChange(value: string) => voidundefined
onSubmit(value: string) => voidundefined
placeholderstring""
rowsnumber4
labelstringundefined
idstringundefined
borderStyle"single" | "double" | "round" | "bold" | "singleDouble" | "doubleSingle" | "classic""round"
paddingXnumber1
cursorstring"█"