import PropTypes from 'prop-types'; // material-ui import { Box, LinearProgress, Typography } from '@mui/material'; // ==============================|| PROGRESS - LINEAR WITH LABEL ||============================== // export default function LinearWithLabel({ value, ...others }) { return ( {`${Math.round(value)}%`} ); } LinearWithLabel.propTypes = { value: PropTypes.number };