If you pass { disabled: true } to SpeedDialAction ButtonProps you get a message on the console saying:
Warning: Material-UI: you are providing a disabled `button` child to the Tooltip component.
A disabled element does not fire events.
Tooltip needs to listen to the child element's events to display the title.
Place a `div` container on top of the element.
Expected behaviour: No warning.
If you pass
{ disabled: true }toSpeedDialActionButtonPropsyou get a message on the console saying:Expected behaviour: No warning.