import * as React from "react" import { Switch as SwitchPrimitive } from "@base-ui/react/switch" import { cn } from "@/lib/utils" import type { ValueOf } from "@/types/utils" const SWITCH_SIZE = { SMALL: "sm", DEFAULT: "default", } as const type SwitchSize = ValueOf function Switch({ className, size = SWITCH_SIZE.DEFAULT, ...props }: React.ComponentProps & { size?: SwitchSize }) { return ( ) } export { Switch }