import React from 'react'; import { Spinner, Flex, Box, SpinnerProps } from '@chakra-ui/react'; const Loading = ({ fixed = true, text = '', bg = 'rgba(255,255,255,0.5)', zIndex = 1000, size = 'lg' }: { fixed?: boolean; text?: string; bg?: string; zIndex?: number; size?: SpinnerProps['size']; }) => { return ( {text && ( {text} )} ); }; export default Loading;