When specifying color="mycolor" on an icon and then reusing the same icon somewhere in the app without a color attribute, the icon always uses mycolor instead of currentColor. This doesn't affect other icons.
Example:
<divstyle={{color: 'green'}}><AddIconcolor="red"/>{/* red ✓ */}<TvIcon/>{/* green ✓ */}</div><divstyle={{color: 'blue'}}><AddIcon/>{/* red x */}<TvIcon/>{/* blue ✓ */}</div>stackblitz: https://stackblitz.com/edit/vitejs-vite-rnnxlf9v?file=src%2Fmain.tsx&terminal=dev
Thanks for the great icons!
When specifying
color="mycolor"on an icon and then reusing the same icon somewhere in the app without acolorattribute, the icon always usesmycolorinstead ofcurrentColor. This doesn't affect other icons.Example:
stackblitz: https://stackblitz.com/edit/vitejs-vite-rnnxlf9v?file=src%2Fmain.tsx&terminal=dev
Thanks for the great icons!