{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "p-context-menu-2",
  "description": "Context menu with link items",
  "registryDependencies": [
    "@coss/context-menu"
  ],
  "files": [
    {
      "path": "registry/default/particles/p-context-menu-2.tsx",
      "content": "import Link from \"next/link\";\nimport {\n  ContextMenu,\n  ContextMenuLinkItem,\n  ContextMenuPopup,\n  ContextMenuTrigger,\n} from \"@/registry/default/ui/context-menu\";\n\nexport default function Particle() {\n  return (\n    <ContextMenu>\n      <ContextMenuTrigger className=\"flex h-32 w-full max-w-sm items-center justify-center rounded-lg border border-dashed text-muted-foreground text-sm\">\n        Right click here\n      </ContextMenuTrigger>\n      <ContextMenuPopup>\n        <ContextMenuLinkItem render={<Link href=\"/docs\" />}>\n          Docs\n        </ContextMenuLinkItem>\n        <ContextMenuLinkItem render={<Link href=\"/particles\" />}>\n          Particles\n        </ContextMenuLinkItem>\n      </ContextMenuPopup>\n    </ContextMenu>\n  );\n}\n",
      "type": "registry:block"
    }
  ],
  "meta": {
    "className": "**:data-[slot=preview]:w-full **:data-[slot=preview]:max-w-sm"
  },
  "categories": [
    "context menu",
    "menu"
  ],
  "type": "registry:block"
}