jiti-meet/react/features/filmstrip/components/native/ScreenShareIndicator.js

18 lines
393 B
JavaScript
Raw Normal View History

// @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 icon = { IconShareDesktop } />
);
}