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

24 lines
507 B
JavaScript
Raw Normal View History

2019-03-29 13:26:49 +00:00
// @flow
2019-03-29 13:26:49 +00:00
import React, { Component } from 'react';
2019-04-15 16:23:28 +00:00
import { BaseIndicator } from '../../../base/react';
/**
* 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<{}> {
/**
* Implements React's {@link Component#render()}.
*
* @inheritdoc
*/
render() {
return (
2019-03-29 13:26:49 +00:00
<BaseIndicator
highlight = { false }
icon = 'mic-disabled' />
);
}
}