import React from 'react'; import { motion } from 'framer-motion'; import { Save, Copy, X } from 'lucide-react'; interface SaveOptionsModalProps { isOpen: boolean; onClose: () => void; onSaveNew: () => void; onOverwrite: () => void; isSaving?: boolean; } export const SaveOptionsModal: React.FC = ({ isOpen, onClose, onSaveNew, onOverwrite, isSaving }) => { if (!isOpen) return null; return ( e.stopPropagation()} >

Save Quiz

This quiz was loaded from your library. How would you like to save your changes?

); };