1Sponsor

Select

Single-select dropdown with arrow-key navigation

Terminal

Installation

pnpm dlx shadcn@latest add https://termcn.dev/r/select.json

Usage

import { Select } from "@/components/ui/select";
<Select
  label="Choose a framework"
  options={[
    { value: "next", label: "Next.js" },
    { value: "remix", label: "Remix" },
    { value: "astro", label: "Astro" },
  ]}
  onChange={(value) => {}}
/>

API Reference

Select

PropTypeDefault
optionsSelectOption<T>[]required
valueTundefined
onChange(value: T) => voidundefined
onSubmit(value: T) => voidundefined
labelstringundefined
cursorstring"›"
cursorColorstringundefined