mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
Remove tint for participant in large view Change pinned indicator from border to icon On stage view move screen sharing indicator from top to bottom On stage view show pinned indicator instead of moderator indicator
18 lines
378 B
JavaScript
18 lines
378 B
JavaScript
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import { IconPinParticipant } from '../../../base/icons';
|
|
import { BaseIndicator } from '../../../base/react';
|
|
|
|
/**
|
|
* Thumbnail badge for displaying if a participant is pinned.
|
|
*
|
|
* @returns {React$Element<any>}
|
|
*/
|
|
export default function PinnedIndicator() {
|
|
return (
|
|
<BaseIndicator icon = { IconPinParticipant } />
|
|
);
|
|
}
|