0

I installed react-icons but it is not working

error: FaBeer not exported

import '../style/mobHeader.css'
import { FaBeer } from 'react-icons/fa';
const Mobileheader = () => {
    return (
        <div className="mob-header">
            <h3>LoremIPSUM</h3>
            <h3>LoremIPSUM </h3>
            <FaBeer />
   
        </div>
    );
}```

1 Answers1

1

Been having this problem since yesterday too. Seems to be something to do with the newest version (v4.3.0).

You can install the previous version (v4.2.0) for now until a proper solution is found using:

npm install react-icons@4.2.0 --save
lee
  • 11
  • 1