aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/currency-display/currency-display.component.js
blob: 389791b42e7cf8b786a2be8f678279081239c09b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import React, { PureComponent } from 'react'
import PropTypes from 'prop-types'
import { ETH } from '../../constants/common'

export default class CurrencyDisplay extends PureComponent {
  static propTypes = {
    className: PropTypes.string,
    displayValue: PropTypes.string,
    prefix: PropTypes.string,
    currency: PropTypes.oneOf([ETH]),
  }

  render () {
    const { className, displayValue, prefix } = this.props
    const text = `${prefix || ''}${displayValue}`

    return (
      <div
        className={className}
        title={text}
      >
        { text }
      </div>
    )
  }
}