jiti-meet/react/features/filmstrip/components/native/DominantSpeakerIndicator.js

25 lines
517 B
JavaScript
Raw Normal View History

2019-03-27 10:23:41 +00:00
// @flow
import React, { Component } from 'react';
2019-03-29 13:26:49 +00:00
import BaseIndicator from './BaseIndicator';
/**
* Thumbnail badge showing that the participant is the dominant speaker in
* the conference.
*/
2019-03-27 10:23:41 +00:00
export default class DominantSpeakerIndicator extends Component<{}> {
/**
2019-03-29 13:26:49 +00:00
* Implements {@code Component#render}.
*
* @inheritdoc
*/
render() {
return (
2019-03-29 13:26:49 +00:00
<BaseIndicator
highlight = { true }
icon = 'dominant-speaker' />
);
}
}