import Box from "@mui/material/Box"; import CircularProgress, { type CircularProgressProps, } from "@mui/material/CircularProgress"; import Typography from "@mui/material/Typography"; export function CircularProgressWithLabel( props: CircularProgressProps & { value: number }, ) { return ( {`${Math.round(props.value)}%`} ); }