Spaces:
Sleeping
Sleeping
File size: 336 Bytes
3e1deef | 1 2 3 4 5 6 7 8 9 | 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>
)
}
|