You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ScreenShareIndicator.js 439B

12345678910111213141516171819
  1. // @flow
  2. import React from 'react';
  3. import { IconShareDesktop } from '../../../base/icons';
  4. import { BaseIndicator } from '../../../base/react';
  5. /**
  6. * Thumbnail badge for displaying if a participant is sharing their screen.
  7. *
  8. * @returns {React$Element<any>}
  9. */
  10. export default function ScreenShareIndicator() {
  11. return (
  12. <BaseIndicator
  13. highlight = { false }
  14. icon = { IconShareDesktop } />
  15. );
  16. }