Component referenceSource owned

Switch

A toggle switch alternative to a checkbox.

Upstream reference
On this page2 sectionsBack to top
Live preview
Loading preview...

#Installation

npx shadcn@latest add https://neobrutal-ui.andongmin.com/r/switch.json

#Usage

import { Label } from "@/components/ui/label";
import { Switch } from "@/components/ui/switch";
<div className="flex items-center space-x-2">
  <Switch id="airplane-mode" />
  <Label htmlFor="airplane-mode">Airplane Mode</Label>
</div>