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.

AbstractSpeakerStatsButton.tsx 532B

1234567891011121314
  1. import { IconConnection } from '../../base/icons/svg';
  2. import AbstractButton, { IProps as AbstractButtonProps } from '../../base/toolbox/components/AbstractButton';
  3. /**
  4. * Implementation of a button for opening speaker stats dialog.
  5. */
  6. class AbstractSpeakerStatsButton extends AbstractButton<AbstractButtonProps> {
  7. accessibilityLabel = 'toolbar.accessibilityLabel.speakerStats';
  8. icon = IconConnection;
  9. label = 'toolbar.speakerStats';
  10. tooltip = 'toolbar.speakerStats';
  11. }
  12. export default AbstractSpeakerStatsButton;