{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "select-15",
  "title": "Animated content",
  "description": "Dropdown opens in popper position anchored below the trigger with a small offset, giving a tooltip-style layout.",
  "dependencies": [],
  "registryDependencies": [
    "select"
  ],
  "files": [
    {
      "path": "registry/patterns/select/select-15.tsx",
      "content": "import {\n  Select,\n  SelectContent,\n  SelectGroup,\n  SelectItem,\n  SelectTrigger,\n  SelectValue,\n} from '@/components/ui/select'\n\nexport function Select15() {\n  return (\n    <Select defaultValue=\"design\">\n      <SelectTrigger className=\"w-full max-w-56\">\n        <SelectValue placeholder=\"Select a team\" />\n      </SelectTrigger>\n      <SelectContent alignItemWithTrigger={false} sideOffset={4}>\n        <SelectGroup>\n          <SelectItem value=\"design\">Design</SelectItem>\n          <SelectItem value=\"engineering\">Engineering</SelectItem>\n          <SelectItem value=\"marketing\">Marketing</SelectItem>\n          <SelectItem value=\"support\">Support</SelectItem>\n        </SelectGroup>\n      </SelectContent>\n    </Select>\n  )\n}\n",
      "type": "registry:component",
      "target": "components/flx/patterns/select/select-15.tsx"
    }
  ],
  "type": "registry:block"
}