import classNames from "classnames"; import { CheckIcon, XIcon } from "@heroicons/react/solid"; export const Switch = ({ value, disabled = false, size = "medium", className, onChange = () => {}, }: any) => { return (
{} : () => onChange(!value)} >
{value ? ( ) : ( )}
); };