您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }