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.

MoreOptionsButton.js 566B

123456789101112131415161718192021
  1. // @flow
  2. import { translate } from '../../../base/i18n';
  3. import { IconMenu } from '../../../base/icons';
  4. import { AbstractButton } from '../../../base/toolbox';
  5. import type { AbstractButtonProps } from '../../../base/toolbox';
  6. type Props = AbstractButtonProps;
  7. /**
  8. * An implementation of a button to show more menu options.
  9. */
  10. class MoreOptionsButton extends AbstractButton<Props, any> {
  11. accessibilityLabel = 'toolbar.accessibilityLabel.moreOptions';
  12. icon = IconMenu;
  13. label = 'toolbar.moreOptions';
  14. }
  15. export default translate(MoreOptionsButton);