mirror of https://github.com/usememos/memos.git
14 lines
396 B
TypeScript
14 lines
396 B
TypeScript
import Icon from "@/components/Icon";
|
|
|
|
function Loading() {
|
|
return (
|
|
<div className="flex flex-row justify-center items-center w-full h-full bg-zinc-100 dark:bg-zinc-800">
|
|
<div className="w-80 max-w-full h-full py-4 flex flex-col justify-center items-center">
|
|
<Icon.Loader className="animate-spin dark:text-gray-200" />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Loading;
|