import React from "react"; import { Body, Head, Html, Preview, Tailwind } from "@react-email/components"; import { themeColors } from "./lib/theme"; import { EmailContainer, EmailFooter, EmailGreeting, EmailHeading, EmailLetterHead, EmailSignature, EmailText } from "./components/Email"; interface Props { email: string; } export const ConfirmPasswordReset = ({ email }: Props) => { const previewText = `Your password has been successfully reset.`; return ( {previewText} {/* Password Successfully Reset */} Hi there, Your password has been successfully reset. You can now sign in to your account using your new password. If you didn't make this change, please contact our support team immediately to secure your account. ); }; export default ConfirmPasswordReset;