{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-77",
  "type": "registry:component",
  "registryDependencies": [
    "https://coss.com/origin/r/label.json",
    "https://coss.com/origin/r/textarea.json"
  ],
  "files": [
    {
      "path": "registry/default/components/comp-77.tsx",
      "content": "\"use client\";\n\nimport { 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}>Autogrowing textarea</Label>\n      <Textarea\n        className=\"field-sizing-content max-h-29.5 min-h-0 resize-none py-1.75\"\n        id={id}\n        placeholder=\"Leave a comment\"\n      />\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "tags": [
      "label",
      "textarea"
    ]
  }
}