import { Column, Img, Row, Section, Tailwind, Text } from '@react-email/components'; import * as config from '@documenso/tailwind-config'; export interface TemplateDocumentPendingProps { documentName: string; assetBaseUrl: string; } export const TemplateDocumentPending = ({ documentName, assetBaseUrl, }: TemplateDocumentPendingProps) => { const getAssetUrl = (path: string) => { return new URL(path, assetBaseUrl).toString(); }; return (
Documenso
Waiting for others “{documentName}” has been signed We're still waiting for other signers to sign this document.
We'll notify you as soon as it's ready.
); }; export default TemplateDocumentPending;