import React from 'react'; import PropTypes from 'prop-types'; import { checksumAddress } from '../../../helpers/utils/util'; import Identicon from '../../ui/identicon'; import AccountMismatchWarning from '../../ui/account-mismatch-warning/account-mismatch-warning.component'; export default function AccountListItem({ account, className, displayAddress = false, handleClick, icon = null, }) { const { name, address, balance } = account || {}; return (