Skip to content

Commit 72a74d2

Browse files
karlsandernecolas
authored andcommitted
change operator used in SVG filter for tintColor from atop to in
1 parent e922224 commit 72a74d2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/react-native-web/src/exports/Image/__tests__/__snapshots__/index-test.js.snap

+2-2
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ exports[`components/Image prop "style" removes other unsupported View styles 1`]
343343
/>
344344
<fecomposite
345345
in2="SourceAlpha"
346-
operator="atop"
346+
operator="in"
347347
/>
348348
</filter>
349349
</defs>
@@ -410,7 +410,7 @@ exports[`components/Image prop "tintColor" convert to filter 1`] = `
410410
/>
411411
<fecomposite
412412
in2="SourceAlpha"
413-
operator="atop"
413+
operator="in"
414414
/>
415415
</filter>
416416
</defs>

packages/react-native-web/src/exports/Image/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function createTintColorSVG(tintColor, id) {
4444
<defs>
4545
<filter id={`tint-${id}`} suppressHydrationWarning={true}>
4646
<feFlood floodColor={`${tintColor}`} key={tintColor} />
47-
<feComposite in2="SourceAlpha" operator="atop" />
47+
<feComposite in2="SourceAlpha" operator="in" />
4848
</filter>
4949
</defs>
5050
</svg>

0 commit comments

Comments
 (0)