mirror of
https://github.com/xCyanGrizzly/DragonsStash.git
synced 2026-05-10 22:01:16 +00:00
10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import { Flame } from "lucide-react";
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center">
|
|
<Flame className="h-8 w-8 animate-pulse text-primary" />
|
|
</div>
|
|
);
|
|
}
|