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#useState
- react-router-dom#useHistory
- antd#Typography
- react-icons/fa#FaFacebook
- react-icons/fa#FaApple
- react-icons/fa#FaAppStoreIos
- react-icons/fa#Fa500Px
- react-icons/fa#FaAdobe
- react-icons/fa#FaAdversal
- react-icons/fa#FaAirbnb
- react-icons/fa#FaAlipay
- react-icons/fa#FaAmazon
- react-icons/fa#FaAmazonPay
- react-icons/fa#FaBehanceSquare
- react-icons/fa#FaInstagramSquare
- react-icons/fa#FaLaugh
- react-icons/fa#FaMagento
- react-icons/fa#FaOpera
- react-icons/fa#FaYinYang
- utils#initOAuthWindow
- umi#Helmet
react-icons/fa#FaGoogle TypeScript Examples
The following examples show how to use
react-icons/fa#FaGoogle.
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: Login.tsx From convoychat with GNU General Public License v3.0 | 6 votes |
function Login() {
const { login } = useAuthContext();
const onSuccess = () => {
login();
toast.success("Logged in successfully");
};
return (
<HomeWrapper>
<ConvoyLogo />
<div className="wrapper_card">
<div>
<h2>
Stay <span className="textcolor--primary">Connected</span>
</h2>
<p>
I know nobody would bother to login if i don’t provide social login
:(
</p>
<Button icon={FaGoogle} onClick={initOAuthWindow(onSuccess)}>
Continue with Google
</Button>
</div>
</div>
</HomeWrapper>
);
}
Example #2
Source File: index.tsx From smart-background with MIT License | 6 votes |
icons = [ <Fa500Px />, <FaApple />, <FaAdobe />, <FaAdversal />, <FaAirbnb />, <FaAlipay />, <FaAmazonPay />, <FaAmazon />, <FaAppStoreIos />, <FaBehanceSquare />, <FaMagento />, <FaGoogle />, <FaInstagramSquare />, <FaOpera />, ]
Example #3
Source File: SocialLogins.tsx From Frontend with MIT License | 5 votes |
SocialLogins: React.FC<{
onSuccess?: (user?: firebase.auth.UserCredential) => void;
onError?: (err: any) => void;
}> = ({ onSuccess = () => {}, onError = () => {} }) => {
const { socialLogins } = useFirebaseConfig();
const enableGoogle = socialLogins.includes('google');
const enableFacebook = socialLogins.includes('facebook');
const [isLoading, setLoading] = React.useState<boolean>(false);
return (
<Stack>
{enableGoogle && (
<Box>
<Button
isLoading={isLoading}
leftIcon={FaGoogle}
onClick={async () => {
try {
setLoading(true);
auth.signInWithRedirect(googleProvider());
} catch (err) {
console.error('Authentication Error: ', err);
}
}}
>
Sign in with Google
</Button>
</Box>
)}
{enableFacebook && (
<Box>
<Button
isLoading={isLoading}
leftIcon={FaFacebook}
onClick={async () => {
try {
setLoading(true);
auth.signInWithRedirect(facebookProvider());
} catch (err) {
console.error('Authentication Error: ', err);
}
}}
>
Sign in with Facebook
</Button>
</Box>
)}
</Stack>
);
}