Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

VideoMutedIndicator.js 510B

1234567891011121314151617181920212223
  1. // @flow
  2. import React, { Component } from 'react';
  3. import { BaseIndicator } from '../../../base/react';
  4. /**
  5. * Thumbnail badge for displaying the video mute status of a participant.
  6. */
  7. export default class VideoMutedIndicator extends Component<{}> {
  8. /**
  9. * Implements React's {@link Component#render()}.
  10. *
  11. * @inheritdoc
  12. */
  13. render() {
  14. return (
  15. <BaseIndicator
  16. highlight = { false }
  17. icon = 'camera-disabled' />
  18. );
  19. }
  20. }