From 5d4d4781d5cf8dea91e2c74fa3acf176eb39491c Mon Sep 17 00:00:00 2001 From: noumantahir Date: Fri, 17 Sep 2021 20:42:45 +0500 Subject: [PATCH] action panel icon updates --- .../organisms/quickProfileModal/children/actionPanel.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/organisms/quickProfileModal/children/actionPanel.tsx b/src/components/organisms/quickProfileModal/children/actionPanel.tsx index 367a29339..f0dab34a7 100644 --- a/src/components/organisms/quickProfileModal/children/actionPanel.tsx +++ b/src/components/organisms/quickProfileModal/children/actionPanel.tsx @@ -15,8 +15,8 @@ interface ActionPanelProps { export const ActionPanel = ({isFollowing, isFavourite, onFavouritePress, onFollowPress}: ActionPanelProps) => { const heartColor = isFavourite - ? '$primaryRed' - : '$primaryDarkGray' + ? '$primaryBlue' + : '$iconColor' const followIcon = isFollowing ? 'user-check' @@ -28,7 +28,7 @@ export const ActionPanel = ({isFollowing, isFavourite, onFavouritePress, onFollo iconType='FontAwesome5' name={followIcon} size={20} - color={EStyleSheet.value('$primaryDarkGray')} + color={EStyleSheet.value('$iconColor')} disabled={isFollowing} onPress={onFollowPress} />