import { Section, Text } from '../components'; import { TemplateDocumentImage } from './template-document-image'; export interface TemplateDocumentDeleteProps { reason: string; documentName: string; assetBaseUrl: string; } export const TemplateDocumentDelete = ({ reason, documentName, assetBaseUrl, }: TemplateDocumentDeleteProps) => { return ( <>
This document can not be recovered, if you would like to dispute the reason for future documents please contact support.
"{documentName}"
Reason
"{reason}"
); }; export default TemplateDocumentDelete;