ToggleButton

ToggleButton

The API documentation of the ToggleButton React component.

Props

Name Type Default Description
children * node The content of the button.
classes object Useful to extend the style applied to components.
disabled bool false If true, the button will be disabled.
disableFocusRipple bool false If true, the keyboard focus ripple will be disabled. disableRipple must also be true.
disableRipple bool false If true, the ripple effect will be disabled.
selected bool If true, the button will be rendered in an active state.
value * any The value to associate with the button when selected in a ToggleButtonGroup.

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

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.
disabled Styles applied to the root element if disabled={true}.
selected Styles applied to the root element if selected={true}.
label Styles applied to the label wrapper element.

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: MuiToggleButton.

Inheritance

The properties of the ButtonBase component are also available. You can take advantage of this behavior to target nested components.

Demos