import { CheckCircle, RotateCcw, Sparkles } from 'lucide-react'; import { showLoginPopup } from '../../lib/popup'; type QuestionsProgressProps = { showLoginAlert?: boolean; }; export function QuestionsProgress(props: QuestionsProgressProps) { const { showLoginAlert } = props; return (
5 / 100
Already knew 44 Questions Didn't Know 20 Questions
{showLoginAlert && (

You progress is not saved. Please{' '}

)}
); }