react-icons/io#IoMdCheckmark JavaScript Examples

The following examples show how to use react-icons/io#IoMdCheckmark. 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
Pricing = () => {
  return (
    <PricingSectionWrapper id="pricing">
      <img className="section__particle one" src={particle1} alt="img" />
      <img className="section__particle two" src={particle2} alt="img" />
      <Container>
        <SectionTitle UniWidth="65%">
          <h4>Pricing Table</h4>
          <h2>
            <span>Choose your best plan </span> For adorable pricing history.
          </h2>
        </SectionTitle>
        <Row>
          {data.pricings.map((pricing, index) => (
            <Col xs={12} sm={6} lg={4} key={index}>
              <div className="pricing-block">
                <div className="thumb-block">
                  <img src={pricing.thumb} alt="appion app landing" />
                </div>
                <div className="price-block">
                  <h3>{pricing.price}</h3>
                  <p>{pricing.name}</p>
                </div>
                <p>{pricing.description}</p>
                <div className="details-block">
                  {pricing.services.map((service, index) => (
                    <span className={service.className} key={index}>
                      {service.className == "on" ? (
                        <IoMdCheckmark />
                      ) : (
                        <IoMdClose />
                      )}
                      {service.content}
                    </span>
                  ))}
                </div>
                <Button className="pricing-btn">{pricing.btnText}</Button>
              </div>
            </Col>
          ))}
        </Row>
      </Container>
    </PricingSectionWrapper>
  );
}