Files
shadcn-ui/apps/www/components/examples/textarea/with-text.tsx
2023-01-24 19:51:29 +04:00

15 lines
445 B
TypeScript

import { Label } from "@/components/ui/label"
import { Textarea } from "@/components/ui/textarea"
export function TextareaWithText() {
return (
<div className="grid w-full gap-1.5">
<Label htmlFor="message-2">Your Message</Label>
<Textarea placeholder="Type your message here." id="message-2" />
<p className="text-sm text-slate-500">
Your message will be copied to the support team.
</p>
</div>
)
}