23 lines
524 B
JavaScript
23 lines
524 B
JavaScript
import React, { Component } from 'react';
|
|
import Icon from 'react-native-vector-icons/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 } />
|
|
);
|
|
}
|
|
}
|