UNPKG

@naarni/design-system

Version:

Naarni React Native Design System for EV Fleet Apps

18 lines 506 B
import { ReactNode } from 'react'; import { ViewStyle } from 'react-native'; export interface BottomSheetProps { visible: boolean; title?: string; children: ReactNode; onClose: () => void; onConfirm?: () => void; showDragIndicator?: boolean; initialSnapPoint?: number; snapPoints?: number[]; style?: ViewStyle; contentStyle?: ViewStyle; enablePanDownToClose?: boolean; confirmText?: string; cancelText?: string; } //# sourceMappingURL=interfaces.d.ts.map