Answers for "how to add react-icon in react js"

4

how to add react icons using npm

npm install react-icons --save

# yarn 
yarn add react-icons
Posted by: Guest on August-09-2021
2

react icon

import { IconContext } from "react-icons";

<IconContext.Provider value={{ color: "blue", className: "global-class-name" }}>
  <div>
    <FaFolder />
  </div>
</IconContext.Provider>
Posted by: Guest on October-27-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language