// @ts-nocheck import React from 'react'; import { FormGroup, InputGroup, TextArea } from '@blueprintjs/core'; import { Row, Col } from '@/components'; import { FormattedMessage as T } from '@/components'; import { FastField, ErrorMessage } from 'formik'; import { inputIntent } from '@/utils'; const CustomerBillingAddress = ({}) => { return (

{/*------------ Billing Address country -----------*/} {({ field, field: { value }, meta: { error, touched } }) => ( } label={} > )} {/*------------ Billing Address 1 -----------*/} {({ field, field: { value }, meta: { error, touched } }) => ( } className={'form-group--address_line_1'} intent={inputIntent({ error, touched })} inline={true} helperText={} >