d13100ebf3
Update draft releases / main (push) Has been cancelled
Build and push docs image / build-image (push) Has been cancelled
Build Web Application / build-web (macos-latest) (push) Has been cancelled
Build Web Application / build-web (ubuntu-latest) (push) Has been cancelled
Python Code Quality Checks / build (push) Has been cancelled
Test Python / test-python (macos-latest, 3.10) (push) Has been cancelled
Test Python / test-python (macos-latest, 3.11) (push) Has been cancelled
Test Python / test-python (ubuntu-latest, 3.10) (push) Has been cancelled
Test Python / test-python (ubuntu-latest, 3.11) (push) Has been cancelled
14 lines
436 B
TypeScript
14 lines
436 B
TypeScript
import { LoadingOutlined } from '@ant-design/icons';
|
|
|
|
function MuiLoading({ visible }: { visible: boolean }) {
|
|
if (!visible) return null;
|
|
|
|
return (
|
|
<div className='absolute w-full h-full top-0 left-0 flex justify-center items-center z-10 bg-white dark:bg-black bg-opacity-50 dark:bg-opacity-50 backdrop-blur-sm text-3xl animate-fade animate-duration-200'>
|
|
<LoadingOutlined />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default MuiLoading;
|