Files
shadcn-ui/apps/www/registry/default/example/textarea-with-text.tsx
2023-06-22 22:44:52 +04:00

15 lines
472 B
TypeScript

import { Label } from "@/registry/default/ui/label"
import { Textarea } from "@/registry/default/ui/textarea"
export default 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-muted-foreground">
Your message will be copied to the support team.
</p>
</div>
)
}