简体   繁体   中英

material-ui icon changing the styles of inner elements

I'm using react with material-ui and I want to be able to change the styles of inner elements in components. For example: the ListItem component has primaryText, leftIcon and such, and I want to change the style of the primaryText or the leftIcon and to play with the margins for example.

How do I do that?

use inline style:

<ListItem
    style={{color: "#f7ca18"}}
    primaryText="Hello"
    leftIcon={<ActionGrade color={"#f7ca18"} />}
/>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM