Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

DominantSpeakerIndicator.js 705B

123456789101112131415161718192021222324252627
  1. import React, { Component } from 'react';
  2. import { View } from 'react-native';
  3. import { Icon } from '../../../base/font-icons';
  4. import styles from './styles';
  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 React's {@link Component#render()}.
  12. *
  13. * @inheritdoc
  14. */
  15. render() {
  16. return (
  17. <View style = { styles.dominantSpeakerIndicatorBackground }>
  18. <Icon
  19. name = 'dominant-speaker'
  20. style = { styles.dominantSpeakerIndicator } />
  21. </View>
  22. );
  23. }
  24. }