mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 06:28:37 +00:00
16 lines
391 B
TypeScript
16 lines
391 B
TypeScript
import { Field, FieldLabel } from "@/examples/base/ui/field"
|
|
import { Textarea } from "@/examples/base/ui/textarea"
|
|
|
|
export function TextareaWithLabel() {
|
|
return (
|
|
<Field>
|
|
<FieldLabel htmlFor="textarea-demo-message">Message</FieldLabel>
|
|
<Textarea
|
|
id="textarea-demo-message"
|
|
placeholder="Type your message here."
|
|
rows={6}
|
|
/>
|
|
</Field>
|
|
)
|
|
}
|