components
/components/ui/select.tsx
Installation
Usage
Imports
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select"Code
<Select>
<SelectTrigger>
<SelectValue />
</SelectTrigger>
<SelectContent>
<SelectItem value="male">Male</SelectItem>
<SelectItem value="female">Female</SelectItem>
</SelectContent>
</Select>Examples
Size
With Badge
With Avatar
Custom indicator
Indicator Position
Time Picker
Form
Props
<Select>
| Name | Default | Values |
|---|---|---|
| indicatorPosition | right | leftright |
| indicator | null | ReactNode |
| External Reference | - | - |
<SelectTrigger>
| Name | Default | Values |
|---|---|---|
| size | md | smmdlg |
| External Reference | - | - |
<SelectGroup>
| Name | Default | Values |
|---|---|---|
| label | - | string |
| External Reference | - | - |