import React, { Component } from 'react' import PropTypes from 'prop-types' import { checksumAddress } from '../../../util' import Identicon from '../../identicon' import CurrencyDisplay from '../currency-display' export default class AccountListItem extends Component { static propTypes = { account: PropTypes.object, className: PropTypes.string, conversionRate: PropTypes.number, currentCurrency: PropTypes.string, displayAddress: PropTypes.bool, displayBalance: PropTypes.bool, handleClick: PropTypes.func, icon: PropTypes.node, }; static contextTypes = { t: PropTypes.func, }; render () { const { account, className, conversionRate, currentCurrency, displayAddress = false, displayBalance = true, handleClick, icon = null, } = this.props const { name, address, balance } = account || {} return (