Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

HDVideoLabel.js 348B

12345678910111213141516
  1. import React from 'react';
  2. /**
  3. * A functional React {@code Component} for showing an HD status label.
  4. *
  5. * @returns {ReactElement}
  6. */
  7. export default function HDVideoLabel() {
  8. return (
  9. <span
  10. className = 'video-state-indicator moveToCorner'
  11. id = 'videoResolutionLabel'>
  12. HD
  13. </span>
  14. );
  15. }