diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-02-20 10:44:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-20 10:44:52 -0500 |
commit | a723baf9cc843599fb6539c873cedb6364647765 (patch) | |
tree | 76959aaf5acbe0c981447d8e2e4c19ff80bb21f5 /src/components/common | |
parent | 2bb7b351a0e509beb9e6d87364471599af402db2 (diff) | |
parent | a2cd0be38858241b00956a5aa5715b3213084db0 (diff) |
Merge pull request #252 from shravyaramesh/taggs-ring-fix
[bugfix] white ring on profile screen fixed
Diffstat (limited to 'src/components/common')
-rw-r--r-- | src/components/common/SocialIcon.tsx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/components/common/SocialIcon.tsx b/src/components/common/SocialIcon.tsx index 8216b6ff..cb3b926b 100644 --- a/src/components/common/SocialIcon.tsx +++ b/src/components/common/SocialIcon.tsx @@ -1,11 +1,10 @@ import React from 'react'; import {Image} from 'react-native'; -import {ScreenType} from '../../types'; interface SocialIconProps { social: string; style: object; - screenType: ScreenType; + whiteRing: boolean | undefined; } /** * An image component that returns the <Image> of the icon for a specific social media platform. @@ -13,12 +12,12 @@ interface SocialIconProps { const SocialIcon: React.FC<SocialIconProps> = ({ social: social, style: style, - screenType, + whiteRing, }) => { switch (social) { case 'Instagram': var icon = require('../../assets/socials/instagram-icon.png'); - if (screenType === ScreenType.SuggestedPeople) { + if (whiteRing) { icon = require('../../assets/socials/instagram-icon-white-bg.png'); } break; |