Files
jitsi-meet/react/features/filmstrip/components/native/AudioMutedIndicator.js
Lyubo Marinov 3aff4967f1 Keep buttons in their associated features
Contributing all buttons in one place goes against the designs that we
set out at the beginning of the project's rewrite and that multiple of
us have been following since then.
2018-05-15 14:12:38 -05:00

24 lines
528 B
JavaScript

import React, { Component } from 'react';
import { Icon } from '../../../base/font-icons';
import styles from './styles';
/**
* 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 (
<Icon
name = 'mic-disabled'
style = { styles.thumbnailIndicator } />
);
}
}