mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-09 06:55:07 +00:00
* feat(www): add login blocks * chore(www): restructure for blocks * chore: build registry * chore: clean up chunks * fix(www): chart categories * feat(www): big registry refactor * feat(www): update blocks * feat: complex blocks * fix: update schema * feat: sync new-york and default * fix: lint * feat: move charts * fix(www): code * fix: src path * chore: rebuild registry * fix: screenshot * fix: set new-york as default
15 lines
472 B
TypeScript
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>
|
|
)
|
|
}
|