有没有办法使字体图标变小?

我已经尝试了下面的代码,但它似乎无法正常工作。

<FontIcon className='fa fa-quote-left' style={{ fontSize: '50px' }} />

最佳答案

尝试使用材质图标字体:

<FontIcon className="material-icons" style={{fontSize: '32px'}}>home</FontIcon>

08-19 15:02