mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
12 lines
329 B
TypeScript
12 lines
329 B
TypeScript
import { Label } from "@/components/ui/label"
|
|
import { Textarea } from "@/components/ui/textarea"
|
|
|
|
export function TextareaWithLabel() {
|
|
return (
|
|
<div className="grid w-full gap-1.5">
|
|
<Label htmlFor="message">Your message</Label>
|
|
<Textarea placeholder="Type your message here." id="message" />
|
|
</div>
|
|
)
|
|
}
|