Files
cozsweet-frontend-nextjs/src/app/splash/components/splash-loading.tsx
T

13 lines
358 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* Splash 加载状态
*
* 原始 Dart: lib/ui/splash/widgets/splash_loading.dart
*
* 包装 `<LoadingIndicator>`splash 阶段可能用于等待 auth 检查。
*/
import { LoadingIndicator } from "@/app/_components/core/loading-indicator";
export function SplashLoading() {
return <LoadingIndicator size={48} color="var(--color-accent)" />;
}