import { Box, LinearProgress, type LinearProgressProps, Typography } from '@mui/material'; export function LinearProgressWithLabel( props: LinearProgressProps & { value: number } ) { return ( {`${Math.round( props.value )}%`} ); }