"use client" import { cn } from "@/examples/base/lib/utils" import { Switch as SwitchPrimitive } from "@base-ui/react/switch" function Switch({ className, size = "default", ...props }: SwitchPrimitive.Root.Props & { size?: "sm" | "default" }) { return ( ) } export { Switch }