I want to add different different color for option show more link in react-big-calendar
You can use messages prop to Calendar component.
<Calendar ...other props messages={{ ...other messages showMore: (total) => (<span style={{color: 'red'}}>+{total} more</span>) }} />