소스 검색

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