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

This commit is contained in:
Saúl Ibarra Corretgé 2017-07-07 17:02:35 +02:00 committed by Lyubo Marinov
parent 5c094bf6e0
commit 2968f8edf8
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
import React, { Component } from 'react'; import React, { Component } from 'react';
import Icon from 'react-native-vector-icons/FontAwesome';
import { Icon } from '../../../base/font-icons';
import styles from './styles'; import styles from './styles';
@ -15,7 +16,7 @@ export class AudioMutedIndicator extends Component {
render() { render() {
return ( return (
<Icon <Icon
name = 'microphone-slash' name = 'mic-disabled'
style = { styles.thumbnailIndicator } /> style = { styles.thumbnailIndicator } />
); );
} }