diff --git a/package/src/components/Header.tsx b/package/src/components/Header.tsx index 8d793f3..a37e0bc 100644 --- a/package/src/components/Header.tsx +++ b/package/src/components/Header.tsx @@ -79,7 +79,7 @@ const Header: React.FunctionComponent = ({ }; return ( - + = (props: MenuProps) => { - + = (props: MonthProps) => { item container direction="row" - justify="space-between" + justifyContent="space-between" className={classes.weekDaysContainer} > {WEEK_DAYS.map((day) => ( @@ -111,12 +111,12 @@ const Month: React.FunctionComponent = (props: MonthProps) => { item container direction="column" - justify="space-between" + justifyContent="space-between" className={classes.daysContainer} > {chunks(getDaysInMonth(date), 7).map((week, idx) => ( // eslint-disable-next-line react/no-array-index-key - + {week.map((day) => { const isStart = isStartOfRange(dateRange, day); const isEnd = isEndOfRange(dateRange, day);