skip to Main Content

I am using react as frontend to build a small project
I want to install react-icons/all in my project project but I am getting error that git does not giving excess to install.
It seems to me that I have to provided some access from my git account but I don’t know how. can some help me I am new in react

I am trying to install react-icons/all but getting git access error although I can use react-icons only but I want to install react-icons/all

2

Answers


  1. react-icons/all is not any packages the actual package is react-icons.

    Using npm

    npm i react-icons
    

    If using yarn

    yarn add react-icons
    

    If using pnpm

    pnpm i react-icons
    
    Login or Signup to reply.
  2. actual package name is react-icons

    if you are using VSCode, i use this extension to simplify importing react-icons => react icons auto import!

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search