Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 12345678910111213141516171819 |
- // @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
- highlight = { false }
- icon = { IconShareDesktop } />
- );
- }
|