2016-10-05 14:36:59 +00:00
|
|
|
import React, { Component } from 'react';
|
2017-07-03 12:01:43 +00:00
|
|
|
|
|
|
|
import { Icon } from '../../../base/font-icons';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2017-06-10 22:50:42 +00:00
|
|
|
import styles from './styles';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Thumbnail badge for displaying the video mute status of a participant.
|
|
|
|
*/
|
|
|
|
export class VideoMutedIndicator extends Component {
|
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Icon
|
2017-07-03 12:01:43 +00:00
|
|
|
name = 'camera-disabled'
|
2016-12-21 22:32:11 +00:00
|
|
|
style = { styles.thumbnailIndicator } />
|
2016-10-05 14:36:59 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|