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.
1234567891011121314 |
- import { IconConnection } from '../../base/icons/svg';
- import AbstractButton, { IProps as AbstractButtonProps } from '../../base/toolbox/components/AbstractButton';
-
- /**
- * Implementation of a button for opening speaker stats dialog.
- */
- class AbstractSpeakerStatsButton extends AbstractButton<AbstractButtonProps> {
- accessibilityLabel = 'toolbar.accessibilityLabel.speakerStats';
- icon = IconConnection;
- label = 'toolbar.speakerStats';
- tooltip = 'toolbar.speakerStats';
- }
-
- export default AbstractSpeakerStatsButton;
|