label-example.json — ui Source File
Architecture documentation for label-example.json, a json file in the ui codebase.
Entity Profile
Source Code
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "label-example",
"title": "Label",
"registryDependencies": [
"checkbox",
"field",
"input",
"label",
"textarea",
"example"
],
"files": [
{
"path": "registry/radix-lyra/examples/label-example.tsx",
"content": "import {\n Example,\n ExampleWrapper,\n} from \"@/registry/radix-lyra/components/example\"\nimport { Checkbox } from \"@/registry/radix-lyra/ui/checkbox\"\nimport { Field } from \"@/registry/radix-lyra/ui/field\"\nimport { Input } from \"@/registry/radix-lyra/ui/input\"\nimport { Label } from \"@/registry/radix-lyra/ui/label\"\nimport { Textarea } from \"@/registry/radix-lyra/ui/textarea\"\n\nexport default function LabelExample() {\n return (\n <ExampleWrapper>\n <LabelWithCheckbox />\n <LabelWithInput />\n <LabelDisabled />\n <LabelWithTextarea />\n </ExampleWrapper>\n )\n}\n\nfunction LabelWithCheckbox() {\n return (\n <Example title=\"With Checkbox\">\n <Field orientation=\"horizontal\">\n <Checkbox id=\"label-demo-terms\" />\n <Label htmlFor=\"label-demo-terms\">Accept terms and conditions</Label>\n </Field>\n </Example>\n )\n}\n\nfunction LabelWithInput() {\n return (\n <Example title=\"With Input\">\n <Field>\n <Label htmlFor=\"label-demo-username\">Username</Label>\n <Input id=\"label-demo-username\" placeholder=\"Username\" />\n </Field>\n </Example>\n )\n}\n\nfunction LabelDisabled() {\n return (\n <Example title=\"Disabled\">\n <Field data-disabled={true}>\n <Label htmlFor=\"label-demo-disabled\">Disabled</Label>\n <Input id=\"label-demo-disabled\" placeholder=\"Disabled\" disabled />\n </Field>\n </Example>\n )\n}\n\nfunction LabelWithTextarea() {\n return (\n <Example title=\"With Textarea\">\n <Field>\n <Label htmlFor=\"label-demo-message\">Message</Label>\n <Textarea id=\"label-demo-message\" placeholder=\"Message\" />\n </Field>\n </Example>\n )\n}\n",
"type": "registry:example"
}
],
"type": "registry:example"
}
Source
Frequently Asked Questions
What does label-example.json do?
label-example.json is a source file in the ui codebase, written in json.
Where is label-example.json in the architecture?
label-example.json is located at apps/v4/public/r/styles/radix-lyra/label-example.json (directory: apps/v4/public/r/styles/radix-lyra).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free