From 8d1d3a9c4241114a82a1eb7f45b495c77d02a303 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Mon, 3 Jul 2017 14:01:43 +0200 Subject: [PATCH] [RN] Use same video mute indicator icon as on the web --- .../filmstrip/components/native/VideoMutedIndicator.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/react/features/filmstrip/components/native/VideoMutedIndicator.js b/react/features/filmstrip/components/native/VideoMutedIndicator.js index a43ac6ec0..ce757c347 100644 --- a/react/features/filmstrip/components/native/VideoMutedIndicator.js +++ b/react/features/filmstrip/components/native/VideoMutedIndicator.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'; @@ -13,11 +14,9 @@ export class VideoMutedIndicator extends Component { * @inheritdoc */ render() { - // TODO: This should use video-camera-slash, but that doesn't exist in - // the fontawesome icon set yet. return ( ); }