We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efd4e92 commit 6b99810Copy full SHA for 6b99810
src/components/bottomSheetBackdrop/BottomSheetBackdrop.tsx
@@ -48,6 +48,7 @@ const BottomSheetBackdropComponent = ({
48
accessibilityRole: _providedAccessibilityRole = DEFAULT_ACCESSIBILITY_ROLE,
49
accessibilityLabel: _providedAccessibilityLabel = DEFAULT_ACCESSIBILITY_LABEL,
50
accessibilityHint: _providedAccessibilityHint = DEFAULT_ACCESSIBILITY_HINT,
51
+ ...rest
52
}: BottomSheetDefaultBackdropProps) => {
53
//#region hooks
54
const { snapToIndex, close } = useBottomSheet();
@@ -154,6 +155,7 @@ const BottomSheetBackdropComponent = ({
154
155
typeof pressBehavior === 'string' ? pressBehavior : 'move'
156
} the Bottom Sheet`
157
}
158
+ {...rest}
159
>
160
{children}
161
</Animated.View>
0 commit comments