You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
42 lines
1.0 KiB
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import SendRowWrapper from '../send-row-wrapper/send-row-wrapper.component'
|
|
import GasFeeDisplay from '../../../send/gas-fee-display-v2'
|
|
|
|
export default class SendGasRow extends Component {
|
|
|
|
static propTypes = {
|
|
conversionRate: PropTypes.number,
|
|
convertedCurrency: PropTypes.string,
|
|
gasLoadingError: PropTypes.bool,
|
|
gasTotal: PropTypes.string,
|
|
showCustomizeGasModal: PropTypes.func,
|
|
};
|
|
|
|
render () {
|
|
const {
|
|
conversionRate,
|
|
convertedCurrency,
|
|
gasLoadingError,
|
|
gasTotal,
|
|
showCustomizeGasModal,
|
|
} = this.props
|
|
|
|
return (
|
|
<SendRowWrapper label={`${this.context.t('gasFee')}:`}>
|
|
<GasFeeDisplay
|
|
conversionRate={conversionRate}
|
|
convertedCurrency={convertedCurrency}
|
|
gasLoadingError={gasLoadingError}
|
|
gasTotal={gasTotal}
|
|
onClick={() => showCustomizeGasModal()}
|
|
/>
|
|
</SendRowWrapper>
|
|
)
|
|
}
|
|
|
|
}
|
|
|
|
SendGasRow.contextTypes = {
|
|
t: PropTypes.func,
|
|
}
|
|
|