[RN] Fix dominant speaker and moderator indicators
They are part of the Jitsi font now, there is no need to load them from FontAwesome.
This commit is contained in:
parent
c9b910b1c1
commit
2b91745af1
|
@ -1,6 +1,7 @@
|
|||
import React, { Component } from 'react';
|
||||
import { View } from 'react-native';
|
||||
import Icon from 'react-native-vector-icons/FontAwesome';
|
||||
|
||||
import { Icon } from '../../../base/font-icons';
|
||||
|
||||
import styles from './styles';
|
||||
|
||||
|
@ -18,7 +19,7 @@ export default class DominantSpeakerIndicator extends Component {
|
|||
return (
|
||||
<View style = { styles.dominantSpeakerIndicatorBackground }>
|
||||
<Icon
|
||||
name = 'bullhorn'
|
||||
name = 'dominant-speaker'
|
||||
style = { styles.dominantSpeakerIndicator } />
|
||||
</View>
|
||||
);
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import React, { Component } from 'react';
|
||||
import Icon from 'react-native-vector-icons/FontAwesome';
|
||||
|
||||
import { Icon } from '../../../base/font-icons';
|
||||
|
||||
import styles from './styles';
|
||||
|
||||
|
|
Loading…
Reference in New Issue