import { msg } from '@lingui/core/macro'; import { useLingui } from '@lingui/react'; import { Trans } from '@lingui/react/macro'; import { Body, Container, Head, Hr, Html, Preview, Section, Text } from '../components'; import { TemplateBrandingLogo } from '../template-components/template-branding-logo'; import type { TemplateDocumentCancelProps } from '../template-components/template-document-cancel'; import TemplateDocumentImage from '../template-components/template-document-image'; import { TemplateFooter } from '../template-components/template-footer'; export type DocumentCancelEmailTemplateProps = Partial; export const RecipientRemovedFromDocumentTemplate = ({ inviterName = 'Lucas Smith', documentName = 'Open Source Pledge.pdf', assetBaseUrl = 'http://localhost:3002', }: DocumentCancelEmailTemplateProps) => { const { _ } = useLingui(); const previewText = msg`${inviterName} has removed you from the document ${documentName}.`; return ( {_(previewText)}
{inviterName} has removed you from the document
"{documentName}"

); }; export default RecipientRemovedFromDocumentTemplate;