mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-06 04:48:14 -05:00
10 lines
284 B
TypeScript
10 lines
284 B
TypeScript
import React from 'react'
|
|
|
|
export default function LoadingSpinner() {
|
|
return (
|
|
<div className="flex justify-center min-h-screen py-8">
|
|
<div data-testid="spinner" className="animate-spin rounded-full h-12 w-12 border-t-2 border-b-2 border-blue-500"></div>
|
|
</div>
|
|
)
|
|
}
|