您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

VideoMutedIndicator.js 630B

123456789101112131415161718192021222324
  1. import React, { Component } from 'react';
  2. import Icon from 'react-fontawesome';
  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. // TODO: This should use video-camera-slash, but that doesn't exist in
  15. // the fontawesome icon set yet.
  16. return (
  17. <Icon
  18. name = 'eye-slash'
  19. style = { styles.videoMutedIndicator } />
  20. );
  21. }
  22. }