react-icons/fa#FaFacebookF TypeScript Examples

The following examples show how to use react-icons/fa#FaFacebookF. 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: SocialButtons.tsx    From DevC-benin-jobs with GNU General Public License v3.0 6 votes vote down vote up
SocialButtons: React.FC = (): JSX.Element => {
  return (
    <Fragment>
      <div className="d-flex align-items-center full-width margin-bottom-xs">
        <div className="flex-equal slim-border-bottom" />
        <span className="color-gray padding-horizontal-sm font-xs">OR</span>
        <div className="flex-equal slim-border-bottom" />
      </div>
      <div className="d-flex align-items-center justify-content-between full-width">
        <SubmitButton
          action={() => null}
          backgroundClassName="bg-facebook"
          className="flex-equal margin-right-sm">
          <div className="d-flex align-items-center">
            <FaFacebookF className="color-white margin-right-sm font-sm" />
            <span className="font-xs font-weight-normal">Log in with facebook</span>
          </div>
        </SubmitButton>
        <SubmitButton
          action={() => null}
          backgroundClassName="bg-google"
          className="flex-equal">
          <span className="font-xs font-weight-normal">Log in with Google</span>
        </SubmitButton>
      </div>
    </Fragment>
  );
}
Example #2
Source File: socialLink.ts    From midway with MIT License 6 votes vote down vote up
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 #3
Source File: linktreeList.tsx    From dhafit.xyz with MIT License 6 votes vote down vote up
linktreeList = [
  { href: "https://twitter.com/DhafitF", text: "Twitter", icon: <FaTwitter /> },
  {
    href: "https://trakteer.id/dhafid",
    text: "Trakteer",
    icon: <Image src="/assets/icon/lines-trakteer-icon.png" alt="Trakteer logo" width="100%" height="100%" />,
  },
  { href: "https://www.instagram.com/dhafitf", text: "Instagram", icon: <FaInstagram /> },
  { href: "https://www.nogisub.com/", text: "Fansub", icon: <FaBloggerB /> },
  { href: "https://www.facebook.com/dhafid.farenza", text: "Facebook", icon: <FaFacebookF /> },
  { href: "https://github.com/dhafitf", text: "Github", icon: <FaGithub /> },
  { href: "https://www.youtube.com/c/dhafitfarenza", text: "Facebook", icon: <FaYoutube /> },
]
Example #4
Source File: ContactUsSection.tsx    From po8klasie with GNU General Public License v3.0 6 votes vote down vote up
ContactUsSection: FC = () => {
  const { t } = useTranslation('landing', { keyPrefix: 'contactUsSection' });
  return (
    <div className="my-32" id="contact-us">
      <div className="w-container mx-auto">
        <h2 className="text-center text-3xl font-bold">{t('mainHeader1')}</h2>
        <div className="mt-10 flex justify-center flex-wrap">
          <div className="mt-10 md:mt-0">
            <RoundedExternalLink href="mailto:[email protected]" icon={BsEnvelope}>
              [email protected]
            </RoundedExternalLink>
          </div>
          <div className="mt-10 md:mt-0 mx-10">
            <RoundedExternalLink href="https://m.me/po8klasie" icon={FaFacebookMessenger}>
              Messenger
            </RoundedExternalLink>
          </div>
        </div>
        <h2 className="mt-32 text-center text-3xl font-bold">{t('mainHeader2')}</h2>
        <div className="mt-10 flex justify-center">
          <RoundedExternalLink href="https://fb.com/po8klasie" icon={FaFacebookF}>
            fb.com/po8klasie
          </RoundedExternalLink>
        </div>
      </div>
    </div>
  );
}
Example #5
Source File: SocialLinks.tsx    From coindrop with GNU General Public License v3.0 6 votes vote down vote up
SocialLinks: FunctionComponent = () => {
    return (
        <Flex
            align="center"
            wrap="wrap"
            justify="center"
            mx={["auto", null, "initial"]}
            p={2}
        >
            <SocialLink icon={FaTwitter} href={twitterUrl} />
            <SocialLink icon={FaYoutube} href={youtubeUrl} />
            <SocialLink icon={FaFacebookF} href={facebookUrl} />
            <SocialLink icon={FaGithub} href={githubUrl} />
        </Flex>
    );
}
Example #6
Source File: socmedList.tsx    From dhafit.xyz with MIT License 5 votes vote down vote up
socmedList: any = [
  { text: "Facebook", icon: <FaFacebookF />, href: "https://www.facebook.com/dhafid.farenza", background: "#4267B2" },
  { text: "Instagram", icon: <FaInstagram />, href: "https://www.instagram.com/dhafitf", background: "#E1306C" },
  { text: "Twitter", icon: <FaTwitter />, href: "https://twitter.com/DhafitF", background: "#1DA1F2" },
  { text: "Github", icon: <FaGithub />, href: "https://github.com/dhafitf", background: "#333333" },
]
Example #7
Source File: AppFooter.tsx    From po8klasie with GNU General Public License v3.0 5 votes vote down vote up
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 #8
Source File: Footer.tsx    From po8klasie with GNU General Public License v3.0 5 votes vote down vote up
socialLinks: [string, IconType][] = [
  ['https://fb.com/po8klasie', FaFacebookF],
  ['https://twitter.com/po8klasie', FaTwitter],
  ['https://github.com/po8klasie', FaGithub],
  ['https://linkedin.com/company/po8klasie', FaLinkedinIn],
]