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 537B

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