openreader/src/components/Spinner.tsx
2025-01-25 22:23:29 -07:00

8 lines
No EOL
272 B
TypeScript

// Loading spinner component
export function LoadingSpinner() {
return (
<div className="absolute inset-0 flex items-center justify-center">
<div className="animate-spin h-4 w-4 border-2 border-foreground border-t-transparent rounded-full" />
</div>
);
}