EIP-1559 - Provide Updated UI for Dapp-Suggested Gas fees (#11523)
parent
e77101138a
commit
d8984d3cf3
@ -0,0 +1,17 @@ |
||||
import React from 'react'; |
||||
import PropTypes from 'prop-types'; |
||||
|
||||
export default function InfoTooltipIcon({ fillColor = '#b8b8b8' }) { |
||||
return ( |
||||
<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"> |
||||
<path |
||||
d="M5 0C2.2 0 0 2.2 0 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 2c.4 0 .7.3.7.7s-.3.7-.7.7-.7-.2-.7-.6.3-.8.7-.8zm.7 6H4.3V4.3h1.5V8z" |
||||
fill={fillColor} |
||||
/> |
||||
</svg> |
||||
); |
||||
} |
||||
|
||||
InfoTooltipIcon.propTypes = { |
||||
fillColor: PropTypes.string, |
||||
}; |
Loading…
Reference in new issue