--- 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 --- ## Installation ```bash npx shadcn-ui add switch ``` Manual Installation 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. This is the `` primitive. You can place it in a file at `components/ui/switch.tsx`. ## Usage ```tsx import { Switch } from "@/components/ui/switch" ``` ```tsx ```