From 2b91745af1a9d32bae8e86cfef4e17b7964c9493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 29 Nov 2018 14:42:31 +0100 Subject: [PATCH] [RN] Fix dominant speaker and moderator indicators They are part of the Jitsi font now, there is no need to load them from FontAwesome. --- .../filmstrip/components/native/DominantSpeakerIndicator.js | 5 +++-- .../filmstrip/components/native/ModeratorIndicator.js | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/react/features/filmstrip/components/native/DominantSpeakerIndicator.js b/react/features/filmstrip/components/native/DominantSpeakerIndicator.js index 0591d9445..55c1c2242 100644 --- a/react/features/filmstrip/components/native/DominantSpeakerIndicator.js +++ b/react/features/filmstrip/components/native/DominantSpeakerIndicator.js @@ -1,6 +1,7 @@ import React, { Component } from 'react'; import { View } from 'react-native'; -import Icon from 'react-native-vector-icons/FontAwesome'; + +import { Icon } from '../../../base/font-icons'; import styles from './styles'; @@ -18,7 +19,7 @@ export default class DominantSpeakerIndicator extends Component { return ( ); diff --git a/react/features/filmstrip/components/native/ModeratorIndicator.js b/react/features/filmstrip/components/native/ModeratorIndicator.js index c06644cb7..6bf5962eb 100644 --- a/react/features/filmstrip/components/native/ModeratorIndicator.js +++ b/react/features/filmstrip/components/native/ModeratorIndicator.js @@ -1,5 +1,6 @@ import React, { Component } from 'react'; -import Icon from 'react-native-vector-icons/FontAwesome'; + +import { Icon } from '../../../base/font-icons'; import styles from './styles';