{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "input-label-description-example",
  "title": "Input Label Description",
  "description": "input-label-description-example",
  "registryDependencies": [
    "https://intentui.com/r/field",
    "https://intentui.com/r/input"
  ],
  "files": [
    {
      "path": "src/components/examples/forms/input/input-label-description-example.tsx",
      "content": "'use client'\n\nimport { Description, Label } from '@/components/ui/field'\nimport { Input } from '@/components/ui/input'\n\nexport default function InputLabelDescriptionDemo() {\n  return (\n    <div className=\"space-y-2\">\n      <Label htmlFor=\"name\">Name</Label>\n      <Input id=\"name\" aria-label=\"Name\" placeholder=\"Your name\" />\n      <Description>Please enter your full name.</Description>\n    </div>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/input-label-description-example/page.tsx"
    }
  ],
  "type": "registry:page"
}