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