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.
29 lines
803 B
29 lines
803 B
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import UserPreferencedCurrencyDisplay from '../../../user-preferenced-currency-display'
|
|
import { PRIMARY, SECONDARY } from '../../../../constants/common'
|
|
|
|
export default class CancelTransaction extends PureComponent {
|
|
static propTypes = {
|
|
value: PropTypes.string,
|
|
}
|
|
|
|
render () {
|
|
const { value } = this.props
|
|
|
|
return (
|
|
<div className="cancel-transaction-gas-fee">
|
|
<UserPreferencedCurrencyDisplay
|
|
className="cancel-transaction-gas-fee__eth"
|
|
value={value}
|
|
type={PRIMARY}
|
|
/>
|
|
<UserPreferencedCurrencyDisplay
|
|
className="cancel-transaction-gas-fee__fiat"
|
|
value={value}
|
|
type={SECONDARY}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|