---
title: Select
description: Displays a list of options for the user to pick from—triggered by a button.
component: true
featured: true
radix:
link: https://www.radix-ui.com/docs/primitives/components/select
api: https://www.radix-ui.com/docs/primitives/components/select#api-reference
---
## Installation
```bash
npx shadcn-ui add select
```
Manual Installation
1. Install the `@radix-ui/react-select` component from radix-ui:
```bash
npm install @radix-ui/react-select
```
2. Copy and paste the following code into your project.
This is the `` primitive. You can place it in a file at `components/ui/select.tsx`.
## Usage
```tsx
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select"
```
```tsx
```