react-icons/fa#FaLinkedinIn TypeScript Examples
The following examples show how to use
react-icons/fa#FaLinkedinIn.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: socialLink.ts From midway with MIT License | 6 votes |
getIcon = icon => {
switch (icon) {
case 'Apple':
return FaApple
case 'facebook':
return FaFacebookF
case 'instagram':
return FaInstagram
case 'Soundcloud':
return FaSoundcloud
case 'Spotify':
return FaSpotify
case 'twitter':
return FaTwitter
case 'youtube':
return FaYoutube
case 'linkedin':
return FaLinkedinIn
case 'github':
return FaGithub
default:
return false
}
}
Example #2
Source File: index.tsx From polkabtc-ui with Apache License 2.0 | 6 votes |
SOCIAL_PLATFORM_ITEMS = [ { link: INTERLAY_TWITTER, icon: <FaTwitter /> }, { link: INTERLAY_MEDIUM, icon: <FaMediumM /> }, { link: INTERLAY_GITHUB, icon: <FaGithub /> }, { link: INTERLAY_LINKEDIN, icon: <FaLinkedinIn /> }, { link: INTERLAY_DISCORD, icon: <FaDiscord /> } ]
Example #3
Source File: AppFooter.tsx From po8klasie with GNU General Public License v3.0 | 5 votes |
socialLinks: [string, IconType][] = [
['https://fb.com/po8klasie', FaFacebookF],
['https://twitter.com/po8klasie', FaTwitter],
['https://github.com/po8klasie', FaGithub],
['https://linkedin.com/company/po8klasie', FaLinkedinIn],
]
Example #4
Source File: Footer.tsx From po8klasie with GNU General Public License v3.0 | 5 votes |
socialLinks: [string, IconType][] = [
['https://fb.com/po8klasie', FaFacebookF],
['https://twitter.com/po8klasie', FaTwitter],
['https://github.com/po8klasie', FaGithub],
['https://linkedin.com/company/po8klasie', FaLinkedinIn],
]
Example #5
Source File: TeamSection.tsx From po8klasie with GNU General Public License v3.0 | 5 votes |
iconMapping: Record<string, IconType> = {
linkedin: FaLinkedinIn,
github: FaGithub,
website: FaGlobe,
}