'use client'; import { cn } from '@/utils/Helpers'; import * as React from 'react'; type SwitchProps = { onCheckedChange?: (checked: boolean) => void; } & React.InputHTMLAttributes; const Switch = React.forwardRef(({ className, onCheckedChange, ...props }, ref) => { return (