Files
jitsi-meet/react/features/filmstrip/components/native/ScreenShareIndicator.js
Robert Pintilii 936a1a6b0e ref(design) Update icons (#12489)
Remove unused icons
Remove fill none from icons
Rename some icons
2022-11-08 12:24:32 +02:00

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