diff options
Diffstat (limited to 'src/components/comments/CommentTile.tsx')
-rw-r--r-- | src/components/comments/CommentTile.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/comments/CommentTile.tsx b/src/components/comments/CommentTile.tsx index 9a1607f7..39605f2c 100644 --- a/src/components/comments/CommentTile.tsx +++ b/src/components/comments/CommentTile.tsx @@ -4,7 +4,7 @@ import {ProfilePreview} from '../profile'; import {CommentType, ScreenType, TypeOfComment} from '../../types'; import {StyleSheet} from 'react-native'; import ClockIcon from '../../assets/icons/clock-icon-01.svg'; -import {COMMENT_REPLIES} from '../../constants'; +import {TAGG_LIGHT_BLUE} from '../../constants'; import {TouchableOpacity} from 'react-native-gesture-handler'; import {getTimePosted, normalize, SCREEN_WIDTH} from '../../utils'; import Arrow from '../../assets/icons/back-arrow-colored.svg'; @@ -89,7 +89,7 @@ const CommentTile: React.FC<CommentTileProps> = ({ <Arrow width={12} height={11} - color={COMMENT_REPLIES} + color={TAGG_LIGHT_BLUE} style={ !showReplies ? styles.repliesDownArrow @@ -164,7 +164,7 @@ const styles = StyleSheet.create({ }, repliesText: { - color: COMMENT_REPLIES, + color: TAGG_LIGHT_BLUE, fontWeight: '500', fontSize: normalize(12), marginRight: '3%', |