import React from 'react'; import PropTypes from 'prop-types'; import Box from '../../../ui/box'; import I18nValue from '../../../ui/i18n-value'; import LoadingHeartBeat from '../../../ui/loading-heartbeat'; const AdvancedGasFeeInputSubtext = ({ latest, historical, feeTrend }) => { return ( {latest} feeTrend-arrow {historical} ); }; AdvancedGasFeeInputSubtext.propTypes = { latest: PropTypes.string, historical: PropTypes.string, feeTrend: PropTypes.string.isRequired, }; export default AdvancedGasFeeInputSubtext;