2025-06-24 19:20:24 +00:00
|
|
|
export const LoadingSpinner = () => {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex items-center justify-center min-h-screen">
|
2025-07-14 11:05:44 +00:00
|
|
|
<img
|
|
|
|
|
src="/icon.jpg"
|
|
|
|
|
alt="Loading..."
|
2025-06-24 19:20:24 +00:00
|
|
|
role="status"
|
2025-07-14 11:05:44 +00:00
|
|
|
className="animate-spin rounded-full h-16 w-16 object-cover"
|
2025-06-24 19:20:24 +00:00
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|