{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "select-with-icon-example",
  "title": "Select With Icon",
  "description": "select-with-icon-example",
  "registryDependencies": [
    "https://intentui.com/r/select"
  ],
  "files": [
    {
      "path": "src/components/examples/pickers/select/select-with-icon-example.tsx",
      "content": "'use client'\n\nimport { BrandDiscordIcon } from '@/components/icons/brand-discord-icon'\nimport { BrandGithubIcon } from '@/components/icons/brand-github-icon'\nimport {\n  Select,\n  SelectContent,\n  SelectItem,\n  SelectLabel,\n  SelectSeparator,\n  SelectTrigger,\n} from '@/components/ui/select'\n\nexport default function SelectWithIconDemo() {\n  return (\n    <Select aria-label=\"Devices\" defaultValue=\"desktop\" placeholder=\"Select a device\">\n      <SelectTrigger />\n      <SelectContent>\n        <SelectItem id=\"discord\" textValue=\"Discord\">\n          <BrandDiscordIcon />\n          <SelectLabel>Discord</SelectLabel>\n        </SelectItem>\n        <SelectSeparator />\n        <SelectItem id=\"github\" textValue=\"GitHub\">\n          <BrandGithubIcon />\n          <SelectLabel>GitHub</SelectLabel>\n        </SelectItem>\n        <SelectItem id=\"gitlab\" textValue=\"GitLab\">\n          GitLab\n        </SelectItem>\n      </SelectContent>\n    </Select>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/select-with-icon-example/page.tsx"
    }
  ],
  "type": "registry:page"
}