import React from 'react'; import intl from 'react-intl-universal'; import styled from 'styled-components'; import { FFormGroup, FEditableText, FormattedMessage as T } from 'components'; export function ReceiptFormFooterLeft() { return ( {/* --------- Receipt message --------- */} } hintText={'Will be displayed on the Receipt'} > {/* --------- Terms and conditions --------- */} } name={'terms_conditions'} > ); } const ReceiptMsgFormGroup = 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; } } `;