UNPKG

materialuiupgraded

Version:

Material-UI's workspace package

62 lines (56 loc) 1.65 kB
import React from 'react'; import PropTypes from 'prop-types'; import compose from 'recompose/compose'; import { withStyles } from '@material-ui/core/styles'; import Paper from '@material-ui/core/Paper'; import Hidden from '@material-ui/core/Hidden'; import withWidth from '@material-ui/core/withWidth'; import Typography from '@material-ui/core/Typography'; const styles = theme => ({ root: { flexGrow: 1, }, container: { display: 'flex', }, paper: { padding: theme.spacing.unit * 2, textAlign: 'center', color: theme.palette.text.secondary, flex: '1 0 auto', margin: theme.spacing.unit, }, }); function BreakpointDown(props) { const { classes } = props; return ( <div className={classes.root}> <Typography variant="subtitle1">Current width: {props.width}</Typography> <div className={classes.container}> <Hidden xsDown> <Paper className={classes.paper}>xsDown</Paper> </Hidden> <Hidden smDown> <Paper className={classes.paper}>smDown</Paper> </Hidden> <Hidden mdDown> <Paper className={classes.paper}>mdDown</Paper> </Hidden> <Hidden lgDown> <Paper className={classes.paper}>lgDown</Paper> </Hidden> <Hidden xlDown> <Paper className={classes.paper}>xlDown</Paper> </Hidden> </div> </div> ); } BreakpointDown.propTypes = { classes: PropTypes.object.isRequired, width: PropTypes.string.isRequired, }; export default compose( withStyles(styles), withWidth(), )(BreakpointDown);