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

The following examples show how to use @fortawesome/free-solid-svg-icons#faUserFriends. 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: NavItems.js    From agenda with MIT License 6 votes vote down vote up
NavItems = ({redirect}) => (
    <Nav className="mr-auto" navbar>
        <NavItem>
            <NavLink onClick={() => redirect('/app')}>
                <FontAwesomeIcon icon={faHome}/>
                &nbsp;Inicio
            </NavLink>
        </NavItem>
        <NavItem>
            <NavLink onClick={() => redirect('/contacts')}>
                <FontAwesomeIcon icon={faUserFriends}/>
                &nbsp;Contactos
            </NavLink>
        </NavItem>
        <NavItem>
            <NavLink onClick={() => redirect('/departments')}>
                <FontAwesomeIcon icon={faBriefcase}/>
                &nbsp;Departamentos
            </NavLink>
        </NavItem>
        <NavItem>
            <NavLink onClick={() => redirect('/assignments')}>
                <FontAwesomeIcon icon={faBriefcase}/>
                &nbsp;Asignaciones
            </NavLink>
        </NavItem>
    </Nav>
)
Example #2
Source File: opportunities.js    From gatsby-starter-scientist with MIT License 6 votes vote down vote up
Opportunities = ({
  html,
}) => (
  <section
    className="opportunities"
    id="opportunities"
  >
    <h2>
      <FontAwesomeIcon icon={faUserFriends} />
      Opportunities
    </h2>
    <div dangerouslySetInnerHTML={{ __html: html }} />
  </section>
)