import { Trans } from '@lingui/react/macro';
import { Section, Text } from '../components';
import { TemplateDocumentImage } from './template-document-image';
export type TemplateVerificationCodeProps = {
verificationCode: string;
assetBaseUrl: string;
};
export const TemplateVerificationCode = ({
verificationCode,
assetBaseUrl,
}: TemplateVerificationCodeProps) => {
return (
<>
Your verification code
Please use the code below to verify your identity for document signing.
{verificationCode}
If you did not request this code, you can ignore this email. The code will expire after
10 minutes.
>
);
};
export default TemplateVerificationCode;