Multi-line text input for longer free-form content, with primary and secondary variants, configurable rows, and full-width layout. Thin re-export of the real @heroui/react TextArea plus @heroui/styles.
import { TextArea } from "@/components/ui/heroui-text-area" export default function Demo() { return ( <div className="flex w-full items-center justify-center"> <TextArea aria-label="Quick project update" className="h-32 w-96" placeholder="Share a quick project update..." /> </div> ) }