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 ( ); } }