react-icons/fa#FaGooglePlay JavaScript Examples

The following examples show how to use react-icons/fa#FaGooglePlay. 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: index.js    From layer5-ng with Apache License 2.0 5 votes vote down vote up
GetApp = () => {
  return (
    <GetAppSectionWrap>
      <img className="section__particle one" src={particle1} alt="img" />
      <img className="section__particle two" src={particle2} alt="img" />
      <img className="section__particle three" src={particle3} alt="img" />
      <img className="section__particle four" src={particle4} alt="img" />
      <Container>
        <Row Vcenter={true}>
          <Col xs={12} sm={6}>
            <div className="getapp-block">
              <h3>Get the app now!</h3>
              <p>
                Lorem ipsum dolor sit amet consectetur adipisicing elit, sed do
                eiusmod tempor incididunt ut labore et dolore magna aliqua enim
                ad minim veniam quis nostrud exercitation.
              </p>
              <div className="btn-block">
                <Link to="#" className="getapp-btn apl-btn">
                  <DiAppstore />
                  <p>
                    Download iphone App
                    <span>App Store</span>
                  </p>
                </Link>

                <Link to="#" className="getapp-btn">
                  <FaGooglePlay />
                  <p>
                    Get it On
                    <span>Google Play Store</span>
                  </p>
                </Link>
              </div>
            </div>
          </Col>
          <Col xs={12} sm={6}>
            <div className="getapp-thumb">
              <img src={AppSecreenImage} alt="get the app" />
            </div>
          </Col>
        </Row>
      </Container>
    </GetAppSectionWrap>
  );
}