materialuiupgraded
Version:
Material-UI's workspace package
72 lines (64 loc) • 1.76 kB
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import withStyles from '../styles/withStyles';
export const styles = theme => ({
/* Styles applied to the root element. */
root: {
position: 'relative',
display: 'flex',
alignItems: 'center',
},
/* Styles applied to the root element if `disableGutters={false}`. */
gutters: theme.mixins.gutters(),
/* Styles applied to the root element if `variant="regular"`. */
regular: theme.mixins.toolbar,
/* Styles applied to the root element if `variant="dense"`. */
dense: {
minHeight: 48,
},
});
function Toolbar(props) {
const { children, classes, className: classNameProp, disableGutters, variant, ...other } = props;
const className = classNames(
classes.root,
classes[variant],
{
[classes.gutters]: !disableGutters,
},
classNameProp,
);
return (
<div className={className} {...other}>
{children}
</div>
);
}
Toolbar.propTypes = {
/**
* Toolbar children, usually a mixture of `IconButton`, `Button` and `Typography`.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
* See [CSS API](#css-api) below for more details.
*/
classes: PropTypes.object.isRequired,
/**
* @ignore
*/
className: PropTypes.string,
/**
* If `true`, disables gutter padding.
*/
disableGutters: PropTypes.bool,
/**
* The variant to use.
*/
variant: PropTypes.oneOf(['regular', 'dense']),
};
Toolbar.defaultProps = {
disableGutters: false,
variant: 'regular',
};
export default withStyles(styles, { name: 'MuiToolbar' })(Toolbar);