fix detail member
This commit is contained in:
16
src/components/loaders/LoaderTransparant.tsx
Normal file
16
src/components/loaders/LoaderTransparant.tsx
Normal file
@ -0,0 +1,16 @@
|
||||
import { toAbsoluteUrl } from '@/utils';
|
||||
|
||||
const LoaderTransparant = () => {
|
||||
return (
|
||||
<div className="flex flex-col items-center gap-2 justify-center fixed inset-0 z-50 bg-white bg-opacity-20 transition-opacity duration-700 ease-in-out">
|
||||
<img
|
||||
className="h-[30px] max-w-none"
|
||||
src={toAbsoluteUrl('/media/app/app-logo.png')}
|
||||
alt="logo"
|
||||
/>
|
||||
<div className="text-gray-500 font-medium text-sm">Loading...</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export { LoaderTransparant };
|
||||
@ -1,3 +1,4 @@
|
||||
export * from './ContentLoader';
|
||||
export * from './ProgressBarLoader';
|
||||
export * from './ScreenLoader';
|
||||
export * from './LoaderTransparant';
|
||||
|
||||
Reference in New Issue
Block a user