jiti-meet/react/features/filmstrip/components/native/AudioMutedIndicator.js

23 lines
536 B
JavaScript

import React, { Component } from 'react';
import Icon from 'react-native-vector-icons/FontAwesome';
import { styles } from './styles';
/**
* Thumbnail badge for displaying the audio mute status of a participant.
*/
export class AudioMutedIndicator extends Component {
/**
* Implements React's {@link Component#render()}.
*
* @inheritdoc
*/
render() {
return (
<Icon
name = 'microphone-slash'
style = { styles.thumbnailIndicator } />
);
}
}