Browse Source

changed red dot color

Viktoriia 11 tháng trước cách đây
mục cha
commit
b598f9c163
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  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