buildo / react-cookie-banner

React Cookie banner which can be automatically dismissed with a scroll. Because fuck The Cookie Law, that's why.
http://react-components.buildo.io/#cookiebanner
MIT License
182 stars 19 forks source link

Message prop prop-types configuration. #60

Open Huespal opened 5 years ago

Huespal commented 5 years ago

Proptypes complains about sending a message prop to component different than string.

Warning: Failed prop type: Invalid prop 'message' of type 'object' supplied to 'CookieBanner', expected 'string'. in CookieBanner

I'm sending a span with html to allow links (also styled text) to the message prop. It works but proptypes complains with previous annoying warning. This is my message:

<span dangerouslySetInnerHTML={{ __html: '<a href="https://www.google.com">Link!</a>' }} />

Can the component be updated to allow multiple prop types for message prop, not only strings?

Thank you.