maomao88's picture
add loading icon
b0223ae
raw
history blame contribute delete
243 Bytes
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>
);
}