{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "p-context-menu-7",
  "description": "Context menu with radio group",
  "registryDependencies": [
    "@coss/context-menu"
  ],
  "files": [
    {
      "path": "registry/default/particles/p-context-menu-7.tsx",
      "content": "import {\n  ContextMenu,\n  ContextMenuPopup,\n  ContextMenuRadioGroup,\n  ContextMenuRadioItem,\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        <ContextMenuRadioGroup defaultValue=\"system\">\n          <ContextMenuRadioItem value=\"light\">Light</ContextMenuRadioItem>\n          <ContextMenuRadioItem value=\"dark\">Dark</ContextMenuRadioItem>\n          <ContextMenuRadioItem value=\"system\">System</ContextMenuRadioItem>\n        </ContextMenuRadioGroup>\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"
}