Files
jitsi-meet/react/features/filmstrip/components/native/ScreenShareIndicator.js
2020-09-09 18:59:12 +02:00

20 lines
439 B
JavaScript

// @flow
import React from 'react';
import { IconShareDesktop } 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
highlight = { false }
icon = { IconShareDesktop } />
);
}