import React from 'react'; import PropTypes from 'prop-types'; import Type from 'ba-styles/Typography.scss'; import Check from '@material-ui/icons/Check'; import { withStyles } from '@material-ui/core/styles'; import { LinearProgress, Paper, Typography, Grid, Avatar, Chip } from '@material-ui/core'; import styles from './widget-jss'; function ProgressWidget(props) { const { classes } = props; return ( Profile Strength: Intermediate )} label="60% Progress" className={classes.chipProgress} color="primary" /> ); } ProgressWidget.propTypes = { classes: PropTypes.object.isRequired, }; export default withStyles(styles)(ProgressWidget);