您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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);