Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

DominantSpeakerIndicator.js 525B

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