Files
jitsi-meet/react/features/filmstrip/components/native/ModeratorIndicator.js
Saúl Ibarra Corretgé 2b91745af1 [RN] Fix dominant speaker and moderator indicators
They are part of the Jitsi font now, there is no need to load them from
FontAwesome.
2018-12-03 11:27:12 +01:00

24 lines
520 B
JavaScript

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