Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 | 48x | // Loading spinner component
export function LoadingSpinner() {
return (
<output
aria-label="Loading"
className="min-h-screen flex items-center justify-center bg-background-subtle"
>
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600" />
</output>
);
}
|