0

Stroke or Text nothing is applied with react-icons

 <AiOutlineArrowLeft
              className="cursor-pointer text-xl text-orange-800 stroke-4"
              onClick={(e) => handleBurger(e)}
            />
sohanemon
  • 15
  • 6

1 Answers1

1

This is because tailwind only has stroke-0,stroke-1 and stroke-2 classes defined whereas you had defined stroke-4.

Find more here

MagnusEffect
  • 3,363
  • 1
  • 16
  • 41