Multi-line text input component with auto-sizing and validation states.
"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> ) }
Part of Interfaces DS — browse the full library on 21st.dev.