mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
23 lines
504 B
JavaScript
23 lines
504 B
JavaScript
|
|
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 } />
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|