mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
8 lines
342 B
JavaScript
8 lines
342 B
JavaScript
export default function LoadingCover() {
|
|
return <div id='cover-loading' className={'z-50 opacity-50pointer-events-none transition-all duration-300'}>
|
|
<div className='w-full h-screen flex justify-center items-center'>
|
|
<i className="fa-solid fa-spinner text-2xl text-black dark:text-white animate-spin"> </i>
|
|
</div>
|
|
</div>
|
|
}
|