25 lines
567 B
JavaScript
25 lines
567 B
JavaScript
// @flow
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { IconMicDisabled } from '../../../base/icons';
|
|
import { BaseIndicator } from '../../../base/react';
|
|
|
|
/**
|
|
* Thumbnail badge for displaying the audio mute status of a participant.
|
|
*/
|
|
export default class AudioMutedIndicator extends Component<{}> {
|
|
/**
|
|
* Implements React's {@link Component#render()}.
|
|
*
|
|
* @inheritdoc
|
|
*/
|
|
render() {
|
|
return (
|
|
<BaseIndicator
|
|
highlight = { false }
|
|
icon = { IconMicDisabled } />
|
|
);
|
|
}
|
|
}
|