Aww yeah, Material-UI v4 is here!
ToggleButton

ToggleButton API

The API documentation of the ToggleButton React component. Learn more about the properties and the CSS customization points.

import ToggleButton from '@material-ui/lab/ToggleButton';

Props

Name Type Default Description
children * node The content of the button.
classes object Override or extend the styles applied to the component. See CSS API below for more details.
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

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, 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