React Icons is a library that gives you ready-made icons for React apps.
npm install react-iconsYou 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;