{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "p-input-group-12",
  "description": "Input group with inner label",
  "registryDependencies": [
    "@coss/button",
    "@coss/input-group",
    "@coss/label",
    "@coss/popover"
  ],
  "files": [
    {
      "path": "registry/default/particles/p-input-group-12.tsx",
      "content": "\"use client\";\n\nimport { InfoIcon } from \"lucide-react\";\nimport { Button } from \"@/registry/default/ui/button\";\nimport {\n  InputGroup,\n  InputGroupAddon,\n  InputGroupInput,\n} from \"@/registry/default/ui/input-group\";\nimport { Label } from \"@/registry/default/ui/label\";\nimport {\n  Popover,\n  PopoverPopup,\n  PopoverTrigger,\n} from \"@/registry/default/ui/popover\";\n\nexport default function Particle() {\n  return (\n    <InputGroup>\n      <InputGroupInput id=\"email-1\" placeholder=\"team@coss.com\" type=\"email\" />\n      <InputGroupAddon align=\"block-start\">\n        <Label className=\"text-foreground\" htmlFor=\"email-1\">\n          Email\n        </Label>\n        <Popover>\n          <PopoverTrigger\n            className=\"ml-auto\"\n            openOnHover\n            render={<Button className=\"-m-1\" size=\"icon-xs\" variant=\"ghost\" />}\n          >\n            <InfoIcon />\n          </PopoverTrigger>\n          <PopoverPopup side=\"top\" tooltipStyle>\n            <p>We&apos;ll use this to send you notifications</p>\n          </PopoverPopup>\n        </Popover>\n      </InputGroupAddon>\n    </InputGroup>\n  );\n}\n",
      "type": "registry:block"
    }
  ],
  "meta": {
    "className": "**:data-[slot=preview]:w-full **:data-[slot=preview]:max-w-64"
  },
  "categories": [
    "input group",
    "label"
  ],
  "type": "registry:block"
}