ソースを参照

changed red dot color

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