diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-02-11 13:38:53 -0800 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-02-11 13:38:53 -0800 |
commit | dc2da789ed0f440e0da8020f891bb490536a38fe (patch) | |
tree | 1e081cc3d7dff6c4566dde08639e8ff7f817bfcb /src | |
parent | e60250a3661df67a6c0f3d7e17cf5943f03538c3 (diff) |
updated instagram icon
Diffstat (limited to 'src')
-rw-r--r-- | src/components/common/SocialIcon.tsx | 4 | ||||
-rw-r--r-- | src/components/taggs/Tagg.tsx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/components/common/SocialIcon.tsx b/src/components/common/SocialIcon.tsx index 0cd5d2a7..8216b6ff 100644 --- a/src/components/common/SocialIcon.tsx +++ b/src/components/common/SocialIcon.tsx @@ -17,9 +17,9 @@ const SocialIcon: React.FC<SocialIconProps> = ({ }) => { switch (social) { case 'Instagram': - var icon = require('../../assets/socials/instagram-icon-white-bg.png'); + var icon = require('../../assets/socials/instagram-icon.png'); if (screenType === ScreenType.SuggestedPeople) { - icon = require('../../assets/socials/instagram-icon.png'); + icon = require('../../assets/socials/instagram-icon-white-bg.png'); } break; case 'Facebook': diff --git a/src/components/taggs/Tagg.tsx b/src/components/taggs/Tagg.tsx index 29b55786..bb450b64 100644 --- a/src/components/taggs/Tagg.tsx +++ b/src/components/taggs/Tagg.tsx @@ -148,7 +148,7 @@ const Tagg: React.FC<TaggProps> = ({ <SocialIcon style={styles.icon} social={social} - screenType={ScreenType.Profile} + screenType={screenType} /> {pickTheRightRingHere()} </TouchableOpacity> |