mirror of
https://github.com/skidoodle/albert.lol.git
synced 2025-02-15 06:09:15 +01:00
7 lines
No EOL
351 B
TypeScript
7 lines
No EOL
351 B
TypeScript
export const Loading = () => {
|
|
return(
|
|
<div className='fixed h-[85vh] w-screen flex justify-center items-center'>
|
|
<div className='animate-spin w-16 h-16 border-4 border-t-transparent border-l-transparent border-r-black border-b-black dark:border-r-white dark:border-b-white rounded-full' role='status' />
|
|
</div>
|
|
)
|
|
} |