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 661B

123456789101112131415161718192021222324
  1. import BaseIndicator from './BaseIndicator';
  2. /**
  3. * React {@code Component} for showing a video muted icon with a tooltip.
  4. *
  5. * @extends BaseIndicator
  6. */
  7. class VideoMutedIndicator extends BaseIndicator {
  8. /**
  9. * Initializes a new VideoMutedIndicator instance.
  10. *
  11. * @param {Object} props - The read-only React Component props with which
  12. * the new instance is to be initialized.
  13. */
  14. constructor(props) {
  15. super(props);
  16. this._classNames = 'videoMuted toolbar-icon';
  17. this._iconClass = 'icon-camera-disabled';
  18. this._tooltipKey = 'videothumbnail.videomute';
  19. }
  20. }
  21. export default VideoMutedIndicator;