change color react icon
// Use IconContext as mentioned in the Docs.
// https://github.com/react-icons/react-icons#configuration
function BlueLargeIcon() {
return (
<IconContext.Provider
value={{ color: 'blue', size: '50px' }}
>
<div>
<FaBeer />
</div>
</IconContext.Provider>
);
}