react-icons/fa APIs
- FaTwitter
- FaGithub
- FaSearch
- FaDiscord
- FaEye
- FaInstagram
- FaPlus
- FaFacebookF
- FaTrash
- FaGlobe
- FaUsers
- FaEdit
- FaListUl
- FaWhatsapp
- FaApple
- FaTimes
- FaMoon
- FaSun
- FaYoutube
- FaInfoCircle
- FaSave
- FaEyeSlash
- FaCheck
- FaRegCheckCircle
- FaExternalLinkAlt
- FaChevronUp
- FaChevronDown
- FaUser
- FaThumbsUp
- FaGoogle
- FaChevronLeft
- FaTrashAlt
- FaCheckCircle
- FaExclamationCircle
- FaCode
- FaFilter
- FaLinkedinIn
- FaHome
- FaAngleRight
- FaAngleLeft
- FaCopy
- FaArrowRight
- FaThumbsDown
- FaTimesCircle
- FaMapMarkedAlt
- FaNetworkWired
- FaFacebook
- FaMedal
- FaQuestionCircle
- FaAppStoreIos
- FaRegNewspaper
- FaLinkedin
- FaAward
- FaSpinner
- FaBell
- FaLink
- FaCog
- FaCaretDown
- FaCaretLeft
- FaCaretRight
- FaRegQuestionCircle
- FaSignInAlt
- FaRegCircle
- FaPlayCircle
- FaBook
- FaMinus
- FaRegClock
- FaRegTimesCircle
- FaUserClock
- FaClipboardCheck
- FaTelegram
- FaToolbox
- FaCalendarAlt
- FaChevronCircleDown
- FaChevronCircleUp
- FaChevronCircleRight
- FaCogs
- FaDownload
- FaSitemap
- FaTrophy
- FaGripVertical
- FaFlagCheckered
- FaMapMarkerAlt
- FaChrome
- FaRegStickyNote
- FaRegSun
- FaTags
- FaGetPocket
- FaRegEdit
- FaRobot
- FaDev
- FaQuora
- FaGraduationCap
- FaClipboard
- FaVine
- FaMicroscope
- FaReact
- FaVuejs
- FaPalette
- FaPen
- FaSmile
- FaPaperPlane
- FaImage
- FaUserPlus
- FaAnchor
- FaCaretUp
- FaRss
- FaRegLightbulb
- FaStar
- FaSignOutAlt
- FaUserMinus
- FaEnvelopeOpenText
- FaPencilAlt
- FaExclamation
- FaUnlock
- FaLock
- FaSlack
- FaUserCircle
- FaEnvelope
- FaKey
- FaRegStar
- FaWrench
- FaMarkdown
- FaArrowCircleLeft
- FaArrowCircleRight
- FaScroll
- FaUserFriends
- FaBolt
- FaExpand
- FaLocationArrow
- FaStopCircle
- FaHandHolding
- FaPhotoVideo
- FaShareAlt
- FaVoicemail
- FaGithubAlt
- FaLifeRing
- FaSyncAlt
- FaSoundcloud
- FaSpotify
- FaHistory
- FaBloggerB
- FaDrawPolygon
- FaHandPaper
- FaHandPointer
- FaPhone
- FaList
- FaMailBulk
- FaHourglass
- FaMediumM
- FaPlay
- FaGift
- FaChevronRight
- FaLongArrowAltRight
- FaMedium
- FaWindowClose
- FaEllipsisH
- FaVolumeUp
- FaVolumeMute
- FaKeyboard
- FaHammer
- FaFileImport
- FaListOl
- FaSquare
- FaFillDrip
- FaUserLock
- FaRegPlusSquare
- FaRegFile
- FaSlash
- FaCloudUploadAlt
- FaBackspace
- FaAngleDoubleRight
- FaAngleDoubleLeft
- FaGlasses
- FaPause
- FaCheckSquare
- FaComment
- FaPrint
- FaShareSquare
- FaChartBar
- FaMagic
- FaBicycle
- FaCat
- FaDirections
- FaGlobeAfrica
- FaMountain
- FaUpload
- FaLightbulb
- FaDocker
- FaTwitterSquare
- FaGlobeAmericas
- FaLinux
- FaFile
- FaDesktop
- FaFacebookMessenger
- FaWpforms
- FaBomb
- FaBars
- FaTabletAlt
- FaMemory
- FaCalendarDay
- Fa500Px
- FaAdobe
- FaAdversal
- FaAirbnb
- FaAlipay
- FaAmazon
- FaAmazonPay
- FaBehanceSquare
- FaInstagramSquare
- FaLaugh
- FaMagento
- FaOpera
- FaYinYang
Other Related APIs
react-icons/fa#FaMedium TypeScript Examples
The following examples show how to use
react-icons/fa#FaMedium.
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: index.tsx From livepeer-com with MIT License | 4 votes |
TeamMember = ({
fullname,
image,
role,
twitter,
github,
linkedin,
medium,
css = {},
...props
}) => {
const builder = imageUrlBuilder(client as any);
return (
<Box
css={{
textAlign: "center",
borderRadius: 24,
border: "1px solid $colors$neutral5",
p: 40,
bc: "$neutral2",
display: "flex",
flexDirection: "column",
justifyContent: "space-between",
transition: "box-shadow .15s",
"&:hover": {
boxShadow:
"0px 2px 1px rgba(0, 0, 0, 0.04), 0px 16px 40px rgba(0, 0, 0, 0.04)",
},
...css,
}}
{...props}>
<Box>
<Box
as={Image}
css={{
borderRadius: 1000,
objectFit: "cover",
}}
width={130}
height={130}
src={builder.image(image).url()}
/>
<Box css={{ mb: "$4" }}>
<Heading
as="h3"
css={{
mb: "$1",
mt: "$3",
fontWeight: 500,
fontSize: "20px",
}}>
{fullname}
</Heading>
<Text size="3" variant="gray" css={{ color: "$primary9" }}>
{role}
</Text>
</Box>
</Box>
<Flex
css={{
maxWidth: 120,
mx: "auto",
justifyContent: "center",
alignItems: "center",
}}>
{twitter && (
<A
css={{
"&:not(:last-of-type)": { mr: "$3" },
color: "$hiContrast",
fontSize: "$3",
transition: "color .15s",
"&:hover": { color: "$violet9" },
}}
href={twitter}
target="_blank"
rel="noopener noreferrer">
<FaTwitter />
</A>
)}
{linkedin && (
<A
css={{
"&:not(:last-of-type)": { mr: "$3" },
color: "$hiContrast",
fontSize: "$3",
transition: "color .15s",
"&:hover": { color: "$violet9" },
}}
href={linkedin}
target="_blank"
rel="noopener noreferrer">
<FaLinkedin />
</A>
)}
{medium && (
<A
css={{
"&:not(:last-of-type)": { mr: "$3" },
color: "$hiContrast",
fontSize: "$3",
transition: "color .15s",
"&:hover": { color: "$violet9" },
}}
href={medium}
target="_blank"
rel="noopener noreferrer">
<FaMedium />
</A>
)}
{github && (
<A
css={{
"&:not(:last-of-type)": { mr: "$3" },
color: "$hiContrast",
fontSize: "$3",
transition: "color .15s",
"&:hover": { color: "$violet9" },
}}
href={github}
target="_blank"
rel="noopener noreferrer">
<FaGithub />
</A>
)}
</Flex>
</Box>
);
}