import React from 'react'; import { Box, CircularProgress, Typography } from '@mui/material'; export const Loading: React.FC<{ value?: number }> = ({ value }) => { return ( value ? ( {`${Math.round(value)}%`} ) : (
) ) }