create component for lowlevel icon

pull/4417/head
Joseph Izang 10 months ago committed by Aniket
parent a7cf4688b8
commit da64617e31
  1. 17
      libs/remix-ui/run-tab/src/lib/components/lowlevelInteractionIcon.tsx

@ -0,0 +1,17 @@
import { CustomTooltip } from '@remix-ui/helper'
import React from 'react'
import { FormattedMessage } from 'react-intl'
export function LowLevelInteractionIcon () {
const version = window.location.href.split('=')[5].split('+')[0].split('-')[1]
return (
<>
<CustomTooltip placement={'bottom-end'} tooltipClasses="text-wrap" tooltipId="receiveEthDocstoolTip" tooltipText={<FormattedMessage id="udapp.tooltipText8" />}>
<a href={`https://solidity.readthedocs.io/en/${version}/contracts.html#receive-ether-function`} target="_blank" rel="noreferrer">
<i aria-hidden="true" className="fas fa-info my-2 mr-1"></i>
</a>
</CustomTooltip>
</>
)
}
Loading…
Cancel
Save