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.

ModeratorIndicator.js 491B

1234567891011121314151617181920212223
  1. // @flow
  2. import React, { Component } from 'react';
  3. import BaseIndicator from './BaseIndicator';
  4. /**
  5. * Thumbnail badge showing that the participant is a conference moderator.
  6. */
  7. export default class ModeratorIndicator extends Component<{}> {
  8. /**
  9. * Implements React's {@link Component#render()}.
  10. *
  11. * @inheritdoc
  12. */
  13. render() {
  14. return (
  15. <BaseIndicator
  16. highlight = { false }
  17. icon = 'star' />
  18. );
  19. }
  20. }