{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "select-16",
  "title": "Icon in the trigger",
  "description": "Fixed leading icon in the trigger alongside the selected value; dropdown options are text only.",
  "dependencies": [],
  "registryDependencies": [
    "select"
  ],
  "files": [
    {
      "path": "registry/patterns/select/select-16.tsx",
      "content": "import { GlobeIcon } from 'lucide-react'\n\nimport {\n  Select,\n  SelectContent,\n  SelectGroup,\n  SelectItem,\n  SelectTrigger,\n  SelectValue,\n} from '@/components/ui/select'\n\nexport function Select16() {\n  return (\n    <Select>\n      <SelectTrigger className=\"w-full max-w-56\">\n        <span className=\"flex min-w-0 flex-1 items-center gap-2\">\n          <GlobeIcon className=\"text-muted-foreground size-4 shrink-0\" />\n          <SelectValue placeholder=\"Select a language\" />\n        </span>\n      </SelectTrigger>\n      <SelectContent>\n        <SelectGroup>\n          <SelectItem value=\"en\">English</SelectItem>\n          <SelectItem value=\"es\">Spanish</SelectItem>\n          <SelectItem value=\"fr\">French</SelectItem>\n          <SelectItem value=\"de\">German</SelectItem>\n        </SelectGroup>\n      </SelectContent>\n    </Select>\n  )\n}\n",
      "type": "registry:component",
      "target": "components/flx/patterns/select/select-16.tsx"
    }
  ],
  "type": "registry:block"
}