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
fixed "Warning: FontAwesomeIcon: Support for defaultProps will be removed from memo components in a future major release. Use JavaScript default parameters instead." (#171)
@@ -97,12 +109,12 @@ function FontAwesomeIcon(props) {
97
109
98
110
var_abstract=renderedIcon["abstract"];// This is the color that will be passed to the "fill" prop of the Svg element
99
111
100
-
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)
101
113
// `null` value will result in using the primary color, at 40% opacity
102
114
103
-
varsecondaryColor=props.secondaryColor||color;// Secondary layer opacity should default to 0.4, unless a specific opacity value or a specific secondary color was given
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
104
116
105
-
varsecondaryOpacity=props.secondaryOpacity||DEFAULT_SECONDARY_OPACITY;// To avoid confusion down the line, we'll remove properties from the StyleSheet, like color, that are being overridden
117
+
varsecondaryOpacity=_props.secondaryOpacity||DEFAULT_SECONDARY_OPACITY;// To avoid confusion down the line, we'll remove properties from the StyleSheet, like color, that are being overridden
106
118
// or resolved in other ways, to avoid ambiguity as to which inputs cause which outputs in the underlying rendering process.
107
119
// In other words, we don't want color (for example) to be specified via two different inputs.
0 commit comments