import React from 'react'; import { Checkbox } from '../../components'; interface IDay { handleChange: (val: string) => void; value: string; isChecked: boolean; isTinyView: boolean; } export const DayCheck = ({ handleChange, value, isChecked, isTinyView, }: IDay) => { // const isMobile = useMediaQuery(mobileOnly); return (