{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "choicebox-example",
  "title": "Choicebox",
  "description": "choicebox-example",
  "registryDependencies": [
    "https://intentui.com/r/choice-box"
  ],
  "files": [
    {
      "path": "src/components/examples/collections/choicebox/choicebox-example.tsx",
      "content": "'use client'\n\nimport {\n  ChoiceBox,\n  ChoiceBoxDescription,\n  ChoiceBoxItem,\n  ChoiceBoxLabel,\n} from '@/components/ui/choice-box'\n\nexport default function ChoiceboxDemo() {\n  return (\n    <ChoiceBox aria-label=\"Select items\" selectionMode=\"multiple\">\n      <ChoiceBoxItem textValue=\"premium\">\n        <ChoiceBoxLabel>Premium</ChoiceBoxLabel>\n        <ChoiceBoxDescription>Advanced options for growing needs.</ChoiceBoxDescription>\n      </ChoiceBoxItem>\n      <ChoiceBoxItem textValue=\"deluxe\">\n        <ChoiceBoxLabel>Deluxe</ChoiceBoxLabel>\n        <ChoiceBoxDescription>Top-tier features for maximum performance.</ChoiceBoxDescription>\n      </ChoiceBoxItem>\n      <ChoiceBoxItem textValue=\"ultimate\">\n        <ChoiceBoxLabel>Ultimate</ChoiceBoxLabel>\n        <ChoiceBoxDescription>\n          All-inclusive plan with every feature available.\n        </ChoiceBoxDescription>\n      </ChoiceBoxItem>\n      <ChoiceBoxItem textValue=\"enterprise\">\n        <ChoiceBoxLabel>Enterprise</ChoiceBoxLabel>\n        <ChoiceBoxDescription>Customized solutions for large organizations.</ChoiceBoxDescription>\n      </ChoiceBoxItem>\n    </ChoiceBox>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/choicebox-example/page.tsx"
    }
  ],
  "type": "registry:page"
}