1
0
Fork 0
mirror of https://github.com/skidoodle/albert.lol.git synced 2025-02-15 06:09:15 +01:00
albert.lol/components/Loading.tsx
2022-08-14 18:50:46 +02:00

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>
)
}