import { WeaLocaleProvider, } from 'ecCom'; const getLabel = WeaLocaleProvider.getLabel; export default class AccountIcon extends React.Component { render() { const { isShow, onClick } = this.props; const style = { padding: 6, border: '1px solid #D9D9D9', cursor: 'pointer' }; if (isShow) { Object.assign(style, { color: '#2DB7F5' }); } if (isShow) { return ( onClick(false)} /> ) } else { return ( onClick(true)} /> ); } } }