I am currently working with Material UI's tooltip and I can't seem to figure out how to make the tooltip's background completely transparent. By default there is a grey background with white text. Changing the Tooltips background color changes the child element's background color since the Tooltip is the parent element in this context.
I've tried this
<Tooltip title="Add" classes={{
tooltip: "backgroundColor: transparent"
}} aria-label="add">
<Fab color="transparent" className={classes.fab}>
<AddIcon />
</Fab>
</Tooltip>
And this:
<Tooltip title="Add" style={{backgroundColor: "transparent"}} aria-label="add">
<Fab color="transparent" className={classes.fab}>
<AddIcon />
</Fab>
</Tooltip>
My objective is to have no background on hover of the tooltip. I just want to see the text.