jiti-meet/react/features/filmstrip/components/web/ModeratorIndicator.js

46 lines
1.1 KiB
JavaScript
Raw Normal View History

/* @flow */
import React, { Component } from 'react';
2019-08-30 16:39:06 +00:00
import { IconModerator } from '../../../base/icons';
2019-04-15 16:23:28 +00:00
import { BaseIndicator } from '../../../base/react';
/**
* The type of the React {@code Component} props of {@link ModeratorIndicator}.
*/
type Props = {
/**
* From which side of the indicator the tooltip should appear from.
*/
tooltipPosition: string
};
/**
* React {@code Component} for showing a moderator icon with a tooltip.
*
* @extends Component
*/
class ModeratorIndicator extends Component<Props> {
/**
* Implements React's {@link Component#render()}.
*
* @inheritdoc
* @returns {ReactElement}
*/
render() {
return (
<div className = 'moderator-icon right'>
<BaseIndicator
className = 'focusindicator toolbar-icon'
2019-08-30 16:39:06 +00:00
icon = { IconModerator }
iconSize = { 13 }
tooltipKey = 'videothumbnail.moderator'
tooltipPosition = { this.props.tooltipPosition } />
</div>
);
}
}
export default ModeratorIndicator;