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 697B

1234567891011121314151617181920212223242526
  1. import React, { Component } from 'react';
  2. import { View } from 'react-native';
  3. import Icon from 'react-native-vector-icons/FontAwesome';
  4. import styles from './styles';
  5. /**
  6. * Thumbnail badge showing that the participant is the dominant speaker in
  7. * the conference.
  8. */
  9. export 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 = 'bullhorn'
  20. style = { styles.dominantSpeakerIndicator } />
  21. </View>
  22. );
  23. }
  24. }