| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* @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;
|