[InputBase] Remove dead disableUnderline property#13720
[InputBase] Remove dead disableUnderline property#13720oliviertassinari merged 2 commits intomui:masterfrom PierreCapo:master
Conversation
PierreCapo
commented
Nov 28, 2018
- I have followed (at least) the PR section of the contributing guide.
|
It looks like this class key is not used in |
|
Hello guys, sorry for not letting a note on my PR, I had to go fast. The issue I'm facing is that when i do : const styles = {
root: {
color: "white",
},
icon: {
fill: "white"
}
};
<Select
inputProps={{
classes: {
root: classes.root
icon: classes.icon
}
}}>
</Select>I got a typescript error upon With the PR I made it fixes the problem, but after reading your comments I understand that I haven't provided the good solution. Instead, it seems that there is a |
|
@PierreCapo Let me guide you through it. The class name you want to target is: The component is const styles = {
icon: {
fill: "white"
}
};
<Select classes={{ icon: classes.icon }} />I'm updating the pull request to remove the dead |
|
Thanks @oliviertassinari for your comment, I understand better how the styling works now 👍 |

