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

DominantSpeakerIndicator.js 642B

12345678910111213141516171819202122232425
  1. import React, { Component } from 'react';
  2. import Icon from 'react-fontawesome';
  3. import { styles } from './styles';
  4. /**
  5. * Thumbnail badge showing that the participant is the dominant speaker in
  6. * the conference.
  7. */
  8. export class DominantSpeakerIndicator extends Component {
  9. /**
  10. * Implements React's {@link Component#render()}.
  11. *
  12. * @inheritdoc
  13. */
  14. render() {
  15. return (
  16. <div style = { styles.dominantSpeakerIndicatorBackground }>
  17. <Icon
  18. name = 'bullhorn'
  19. style = { styles.dominantSpeakerIndicator } />
  20. </div>
  21. );
  22. }
  23. }