import React from 'react'; import tw from 'twin.macro'; import { MixedCheckbox, MixedCheckboxProps } from '@reach/checkbox'; import '@reach/checkbox/styles.css'; interface ToggleProps extends MixedCheckboxProps {} export const Toggle: React.FC = ({ children, checked, onChange, ...rest }) => { return ( ); };