I'm using material-ui in my react web application. I need the icon 'action/description' in a component but in the outline version.
According to the docs:
For convenience, the full set of google Material icons are available in Material-UI as pre-built SVG Icon components.
So I can do this to get the "filled" version:
import ActionDescription from 'material-ui/svg-icons/action/description'
<div className="number">
<ActionDescription />
</div>
But how do I get the "outline" version? I tried playing with css but didn't succeed:
<div>
<ActionDescription style={{black: "black"}} color="transparent" />
</div>