Browse Source

[RN] Use same video mute indicator icon as on the web

master
Saúl Ibarra Corretgé 8 years ago
parent
commit
8d1d3a9c42
1 changed files with 3 additions and 4 deletions
  1. 3
    4
      react/features/filmstrip/components/native/VideoMutedIndicator.js

+ 3
- 4
react/features/filmstrip/components/native/VideoMutedIndicator.js View File

@@ -1,5 +1,6 @@
1 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 5
 import styles from './styles';
5 6
 
@@ -13,11 +14,9 @@ export class VideoMutedIndicator extends Component {
13 14
      * @inheritdoc
14 15
      */
15 16
     render() {
16
-        // TODO: This should use video-camera-slash, but that doesn't exist in
17
-        // the fontawesome icon set yet.
18 17
         return (
19 18
             <Icon
20
-                name = 'eye-slash'
19
+                name = 'camera-disabled'
21 20
                 style = { styles.thumbnailIndicator } />
22 21
         );
23 22
     }

Loading…
Cancel
Save