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