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.

VideoMutedIndicator.js 620B

12345678910111213141516171819202122232425
  1. import React, { Component } from 'react';
  2. import BaseIndicator from './BaseIndicator';
  3. /**
  4. * React {@code Component} for showing a video muted icon with a tooltip.
  5. *
  6. * @extends Component
  7. */
  8. class VideoMutedIndicator extends Component {
  9. /**
  10. * Implements React's {@link Component#render()}.
  11. *
  12. * @inheritdoc
  13. */
  14. render() {
  15. return (
  16. <BaseIndicator
  17. className = 'videoMuted toolbar-icon'
  18. iconClassName = 'icon-camera-disabled'
  19. tooltipKey = 'videothumbnail.videomute' />
  20. );
  21. }
  22. }
  23. export default VideoMutedIndicator;