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