import { Box, CircularProgress, Typography } from '@mui/material'; type CircularWithLabelProps = { value: number; }; function CircularWithLabel({ value, ...others }: CircularWithLabelProps) { return ( {`${Math.round(value)}%`} ); } export { CircularWithLabel }; export type { CircularWithLabelProps };