{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "menu-with-arrow-example",
  "title": "Menu With Arrow",
  "description": "menu-with-arrow-example",
  "dependencies": [
    "@heroicons/react"
  ],
  "registryDependencies": [
    "https://intentui.com/r/avatar",
    "https://intentui.com/r/menu"
  ],
  "files": [
    {
      "path": "src/components/examples/collections/menu/menu-with-arrow-example.tsx",
      "content": "'use client'\n\nimport { PlusIcon } from '@heroicons/react/20/solid'\nimport {\n  ArrowLeftStartOnRectangleIcon,\n  Cog6ToothIcon,\n  HashtagIcon,\n  LifebuoyIcon,\n} from '@heroicons/react/24/outline'\nimport { Avatar } from '@/components/ui/avatar'\nimport {\n  Menu,\n  MenuContent,\n  MenuHeader,\n  MenuItem,\n  MenuLabel,\n  MenuSection,\n  MenuSeparator,\n  MenuShortcut,\n  MenuTrigger,\n} from '@/components/ui/menu'\n\nexport default function MenuWithArrowDemo() {\n  return (\n    <Menu>\n      <MenuTrigger aria-label=\"Open Menu\">\n        <Avatar src=\"https://intentui.com/images/avatar/cobain.jpg\" />\n      </MenuTrigger>\n      <MenuContent popover={{ arrow: true, placement: 'top' }} className=\"min-w-54\">\n        <MenuSection>\n          <MenuHeader separator>\n            <span className=\"block\">Irsyad A. Panjaitan</span>\n            <span className=\"font-normal text-muted-fg\">@irsyadadl</span>\n          </MenuHeader>\n        </MenuSection>\n        <MenuItem>\n          <Cog6ToothIcon className=\"size-6\" aria-hidden=\"true\" />\n          <MenuLabel>Settings</MenuLabel>\n        </MenuItem>\n        <MenuItem href=\"#\">\n          <PlusIcon className=\"size-6\" aria-hidden=\"true\" />\n          <MenuLabel>Create Team</MenuLabel>\n        </MenuItem>\n        <MenuItem href=\"#\">\n          <HashtagIcon className=\"size-6\" aria-hidden=\"true\" />\n          <MenuLabel>Command Menu</MenuLabel>\n          <MenuShortcut>⌘K</MenuShortcut>\n        </MenuItem>\n        <MenuSeparator />\n        <MenuItem href=\"#\">\n          <LifebuoyIcon className=\"size-6\" aria-hidden=\"true\" />\n          <MenuLabel>Contact Support</MenuLabel>\n        </MenuItem>\n        <MenuSeparator />\n        <MenuItem>\n          <ArrowLeftStartOnRectangleIcon className=\"size-6\" aria-hidden=\"true\" />\n          <MenuLabel>Log out</MenuLabel>\n        </MenuItem>\n      </MenuContent>\n    </Menu>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/menu-with-arrow-example/page.tsx"
    }
  ],
  "type": "registry:page"
}