import { Link } from '@mui/icons-material'; import get from 'lodash/get'; import { FaBehance, FaDribbble, FaFacebookF, FaGithub, FaGitlab, FaInstagram, FaLinkedinIn, FaSkype, FaSoundcloud, FaStackOverflow, FaTelegram, FaTwitter, FaYoutube, } from 'react-icons/fa'; const profileIconMap: Record = { facebook: , twitter: , linkedin: , dribbble: , soundcloud: , github: , instagram: , stackoverflow: , behance: , gitlab: , telegram: , skype: , youtube: , }; const getProfileIcon = (network: string): JSX.Element => get(profileIconMap, network.toLowerCase(), ); export default getProfileIcon;