Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jitsi-meet/react/features/speaker-stats/components/AbstractSpeakerStatsButton.js

29 lines
739 B

// @flow
import type { Dispatch } from 'redux';
import { IconPresentation } from '../../base/icons';
import { AbstractButton } from '../../base/toolbox/components';
import type { AbstractButtonProps } from '../../base/toolbox/components';
type Props = AbstractButtonProps & {
/**
* True if the navigation bar should be visible.
*/
dispatch: Dispatch<any>
};
/**
* Implementation of a button for opening speaker stats dialog.
*/
class AbstractSpeakerStatsButton extends AbstractButton<Props, *> {
accessibilityLabel = 'toolbar.accessibilityLabel.speakerStats';
icon = IconPresentation;
label = 'toolbar.speakerStats';
tooltip = 'toolbar.speakerStats';
}
export default AbstractSpeakerStatsButton;