import React from 'react'; import Image from 'next/image'; type Mode = 'light' | 'dark'; interface Props { mode: Mode; } const EmailForm: React.FC = ({ mode }) => { return (
EmailSentIcon

Check your email

We have sent a password reset link to johndoe@gmail.com

Didn't receive the email? Resend
); }; export default EmailForm;