mirror of https://github.com/usememos/memos.git
14 lines
377 B
TypeScript
14 lines
377 B
TypeScript
import { LoaderIcon } from "lucide-react";
|
|
|
|
function Loading() {
|
|
return (
|
|
<div className="fixed w-full h-full flex flex-row justify-center items-center">
|
|
<div className="w-80 max-w-full h-full py-4 flex flex-col justify-center items-center">
|
|
<LoaderIcon className="animate-spin dark:text-gray-200" />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Loading;
|