{content}
13 |17 | {t('errorInformation.404.tip')} 18 |
19 |20 | 21 | 22 |
23 |{t('transaction.hash')}:
{assets.join(', ')}
11 | 12 |{t('license.onceArbi')}
} 15 | {!arbitratorPage &&{t('license.onceSeller')}
} 16 |17 | {arbitratorPage && } 18 | {!arbitratorPage && } 19 |
20 |{(escrow.fiatAmount / 100).toFixed(2)} {escrow.offer.currency} for {escrow.tokenAmount} {escrow.token.symbol}
9 |{escrow.token.symbol} Price = {((escrow.fiatAmount / 100) / escrow.tokenAmount).toFixed(4)} {escrow.offer.currency}
10 |Took place on {escrow.createDate}
11 | 12 |{t('escrow.openDispute.open')}
18 |{t('escrow.openDispute.havingProblem')}
19 | 20 |
15 |
16 |
17 | {(this.props.value || this.props.value === 0) &&
9 |
12 |
17 | 10
18 | SNT
19 |
20 |
{children}
8 | ); 9 | 10 | LogoCircle.propTypes = { 11 | children: PropTypes.string 12 | }; 13 | 14 | export default LogoCircle; 15 | -------------------------------------------------------------------------------- /src/js/ui/LogoCircle/index.scss: -------------------------------------------------------------------------------- 1 | $logo-size: 64px; 2 | .logo-circle { 3 | width: $logo-size; 4 | height: $logo-size; 5 | line-height: $logo-size; 6 | font-size: 28px; 7 | color: white; 8 | font-weight: bold; 9 | } 10 | -------------------------------------------------------------------------------- /src/js/ui/RatingIcon/index.jsx: -------------------------------------------------------------------------------- 1 | import React, {Fragment} from 'react'; 2 | import PropTypes from 'prop-types'; 3 | import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"; 4 | import {faThumbsDown, faThumbsUp} from "@fortawesome/free-solid-svg-icons"; 5 | import classnames from 'classnames'; 6 | 7 | const RatingIcon = ({isPositiveRating, onClick, isRated, size, className}) => ( 8 |11 | 12 |
13 |