Skip to content

Commit

Permalink
feat: add props to ChevronRight icon in DayPicker (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
kleberbaum authored Jan 8, 2025
1 parent 23e9027 commit f600396
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/gatsby-plugin-jaen/src/components/ui/calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ function Calendar({
...classNames
}}
components={{
IconLeft: ({...props}) => <ChevronLeft className="h-4 w-4" />,
IconRight: ({...props}) => <ChevronRight className="h-4 w-4" />
IconLeft: ({...props}) => <ChevronLeft className="h-4 w-4" {...props} />,
IconRight: ({...props}) => <ChevronRight className="h-4 w-4" {...props} />
}}
{...props}
/>
Expand Down

0 comments on commit f600396

Please sign in to comment.