Skip to content

Commit

Permalink
fix incorrect classname for calendar range arrows
Browse files Browse the repository at this point in the history
  • Loading branch information
steppy452 committed Sep 18, 2024
1 parent edbcfbb commit c35d88d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/form/Calendar/CalendarRange.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export const CalendarRange: FC<CalendarRangeProps> = ({
variant="text"
disabled={disabled}
onClick={previousClickHandler}
className={theme.header.mid}
className={theme.header.prev}
disablePadding
>
{previousArrow}
Expand Down Expand Up @@ -191,6 +191,7 @@ export const CalendarRange: FC<CalendarRangeProps> = ({
variant="text"
disabled={disabled}
onClick={nextYearClickHandler}
className={theme.header.next}
disablePadding
>
{nextYearArrow}
Expand Down

0 comments on commit c35d88d

Please sign in to comment.