Currently, in my project I am utilizing Next.js along with module.css. However, I have encountered an issue. There is a "button" component nested inside another component. I am trying to apply both a normal className and Style.myClass to this button component. Is there a way to achieve this?
Apologies if the question seems a bit complex, the example below should provide better clarity
<Button className={(Style.MyModuleCssClass, "my-global-class")}
size={"large"}
type={"primary"}> GET MORE
</Button>
Is it possible to have code structured like this? Where one class is global and the other is from module.css