import React from 'react'; import clsx from 'classnames'; import { FormatNumber, T, TotalLines, TotalLine } from '../../../components'; import { useBillDrawerContext } from './BillDrawerProvider'; import BillDrawerCls from 'style/components/Drawers/BillDrawer.module.scss'; /** * Bill read-only details footer. */ export function BillDetailFooter() { const { bill } = useBillDrawerContext(); return (
} value={} className={BillDrawerCls.total_line_subtotal} /> } value={bill.formatted_amount} className={BillDrawerCls.total_line_total} /> } value={bill.formatted_payment_amount} className={BillDrawerCls.total_line_payment} /> } value={bill.formatted_due_amount} className={BillDrawerCls.total_line_dueAmount} />
); }