"use client"; import { Switch as SwitchPrimitive } from "@base-ui/react/switch"; import { cn } from "./cn"; /* * The primitive is load-bearing here: a switch is a checkbox to assistive * technology but a track-and-thumb to everyone else, and Base UI supplies the * role, the hidden native input for forms, and keyboard toggling. * * Checked uses the brand accent rather than the primary action, matching the * checkbox — this is a selection state, and the two tokens differ in GoodSync. */ export interface SwitchProps extends Omit { className?: string; } function Switch({ className, ...props }: SwitchProps) { return ( ); } export { Switch };