문제: React + TypeScript 프로젝트에서 React icons를 사용했는데 'cannot found type declaration' 에러가 발생
해결 방법
- React icons는 자동으로 타입을 정의해주기 때문에
@types/react-icons
를 설치하지 않아도 된다고 나와있다.
- 하지만 그래도 타입 에러가 발생했기 때문에 타입을 정의해주는
@types/react-icons
설치
$ npm i @types/react-icons
출처
🔗 https://www.npmjs.com/package/@types/react-icons