mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
35 lines
832 B
JavaScript
35 lines
832 B
JavaScript
import React from 'react';
|
|
import styled from 'styled-components';
|
|
import { FFormGroup, FEditableText, FormattedMessage as T } from 'components';
|
|
|
|
export function MakeJournalFormFooterLeft() {
|
|
return (
|
|
<React.Fragment>
|
|
{/* --------- Description --------- */}
|
|
<DescriptionFormGroup
|
|
label={<T id={'description'} />}
|
|
name={'description'}
|
|
>
|
|
<FEditableText
|
|
name={'description'}
|
|
placeholder={
|
|
'Enter the description of your business to be displayed in your transaction'
|
|
}
|
|
/>
|
|
</DescriptionFormGroup>
|
|
</React.Fragment>
|
|
);
|
|
}
|
|
|
|
const DescriptionFormGroup = styled(FFormGroup)`
|
|
&.bp3-form-group {
|
|
.bp3-label {
|
|
font-size: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.bp3-form-content {
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
`;
|