mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
13 lines
378 B
TypeScript
13 lines
378 B
TypeScript
import { Field } from "@/examples/base/ui/field"
|
|
import { Input } from "@/examples/base/ui/input"
|
|
import { Label } from "@/examples/base/ui/label"
|
|
|
|
export function LabelDisabled() {
|
|
return (
|
|
<Field data-disabled={true}>
|
|
<Label htmlFor="label-demo-disabled">Disabled</Label>
|
|
<Input id="label-demo-disabled" placeholder="Disabled" disabled />
|
|
</Field>
|
|
)
|
|
}
|