Use clipboard icon for copy button

feature/default_network_editable
Dan Finlay 8 years ago
parent fb92b8a5fe
commit 7f92a8da06
  1. 11
      ui/app/components/copyButton.js

@ -14,9 +14,14 @@ CopyButton.prototype.render = function () {
const props = this.props
const value = props.value
return h('img.cursor-pointer.color-orange', {
src: 'images/copy.svg',
title: 'Copy Address',
return h('i.fa.fa-clipboard.cursor-pointer.color-orange', {
title: props.title || 'Copy',
style: {
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
margin: '5px',
},
onClick: (event) => {
event.preventDefault()
event.stopPropagation()

Loading…
Cancel
Save