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