Spaces:
Sleeping
Sleeping
| 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> | |
| ) | |
| } | |