aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts/account-panel.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/accounts/account-panel.js')
-rw-r--r--ui/app/accounts/account-panel.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/ui/app/accounts/account-panel.js b/ui/app/accounts/account-panel.js
index b49f4c098..ddccfa529 100644
--- a/ui/app/accounts/account-panel.js
+++ b/ui/app/accounts/account-panel.js
@@ -63,12 +63,16 @@ NewComponent.prototype.render = function() {
margin: '0 20px',
},
}, [
- h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', {
+ h('img.cursor-pointer.color-orange', {
+ src: 'images/copy.svg',
onClick: (event) => {
event.stopPropagation()
event.preventDefault()
copyToClipboard(ethUtil.toChecksumAddress(identity.address))
- }
+ },
+ style:{
+ margin: '0px 5px',
+ },
}),
]),
])