12345678910111213141516171819202122 |
- import React, { Component } from 'react';
- import Icon from 'react-fontawesome';
-
- import { styles } from './styles';
-
- /**
- * Thumbnail badge showing that the participant is a conference moderator.
- */
- export class ModeratorIndicator extends Component {
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- */
- render() {
- return (
- <Icon
- name = 'star'
- style = { styles.moderatorIndicator } />
- );
- }
- }
|