2022-11-22 15:56:37 +02:00
|
|
|
import { IconConnection } from '../../base/icons/svg';
|
2023-03-29 10:16:54 +03:00
|
|
|
import AbstractButton, { IProps as AbstractButtonProps } from '../../base/toolbox/components/AbstractButton';
|
2021-11-10 19:49:53 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Implementation of a button for opening speaker stats dialog.
|
|
|
|
|
*/
|
2023-04-03 11:09:50 +03:00
|
|
|
class AbstractSpeakerStatsButton extends AbstractButton<AbstractButtonProps> {
|
2021-11-10 19:49:53 +02:00
|
|
|
accessibilityLabel = 'toolbar.accessibilityLabel.speakerStats';
|
2022-11-08 12:24:32 +02:00
|
|
|
icon = IconConnection;
|
2021-11-10 19:49:53 +02:00
|
|
|
label = 'toolbar.speakerStats';
|
|
|
|
|
tooltip = 'toolbar.speakerStats';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default AbstractSpeakerStatsButton;
|