{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "p-textarea-7",
  "description": "Textarea with label and required indicator",
  "registryDependencies": [
    "@coss/label",
    "@coss/textarea"
  ],
  "files": [
    {
      "path": "registry/default/particles/p-textarea-7.tsx",
      "content": "import { useId } from \"react\";\nimport { Label } from \"@/registry/default/ui/label\";\nimport { Textarea } from \"@/registry/default/ui/textarea\";\n\nexport default function Particle() {\n  const id = useId();\n  return (\n    <div className=\"flex flex-col gap-2\">\n      <Label htmlFor={id}>\n        Message <span className=\"text-destructive\">*</span>\n      </Label>\n      <Textarea id={id} placeholder=\"Type your message here\" required />\n    </div>\n  );\n}\n",
      "type": "registry:block"
    }
  ],
  "meta": {
    "className": "**:data-[slot=preview]:w-full **:data-[slot=preview]:max-w-64"
  },
  "categories": [
    "label",
    "textarea"
  ],
  "type": "registry:block"
}