Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

reactJS Material UI Font Icon set size

is there a way to make the font icon smaller in size?

I have tried the code below but it doesn't seem to work.

<FontIcon className='fa fa-quote-left' style={{ fontSize: '50px' }} />
like image 517
dczii Avatar asked Mar 29 '16 03:03

dczii


1 Answers

Try to use material icons font:

<FontIcon className="material-icons" style={{fontSize: '32px'}}>home</FontIcon>
like image 99
JFAP Avatar answered Oct 14 '22 14:10

JFAP