Components
Loading preview...
Enhanced shadcn/ui textarea
npx shadcn@latest add https://21st.dev/r/originui/textareaimport { Label } from "@/components/ui/label";
import { Textarea } from "@/components/ui/textarea";
import { useId } from "react";
function Component() {
const id = useId();
return (
<div className="space-y-2 min-w-[300px]">
<Label htmlFor={id}>
Required textarea <span className="text-destructive">*</span>
</Label>
<Textarea id={id} placeholder="Leave a message" required />
</div>
);
}
export { Component };