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

VideoMutedIndicator.js 573B

123456789101112131415161718192021222324
  1. // @flow
  2. import React, { Component } from 'react';
  3. import { IconCameraDisabled } from '../../../base/icons';
  4. import { BaseIndicator } from '../../../base/react';
  5. /**
  6. * Thumbnail badge for displaying the video mute status of a participant.
  7. */
  8. export default class VideoMutedIndicator extends Component<{}> {
  9. /**
  10. * Implements React's {@link Component#render()}.
  11. *
  12. * @inheritdoc
  13. */
  14. render() {
  15. return (
  16. <BaseIndicator
  17. highlight = { false }
  18. icon = { IconCameraDisabled } />
  19. );
  20. }
  21. }