Skip to content

Commit 184f139

Browse files
committed
fix: incorrect overlayColor and overlayFillColor
1 parent 63c4a81 commit 184f139

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type ViewProps, StyleSheet, processColor } from 'react-native';
1+
import { type ViewProps, StyleSheet } from 'react-native';
22
import LiveDetectEdgesViewNativeComponent from './LiveDetectEdgesViewNativeComponent';
33

44
export type LiveDetectEdgesViewProps = ViewProps & {
@@ -15,8 +15,8 @@ export const LiveDetectEdgesView = ({
1515
}: LiveDetectEdgesViewProps) => {
1616
return (
1717
<LiveDetectEdgesViewNativeComponent
18-
overlayColor={processColor(overlayColor)}
19-
overlayFillColor={processColor(overlayFillColor)}
18+
overlayColor={overlayColor}
19+
overlayFillColor={overlayFillColor}
2020
overlayStrokeWidth={overlayStrokeWidth}
2121
{...props}
2222
style={[styles.defaultStyle, props.style]}

0 commit comments

Comments
 (0)