import React from 'react'; import { COLORS, FONT_WEIGHT, TYPOGRAPHY, } from '../../../../helpers/constants/design-system'; import { useGasFeeContext } from '../../../../contexts/gasFee'; import I18nValue from '../../../ui/i18n-value'; import Typography from '../../../ui/typography/typography'; import { BaseFeeTooltip, PriorityFeeTooltip } from './tooltips'; import StatusSlider from './status-slider'; const NetworkStatistics = () => { const { gasFeeEstimates } = useGasFeeContext(); return (
{gasFeeEstimates?.estimatedBaseFee && `${gasFeeEstimates?.estimatedBaseFee} GWEI`}
0.5 - 22 GWEI
); }; export default NetworkStatistics;