mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
24 lines
597 B
JavaScript
24 lines
597 B
JavaScript
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import classnames from 'classnames'
|
|
|
|
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, withSymbol, symbol } = this.props
|
|
|
|
return (
|
|
<div className={classnames('hide-text-overflow', className)}>
|
|
{ string + (withSymbol ? ` ${symbol}` : '') }
|
|
</div>
|
|
)
|
|
}
|
|
}
|