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 ( ); }