Fortawesome doesn't work properly in NextJS
Unanswered
Asiatic Lion posted this in #help-forum
Asiatic LionOP
Facing issues with adding hamburger icon for navbar fortawesome.
this works
this doesn't
but if I remove style it works normally fine with the className also but in that way I cannot use the fontSize property
this works
<FontAwesomeIcon
icon={faBars}
class='block lg:hidden'
style={{ color: "white", fontSize: 32 }}
/>this doesn't
<FontAwesomeIcon
icon={faBars}
className='block lg:hidden'
style={{ color: "white", fontSize: 32 }}
/>but if I remove style it works normally fine with the className also but in that way I cannot use the fontSize property