2019-03-29 14:26:49 +01:00
|
|
|
// @flow
|
2018-11-29 14:42:31 +01:00
|
|
|
|
2019-03-29 14:26:49 +01:00
|
|
|
import React, { Component } from 'react';
|
2016-10-05 09:36:59 -05:00
|
|
|
|
2022-02-14 12:13:18 +02:00
|
|
|
import { IconCrown } from '../../../base/icons';
|
2019-04-15 18:23:28 +02:00
|
|
|
import { BaseIndicator } from '../../../base/react';
|
2016-10-05 09:36:59 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Thumbnail badge showing that the participant is a conference moderator.
|
|
|
|
|
*/
|
2019-03-29 14:26:49 +01:00
|
|
|
export default class ModeratorIndicator extends Component<{}> {
|
2016-10-05 09:36:59 -05:00
|
|
|
/**
|
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
|
*
|
|
|
|
|
* @inheritdoc
|
|
|
|
|
*/
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
2022-02-14 12:13:18 +02:00
|
|
|
<BaseIndicator icon = { IconCrown } />
|
2016-10-05 09:36:59 -05:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|