mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 06:40:31 +00:00
33 lines
796 B
JavaScript
33 lines
796 B
JavaScript
import React from 'react';
|
|
import styled from 'styled-components';
|
|
import {
|
|
T,
|
|
TotalLines,
|
|
TotalLine,
|
|
TotalLineBorderStyle,
|
|
TotalLineTextStyle,
|
|
} from 'components';
|
|
|
|
export function PaymentMadeFormFooterRight() {
|
|
return (
|
|
<PaymentMadeTotalLines labelColWidth={'180px'} amountColWidth={'180px'}>
|
|
<TotalLine
|
|
title={<T id={'estimate.details.subtotal'} />}
|
|
value={'$5000.00'}
|
|
borderStyle={TotalLineBorderStyle.None}
|
|
/>
|
|
<TotalLine
|
|
title={<T id={'estimate.details.total'} />}
|
|
value={'$5000.00'}
|
|
// borderStyle={TotalLineBorderStyle.SingleDark}
|
|
textStyle={TotalLineTextStyle.Bold}
|
|
/>
|
|
</PaymentMadeTotalLines>
|
|
);
|
|
}
|
|
|
|
const PaymentMadeTotalLines = styled(TotalLines)`
|
|
width: 100%;
|
|
color: #555555;
|
|
`;
|