Files
jitsi-meet/react/features/filmstrip/components/native/ScreenShareIndicator.js
Robert Pintilii 05a79ec793 ref: Remove index files (#13154)
Fix imports
Convert some files to TS
2023-04-03 16:33:18 +03:00

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 } />
);
}