UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

100 lines (92 loc) 2.99 kB
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; import _extends from "@babel/runtime/helpers/esm/extends"; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; import withStyles from '../styles/withStyles'; import Paper from '../Paper'; import { emphasize } from '../styles/colorManipulator'; export const styles = theme => { const emphasis = theme.palette.type === 'light' ? 0.8 : 0.98; const backgroundColor = emphasize(theme.palette.background.default, emphasis); return { /* Styles applied to the root element. */ root: _extends({}, theme.typography.body2, { color: theme.palette.getContrastText(backgroundColor), backgroundColor, display: 'flex', alignItems: 'center', flexWrap: 'wrap', padding: '6px 16px', borderRadius: theme.shape.borderRadius, flexGrow: 1, [theme.breakpoints.up('sm')]: { flexGrow: 'initial', minWidth: 288 } }), /* Styles applied to the message wrapper element. */ message: { padding: '8px 0' }, /* Styles applied to the action wrapper element if `action` is provided. */ action: { display: 'flex', alignItems: 'center', marginLeft: 'auto', paddingLeft: 16, marginRight: -8 } }; }; const SnackbarContent = /*#__PURE__*/React.forwardRef(function SnackbarContent(props, ref) { const { action, classes, className, message, role = 'alert' } = props, other = _objectWithoutPropertiesLoose(props, ["action", "classes", "className", "message", "role"]); return /*#__PURE__*/React.createElement(Paper, _extends({ role: role, square: true, elevation: 6, className: clsx(classes.root, className), ref: ref }, other), /*#__PURE__*/React.createElement("div", { className: classes.message }, message), action ? /*#__PURE__*/React.createElement("div", { className: classes.action }, action) : null); }); process.env.NODE_ENV !== "production" ? SnackbarContent.propTypes = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the d.ts file and run "yarn proptypes" | // ---------------------------------------------------------------------- /** * The action to display. It renders after the message, at the end of the snackbar. */ action: PropTypes.node, /** * Override or extend the styles applied to the component. * See [CSS API](#css) below for more details. */ classes: PropTypes.object, /** * @ignore */ className: PropTypes.string, /** * The message to display. */ message: PropTypes.node, /** * The ARIA role attribute of the element. */ role: PropTypes.string } : void 0; export default withStyles(styles, { name: 'MuiSnackbarContent' })(SnackbarContent);