Open GitHub repository
ComponentsSwitch

Switch

A compact native control for immediately toggling a setting on or off.

Installation

bunx @swift-rust/ui add switch

Usage

tsx
1import { Switch } from "@/components/ui/switch";
2 
3<label className="flex items-center gap-2">
4 <Switch defaultChecked />
5 Email notifications
6</label>

Examples