import { theme } from "tailwind.config"; export const Toggle = (props: { toggleOn: boolean; setToggleOn: (s: boolean) => void; disabledColor1?: string; disabledColor2?: string; }) => { return ( ); };