import React from 'react'; import { Box, CircularProgress, Modal, Stack, Typography, SxProps } from '@mui/material'; import { modalStyle } from './SimpleModal'; export const LoadingModal: FCWithChildren<{ text?: string; sx?: SxProps; backdropProps?: object; }> = ({ sx, text = 'Please wait...' }) => ( {text} );