how to resize react icons

Solutions on MaxInterview for how to resize react icons by the best coders in the world

showing results for - "how to resize react icons"
Fabian
13 May 2019
1// If you want a 5x icon size you need to pass it to the react class as size
2// Font awesome pixel sizes relative to the multiplier. 
3// 1x - 14px
4// 2x - 28px
5// 3x - 42px
6// 4x - 56px
7// 5x - 70px
8
9<FaFolderOpen size={70} />
10