Fix: Only override the `fill` for icons that don't declare one. Closes #206. Thanks to @michaeldjeffrey!
@@ -29,7 +29,9 @@
/* Allows dynamic coloring of the icons. */
color: inherit;
- /* Needed by FF. */
- fill: currentColor;
+ &:not([fill]) {
+ /* Needed by FF. */
+ fill: currentColor;
+ }
}