Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

AudioMutedIndicator.js 645B

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