Files
ppc_amnet/aimenet-web/components/loading-indicator.tsx
T
2024-08-07 20:01:06 +01:00

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>
);
}