mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
12 lines
489 B
JavaScript
12 lines
489 B
JavaScript
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
import { faSpinner } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
export default function LoadingCover () {
|
|
return (<div id="loading-cover" className={'bg-white dark:bg-gray-800 dark:text-white text-black animate__animated animate__fadeIn flex-grow flex flex-col justify-center z-10 w-full h-screen container mx-auto'}>
|
|
<div className="mx-auto">
|
|
<FontAwesomeIcon icon={faSpinner} spin size='2x'/>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|