import { theme } from "tailwind.config"; export const Toggle = (props: { toggle: boolean; onToggle: () => void; disabledColor1?: string; disabledColor2?: string; children: React.ReactNode; }) => { return ( ); };