返回 presentation-ai
PresentingLoadingOverlay.tsx
根目录 / src / components / presentation / shared / PresentingLoadingOverlay.tsx
1 "use client";
2
3 import { Loader2 } from "lucide-react";
4
5 import { ThemeBackground } from "@/components/notebook/presentation/components/theme/ThemeBackground";
6
7 export function PresentingLoadingOverlay() {
8 return (
9 <ThemeBackground className="fixed inset-0 z-999999 flex items-center justify-center">
10 <div className="flex flex-col items-center gap-3 px-6 py-4">
11 <Loader2 className="size-8 animate-spin text-primary" />
12 </div>
13 </ThemeBackground>
14 );
15 }
16
16 lines Plain Text