瀏覽代碼

[RN] Make the audio muted icon consistent with the web

master
Saúl Ibarra Corretgé 8 年之前
父節點
當前提交
2968f8edf8
共有 1 個檔案被更改,包括 3 行新增2 行删除
  1. 3
    2
      react/features/filmstrip/components/native/AudioMutedIndicator.js

+ 3
- 2
react/features/filmstrip/components/native/AudioMutedIndicator.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
 
15
     render() {
16
     render() {
16
         return (
17
         return (
17
             <Icon
18
             <Icon
18
-                name = 'microphone-slash'
19
+                name = 'mic-disabled'
19
                 style = { styles.thumbnailIndicator } />
20
                 style = { styles.thumbnailIndicator } />
20
         );
21
         );
21
     }
22
     }

Loading…
取消
儲存