mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 22:18:39 +00:00
15 lines
466 B
TypeScript
15 lines
466 B
TypeScript
import { Label } from "@/examples/radix/ui/label"
|
|
import { Textarea } from "@/examples/radix/ui/textarea"
|
|
|
|
export default function TextareaWithText() {
|
|
return (
|
|
<div className="grid w-full gap-3">
|
|
<Label htmlFor="message-2">Your Message</Label>
|
|
<Textarea placeholder="Type your message here." id="message-2" />
|
|
<p className="text-muted-foreground text-sm">
|
|
Your message will be copied to the support team.
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|