UNPKG

@abbl/material-calendar

Version:

Calendar component build with React and Material-UI

9 lines (8 loc) 198 B
import { ReactElement } from 'react'; interface Props { hideBorder?: boolean; hour?: number; hideHours?: boolean; } declare function Day(props: Props): ReactElement; export default Day;