Viktoriia преди 11 месеца
родител
ревизия
b598f9c163
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  1. 2 1
      src/components/BlinkingDot/index.tsx

+ 2 - 1
src/components/BlinkingDot/index.tsx

@@ -7,6 +7,7 @@ import Animated, {
   withTiming,
   Easing
 } from 'react-native-reanimated';
+import { Colors } from 'src/theme';
 
 const BlinkingDot = ({
   diameter = 8,
@@ -36,7 +37,7 @@ const BlinkingDot = ({
           width: diameter,
           height: diameter,
           borderRadius: diameter / 2,
-          backgroundColor: 'red',
+          backgroundColor: Colors.RED,
           position: 'absolute',
           right,
           top