{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "choicebox-multiple-selection-example",
  "title": "Choicebox Multiple Selection",
  "description": "choicebox-multiple-selection-example",
  "registryDependencies": [
    "https://intentui.com/r/choice-box"
  ],
  "files": [
    {
      "path": "src/components/examples/collections/choicebox/choicebox-multiple-selection-example.tsx",
      "content": "'use client'\n\nimport { ChoiceBox, ChoiceBoxItem } from '@/components/ui/choice-box'\n\nexport default function ChoiceboxMultipleSelectionDemo() {\n  return (\n    <ChoiceBox aria-label=\"Select packages\" selectionMode=\"multiple\" items={packages}>\n      {(item) => <ChoiceBoxItem textValue={item.label} {...item} />}\n    </ChoiceBox>\n  )\n}\n\nconst packages = [\n  {\n    id: 'sm',\n    label: 'Small',\n    description: 'Perfect for beginners. Basic resources for light projects.',\n  },\n  {\n    id: 'md',\n    label: 'Medium',\n    description: 'Great for growing sites. More power and storage.',\n  },\n  {\n    id: 'lg',\n    label: 'Large',\n    description: 'Ideal for busy sites. Lots of resources and support.',\n  },\n  {\n    id: 'xl',\n    label: 'Extra Large',\n    description: 'Max power for demanding applications. Top-tier performance.',\n  },\n]\n",
      "type": "registry:page",
      "target": "app/choicebox-multiple-selection-example/page.tsx"
    }
  ],
  "type": "registry:page"
}