|
@@ -49,7 +49,7 @@ function Sidebar ({ address, className = '', onClose, onUpdateName }: Props): Re
|
|
<div className={className}>
|
|
<div className={className}>
|
|
<Button
|
|
<Button
|
|
className='ui--AddressMenu-close'
|
|
className='ui--AddressMenu-close'
|
|
- icon='close'
|
|
|
|
|
|
+ icon='times'
|
|
isBasic
|
|
isBasic
|
|
isCircular
|
|
isCircular
|
|
onClick={onClose}
|
|
onClick={onClose}
|
|
@@ -86,7 +86,7 @@ function Sidebar ({ address, className = '', onClose, onUpdateName }: Props): Re
|
|
{(!isEditingName && flags.isEditable) && (
|
|
{(!isEditingName && flags.isEditable) && (
|
|
<Icon
|
|
<Icon
|
|
className='inline-icon'
|
|
className='inline-icon'
|
|
- name='edit'
|
|
|
|
|
|
+ icon='edit'
|
|
/>
|
|
/>
|
|
)}
|
|
)}
|
|
</AccountName>
|
|
</AccountName>
|
|
@@ -105,7 +105,7 @@ function Sidebar ({ address, className = '', onClose, onUpdateName }: Props): Re
|
|
<div className='ui-AddressMenu--button'>
|
|
<div className='ui-AddressMenu--button'>
|
|
<Button.Group>
|
|
<Button.Group>
|
|
<Button
|
|
<Button
|
|
- icon='send'
|
|
|
|
|
|
+ icon='paper-plane'
|
|
label={t<string>('Deposit')}
|
|
label={t<string>('Deposit')}
|
|
onClick={toggleIsTransferOpen}
|
|
onClick={toggleIsTransferOpen}
|
|
/>
|
|
/>
|
|
@@ -122,7 +122,7 @@ function Sidebar ({ address, className = '', onClose, onUpdateName }: Props): Re
|
|
)}
|
|
)}
|
|
{!flags.isOwned && !flags.isInContacts && (
|
|
{!flags.isOwned && !flags.isInContacts && (
|
|
<Button
|
|
<Button
|
|
- icon='add'
|
|
|
|
|
|
+ icon='plus'
|
|
isPositive
|
|
isPositive
|
|
label={t<string>('Save')}
|
|
label={t<string>('Save')}
|
|
onClick={_onUpdateName}
|
|
onClick={_onUpdateName}
|
|
@@ -143,12 +143,12 @@ function Sidebar ({ address, className = '', onClose, onUpdateName }: Props): Re
|
|
size='tiny'
|
|
size='tiny'
|
|
>
|
|
>
|
|
<Button.Content visible>
|
|
<Button.Content visible>
|
|
- <Icon name='check' />
|
|
|
|
|
|
+ <Icon icon='check' />
|
|
|
|
|
|
{t<string>('Saved')}
|
|
{t<string>('Saved')}
|
|
</Button.Content>
|
|
</Button.Content>
|
|
<Button.Content hidden>
|
|
<Button.Content hidden>
|
|
- <Icon name='ban' />
|
|
|
|
|
|
+ <Icon icon='ban' />
|
|
|
|
|
|
{t<string>('Remove')}
|
|
{t<string>('Remove')}
|
|
</Button.Content>
|
|
</Button.Content>
|