浏览代码

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

master
Saúl Ibarra Corretgé 8 年前
父节点
当前提交
8d1d3a9c42
共有 1 个文件被更改,包括 3 次插入4 次删除
  1. 3
    4
      react/features/filmstrip/components/native/VideoMutedIndicator.js

+ 3
- 4
react/features/filmstrip/components/native/VideoMutedIndicator.js 查看文件

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

正在加载...
取消
保存