react-icons/fa#FaRegPlusSquare JavaScript Examples

The following examples show how to use react-icons/fa#FaRegPlusSquare. 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: Company_Job_List_Page.jsx    From camprec with MIT License 6 votes vote down vote up
Cardlist = ({ Joblist }) => {
  return (
    <div className="gridwraper">
      {Joblist.map((user, i) => {
        return (
          <>
            <Cards
              key={i}
              id={Joblist[i]._id}
              title={Joblist[i].job_title}
              content={Joblist[i].job_description}
              location={Joblist[i].location}
            />
          </>
        );
      })}
      <div className="card3 widths">
        <div className="card-body">
          <NavLink to="/addjobs">
            <FaRegPlusSquare className="addheight" />
          </NavLink>
        </div>
      </div>
    </div>
  );
}