React Icons is a library that gives you ready-made icons for React apps.

npm install react-icons

You import icons like components:

  • No image files
  • No SVG setup
  • Just import and use

Example:

import { FaUser, FaEnvelope } from "react-icons/fa";

function App() {
  return (
    <div style={{ textAlign: "center", fontSize: "25px" }}>
      <FaUser /> Name
      <br />
      <FaEnvelope /> Email
    </div>
  );
}

export default App;