UNPKG

react-modal-sheet

Version:

Flexible bottom sheet component for your React apps

20 lines (13 loc) 484 B
import type { SheetTweenConfig } from './types'; export const DEFAULT_HEIGHT = 'calc(100% - env(safe-area-inset-top) - 34px)'; export const IS_SSR = typeof window === 'undefined'; export const DEFAULT_TWEEN_CONFIG: SheetTweenConfig = { ease: 'easeOut', duration: 0.2, }; export const REDUCED_MOTION_TWEEN_CONFIG: SheetTweenConfig = { ease: 'linear', duration: 0.01, }; export const DEFAULT_DRAG_CLOSE_THRESHOLD = 0.6; export const DEFAULT_DRAG_VELOCITY_THRESHOLD = 500;