import React, { type PropsWithChildren } from 'react' import { Switch as HeroSwitch } from '@/components/heroui/SelectionControls' import { cn } from '@/lib/cn' interface SwitchProps { className?: string classNames?: { label?: string } isDisabled?: boolean isSelected?: boolean size?: 'sm' | 'md' | 'lg' onValueChange?: (isSelected: boolean) => void } const Switch = ({ children, className, classNames, isDisabled, isSelected, size = 'md', onValueChange, }: PropsWithChildren) => { return ( {children} ) } export default Switch