{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "select-04",
  "type": "registry:component",
  "title": "Select",
  "author": "Toby Belhome",
  "description": "Displays a list of options for the user to pick from—triggered by a button.",
  "dependencies": [],
  "registryDependencies": [
    "badge"
  ],
  "files": [
    {
      "path": "examples/components/select/04/page.tsx",
      "content": "import { Badge } from \"@/components/ui/badge\";\nimport {\n  Select,\n  SelectContent,\n  SelectItem,\n  SelectTrigger,\n  SelectValue\n} from \"@/components/ui/select\";\n\nexport default function SelectDemo() {\n  return (\n    <Select defaultValue=\"3\">\n      <SelectTrigger className=\"w-[200px]\">\n        <span className=\"inline-flex items-center space-x-2\">\n          Status: <SelectValue placeholder=\"Select framework\" />\n        </span>\n      </SelectTrigger>\n      <SelectContent>\n        <SelectItem value=\"1\">\n          <Badge variant=\"outline\">In Progress</Badge>\n        </SelectItem>\n        <SelectItem value=\"2\">\n          <Badge variant=\"outline\">Completed</Badge>\n        </SelectItem>\n        <SelectItem value=\"3\">\n          <Badge variant=\"outline\">Pending</Badge>\n        </SelectItem>\n        <SelectItem value=\"4\">\n          <Badge variant=\"destructive\">Cancelled</Badge>\n        </SelectItem>\n        <SelectItem value=\"5\">\n          <Badge variant=\"destructive\">Rejected</Badge>\n        </SelectItem>\n      </SelectContent>\n    </Select>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/select-04.tsx"
    }
  ],
  "meta": {
    "isPro": false
  }
}