summaryrefslogtreecommitdiff
path: root/src/components/LoadingIndicator/index.js
blob: 4c2c28589690d6ee17781ebe7d19eeb4a2eb3275 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Box, LinearProgress } from '@mui/material';

import styles from './styles';

function LoadingIndicator({ isLoading }) {
  const { box, linearProgress } = styles;

  if (isLoading) {
    return (
      <Box sx={box}>
        <LinearProgress sx={linearProgress} />
      </Box>
    );
  }
}

export default LoadingIndicator;