{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-52",
  "type": "registry:component",
  "registryDependencies": [
    "https://coss.com/origin/r/input.json",
    "https://coss.com/origin/r/label.json"
  ],
  "files": [
    {
      "path": "registry/default/components/comp-52.tsx",
      "content": "import { useId } from \"react\";\n\nimport { Input } from \"@/registry/default/ui/input\";\nimport { Label } from \"@/registry/default/ui/label\";\n\nexport default function Component() {\n  const id = useId();\n  return (\n    <div className=\"*:not-first:mt-2\">\n      <Label htmlFor={id}>Read-only input</Label>\n      <Input\n        className=\"read-only:bg-muted\"\n        defaultValue=\"This is a read-only input\"\n        id={id}\n        placeholder=\"Email\"\n        readOnly\n        type=\"email\"\n      />\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "tags": [
      "input",
      "label",
      "read-only"
    ]
  }
}