UNPKG

materialuiupgraded

Version:

Material-UI's workspace package

40 lines (35 loc) 908 B
import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { withStyles } from '@material-ui/core/styles'; import Avatar from '@material-ui/core/Avatar'; const styles = { row: { display: 'flex', justifyContent: 'center', }, avatar: { margin: 10, }, bigAvatar: { width: 60, height: 60, }, }; function ImageAvatars(props) { const { classes } = props; return ( <div className={classes.row}> <Avatar alt="Remy Sharp" src="/static/images/remy.jpg" className={classes.avatar} /> <Avatar alt="Adelle Charles" src="/static/images/uxceo-128.jpg" className={classNames(classes.avatar, classes.bigAvatar)} /> </div> ); } ImageAvatars.propTypes = { classes: PropTypes.object.isRequired, }; export default withStyles(styles)(ImageAvatars);