Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
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.
 
 
 
 
 
 
jitsi-meet/react/features/toolbox/components/native/MoreOptionsButton.js

20 lines
537 B

// @flow
import { translate } from '../../../base/i18n';
import { IconMenu } from '../../../base/icons';
import { AbstractButton, type AbstractButtonProps } from '../../../base/toolbox/components';
type Props = AbstractButtonProps;
/**
* An implementation of a button to show more menu options.
*/
class MoreOptionsButton extends AbstractButton<Props, any> {
accessibilityLabel = 'toolbar.accessibilityLabel.moreOptions';
icon = IconMenu;
label = 'toolbar.moreOptions';
}
export default translate(MoreOptionsButton);