You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: dist/components/FontAwesomeIcon.js
+4-3
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,7 @@ function FontAwesomeIcon(props) {
109
109
110
110
var_abstract=renderedIcon["abstract"];// This is the color that will be passed to the "fill" prop of the Svg element
111
111
112
-
varcolor=_props.color||style.color||DEFAULT_COLOR;// This is the color that will be passed to the "fill" prop of the secondary Path element child (in Duotone Icons)
112
+
varcolor=_props.color||(style||{}).color||DEFAULT_COLOR;// This is the color that will be passed to the "fill" prop of the secondary Path element child (in Duotone Icons)
113
113
// `null` value will result in using the primary color, at 40% opacity
114
114
115
115
varsecondaryColor=_props.secondaryColor||color;// Secondary layer opacity should default to 0.4, unless a specific opacity value or a specific secondary color was given
@@ -118,8 +118,9 @@ function FontAwesomeIcon(props) {
118
118
// or resolved in other ways, to avoid ambiguity as to which inputs cause which outputs in the underlying rendering process.
119
119
// In other words, we don't want color (for example) to be specified via two different inputs.
0 commit comments