[RN] Make the audio muted icon consistent with the web
This commit is contained in:
parent
5c094bf6e0
commit
2968f8edf8
|
@ -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 } />
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue