import * as React from "react"; import { Switch as SwitchPrimitive } from "radix-ui"; import { cn } from "@/lib/utils"; const Switch = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); Switch.displayName = "Switch"; export { Switch };