{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "textarea-06",
  "title": "Textarea with Helper Text",
  "description": "A textarea component with helper text",
  "registryDependencies": [
    "textarea",
    "label"
  ],
  "files": [
    {
      "path": "src/components/customized/textarea/textarea-06.tsx",
      "content": "import { Label } from \"@/registry/ui/label\";\nimport { Textarea } from \"@/registry/ui/textarea\";\n\nexport default function TextareaWithHelperTextDemo() {\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      <p className=\"text-muted-foreground text-sm\">\n        Your message will be copied to the support team.\n      </p>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}