diff --git a/app/containers/AudioPlayer/Loading.tsx b/app/containers/AudioPlayer/Loading.tsx
deleted file mode 100644
index 90acf2c53..000000000
--- a/app/containers/AudioPlayer/Loading.tsx
+++ /dev/null
@@ -1,32 +0,0 @@
-import React, { useEffect } from 'react';
-import Animated, { Easing, useAnimatedStyle, useSharedValue, withRepeat, withTiming } from 'react-native-reanimated';
-
-import { CustomIcon } from '../CustomIcon';
-import { useTheme } from '../../theme';
-
-const Loading = () => {
- const rotation = useSharedValue(0);
- const { colors } = useTheme();
-
- useEffect(() => {
- rotation.value = withRepeat(
- withTiming(360, {
- duration: 1000,
- easing: Easing.inOut(Easing.linear)
- }),
- -1
- );
- }, []);
-
- const animatedStyle = useAnimatedStyle(() => ({
- transform: [{ rotate: `${rotation.value}deg` }]
- }));
-
- return (
-
-
-
- );
-};
-
-export default Loading;
diff --git a/app/containers/AudioPlayer/PlayButton.tsx b/app/containers/AudioPlayer/PlayButton.tsx
index 7b2c0a0e0..5003dabae 100644
--- a/app/containers/AudioPlayer/PlayButton.tsx
+++ b/app/containers/AudioPlayer/PlayButton.tsx
@@ -4,7 +4,7 @@ import Touchable from '../message/Touchable';
import { CustomIcon } from '../CustomIcon';
import { useTheme } from '../../theme';
import styles from './styles';
-import Loading from './Loading';
+import RCActivityIndicator from '../ActivityIndicator';
interface IButton {
loading: boolean;
@@ -34,7 +34,7 @@ const PlayButton = React.memo(({ loading, paused, onPress, disabled, isReadyToPl
background={Touchable.SelectableBackgroundBorderless()}
>
{loading ? (
-
+
) : (
)}