How can I override a material-ui private style?
I want to change the font color of the slider valueLabel.
In othe words, I want this:

Until now, I have tried to override the style globally but it isn't working:
const muiThemeOptions: MuiThemeOptions = {
overrides:{
MuiSlider:{
valueLabel:{
label:{
color: "black"
}
}
}
}
};
Apparently is the valueLabel label style private. Is there a way to override private styles?
Here is a codesandbox for that: https://codesandbox.io/s/so-slider-label-kpp00?file=/demo.tsx
