SpeedDialIcon

SpeedDialIcon

The API documentation of the SpeedDialIcon React component.

Props

Name Type Default Description
classes object Useful to extend the style applied to components.
icon node The icon to display in the SpeedDial Floating Action Button.
openIcon node The icon to display in the SpeedDial Floating Action Button when the SpeedDial is open.

Any other properties supplied will be spread to the root element (native element).

CSS API

You can override all the class names injected by Material-UI thanks to the classes property. This property accepts the following keys:

Name Description
root Styles applied to the root element.
icon Styles applied to the icon component.
iconOpen Styles applied to the icon component if open={true}.
iconWithOpenIconOpen Styles applied to the icon when and openIcon is provided & if open={true}.
openIcon Styles applied to the openIcon if provided.
openIconOpen Styles applied to the openIcon if provided & if open={true}

Have a look at overriding with classes section and the implementation of the component for more detail.

If using the overrides key of the theme as documented here, you need to use the following style sheet name: MuiSpeedDialIcon.

Demos