import * as React from "react" import { Switch as HeroSwitch } from "@heroui/react" import { cn } from "@/lib/utils" interface SwitchProps { checked?: boolean defaultChecked?: boolean onCheckedChange?: (checked: boolean) => void className?: string disabled?: boolean } const Switch = React.forwardRef( ({ checked, defaultChecked, onCheckedChange, disabled, className }, ref) => { return ( ); } ); Switch.displayName = "Switch"; export { Switch }