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

The following examples show how to use @fortawesome/free-solid-svg-icons#faMailBulk. 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: contact.js    From gatsby-starter-scientist with MIT License 6 votes vote down vote up
Contact = ({
  html,
}) => (
  <section
    className="contact"
    id="contact"
  >
    <h2>
      <FontAwesomeIcon icon={faMailBulk} />
      Contact
    </h2>
    <div dangerouslySetInnerHTML={{ __html: html }} />
  </section>
)
Example #2
Source File: icons_library.js    From official-website-backend with MIT License 5 votes vote down vote up
// Adding all the icons we need in the project
library.add(faHeart, faFire, faPalette, faMapPin, faMapMarker, faPhone, faMailBulk);
Example #3
Source File: fontawesome.js    From web-frontend with MIT License 5 votes vote down vote up
library.add(faMailBulk);