Quellcode durchsuchen

changed red dot color

Viktoriia vor 11 Monaten
Ursprung
Commit
b598f9c163
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  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