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
@@ -93,7 +95,12 @@ function FontAwesomeIcon(props) {
93
95
94
96
var_abstract=renderedIcon["abstract"];// This is the color that will be passed to the "fill" prop of the Svg element
95
97
96
-
varcolor=props.color||style.color||DEFAULT_COLOR;// To avoid confusion down the line, we'll remove properties from the StyleSheet, like color, that are being overridden
98
+
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)
99
+
// `null` value will result in using the primary color, at 40% opacity
100
+
101
+
varsecondaryColor=props.secondaryColor||null;// Secondary layer opacity should default to 0.4, unless a specific opacity value or a specific secondary color was given
102
+
103
+
varsecondaryOpacity=props.secondaryOpacity||(secondaryColor ? 1 : DEFAULT_SECONDARY_OPACITY);// To avoid confusion down the line, we'll remove properties from the StyleSheet, like color, that are being overridden
97
104
// or resolved in other ways, to avoid ambiguity as to which inputs cause which outputs in the underlying rendering process.
98
105
// In other words, we don't want color (for example) to be specified via two different inputs.
99
106
@@ -119,6 +126,8 @@ function FontAwesomeIcon(props) {
0 commit comments