Files
ppc_amnet/aimenet-web/components/loading-indicator.tsx
T

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