mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-20 14:05:27 +01:00
FIX: icons (removed octicons)
This commit is contained in:
parent
df5d197f59
commit
6ad1cda344
8 changed files with 12 additions and 12 deletions
|
@ -48,7 +48,7 @@ export default class PlausibleDeniability extends Component {
|
|||
<BlueButton
|
||||
icon={{
|
||||
name: 'shield',
|
||||
type: 'octicon',
|
||||
type: 'font-awesome',
|
||||
color: BlueApp.settings.buttonTextColor,
|
||||
}}
|
||||
title={loc.plausibledeniability.create_fake_storage}
|
||||
|
|
|
@ -54,8 +54,8 @@ export default class About extends Component {
|
|||
|
||||
<BlueButton
|
||||
icon={{
|
||||
name: 'mark-github',
|
||||
type: 'octicon',
|
||||
name: 'github',
|
||||
type: 'font-awesome',
|
||||
color: BlueApp.settings.buttonTextColor,
|
||||
}}
|
||||
onPress={() => {
|
||||
|
@ -93,8 +93,8 @@ export default class About extends Component {
|
|||
|
||||
<BlueButton
|
||||
icon={{
|
||||
name: 'thumbsup',
|
||||
type: 'octicon',
|
||||
name: 'thumbs-up',
|
||||
type: 'font-awesome',
|
||||
color: BlueApp.settings.buttonTextColor,
|
||||
}}
|
||||
onPress={() => {
|
||||
|
|
|
@ -58,7 +58,7 @@ export default class EncryptStorage extends Component {
|
|||
<BlueButton
|
||||
icon={{
|
||||
name: 'shield',
|
||||
type: 'octicon',
|
||||
type: 'font-awesome',
|
||||
color: BlueApp.settings.buttonTextColor,
|
||||
}}
|
||||
onPress={async () => {
|
||||
|
|
|
@ -59,8 +59,8 @@ export default class LightningSettings extends Component {
|
|||
|
||||
<Button
|
||||
icon={{
|
||||
name: 'mark-github',
|
||||
type: 'octicon',
|
||||
name: 'github',
|
||||
type: 'font-awesome',
|
||||
color: BlueApp.settings.buttonTextColor,
|
||||
backgroundColor: '#FFFFFF',
|
||||
}}
|
||||
|
|
|
@ -225,7 +225,7 @@ export default class SendCreate extends Component {
|
|||
{this.state.isLoading ? (
|
||||
<ActivtyIndicator />
|
||||
) : (
|
||||
<BlueButton icon={{ name: 'megaphone', type: 'octicon' }} onPress={() => this.broadcast()} title="Broadcast" />
|
||||
<BlueButton icon={{ name: 'bullhorn', type: 'font-awesome' }} onPress={() => this.broadcast()} title="Broadcast" />
|
||||
)}
|
||||
</SafeBlueArea>
|
||||
);
|
||||
|
|
|
@ -25,7 +25,7 @@ export default class WalletsList extends Component {
|
|||
style={{ marginHorizontal: 16, width: 40, height: 40, justifyContent: 'center', alignItems: 'flex-end' }}
|
||||
onPress={() => navigation.navigate('Settings')}
|
||||
>
|
||||
<Icon name="kebab-horizontal" size={22} type="octicon" color={BlueApp.settings.foregroundColor} />
|
||||
<Icon size={22} name="ellipsis-h" type="font-awesome" color={BlueApp.settings.foregroundColor} />
|
||||
</TouchableOpacity>
|
||||
),
|
||||
});
|
||||
|
|
|
@ -255,7 +255,7 @@ export default class ScanQrWif extends React.Component {
|
|||
>
|
||||
<BlueText>{this.state.message}</BlueText>
|
||||
<BlueButton
|
||||
icon={{ name: 'stop', type: 'octicon' }}
|
||||
icon={{ name: 'ban', type: 'font-awesome' }}
|
||||
onPress={async () => {
|
||||
this.setState({ message: false });
|
||||
shold_stop_bip38 = true; // eslint-disable-line
|
||||
|
|
|
@ -41,7 +41,7 @@ export default class WalletTransactions extends Component {
|
|||
})
|
||||
}
|
||||
>
|
||||
<Icon name="kebab-horizontal" size={22} type="octicon" color="#FFFFFF" />
|
||||
<Icon name="ellipsis-h" type="font-awesome" size={22} color="#FFFFFF" />
|
||||
</TouchableOpacity>
|
||||
),
|
||||
headerStyle: {
|
||||
|
|
Loading…
Add table
Reference in a new issue