我试过了
<Navbar.Collapse>
<Nav>
<NavItem eventKey={1} href="#">
<i className="material-icons">face</i>Home
</NavItem>
</Nav>
</Navbar.Collapse>但不起作用。使用以下链接<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">链接了来自public/index.html的字体cdn
发布于 2017-05-05 13:00:47
您可以使用以下包。
https://www.npmjs.com/package/react-google-material-icons
如下所示使用它。
import MaterialIcon from 'react-google-material-icons'
<MaterialIcon icon="account_box" size={36}/>https://stackoverflow.com/questions/41234897
复制相似问题