{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "popover-example",
  "title": "Popover",
  "description": "popover-example",
  "registryDependencies": [
    "https://intentui.com/r/button",
    "https://intentui.com/r/popover"
  ],
  "files": [
    {
      "path": "src/components/examples/overlays/popover/popover-example.tsx",
      "content": "'use client'\n\nimport { Button } from '@/components/ui/button'\nimport {\n  Popover,\n  PopoverBody,\n  PopoverContent,\n  PopoverDescription,\n  PopoverFooter,\n  PopoverHeader,\n  PopoverTitle,\n} from '@/components/ui/popover'\n\nexport default function PopoverDemo() {\n  return (\n    <Popover>\n      <Button intent=\"outline\">What’s this?</Button>\n      <PopoverContent>\n        <PopoverHeader>\n          <PopoverTitle>This is the title of the popover.</PopoverTitle>\n          <PopoverDescription>This is the description of the popover.</PopoverDescription>\n        </PopoverHeader>\n        <PopoverBody>This is the body of the popover.</PopoverBody>\n        <PopoverFooter>This is the footer of the popover.</PopoverFooter>\n      </PopoverContent>\n    </Popover>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/popover-example/page.tsx"
    }
  ],
  "type": "registry:page"
}