You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
816 B
31 lines
816 B
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { ETH, GWEI } from '../../constants/common'
|
|
|
|
export default class CurrencyDisplay extends PureComponent {
|
|
static propTypes = {
|
|
className: PropTypes.string,
|
|
displayValue: PropTypes.string,
|
|
prefix: PropTypes.string,
|
|
// Used in container
|
|
currency: PropTypes.oneOf([ETH]),
|
|
denomination: PropTypes.oneOf([GWEI]),
|
|
value: PropTypes.string,
|
|
numberOfDecimals: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
hideLabel: PropTypes.bool,
|
|
}
|
|
|
|
render () {
|
|
const { className, displayValue, prefix } = this.props
|
|
const text = `${prefix || ''}${displayValue}`
|
|
|
|
return (
|
|
<div
|
|
className={className}
|
|
title={text}
|
|
>
|
|
{ text }
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|