@gorhom/bottom-sheet
Version:
A performant interactive bottom sheet with fully configurable options 🚀
13 lines (11 loc) • 441 B
TypeScript
import type { ViewProps } from 'react-native';
import type { BottomSheetVariables } from '../../types';
import type { BottomSheetProps } from '../bottomSheet';
export interface BottomSheetBackgroundProps
extends Pick<ViewProps, 'pointerEvents' | 'style'>,
BottomSheetVariables {}
export type BottomSheetBackgroundContainerProps = Pick<
BottomSheetProps,
'backgroundComponent' | 'backgroundStyle'
> &
BottomSheetBackgroundProps;