import React from 'react'; import { Spinner, Flex, Box } from '@chakra-ui/react'; const Loading = ({ fixed = true, text = '' }: { fixed?: boolean; text?: string }) => { return ( {text && ( {text} )} ); }; export default Loading;