diff options
author | Ashm Walia <40498934+ashmgarv@users.noreply.github.com> | 2020-10-24 17:53:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-24 20:53:37 -0400 |
commit | 44a25bfabd356f5eee5ec4f580452407a7e40246 (patch) | |
tree | 12fd8aa166049361fc6306b2c427e3201e13856e /src/components/common/SocialIcon.tsx | |
parent | 80a5b47d9fef940604d729ff5c428e16aa4be37a (diff) |
[TMA 302] Social media linking to login (#71)
* Social media linking to login
* Social media linking to login
Diffstat (limited to 'src/components/common/SocialIcon.tsx')
-rw-r--r-- | src/components/common/SocialIcon.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/common/SocialIcon.tsx b/src/components/common/SocialIcon.tsx index 5c1098af..a46b1445 100644 --- a/src/components/common/SocialIcon.tsx +++ b/src/components/common/SocialIcon.tsx @@ -40,6 +40,9 @@ const SocialIcon: React.FC<SocialIconProps> = ({ case 'Youtube': var icon = require('../../assets/images/youtube-icon.png'); break; + case 'TikTok': + var icon = require('../../assets/images/tiktok-icon.png'); + break; default: var icon = require('../../assets/images/logo.png'); break; |