12 lines
360 B
TypeScript
12 lines
360 B
TypeScript
import React from 'react';
|
|
|
|
const Loading = () => {
|
|
return (
|
|
<div className="screen_loader animate__animated fixed inset-0 z-[60] grid place-content-center bg-[#fafafa] dark:bg-[#060818]">
|
|
<img className="inline w-20 ltr:-ml-1 rtl:-mr-1" src="/assets/images/logo-tca.png" alt="logo" />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Loading;
|