--- title: Switch description: A control that allows the user to toggle between checked and not checked. component: true links: doc: https://www.radix-ui.com/docs/primitives/components/switch api: https://www.radix-ui.com/docs/primitives/components/switch#api-reference --- ## Installation CLI Manual ```bash npx shadcn@latest add switch ``` Install the following dependencies: ```bash npm install @radix-ui/react-switch ``` Copy and paste the following code into your project. Update the import paths to match your project setup. ## Usage ```tsx import { Switch } from "@/components/ui/switch" ``` ```tsx ```