mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-20 08:07:47 +00:00
Updated participants list to: - show Moderator label - show correct status icons (red for force muted) - show participants in the right order Updated moderation to: - show moderation menu at all times - make moderation options functional Updated notifications: - fixed raise hand to show name - display moderator rights granted Updated mute/ stop video for all dialogs to include moderation toggles Added ask to unmute button Fix comments on ask to unmute Co-authored-by: robertpin <robert.pin9@gmail.com>
11 lines
238 B
JavaScript
11 lines
238 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
|
|
import { Icon, IconHorizontalPoints } from '../../../base/icons';
|
|
|
|
const HorizontalDotsIcon = () => (<Icon
|
|
size = { 20 }
|
|
src = { IconHorizontalPoints } />);
|
|
|
|
export default HorizontalDotsIcon;
|