@fortawesome/free-solid-svg-icons#faHandshake JavaScript Examples

The following examples show how to use @fortawesome/free-solid-svg-icons#faHandshake. 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: organization.js    From climatescape.org with MIT License 6 votes vote down vote up
CapitalSection = ({
  capitalProfile: { type, stage, checkSize, strategic, impactSpecific },
  className,
}) => (
  <SidebarSectionList title="Capital" className={className}>
    {type && (
      <SidebarSectionList.Item icon={faHandHoldingUsd} text={type.join(", ")} />
    )}
    {stage && (
      <SidebarSectionList.Item
        icon={faSearchDollar}
        text={summarizeCapitalStages(stage)}
      />
    )}
    {checkSize && (
      <SidebarSectionList.Item
        icon={faMoneyCheck}
        text={summarizeCapitalCheckSizes(checkSize)}
      />
    )}
    {strategic && (
      <SidebarSectionList.Item icon={faHandshake} text="Strategic" />
    )}
    {impactSpecific && (
      <SidebarSectionList.Item icon={faHeart} text="Impact-specific" />
    )}
  </SidebarSectionList>
)
Example #2
Source File: organization.js    From goodhere with MIT License 6 votes vote down vote up
CapitalSection = ({
  capitalProfile: { type, stage, checkSize, strategic, impactSpecific },
  className,
}) => (
  <SidebarSectionList title="Capital" className={className}>
    {type && (
      <SidebarSectionList.Item icon={faHandHoldingUsd} text={type.join(", ")} />
    )}
    {stage && (
      <SidebarSectionList.Item
        icon={faSearchDollar}
        text={summarizeCapitalStages(stage)}
      />
    )}
    {checkSize && (
      <SidebarSectionList.Item
        icon={faMoneyCheck}
        text={summarizeCapitalCheckSizes(checkSize)}
      />
    )}
    {strategic && (
      <SidebarSectionList.Item icon={faHandshake} text="Strategic" />
    )}
    {impactSpecific && (
      <SidebarSectionList.Item icon={faHeart} text="Impact-specific" />
    )}
  </SidebarSectionList>
)
Example #3
Source File: index.js    From Webiu with MIT License 6 votes vote down vote up
Partner = ({header, mainText, subText, buttonText, buttonLink, image, backgroundColor, contactLink, contactText}) => {
  return (
    <div className="partner-component">
    {header ? <div className="header-component">
        <h2><FontAwesomeIcon className="icon-h2" icon={faHandshake} /> {header}</h2>
    </div> : null}
    <div className="partner-with-us" style={{backgroundColor: backgroundColor}}>
      <Container>
          <Row>
            <Col md={6} className="left-col">
              <div className="partner-content-section">
                {mainText ? <h1>
                  <span className='colored-text'>{mainText.split(' ')[0]}</span>
                  <span>{mainText.split(' ').map((t, i) => i !== 0 ? ' ' + t : null)}</span>
                </h1> : null}
                <p>{subText}</p>
                <div className="buttons-div">
                  {contactText ? <a href={contactLink} className="btn-contact">
                      {contactText}
                  </a> : null}
                  {buttonText ? <a href={buttonLink} className="btn-link">
                      {buttonText}
                  </a> : null}
                </div>
              </div>
            </Col>
            <Col md={6} className="right-col">
              <img className= "about-image" alt="About" src={image} />
            </Col>
          </Row>
      </Container>
    </div>
    </div>
  )
}
Example #4
Source File: OrganizationAttributes.js    From climatescape.org with MIT License 5 votes vote down vote up
OrganizationCapitalStrategic = ({ text, ...props }) => (
  <Tag {...props}>
    <FontAwesomeIcon icon={faHandshake} className="mr-1" />
    Strategic
  </Tag>
)