import * as React from "react"; import Box from "@mui/material/Box"; import Typography from "@mui/material/Typography"; import LinearProgress, { LinearProgressProps, } from "@mui/material/LinearProgress"; export default function LinearProgressWithLabel( props: LinearProgressProps & { value: number } ) { return ( {`${Math.round( props.value )}%`} ); }