We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63c4a81 commit 184f139Copy full SHA for 184f139
1 file changed
src/index.tsx
@@ -1,4 +1,4 @@
1
-import { type ViewProps, StyleSheet, processColor } from 'react-native';
+import { type ViewProps, StyleSheet } from 'react-native';
2
import LiveDetectEdgesViewNativeComponent from './LiveDetectEdgesViewNativeComponent';
3
4
export type LiveDetectEdgesViewProps = ViewProps & {
@@ -15,8 +15,8 @@ export const LiveDetectEdgesView = ({
15
}: LiveDetectEdgesViewProps) => {
16
return (
17
<LiveDetectEdgesViewNativeComponent
18
- overlayColor={processColor(overlayColor)}
19
- overlayFillColor={processColor(overlayFillColor)}
+ overlayColor={overlayColor}
+ overlayFillColor={overlayFillColor}
20
overlayStrokeWidth={overlayStrokeWidth}
21
{...props}
22
style={[styles.defaultStyle, props.style]}
0 commit comments