import { Button, Img, Section, Tailwind, Text } from '@react-email/components'; import * as config from '@documenso/tailwind-config'; export interface TemplateDocumentSelfSignedProps { downloadLink: string; documentName: string; assetBaseUrl: string; } export const TemplateDocumentSelfSigned = ({ downloadLink, documentName, assetBaseUrl, }: TemplateDocumentSelfSignedProps) => { const getAssetUrl = (path: string) => { return new URL(path, assetBaseUrl).toString(); }; return (
Documenso
Completed You have signed “{documentName}” Check out our plans to access the full suite of features.
); }; export default TemplateDocumentSelfSigned;