File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
libs/remix-ui/run-tab/src/lib/components Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 1+ import { CustomTooltip } from '@remix-ui/helper'
2+ import React from 'react'
3+ import { FormattedMessage } from 'react-intl'
4+
5+ export function LowLevelInteractionIcon ( ) {
6+ const version = window . location . href . split ( '=' ) [ 5 ] . split ( '+' ) [ 0 ] . split ( '-' ) [ 1 ]
7+
8+ return (
9+ < >
10+ < CustomTooltip placement = { 'bottom-end' } tooltipClasses = "text-wrap" tooltipId = "receiveEthDocstoolTip" tooltipText = { < FormattedMessage id = "udapp.tooltipText8" /> } >
11+ < a href = { `https://solidity.readthedocs.io/en/${ version } /contracts.html#receive-ether-function` } target = "_blank" rel = "noreferrer" >
12+ < i aria-hidden = "true" className = "fas fa-info my-2 mr-1" > </ i >
13+ </ a >
14+ </ CustomTooltip >
15+ </ >
16+ )
17+ }
You can’t perform that action at this time.
0 commit comments