我在我的 React Web 应用程序中使用了 material-ui。我需要一个组件中的图标“操作/描述”,但在大纲版本中。
根据文档:
为方便起见,Material-UI 中提供了全套 google Material 图标作为预构建的 SVG 图标组件。
所以我可以这样做以获得“填充”版本:
import ActionDescription from 'material-ui/svg-icons/action/description'
<div className="number">
<ActionDescription />
</div>
但是我如何获得“大纲”版本?我尝试使用 css 但没有成功:
<div>
<ActionDescription style={{black: "black"}} color="transparent" />
</div>