RTOPP / frontend /src /components /LoadingState.tsx
vinay-pepakayala's picture
Upload 84 files
a247911 verified
Raw
History Blame Contribute Delete
335 Bytes
import { Box, CircularProgress, Typography } from '@mui/material';
export function LoadingState({ label = 'Loading...' }: { label?: string }) {
return (
<Box sx={{ py: 8, display: 'grid', placeItems: 'center', gap: 2 }}>
<CircularProgress />
<Typography color="text.secondary">{label}</Typography>
</Box>
);
}