0

enter image description here

I want to add different different color for option show more link in react-big-calendar

ADyson
  • 57,178
  • 14
  • 51
  • 63
Akash Maurya
  • 127
  • 1
  • 3
  • 8

1 Answers1

0

You can use messages prop to Calendar component.

<Calendar
...other props
messages={{
         ...other messages
         showMore: (total) => (<span style={{color: 'red'}}>+{total} more</span>)
}}
/>