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.

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. }