Components
Loading preview...
Displays a multi-line text input field with enhanced features like clearable functionality, auto-resizing, and Zod validation support
npx shadcn@latest add https://21st.dev/r/preetsuthar17/textareaimport { Textarea } from "@/components/ui/textarea";
export default function DemoOne() {
return (
<>
<div className="max-w-sm w-full">
<Textarea placeholder="Enter your message here..." />
</div>
</>
);
}