import React, { memo } from 'react'; import { View } from 'react-native'; import { styles } from './styles'; import type { BottomSheetBackgroundProps } from './types'; const BottomSheetBackgroundComponent = ({ pointerEvents, style, }: BottomSheetBackgroundProps) => ( ); export const BottomSheetBackground = memo(BottomSheetBackgroundComponent); BottomSheetBackground.displayName = 'BottomSheetBackground';