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