import { Trans } from '@lingui/macro'; import { Container, Heading, Section, Text } from '../components'; interface TemplateDocumentRejectionConfirmedProps { recipientName: string; documentName: string; documentOwnerName: string; reason?: string; } export function TemplateDocumentRejectionConfirmed({ recipientName, documentName, documentOwnerName, reason, }: TemplateDocumentRejectionConfirmedProps) { return (
Rejection Confirmed This email confirms that you have rejected the document{' '} "{documentName}" sent by {documentOwnerName}. {reason && ( Rejection reason: {reason} )} The document owner has been notified of this rejection. No further action is required from you at this time. The document owner may contact you with any questions regarding this rejection.
); }