aboutsummaryrefslogtreecommitdiff
path: root/src/components/common/SocialIcon.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-02-20 12:24:33 -0500
committerIvan Chen <ivan@tagg.id>2021-02-20 12:24:33 -0500
commit82fc3c7ded1022a31cd532d469457d77f9214cc8 (patch)
tree08aeb9ce90be7ca69b56923bab6c34871b3a793a /src/components/common/SocialIcon.tsx
parent9db520bf91b9c157ab2c9d2d3696348e031698d2 (diff)
parent4b8130932b943afe9fdf63c611f1897622ab795e (diff)
Merge branch 'master' into tma258-sp-pagination-2
# Conflicts: # src/constants/api.ts # src/screens/suggestedPeople/SuggestedPeopleScreen.tsx # src/services/SuggestedPeopleService.ts
Diffstat (limited to 'src/components/common/SocialIcon.tsx')
-rw-r--r--src/components/common/SocialIcon.tsx7
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;