import { Box, CircularProgress, Typography, circularProgressClasses } from '@mui/material'; type CircularWithPathProps = { value: number; size: number; variant: 'determinate' | 'indeterminate'; thickness: number; showLabel: boolean; pathColor: string; sx: any; others: any; }; function CircularWithPath({ value, size, variant, thickness, showLabel, pathColor, sx, ...others }: CircularWithPathProps) { return ( {showLabel ? ( {value ? `${Math.round(value)}%` : '0%'} ) : null} ); } export { CircularWithPath }; export type { CircularWithPathProps };