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.

AudioMutedIndicator.js 649B

123456789101112131415161718192021222324
  1. import BaseIndicator from './BaseIndicator';
  2. /**
  3. * React {@code Component} for showing an audio muted icon with a tooltip.
  4. *
  5. * @extends BaseIndicator
  6. */
  7. class AudioMutedIndicator extends BaseIndicator {
  8. /**
  9. * Initializes a new AudioMutedIcon 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 = 'audioMuted toolbar-icon';
  17. this._iconClass = 'icon-mic-disabled';
  18. this._tooltipKey = 'videothumbnail.mute';
  19. }
  20. }
  21. export default AudioMutedIndicator;