mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
36 lines
848 B
JavaScript
36 lines
848 B
JavaScript
import React from 'react';
|
|
import styled from 'styled-components';
|
|
import { FFormGroup, FEditableText, FormattedMessage as T } from 'components';
|
|
|
|
export function PaymentReceiveFormFootetLeft() {
|
|
return (
|
|
<React.Fragment>
|
|
{/* --------- Statement--------- */}
|
|
<StatementFormGroup
|
|
name={'statement'}
|
|
label={<T id={'statement'} />}
|
|
hintText={'Will be displayed on the Payment'}
|
|
>
|
|
<FEditableText
|
|
name={'statement'}
|
|
placeholder={'Thanks for your business and have a great day!'}
|
|
/>
|
|
</StatementFormGroup>
|
|
</React.Fragment>
|
|
);
|
|
}
|
|
|
|
const StatementFormGroup = styled(FFormGroup)`
|
|
&.bp3-form-group {
|
|
margin-bottom: 40px;
|
|
|
|
.bp3-label {
|
|
font-size: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.bp3-form-content {
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
`;
|