@fortawesome/free-brands-svg-icons#faGoogle JavaScript Examples

The following examples show how to use @fortawesome/free-brands-svg-icons#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: RegisterFaIcons.jsx    From frontend-app-authn with GNU Affero General Public License v3.0 5 votes vote down vote up
export default function registerIcons() {
  library.add(faApple, faFacebook, faGoogle, faMicrosoft);
}
Example #2
Source File: tables.js    From volt-react-dashboard with MIT License 5 votes vote down vote up
pageTraffic = [
    { id: 1, source: "Direct", sourceType: "Direct", trafficShare: 51, change: 2.45, sourceIcon: faGlobeEurope, sourceIconColor: "gray" },
    { id: 2, source: "Google Search", sourceType: "Search / Organic", trafficShare: 18, change: 17.67, sourceIcon: faGoogle, sourceIconColor: "info" },
    { id: 3, source: "youtube.com", sourceType: "Social", category: "Arts and Entertainment", rank: 2, trafficShare: 27, sourceIcon: faYoutube, sourceIconColor: "danger" },
    { id: 4, source: "yahoo.com", sourceType: "Referral", category: "News and Media", rank: 11, trafficShare: 8, change: -9.30, sourceIcon: faYahoo, sourceIconColor: "purple" },
    { id: 5, source: "twitter.com", sourceType: "Social", category: "Social Networks", rank: 4, trafficShare: 4, sourceIcon: faTwitter, sourceIconColor: "info" }
]
Example #3
Source File: Footer.js    From Women-in-Technology with MIT License 4 votes vote down vote up
export default function Footer() {    
  return (
    <footer className="site-footer">
      <div className="container">
        <div className="row justify-content-between">
        <div className='col-sm-5 col-md-2'>
              <img src={logo} alt='' className='imgg' />
        </div>
          <div className="col-sm-2 col-md-6">
            <h6>About</h6>
            <p className="text-justify">
              Women in Technology empowers women and young girls wanting to
              pursue Computer Science all around the world by increasing
              visibility of resources and opportunities, sharing inspirational
              stories of successful professionals in STEM and through our
              amazing Discord community of women uplifting each other.
            </p>
          </div>

          <div className="col-sm-2 col-md-28">
            <h6>Quick Links</h6>
            <ul className="footer-links">
              <li>
                <a href="/community">About Us</a>
              </li>
              <li>
                <a
                  href="https://discord.com/invite/xvzbAXk"
                  target="_blank"
                  rel="noreferrer"
                >
                  Contact Us
                </a>
              </li>
              <li>
                <a href="/contributing">Contribute</a>
              </li>
              <li>
                <a href="#">Privacy Policy</a>
              </li>
            </ul>
          </div>
        </div>
        <hr />
      </div>
      <div className="container">
        <div className="row">
          <div className="col-md-9 col-sm-6 col-xs-12">
            <p className="copyright-text">
              Copyright &copy; 2021 All Rights Reserved by <a href="https://women-in-technology-wit.web.app/">Women in Technology</a>.
            </p>
          </div>

          <div className="col-md-3 col-sm-6 col-xs-12">
            <ul className="social-icons">
              <li>
                <a>
                  <DarkMode />
                </a>
              </li>
              <li>
                <a
                  className="github"
                  target="_blank"
                  rel="noreferrer noopener"
                  href="https://github.com/shikha-16/Women-in-Technology"
                >
                  <FontAwesomeIcon icon={faGithub} />
                </a>
              </li>
              <li>
                <a
                  className="discord"
                  target="_blank"
                  rel="noreferrer noopener"
                  href="https://discord.com/invite/xvzbAXk"
                >
                  <FontAwesomeIcon icon={faDiscord} />
                </a>
              </li>
              <li>
                <a
                  className="gmail"
                  target="_blank"
                  rel="noreferrer noopener"
                  href="mailto:[email protected]?subject=Test email, please change this"
                >
                  <FontAwesomeIcon icon={faGoogle} />
                </a>
              </li>
            </ul>
          </div>
        </div>
      </div>
    </footer>
  );
}