add icon packs according to #834

This commit is contained in:
Abir Ganguly
2023-05-09 22:10:31 +05:30
parent 6a8db92fc4
commit 7074b6fc76

View File

@ -19,7 +19,15 @@ import {
FaXing, FaXing,
FaYoutube, FaYoutube,
} from 'react-icons/fa'; } from 'react-icons/fa';
import { SiCodeberg, SiCodechef, SiCodeforces } from 'react-icons/si'; import {
SiCodeberg,
SiCodechef,
SiCodeforces,
SiGeeksforgeeks,
SiLeetcode,
SiHackerearth,
SiTopcoder,
} from 'react-icons/si';
const profileIconMap: Record<string, JSX.Element> = { const profileIconMap: Record<string, JSX.Element> = {
behance: <FaBehance />, behance: <FaBehance />,
@ -28,10 +36,13 @@ const profileIconMap: Record<string, JSX.Element> = {
codeforces: <SiCodeforces />, codeforces: <SiCodeforces />,
dribbble: <FaDribbble />, dribbble: <FaDribbble />,
facebook: <FaFacebookF />, facebook: <FaFacebookF />,
geeksforgeeks: <SiGeeksforgeeks />,
github: <FaGithub />, github: <FaGithub />,
gitlab: <FaGitlab />, gitlab: <FaGitlab />,
hackerearth: <SiHackerearth />,
hackerrank: <FaHackerrank />, hackerrank: <FaHackerrank />,
instagram: <FaInstagram />, instagram: <FaInstagram />,
leetcode: <SiLeetcode />,
linkedin: <FaLinkedinIn />, linkedin: <FaLinkedinIn />,
mastodon: <FaMastodon />, mastodon: <FaMastodon />,
medium: <FaMedium />, medium: <FaMedium />,
@ -39,6 +50,7 @@ const profileIconMap: Record<string, JSX.Element> = {
soundcloud: <FaSoundcloud />, soundcloud: <FaSoundcloud />,
stackoverflow: <FaStackOverflow />, stackoverflow: <FaStackOverflow />,
telegram: <FaTelegram />, telegram: <FaTelegram />,
topcoder: <SiTopcoder />,
twitter: <FaTwitter />, twitter: <FaTwitter />,
xing: <FaXing />, xing: <FaXing />,
youtube: <FaYoutube />, youtube: <FaYoutube />,