mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-17 23:57:48 +00:00
18 lines
391 B
JavaScript
18 lines
391 B
JavaScript
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import { IconScreenshare } from '../../../base/icons';
|
|
import { BaseIndicator } from '../../../base/react';
|
|
|
|
/**
|
|
* Thumbnail badge for displaying if a participant is sharing their screen.
|
|
*
|
|
* @returns {React$Element<any>}
|
|
*/
|
|
export default function ScreenShareIndicator() {
|
|
return (
|
|
<BaseIndicator icon = { IconScreenshare } />
|
|
);
|
|
}
|