26 lines
819 B
TypeScript
26 lines
819 B
TypeScript
import { DataFieldFactory } from './DataFieldFactory';
|
|
import React from 'react';
|
|
import translate from 'translations';
|
|
import { donationAddressMap } from 'config';
|
|
import { Input } from 'components/ui';
|
|
|
|
export const DataField: React.SFC<{}> = () => (
|
|
<DataFieldFactory
|
|
withProps={({ data: { raw }, dataExists, onChange, readOnly }) => (
|
|
<div className="input-group-wrapper">
|
|
<label className="input-group">
|
|
<div className="input-group-header">{translate('OFFLINE_Step2_Label_6')}</div>
|
|
<Input
|
|
className={dataExists ? 'is-valid' : 'is-invalid'}
|
|
type="text"
|
|
placeholder={donationAddressMap.ETH}
|
|
value={raw}
|
|
readOnly={!!readOnly}
|
|
onChange={onChange}
|
|
/>
|
|
</label>
|
|
</div>
|
|
)}
|
|
/>
|
|
);
|