apps/design-system/content/docs/components/select.mdx
npx shadcn-ui@latest add select
<Step>Install the following dependencies:</Step>
npm install @radix-ui/react-select
<Step>Copy and paste the following code into your project.</Step>
<ComponentSource name="select" /><Step>Update the import paths to match your project setup.</Step>
</Steps> </TabsContent> </Tabs>import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from '@/components/ui/select'
<Select>
<SelectTrigger className="w-[180px]">
<SelectValue placeholder="Theme" />
</SelectTrigger>
<SelectContent>
<SelectItem value="light">Light</SelectItem>
<SelectItem value="dark">Dark</SelectItem>
<SelectItem value="system">System</SelectItem>
</SelectContent>
</Select>