"use client" import * as React from "react" import { cn } from "@/lib/utils" interface SwitchProps extends Omit, 'onChange'> { onCheckedChange?: (checked: boolean) => void } const Switch = React.forwardRef( ({ className, checked, onCheckedChange, disabled, ...props }, ref) => ( ) ) Switch.displayName = "Switch" export { Switch }