Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Module not found: Can't resolve 'react-icons/ai'

I am learning ReactJS. But now I got a problem. I used this code

import { AiOutlineShoppingCart } from "react-icons/ai"

But it is showing this error:

Module not found: Can't resolve 'react-icons/ai'

I am using sanity to build an eCommerce website cms. I tried to install react-icons with this code

yarn add react-icons

and I have checked the packages .jeson file and react-icons are present in dependencies. Can anyone please tell me how can I solve this problem?

Some extra info:

  • I have also use react-icons instead of react-icons/ai but same error
  • I have used npm install to install react-icons. Nothing helps
like image 380
AK9 Avatar asked Oct 30 '25 19:10

AK9


1 Answers

try reinstalling with npm install react-icons --save command

like image 98
buzz Avatar answered Nov 01 '25 10:11

buzz