Next.js Discord

Discord Forum

Fortawesome doesn't work properly in NextJS

Unanswered
Asiatic Lion posted this in #help-forum
Open in Discord
Asiatic LionOP
Facing issues with adding hamburger icon for navbar fortawesome.
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

0 Replies