import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from '@/components/ui/dialog'; import { MFAChallenge } from './MFAChallenge'; import { Shield } from 'lucide-react'; interface MFAStepUpModalProps { open: boolean; factorId: string; onSuccess: () => void; onCancel: () => void; } export function MFAStepUpModal({ open, factorId, onSuccess, onCancel }: MFAStepUpModalProps) { return ( !isOpen && onCancel()}> e.preventDefault()}>
Additional Verification Required
Your role requires Multi-Factor Authentication. Please verify your identity to continue.
); }