feat: estimate mail receipt

This commit is contained in:
Ahmed Bouhuolia
2024-11-19 22:46:58 +02:00
parent c6db54175f
commit 3e591beb03
7 changed files with 268 additions and 15 deletions

View File

@@ -41,36 +41,36 @@ export interface InvoiceMailReceiptProps extends StackProps {
}
export function InvoiceMailReceipt({
// Company
// # Company
companyName,
companyLogoUri,
// # Colors
primaryColor = 'rgb(0, 82, 204)',
// Due date
// # Due date
dueDate,
dueDateLabel = 'Due',
// Due amount
// # Due amount
dueAmountLabel = 'Due Amount',
dueAmount,
// Total
// # Total
total,
totalLabel = 'Total',
// Invoice number
// # Invoice number
invoiceNumber,
invoiceNumberLabel = 'Invoice #',
// Invoice message
// # Invoice message
message,
// Invoice items
// # Invoice items
items,
// View invoice button
// # View invoice button
showViewInvoiceButton = true,
viewInvoiceButtonLabel = 'View Invoice',
viewInvoiceButtonOnClick,