12 lines
482 B
TypeScript
12 lines
482 B
TypeScript
|
export const BadgeLoadingModal = () => {
|
||
|
return (
|
||
|
<div
|
||
|
className="flex overflow-hidden fixed top-0 right-0 bottom-0 left-0 z-50 flex-col justify-center items-center w-full h-screen bg-gray-900 opacity-80"
|
||
|
style={{ margin: 0 }}
|
||
|
>
|
||
|
<img alt="Pixel Logo" className="mb-5 w-[50px] h-[50px] animate-spin" src="/icon.svg" />
|
||
|
<p className="w-1/3 font-bold text-center text-white">Uploading the image for badge creation, please wait...</p>
|
||
|
</div>
|
||
|
)
|
||
|
}
|