import { FC } from 'react'; import { Backdrop, Stack } from '@mui/material'; import styles from './index.module.css'; export const FullPageLoader: FC<{ loading: boolean; color?: string; background?: string; label?: string; labelStyle?: React.CSSProperties; }> = ({ loading, color = '#25b09b', background = 'rgba(0, 0, 0, 0.5)', label, labelStyle }) => (
{label && ( {label} )}
);