Files
shadcn-ui/apps/www/content/docs/components/switch.mdx
2023-04-17 19:19:40 +04:00

54 lines
1.1 KiB
Plaintext

---
title: Switch
description: A control that allows the user to toggle between checked and not checked.
component: true
radix:
link: https://www.radix-ui.com/docs/primitives/components/switch
api: https://www.radix-ui.com/docs/primitives/components/switch#api-reference
---
<ComponentExample src="/components/examples/switch/demo.tsx">
<SwitchDemo />
</ComponentExample>
## Installation
```bash
npx shadcn-ui add switch
```
<Accordion type="single" collapsible>
<AccordionItem value="manual-installation">
<AccordionTrigger>Manual Installation</AccordionTrigger>
<AccordionContent>
1. Install the `@radix-ui/react-switch` component from radix-ui:
```bash
npm install @radix-ui/react-switch
```
2. Copy and paste the following code into your project.
<ComponentSource src="/components/ui/switch.tsx" />
<Callout>
This is the `<Switch />` primitive. You can place it in a file at
`components/ui/switch.tsx`.
</Callout>
</AccordionContent>
</AccordionItem>
</Accordion>
## Usage
```tsx
import { Switch } from "@/components/ui/switch"
```
```tsx
<Switch />
```