mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
32 lines
816 B
JavaScript
32 lines
816 B
JavaScript
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>
|
|
)
|
|
}
|
|
}
|