mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 15:09:25 +00:00
12 lines
389 B
JavaScript
12 lines
389 B
JavaScript
/**
|
|
* 加载过程的遮罩
|
|
* @returns
|
|
*/
|
|
export default function LoadingCover () {
|
|
return <div id='cover-loading' className={'z-50 opacity-50 pointer-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>
|
|
}
|