i wonder if there is a way to give all icosn of react-icons the same size? Especially if you use different icon fonts.
In my case for example I have to use two different fonts, because one font doesn't provide the necessary icon, but this looks like this:
As you can see, the info icon and the sign out icon look good, but the settings icon, well, not so much.
These icons in the screenshot, use the IconContext.Provider, which looks like this:
<IconContext.Provider value={{className: "mr-2", size: "1rem"}}>
<div>
<props.icon/>
</div>
</IconContext.Provider>
Now I expected all icons to have a size of 16x16 pixels. But as you can see, it doesn't really fit.
It would be great if you could give me a solution here or know any utilities that can solve the problem.
Thanks in advance!