You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VideoMutedIndicator.js 523B

1234567891011121314151617181920212223
  1. import React, { Component } from 'react';
  2. import { Icon } from '../../../base/font-icons';
  3. import styles from './styles';
  4. /**
  5. * Thumbnail badge for displaying the video mute status of a participant.
  6. */
  7. export class VideoMutedIndicator extends Component {
  8. /**
  9. * Implements React's {@link Component#render()}.
  10. *
  11. * @inheritdoc
  12. */
  13. render() {
  14. return (
  15. <Icon
  16. name = 'camera-disabled'
  17. style = { styles.thumbnailIndicator } />
  18. );
  19. }
  20. }