import * as React from "react"; import CircularProgress from "@mui/material/CircularProgress"; import Typography from "@mui/material/Typography"; import Box from "@mui/material/Box"; export default function OverviewVisual(props) { const { value, color, label } = props; return ( {`${Math.round(value)}%`} {label} ); }