react-icons/bi#BiLoaderCircle JavaScript Examples

The following examples show how to use react-icons/bi#BiLoaderCircle. 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: Home.js    From inky-doodle with MIT License 5 votes vote down vote up
Home = () => {
  return (
    <StyledHomeContainer>
      <StyledLandingLogoContainer>
        <img src={InkyDoodleLogo} alt="Inky Doodle Logo" />
      </StyledLandingLogoContainer>
      <StyledHeadingTitleContainer>
        <p>Collect. Combine. Inky Doodle!</p>
      </StyledHeadingTitleContainer>
      <StyledNavButtonsContainer>
        <StyledLink to="/faq">
          <button type="button" className="nes-btn ">
            <GrCircleQuestion />
            FAQ
          </button>
        </StyledLink>
        <StyledLink to="/search">
          <button type="button" className="nes-btn">
            <GrSearch />
            Search Inky Doodles
          </button>
        </StyledLink>
        <StyledLink to="/tree">
          <button type="button" className="nes-btn">
            <GrTree />
            Pedigree Tree
          </button>
        </StyledLink>
        <StyledLink to="/circle">
          <button type="button" className="nes-btn">
            <BiLoaderCircle />
            Circle Mode
          </button>
        </StyledLink>
        <StyledLink to="/contact">
          <button type="button" className="nes-btn">
            <GrContact />
            Contact Us
          </button>
        </StyledLink>
      </StyledNavButtonsContainer>
      <StyledLinksContainer>
        <p>Check us out on</p>
        <StyledIconsSection className="icon-list">
          <a
            href="https://www.instagram.com/inkydoodle.ml"
            target="_blank"
            rel="noopener noreferrer"
          >
            <i className="nes-icon instagram is-medium" />
          </a>
          <a
            href="https://github.com/amamenko/inky-doodle"
            target="_blank"
            rel="noopener noreferrer"
          >
            <i className="nes-icon github is-medium" />
          </a>
          <a
            href="https://www.youtube.com/watch?v=VPKyCoFkgS0"
            target="_blank"
            rel="noopener noreferrer"
          >
            <i className="nes-icon youtube is-medium" />
          </a>
        </StyledIconsSection>
      </StyledLinksContainer>
    </StyledHomeContainer>
  );
}