import { Loader2 } from "lucide-react"; import { cn } from "@/lib/utils"; interface AuthLoadingStateProps { className?: string; } export function AuthLoadingState({ className }: AuthLoadingStateProps) { return (
Checking account status
); }