import PropTypes from 'prop-types'; // material-ui import { Box, CircularProgress, Typography, circularProgressClasses } from '@mui/material'; // ==============================|| PROGRESS - CIRCULAR PATH ||============================== // export default function CircularWithPath({ value, size, variant, thickness, showLabel, pathColor, sx, ...others }) { return ( {showLabel && ( {value ? `${Math.round(value)}%` : '0%'} )} ); } CircularWithPath.propTypes = { value: PropTypes.number, size: PropTypes.number, variant: PropTypes.string, thickness: PropTypes.number, showLabel: PropTypes.bool, pathColor: PropTypes.string, sx: PropTypes.array, others: PropTypes.array };