Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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