Exploring the integration of Tailwind CSS classes with Next.js for a project I am working on. Is there a method to combine Tailwind CSS classes with Next.js classes? For instance:
<img src={user.picture} className="rounded"{styles.pfp}></img>
or maybe something like
<img src={user.picture} className=`rounded{styles.pfp}`></img>
If you have any insights or solutions on how to achieve this, please share. Thank you!