Browse Source

[RN] Fix dominant speaker and moderator indicators

They are part of the Jitsi font now, there is no need to load them from
FontAwesome.
j8
Saúl Ibarra Corretgé 6 years ago
parent
commit
2b91745af1

+ 3
- 2
react/features/filmstrip/components/native/DominantSpeakerIndicator.js View File

1
 import React, { Component } from 'react';
1
 import React, { Component } from 'react';
2
 import { View } from 'react-native';
2
 import { View } from 'react-native';
3
-import Icon from 'react-native-vector-icons/FontAwesome';
3
+
4
+import { Icon } from '../../../base/font-icons';
4
 
5
 
5
 import styles from './styles';
6
 import styles from './styles';
6
 
7
 
18
         return (
19
         return (
19
             <View style = { styles.dominantSpeakerIndicatorBackground }>
20
             <View style = { styles.dominantSpeakerIndicatorBackground }>
20
                 <Icon
21
                 <Icon
21
-                    name = 'bullhorn'
22
+                    name = 'dominant-speaker'
22
                     style = { styles.dominantSpeakerIndicator } />
23
                     style = { styles.dominantSpeakerIndicator } />
23
             </View>
24
             </View>
24
         );
25
         );

+ 2
- 1
react/features/filmstrip/components/native/ModeratorIndicator.js View File

1
 import React, { Component } from 'react';
1
 import React, { Component } from 'react';
2
-import Icon from 'react-native-vector-icons/FontAwesome';
2
+
3
+import { Icon } from '../../../base/font-icons';
3
 
4
 
4
 import styles from './styles';
5
 import styles from './styles';
5
 
6
 

Loading…
Cancel
Save