Skip to content

SpeedDial API

The API documentation of the SpeedDial React component. Learn more about the props and the CSS customization points.

import { SpeedDial } from '@material-ui/lab';

Props

Name Type Default Description
ariaLabel * string The aria-label of the Button element. Also used to provide the id for the SpeedDial element and its children.
ButtonProps object {} Props applied to the Button element.
children * node SpeedDialActions to display when the SpeedDial is open.
classes object Override or extend the styles applied to the component. See CSS API below for more details.
direction 'up'
| 'down'
| 'left'
| 'right'
'up' The direction the actions open relative to the floating action button.
hidden bool false If true, the SpeedDial will be hidden.
icon * element The icon to display in the SpeedDial Floating Action Button. The SpeedDialIcon component provides a default Icon with animation.
onClose func Callback fired when the component requests to be closed.

Signature:
function(event: object, key: string) => void
event: The event source of the callback
key: The key pressed
open * bool If true, the SpeedDial is open.
openIcon node The icon to display in the SpeedDial Floating Action Button when the SpeedDial is open.
TransitionComponent elementType Zoom The component used for the transition.
transitionDuration number
| { enter?: number, exit?: number }
{ enter: duration.enteringScreen, exit: duration.leavingScreen,} The duration for the transition, in milliseconds. You may specify a single timeout for all transitions, or individually with an object.
TransitionProps object Props applied to the Transition element.

The component cannot hold a ref.

Any other props supplied will be provided to the root element (native element).

CSS

  • Style sheet name: MuiSpeedDial.
  • Style sheet details:
Rule name Global class Description
root MuiSpeedDial-root Styles applied to the root element.
fab MuiSpeedDial-fab Styles applied to the Button component.
directionUp MuiSpeedDial-directionUp Styles applied to the root and action container elements when direction="up"
directionDown MuiSpeedDial-directionDown Styles applied to the root and action container elements when direction="down"
directionLeft MuiSpeedDial-directionLeft Styles applied to the root and action container elements when direction="left"
directionRight MuiSpeedDial-directionRight Styles applied to the root and action container elements when direction="right"
actions MuiSpeedDial-actions Styles applied to the actions (children wrapper) element.
actionsClosed MuiSpeedDial-actionsClosed Styles applied to the actions (children wrapper) element if open={false}.

You can override the style of the component thanks to one of these customization points:

If that's not sufficient, you can check the implementation of the component for more detail.

Notes

The component can cause issues in StrictMode.

Demos