// @flow import type { Dispatch } from 'redux'; import { IconConnection } 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 }; /** * Implementation of a button for opening speaker stats dialog. */ class AbstractSpeakerStatsButton extends AbstractButton { accessibilityLabel = 'toolbar.accessibilityLabel.speakerStats'; icon = IconConnection; label = 'toolbar.speakerStats'; tooltip = 'toolbar.speakerStats'; } export default AbstractSpeakerStatsButton;