import React from 'react'; import Hook from '../../hook'; import { IconButton, Typography } from '@mui/material'; interface DayProps { filled?: boolean; outlined?: boolean; highlighted?: boolean; disabled?: boolean; startOfRange?: boolean; endOfRange?: boolean; onClick?: () => void; onHover?: () => void; value: number | string; } export const Day: React.FunctionComponent = ({ value, startOfRange, endOfRange, disabled, highlighted, outlined, filled, onClick, onHover, }: DayProps) => { const [theme] = Hook.useTheme(); return (
{value}
); }