mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import classnames from 'classnames'
|
|
import { GWEI } from '../../constants/common'
|
|
|
|
export default class CurrencyDisplay extends PureComponent {
|
|
static propTypes = {
|
|
className: PropTypes.string,
|
|
displayValue: PropTypes.string,
|
|
prefix: PropTypes.string,
|
|
prefixComponent: PropTypes.node,
|
|
style: PropTypes.object,
|
|
suffix: PropTypes.string,
|
|
// Used in container
|
|
currency: PropTypes.string,
|
|
denomination: PropTypes.oneOf([GWEI]),
|
|
value: PropTypes.string,
|
|
numberOfDecimals: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
hideLabel: PropTypes.bool,
|
|
}
|
|
|
|
render () {
|
|
const { className, displayValue, prefix, prefixComponent, style, suffix } = this.props
|
|
const text = `${prefix || ''}${displayValue}`
|
|
const title = `${text} ${suffix}`
|
|
|
|
return (
|
|
<div
|
|
className={classnames('currency-display-component', className)}
|
|
style={style}
|
|
title={title}
|
|
>
|
|
{ prefixComponent}
|
|
<span className="currency-display-component__text">{ text }</span>
|
|
{
|
|
suffix && (
|
|
<span className="currency-display-component__suffix">
|
|
{ suffix }
|
|
</span>
|
|
)
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
}
|