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

DominantSpeakerIndicator.js 589B

12345678910111213141516171819202122232425
  1. // @flow
  2. import React, { Component } from 'react';
  3. import { IconDominantSpeaker } from '../../../base/icons';
  4. import { BaseIndicator } from '../../../base/react';
  5. /**
  6. * Thumbnail badge showing that the participant is the dominant speaker in
  7. * the conference.
  8. */
  9. export default class DominantSpeakerIndicator extends Component<{}> {
  10. /**
  11. * Implements {@code Component#render}.
  12. *
  13. * @inheritdoc
  14. */
  15. render() {
  16. return (
  17. <BaseIndicator
  18. highlight = { true }
  19. icon = { IconDominantSpeaker } />
  20. );
  21. }
  22. }