Home / File/ label-example.json — ui Source File

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/base-lyra/examples/label-example.tsx",
      "content": "import {\n  Example,\n  ExampleWrapper,\n} from \"@/registry/base-lyra/components/example\"\nimport { Checkbox } from \"@/registry/base-lyra/ui/checkbox\"\nimport { Field } from \"@/registry/base-lyra/ui/field\"\nimport { Input } from \"@/registry/base-lyra/ui/input\"\nimport { Label } from \"@/registry/base-lyra/ui/label\"\nimport { Textarea } from \"@/registry/base-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"
}

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/base-lyra/label-example.json (directory: apps/v4/public/r/styles/base-lyra).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free