Dropdown with keyboard nav + type-ahead.
Native-feel select with keyboard nav. Headless wrapper over the platform `<select>` so screen-readers and arrow-key conventions are free. Style with CSS variables.
import { Select } from "@/components/ui/select";
<Select
value={tier}
onValueChange={setTier}
options={[{ value: "free", label: "Free" }, { value: "pro", label: "Pro" }]}
/>components/ui/ folder. You own the code.