import { styled } from '@/styles'; import Loading from './loading'; // Used for the full page loading const StyledLoadingContainer = styled('div')(() => { return { height: '100vh', display: 'flex', justifyContent: 'center', alignItems: 'center', color: '#6880FF', h1: { fontSize: '2em', marginTop: '15px', fontWeight: '600', }, }; }); export const PageLoading = ({ text = 'Loading...' }: { text?: string }) => { return (

{text}

); }; export default PageLoading;