mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-02-09 02:49:29 +08:00
15 lines
445 B
TypeScript
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>
|
|
)
|
|
}
|