1// Use IconContext as mentioned in the Docs.
2// https://github.com/react-icons/react-icons#configuration
3function BlueLargeIcon() {
4 return (
5 <IconContext.Provider
6 value={{ color: 'blue', size: '50px' }}
7 >
8 <div>
9 <FaBeer />
10 </div>
11 </IconContext.Provider>
12 );
13}
14