{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "textarea-04",
  "title": "Textarea with Label",
  "description": "A textarea component with a label",
  "registryDependencies": [
    "textarea",
    "label"
  ],
  "files": [
    {
      "path": "src/components/customized/textarea/textarea-04.tsx",
      "content": "import { Label } from \"@/registry/ui/label\";\nimport { Textarea } from \"@/registry/ui/textarea\";\n\nexport default function TextareaWithLabelDemo() {\n  return (\n    <div className=\"flex w-full flex-col gap-2\">\n      <Label htmlFor=\"message\">Message</Label>\n      <Textarea id=\"message\" placeholder=\"Type your message here.\" />\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}