import { Switch as SwitchPrimitive } from "radix-ui"; import type * as React from "react"; import { cn } from "../lib/cn"; /** Square, like everything else Industry draws — the knob slides, nothing rounds. */ function Switch({ className, ...props }: React.ComponentProps) { return ( ); } export { Switch };