mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-16 01:01:38 +00:00
22 lines
511 B
TypeScript
22 lines
511 B
TypeScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
import loadingImage from 'public/images/img/mona-loading-default.gif';
|
|
import Image from 'next/image';
|
|
|
|
const RUALoading = () => {
|
|
return (
|
|
<div
|
|
className={classNames(
|
|
'h-[300px] flex loading',
|
|
'flex-col items-center justify-center'
|
|
)}
|
|
>
|
|
<Image width={50} height={50} src={loadingImage} alt="Loading" />
|
|
|
|
<span className="my-4">rua rua rua...</span>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default RUALoading;
|