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.

ModeratorIndicator.js 520B

12345678910111213141516171819202122
  1. import React, { Component } from 'react';
  2. import Icon from 'react-native-vector-icons/FontAwesome';
  3. import styles from './styles';
  4. /**
  5. * Thumbnail badge showing that the participant is a conference moderator.
  6. */
  7. export class ModeratorIndicator extends Component {
  8. /**
  9. * Implements React's {@link Component#render()}.
  10. *
  11. * @inheritdoc
  12. */
  13. render() {
  14. return (
  15. <Icon
  16. name = 'star'
  17. style = { styles.moderatorIndicator } />
  18. );
  19. }
  20. }