{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "multiple-select-disabled-example",
  "title": "Multiple Select Disabled",
  "description": "multiple-select-disabled-example",
  "registryDependencies": [
    "https://intentui.com/r/field",
    "https://intentui.com/r/multiple-select"
  ],
  "files": [
    {
      "path": "src/components/examples/pickers/multiple-select/multiple-select-disabled-example.tsx",
      "content": "'use client'\n\nimport { FieldError, Label } from '@/components/ui/field'\nimport {\n  MultipleSelect,\n  MultipleSelectContent,\n  MultipleSelectItem,\n} from '@/components/ui/multiple-select'\n\nexport default function MultipleSelectDisabledDemo() {\n  return (\n    <MultipleSelect isDisabled className=\"mx-auto max-w-2xs\">\n      <Label>Select fruits</Label>\n      <MultipleSelectContent items={fruits}>\n        {(item) => {\n          return (\n            <MultipleSelectItem id={item.id} textValue={item.name}>\n              {item.name}\n            </MultipleSelectItem>\n          )\n        }}\n      </MultipleSelectContent>\n      <FieldError />\n    </MultipleSelect>\n  )\n}\n\nconst fruits = [{ id: 1, name: 'Apple' }]\n",
      "type": "registry:page",
      "target": "app/multiple-select-disabled-example/page.tsx"
    }
  ],
  "type": "registry:page"
}