mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-03 11:27:47 -05:00
10 lines
274 B
TypeScript
10 lines
274 B
TypeScript
import React from "react";
|
|
|
|
export default function LoadingSpinner() {
|
|
return (
|
|
<div className="flex items-center justify-center min-h-screen ">
|
|
<div className="w-12 h-12 border-4 border-gray-300 border-t-gray-800 rounded-full animate-spin" />
|
|
</div>
|
|
);
|
|
}
|