import { Button, Column, Img, Link, Section, Tailwind, Text } from '@react-email/components'; import * as config from '@documenso/tailwind-config'; import { TemplateDocumentImage } from './template-document-image'; export interface TemplateDocumentSelfSignedProps { documentName: string; assetBaseUrl: string; } export const TemplateDocumentSelfSigned = ({ documentName, assetBaseUrl, }: TemplateDocumentSelfSignedProps) => { const getAssetUrl = (path: string) => { return new URL(path, assetBaseUrl).toString(); }; return (
Completed
You have signed “{documentName}” Create a{' '} free account {' '} to access your signed documents at any time.
); }; export default TemplateDocumentSelfSigned;