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

AudioMutedIndicator.js 499B

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