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

44 lines
1.0 KiB
JavaScript
Raw Normal View History

/* @flow */
import React, { Component } from 'react';
import BaseIndicator from './BaseIndicator';
/**
* 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'
iconClassName = 'icon-star'
tooltipKey = 'videothumbnail.moderator'
tooltipPosition = { this.props.tooltipPosition } />
</div>
);
}
}
export default ModeratorIndicator;