TheScopeBackend / frontend /src /components /common /LoadingSpinner.jsx
Vedant Jigarbhai Mehta
TheScope - Political Discourse Analysis Dashboard
3e1deef
Raw
History Blame Contribute Delete
336 Bytes
export default function LoadingSpinner({ message = 'Loading...' }) {
return (
<div className="flex flex-col items-center justify-center py-12">
<div className="w-8 h-8 border-4 border-blue-200 border-t-blue-600 rounded-full animate-spin"></div>
<p className="text-sm text-gray-500 mt-3">{message}</p>
</div>
)
}