9 lines
309 B
TypeScript
9 lines
309 B
TypeScript
export default function LoadingSpinner() {
|
|
return (
|
|
<div className="flex flex-col items-center gap-3">
|
|
<div className="w-10 h-10 border-4 border-emerald-500/30 border-t-emerald-400 rounded-full animate-spin" />
|
|
<p className="text-slate-400 text-sm">Loading dashboard…</p>
|
|
</div>
|
|
)
|
|
}
|