mirror of
https://gitea.tendokyu.moe/ppc/amnet.git
synced 2026-09-26 08:08:05 +03:00
11 lines
334 B
TypeScript
11 lines
334 B
TypeScript
import {Loader} from "lucide-react";
|
|
import React from "react";
|
|
|
|
export function LoadingIndicator() {
|
|
return (
|
|
<div className="flex flex-grow gap-2 justify-center items-center text-gray-500 py-5">
|
|
<Loader className="h-8 w-8"/>
|
|
<span className="text-center">Loading...</span>
|
|
</div>
|
|
);
|
|
} |