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 (
<>
Your document has been deleted by an admin!
"{documentName}" has been deleted by an admin.
This document can not be recovered, if you would like to dispute the reason for future
documents please contact support.
The reason provided for deletion is the following:
{reason}
>
);
};
export default TemplateDocumentDelete;