I'm using Tailwind CSS with React and Vite. I noticed that I have to manually add cursor-pointer to <a> and <button> elements for the pointer cursor to appear.
I thought Tailwind would handle this automatically for interactive elements. Am I missing something in my setup, or is this the expected behavior?
<button className="bg-blue-500 text-white p-2">
Buy Now
</button>
<a href="#" className="text-blue-500">
View Morew
</a>
In this case, the cursor does not change to a pointer unless I add cursor-pointer.