mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Use clipboard icon for copy button
This commit is contained in:
parent
fb92b8a5fe
commit
7f92a8da06
@ -14,9 +14,14 @@ CopyButton.prototype.render = function () {
|
|||||||
const props = this.props
|
const props = this.props
|
||||||
const value = props.value
|
const value = props.value
|
||||||
|
|
||||||
return h('img.cursor-pointer.color-orange', {
|
return h('i.fa.fa-clipboard.cursor-pointer.color-orange', {
|
||||||
src: 'images/copy.svg',
|
title: props.title || 'Copy',
|
||||||
title: 'Copy Address',
|
style: {
|
||||||
|
display: 'flex',
|
||||||
|
justifyContent: 'center',
|
||||||
|
alignItems: 'center',
|
||||||
|
margin: '5px',
|
||||||
|
},
|
||||||
onClick: (event) => {
|
onClick: (event) => {
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
event.stopPropagation()
|
event.stopPropagation()
|
||||||
|
Loading…
Reference in New Issue
Block a user