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.

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. }