Spaces:
Running
Running
File size: 243 Bytes
b0223ae |
1 2 3 4 5 6 7 |
export default function LoadingSpinner() {
return (
<div className="flex items-center justify-center p-10">
<div className="h-10 w-10 animate-spin rounded-full border-4 border-blue-500 border-t-transparent"></div>
</div>
);
} |