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