Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

VideoMutedIndicator.js 649B

123456789101112131415161718192021222324
  1. import React, { Component } from 'react';
  2. import Icon from 'react-native-vector-icons/FontAwesome';
  3. import { styles } from './styles';
  4. /**
  5. * Thumbnail badge for displaying the video mute status of a participant.
  6. */
  7. export class VideoMutedIndicator extends Component {
  8. /**
  9. * Implements React's {@link Component#render()}.
  10. *
  11. * @inheritdoc
  12. */
  13. render() {
  14. // TODO: This should use video-camera-slash, but that doesn't exist in
  15. // the fontawesome icon set yet.
  16. return (
  17. <Icon
  18. name = 'eye-slash'
  19. style = { styles.thumbnailIndicator } />
  20. );
  21. }
  22. }