Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
DatePicker: use large icon for buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
arnemolland committed Feb 16, 2022
1 parent 916461d commit 3e1c979
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/components/inputs/DatePicker/DatePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export const DatePicker = ({
<Grid>
<AspectRatio aspectRatio={100}>
<NavBtn className="prevmtharea" onClick={() => handleDay(-1)} {...styles}>
<Icon icon="arrow_left" />
<Icon icon="arrow_left" size="large" />
</NavBtn>
</AspectRatio>
<DateInput className="mthdescarea" onClick={handleEdition} {...styles}>
Expand All @@ -173,7 +173,7 @@ export const DatePicker = ({
</DateInput>
<AspectRatio aspectRatio={100}>
<NavBtn className="nextmtharea" onClick={() => handleDay(1)} {...styles}>
<Icon icon="arrow_right" />
<Icon icon="arrow_right" size="large" />
</NavBtn>
</AspectRatio>
</Grid>
Expand Down

0 comments on commit 3e1c979

Please sign in to comment.