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.
25 lines
518 B
25 lines
518 B
6 years ago
|
import React, { PureComponent } from 'react'
|
||
|
import PropTypes from 'prop-types'
|
||
|
|
||
|
export default class CurrencyDisplay extends PureComponent {
|
||
|
static propTypes = {
|
||
|
className: PropTypes.string,
|
||
|
displayValue: PropTypes.string,
|
||
|
prefix: PropTypes.string,
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
const { className, displayValue, prefix } = this.props
|
||
|
const text = `${prefix || ''}${displayValue}`
|
||
|
|
||
|
return (
|
||
|
<div
|
||
|
className={className}
|
||
|
title={text}
|
||
|
>
|
||
|
{ text }
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
}
|