mirror of
https://github.com/Noooste/garage-ui.git
synced 2026-08-08 12:53:13 +00:00
61dae6c605
Signed-off-by: Noste <83548733+Noooste@users.noreply.github.com>
13 lines
380 B
TypeScript
13 lines
380 B
TypeScript
import { Loader2 } from 'lucide-react';
|
|
|
|
export function LoadingSpinner() {
|
|
return (
|
|
<div className="flex h-screen w-full items-center justify-center">
|
|
<div className="flex flex-col items-center gap-4">
|
|
<Loader2 className="h-8 w-8 animate-spin text-primary" />
|
|
<p className="text-sm text-muted-foreground">Loading...</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|