@material-ui/core
Version:
React components that implement Google's Material Design.
78 lines (68 loc) • 1.98 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
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
} = props,
other = _objectWithoutProperties(props, ["children", "classes", "className", "disableGutters", "variant"]);
const className = classNames(classes.root, classes[variant], {
[classes.gutters]: !disableGutters
}, classNameProp);
return React.createElement("div", _extends({
className: className
}, other), children);
}
Toolbar.propTypes = process.env.NODE_ENV !== "production" ? {
/**
* 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);