Components
Loading preview...
Multi-line text input component with auto-sizing and validation states.
npx shadcn@latest add https://21st.dev/r/jshguo/interfaces-textarea"use client"
import { Textarea } from "@/components/ui/interfaces-textarea"
export default function TextareaDemo() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 overflow-hidden">
<div className="w-full max-w-md space-y-4">
<Textarea placeholder="Type your message here..." rows={4} />
</div>
</div>
)
}