mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-17 06:19:20 +00:00
Contributing all buttons in one place goes against the designs that we set out at the beginning of the project's rewrite and that multiple of us have been following since then.
23 lines
528 B
JavaScript
23 lines
528 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 default class ModeratorIndicator extends Component {
|
|
/**
|
|
* Implements React's {@link Component#render()}.
|
|
*
|
|
* @inheritdoc
|
|
*/
|
|
render() {
|
|
return (
|
|
<Icon
|
|
name = 'star'
|
|
style = { styles.moderatorIndicator } />
|
|
);
|
|
}
|
|
}
|