Switch

A toggle switch alternative to a checkbox.

shadcn/ui docs

Installation

pnpm dlx 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>