import { LinearProgressProps, Box, LinearProgress, Typography } from '@mui/material'; import React from 'react'; // The following code has been taken from the mui example // Thanks for that mui export type LinearProgressWithLabelProps = LinearProgressProps & { value: number }; const LinearProgressWithLabel: React.FC = (props) => { return ( {`${Math.round( props.value, )}%`} ); }; export default LinearProgressWithLabel;