[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 React, { Component } from 'react';
|
||||||
import { View } from 'react-native';
|
import { View } from 'react-native';
|
||||||
import Icon from 'react-native-vector-icons/FontAwesome';
|
|
||||||
|
import { Icon } from '../../../base/font-icons';
|
||||||
|
|
||||||
import styles from './styles';
|
import styles from './styles';
|
||||||
|
|
||||||
|
@ -18,7 +19,7 @@ export default class DominantSpeakerIndicator extends Component {
|
||||||
return (
|
return (
|
||||||
<View style = { styles.dominantSpeakerIndicatorBackground }>
|
<View style = { styles.dominantSpeakerIndicatorBackground }>
|
||||||
<Icon
|
<Icon
|
||||||
name = 'bullhorn'
|
name = 'dominant-speaker'
|
||||||
style = { styles.dominantSpeakerIndicator } />
|
style = { styles.dominantSpeakerIndicator } />
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import Icon from 'react-native-vector-icons/FontAwesome';
|
|
||||||
|
import { Icon } from '../../../base/font-icons';
|
||||||
|
|
||||||
import styles from './styles';
|
import styles from './styles';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue