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

This commit is contained in:
Saúl Ibarra Corretgé 2017-07-03 14:01:43 +02:00 committed by Lyubo Marinov
parent d5e89a60b7
commit 8d1d3a9c42
1 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,6 @@
import React, { Component } from 'react';
import Icon from 'react-native-vector-icons/FontAwesome';
import { Icon } from '../../../base/font-icons';
import styles from './styles';
@ -13,11 +14,9 @@ export class VideoMutedIndicator extends Component {
* @inheritdoc
*/
render() {
// TODO: This should use video-camera-slash, but that doesn't exist in
// the fontawesome icon set yet.
return (
<Icon
name = 'eye-slash'
name = 'camera-disabled'
style = { styles.thumbnailIndicator } />
);
}