import React from 'react'; import styled from 'styled-components'; import { FFormGroup, FEditableText, FormattedMessage as T } from 'components'; export function CreditNoteFormFooterLeft() { return ( {/* --------- Customer notes --------- */} } hintText={'Will be displayed on the invoice'} > } /> {/* --------- Terms and conditions --------- */} } name={'terms_conditions'} > } /> ); } const CreditNoteMsgFormGroup = styled(FFormGroup)` &.bp3-form-group { margin-bottom: 40px; .bp3-label { font-size: 12px; margin-bottom: 12px; } .bp3-form-content { margin-left: 10px; } } `; const TermsConditsFormGroup = styled(FFormGroup)` &.bp3-form-group { .bp3-label { font-size: 12px; margin-bottom: 12px; } .bp3-form-content { margin-left: 10px; } } `;