mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
17 lines
438 B
TypeScript
17 lines
438 B
TypeScript
import {
|
|
Field,
|
|
FieldDescription,
|
|
FieldLabel,
|
|
} from "@/styles/base-nova/ui/field"
|
|
import { Textarea } from "@/styles/base-nova/ui/textarea"
|
|
|
|
export function TextareaField() {
|
|
return (
|
|
<Field>
|
|
<FieldLabel htmlFor="textarea-message">Message</FieldLabel>
|
|
<FieldDescription>Enter your message below.</FieldDescription>
|
|
<Textarea id="textarea-message" placeholder="Type your message here." />
|
|
</Field>
|
|
)
|
|
}
|