File size: 335 Bytes
a247911
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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>
  );
}