Toolbar API
The API documentation of the Toolbar React component. Learn more about the properties and the CSS customization points.
import Toolbar from '@material-ui/core/Toolbar';
Props
Name | Type | Default | Description |
---|---|---|---|
children | node | Toolbar children, usually a mixture of IconButton , Button and Typography . |
|
classes | object | Override or extend the styles applied to the component. See CSS API below for more details. | |
disableGutters | bool | false | If true , disables gutter padding. |
variant | enum: 'regular' | 'dense' |
'regular' | The variant to use. |
Any other properties supplied will be spread to the root element (native element).
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. |
gutters | Styles applied to the root element if disableGutters={false} . |
regular | Styles applied to the root element if variant="regular" . |
dense | Styles applied to the root element if variant="dense" . |
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: MuiToolbar
.