import * as React from "react"; interface OTPEmailTemplateProps { OTP: string; } export const OTPEmailTemplate: React.FC> = ({ OTP }) => (

Your OTP Code

Use the following OTP to complete your verification process:

{OTP}

This OTP is valid for the next 10 minutes. Please do not share it with anyone.

If you did not request this code, please ignore this email or contact support.

© {new Date().getFullYear()} Your Company. All rights reserved.

);