|
|
@@ -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
|
}
|