{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "p-textarea-8",
  "description": "Textarea with optional label",
  "registryDependencies": [
    "@coss/label",
    "@coss/textarea"
  ],
  "files": [
    {
      "path": "registry/default/particles/p-textarea-8.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      <div className=\"inline-flex w-full items-center justify-between gap-2\">\n        <Label htmlFor={id}>Message</Label>\n        <Label className=\"font-normal text-muted-foreground\" render={<span />}>\n          Optional\n        </Label>\n      </div>\n      <Textarea id={id} placeholder=\"Type your message here\" />\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"
}