| 4 | import { X, Key, Eye, EyeOff, Loader2, AlertCircle } from "lucide-react"; |
| 5 | |
| 6 | interface ChangePasswordModalProps { |
| 7 | isOpen: boolean; |
| 8 | onClose: () => void; |
| 9 | onSuccess: () => void; |
| 10 | } |
| 11 | |
| 12 | export function ChangePasswordModal({ |
| 13 | isOpen, |
nothing calls this directly
no outgoing calls
no test coverage detected