Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
21 lines
538 B
TypeScript
21 lines
538 B
TypeScript
import React, { Component } from 'react';
|
|
|
|
import { IconMicSlash } from '../../../base/icons/svg';
|
|
import BaseIndicator from '../../../base/react/components/native/BaseIndicator';
|
|
|
|
/**
|
|
* Thumbnail badge for displaying the audio mute status of a participant.
|
|
*/
|
|
export default class AudioMutedIndicator extends Component<{}> {
|
|
/**
|
|
* Implements React's {@link Component#render()}.
|
|
*
|
|
* @inheritdoc
|
|
*/
|
|
override render() {
|
|
return (
|
|
<BaseIndicator icon = { IconMicSlash } />
|
|
);
|
|
}
|
|
}
|