2019-03-29 13:26:49 +00:00
|
|
|
// @flow
|
2017-07-07 15:02:35 +00:00
|
|
|
|
2019-03-29 13:26:49 +00:00
|
|
|
import React, { Component } from 'react';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2019-08-30 16:39:06 +00:00
|
|
|
import { IconMicDisabled } from '../../../base/icons';
|
2019-04-15 16:23:28 +00:00
|
|
|
import { BaseIndicator } from '../../../base/react';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Thumbnail badge for displaying the audio mute status of a participant.
|
|
|
|
*/
|
2019-03-29 13:26:49 +00:00
|
|
|
export default class AudioMutedIndicator extends Component<{}> {
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
render() {
|
|
|
|
return (
|
2022-02-14 10:13:18 +00:00
|
|
|
<BaseIndicator icon = { IconMicDisabled } />
|
2016-10-05 14:36:59 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|