Files
jitsi-meet/react/features/filmstrip/components/native/ModeratorIndicator.js

23 lines
501 B
JavaScript
Raw Normal View History

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