import { Label, Checkbox } from 'theme-ui' interface LocationPageProps { title: string onChange?: () => void checked?: boolean } const SettingsCheckBox = ({ title, onChange, checked }: LocationPageProps) => { return ( ) } export default SettingsCheckBox