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