FIX: icons (removed octicons)

This commit is contained in:
Overtorment 2019-04-06 21:18:54 +01:00
parent df5d197f59
commit 6ad1cda344
8 changed files with 12 additions and 12 deletions

View file

@ -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}

View file

@ -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={() => {

View file

@ -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 () => {

View file

@ -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',
}}

View file

@ -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>
);

View file

@ -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>
),
});

View file

@ -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

View file

@ -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: {