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

The following examples show how to use @fortawesome/free-solid-svg-icons#faSearchDollar. 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: OrganizationAttributes.js    From climatescape.org with MIT License 6 votes vote down vote up
OrganizationCapitalStage = ({ stages, ...props }) => {
  const text = summarizeCapitalStages(stages)

  return (
    <Tag {...props}>
      <FontAwesomeIcon icon={faSearchDollar} className="mr-1" />
      {text}
    </Tag>
  )
}
Example #2
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 #3
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>
)