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