feat: Invoice mail receipt preview

This commit is contained in:
Ahmed Bouhuolia
2024-10-21 15:42:12 +02:00
parent ccbb399685
commit dffd818396
7 changed files with 460 additions and 7 deletions

View File

@@ -0,0 +1,23 @@
import { InvoicePaymentPage, PaymentPageProps } from './PaymentPage';
interface InvoicePaymentPagePreviewProps extends Partial<PaymentPageProps> { }
export function InvoicePaymentPagePreview(
props: InvoicePaymentPagePreviewProps,
) {
return (
<InvoicePaymentPage
paidAmount={'$1,000.00'}
dueDate={'20 Sep 2024'}
total={'$1,000.00'}
subtotal={'$1,000.00'}
dueAmount={'$1,000.00'}
customerName={'Ahmed Bouhuolia'}
organizationName={'Bigcapital Technology, Inc.'}
invoiceNumber={'INV-000001'}
companyLogoUri={' '}
organizationAddress={' '}
{...props}
/>
);
}