mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +00:00
23 lines
517 B
JavaScript
23 lines
517 B
JavaScript
|
|
import React, { Component } from 'react';
|
||
|
|
import Icon from 'react-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.audioMutedIndicator } />
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|