Files
jitsi-meet/react/features/filmstrip/components/native/AudioMutedIndicator.js
Robert Pintilii 936a1a6b0e ref(design) Update icons (#12489)
Remove unused icons
Remove fill none from icons
Rename some icons
2022-11-08 12:24:32 +02:00

23 lines
507 B
JavaScript

// @flow
import React, { Component } from 'react';
import { IconMicSlash } 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 icon = { IconMicSlash } />
);
}
}