import * as React from "react" import { Switch as SwitchPrimitive } from "radix-ui" import { cn } from "@/lib/utils" function Switch({ className, size = "sm", ...props }: React.ComponentProps & { size?: "sm" | "md" }) { return ( ) } export { Switch }