import React from 'react'; import { COLORS } from '../../../../helpers/constants/design-system'; import { useGasFeeContext } from '../../../../contexts/gasFee'; import I18nValue from '../../../ui/i18n-value'; import Typography from '../../../ui/typography/typography'; import StatusSlider from './status-slider'; const NetworkStatus = () => { const { gasFeeEstimates } = useGasFeeContext(); return (
{gasFeeEstimates?.estimatedBaseFee && `${gasFeeEstimates?.estimatedBaseFee} GWEI`} Base fee
0.5 - 22 GWEI Priority fee
); }; NetworkStatus.propTypes = {}; export default NetworkStatus;