mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 17:07:48 +00:00
* feat(face-landmarks): add face landmarks timeline fixes after rebase * fixes after rebase compiling and linting * fix: change keyboard shorcut for participants stats * fix: label for emotions switch * fix: linting issues * code review changes * fix linting issues * code review changes 2 * fix typo
27 lines
759 B
TypeScript
27 lines
759 B
TypeScript
import { IStore } from '../../app/types';
|
|
import { IconConnection } from '../../base/icons/svg';
|
|
// eslint-disable-next-line lines-around-comment
|
|
// @ts-ignore
|
|
import { AbstractButton, type AbstractButtonProps } from '../../base/toolbox/components';
|
|
|
|
type Props = AbstractButtonProps & {
|
|
|
|
/**
|
|
* True if the navigation bar should be visible.
|
|
*/
|
|
dispatch: IStore['dispatch'];
|
|
};
|
|
|
|
|
|
/**
|
|
* Implementation of a button for opening speaker stats dialog.
|
|
*/
|
|
class AbstractSpeakerStatsButton extends AbstractButton<Props, any, any> {
|
|
accessibilityLabel = 'toolbar.accessibilityLabel.speakerStats';
|
|
icon = IconConnection;
|
|
label = 'toolbar.speakerStats';
|
|
tooltip = 'toolbar.speakerStats';
|
|
}
|
|
|
|
export default AbstractSpeakerStatsButton;
|