mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
18 lines
423 B
JavaScript
18 lines
423 B
JavaScript
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import { IconScreenshare } from '../../../base/icons/svg';
|
|
import BaseIndicator from '../../../base/react/components/native/BaseIndicator';
|
|
|
|
/**
|
|
* Thumbnail badge for displaying if a participant is sharing their screen.
|
|
*
|
|
* @returns {React$Element<any>}
|
|
*/
|
|
export default function ScreenShareIndicator() {
|
|
return (
|
|
<BaseIndicator icon = { IconScreenshare } />
|
|
);
|
|
}
|