mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-02 19:08:28 -05:00
12 lines
289 B
TypeScript
12 lines
289 B
TypeScript
'use client';
|
|
|
|
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>
|
|
);
|
|
}
|