style react icons

Solutions on MaxInterview for style react icons by the best coders in the world

showing results for - "style react icons"
Emily
26 Jun 2017
1function BlueLargeIcon() {
2  return (
3    <IconContext.Provider
4      value={{ color: 'blue', size: '50px' }}
5    >
6      <div>
7        <FaBeer />
8      </div>
9    </IconContext.Provider>
10  );
11}