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.1 KiB
42 lines
1.1 KiB
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import Loading from '../../../../ui/loading-screen';
|
|
import GasPriceButtonGroup from '../../gas-price-button-group';
|
|
|
|
export default class BasicTabContent extends Component {
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
};
|
|
|
|
static propTypes = {
|
|
gasPriceButtonGroupProps: PropTypes.object,
|
|
};
|
|
|
|
render() {
|
|
const { t } = this.context;
|
|
const { gasPriceButtonGroupProps } = this.props;
|
|
|
|
return (
|
|
<div className="basic-tab-content">
|
|
<div className="basic-tab-content__title">
|
|
{t('estimatedProcessingTimes')}
|
|
</div>
|
|
<div className="basic-tab-content__blurb">
|
|
{t('selectAHigherGasFee')}
|
|
</div>
|
|
{gasPriceButtonGroupProps.loading ? (
|
|
<Loading />
|
|
) : (
|
|
<GasPriceButtonGroup
|
|
className="gas-price-button-group--alt"
|
|
showCheck
|
|
{...gasPriceButtonGroupProps}
|
|
/>
|
|
)}
|
|
<div className="basic-tab-content__footer-blurb">
|
|
{t('acceleratingATransaction')}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|