{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "select-disabled-example",
  "title": "Select Disabled",
  "description": "select-disabled-example",
  "registryDependencies": [
    "https://intentui.com/r/field",
    "https://intentui.com/r/select"
  ],
  "files": [
    {
      "path": "src/components/examples/pickers/select/select-disabled-example.tsx",
      "content": "'use client'\n\nimport { Label } from '@/components/ui/field'\nimport { Select, SelectContent, SelectItem, SelectTrigger } from '@/components/ui/select'\n\nconst software = [\n  { id: 1, name: 'Adobe Photoshop' },\n  //...\n]\n\nexport default function SelectDisabledDemo() {\n  return (\n    <Select isDisabled placeholder=\"Select a software\">\n      <Label>Design software</Label>\n      <SelectTrigger />\n      <SelectContent items={software}>\n        {(item) => (\n          <SelectItem id={item.id} textValue={item.name}>\n            {item.name}\n          </SelectItem>\n        )}\n      </SelectContent>\n    </Select>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/select-disabled-example/page.tsx"
    }
  ],
  "type": "registry:page"
}