Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

AbstractSpeakerStatsButton.js 739B

12345678910111213141516171819202122232425262728
  1. // @flow
  2. import type { Dispatch } from 'redux';
  3. import { IconPresentation } from '../../base/icons';
  4. import { AbstractButton } from '../../base/toolbox/components';
  5. import type { AbstractButtonProps } from '../../base/toolbox/components';
  6. type Props = AbstractButtonProps & {
  7. /**
  8. * True if the navigation bar should be visible.
  9. */
  10. dispatch: Dispatch<any>
  11. };
  12. /**
  13. * Implementation of a button for opening speaker stats dialog.
  14. */
  15. class AbstractSpeakerStatsButton extends AbstractButton<Props, *> {
  16. accessibilityLabel = 'toolbar.accessibilityLabel.speakerStats';
  17. icon = IconPresentation;
  18. label = 'toolbar.speakerStats';
  19. tooltip = 'toolbar.speakerStats';
  20. }
  21. export default AbstractSpeakerStatsButton;