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