Fill-the-Frames / frontend /src /components /common /loading-state.tsx
Monaljain's picture
renamed satellite-interpolation-app to frontend
86f4c12
Raw
History Blame Contribute Delete
382 Bytes
import { Loader2 } from 'lucide-react';
export function LoadingState({ message = 'Loading...' }: { message?: string }) {
return (
<div className="flex flex-col items-center justify-center p-12 min-h-[400px]">
<Loader2 className="h-8 w-8 animate-spin text-primary mb-4" />
<p className="text-sm text-muted-foreground animate-pulse">{message}</p>
</div>
);
}