diff --git a/src/components/Icon/index.js b/src/components/Icon/index.js index 45e1644e..799ee35a 100644 --- a/src/components/Icon/index.js +++ b/src/components/Icon/index.js @@ -28,9 +28,10 @@ const SvgWrapper = styled.svg` const Path = styled.path``; const Icon = ({ - icon, size = 32, color = 'black', isActive, canAnimate, + className, icon, size = 32, color = 'black', isActive, canAnimate, onMouseEnter, onMouseLeave, onFocus, onClick, }) => ( {icon.map(path => ( { const device = props.wallet.selectedDevice; const { @@ -58,9 +65,8 @@ const Summary = (props: Props) => { const pendingAmount: BigNumber = stateUtils.getPendingAmount(pending, network.symbol); const balance: string = new BigNumber(account.balance).minus(pendingAmount).toString(10); - return ( -
+ @@ -92,7 +98,11 @@ const Summary = (props: Props) => { overlay={tokensTooltip} placement="top" > - + {/* 0x58cda554935e4a1f2acbe15f8757400af275e084 Lahod */} @@ -134,13 +144,8 @@ const Summary = (props: Props) => { tokens={tokens} removeToken={props.removeToken} /> - -
+ ); }; -export default (props: Props) => ( - - - -); \ No newline at end of file +export default Summary;