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
580 B
25 lines
580 B
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import CurrencyDisplay from '../currency-display'
|
|
|
|
export default class TokenBalance extends PureComponent {
|
|
static propTypes = {
|
|
string: PropTypes.string,
|
|
symbol: PropTypes.string,
|
|
error: PropTypes.string,
|
|
className: PropTypes.string,
|
|
withSymbol: PropTypes.bool,
|
|
}
|
|
|
|
render () {
|
|
const { className, string, symbol } = this.props
|
|
|
|
return (
|
|
<CurrencyDisplay
|
|
className={className}
|
|
displayValue={string}
|
|
suffix={symbol}
|
|
/>
|
|
)
|
|
}
|
|
}
|
|
|