react-icons/gr#GrInstagram JavaScript Examples

The following examples show how to use react-icons/gr#GrInstagram. 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: Footer.js    From Anime-Tracker-Web-App with MIT License 5 votes vote down vote up
CustomFooter = () => {
  return (
    <div className={styles.footer}>
      <a
        href="https://www.facebook.com/mrabdullahch/"
        target="_blank"
        rel="noopener noreferrer"
      >
        <span size="30px" className="icon">
          <FaFacebook />
        </span>
      </a>

      <a
        href="https://www.instagram.com/mrabdullahch/"
        target="_blank"
        rel="noopener noreferrer"
      >
        <span className="icon">
          <GrInstagram />
        </span>
      </a>

      <a
        href="https://www.linkedin.com/in/abdullah-ch/"
        target="_blank"
        rel="noopener noreferrer"
      >
        <span className="icon">
          <AiFillLinkedin />
        </span>
      </a>

      <a
        href="https://github.com/abdullah-ch"
        target="_blank"
        rel="noopener noreferrer"
      >
        <span className="icon">
          <AiFillGithub />
        </span>
      </a>

      <p className="love">
        Made with <FontAwesomeIcon color="red" icon={faHeart} /> by
        <span
          className={styles.spann}
          onClick={() =>
            (window.location.href = "https://github.com/abdullah-ch")
          }
        >
          Abdullah Ch
        </span>
      </p>
    </div>
  );
}