Utility
AI
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
| Prop | Type | Default |
|---|---|---|
options | SelectOption<T>[] | required |
value | T | undefined |
onChange | (value: T) => void | undefined |
onSubmit | (value: T) => void | undefined |
label | string | undefined |
cursor | string | "›" |
cursorColor | string | undefined |