react-modal-sheet
Version:
Flexible bottom sheet component for your React apps
18 lines (12 loc) • 394 B
text/typescript
export const MAX_HEIGHT = 'calc(100% - env(safe-area-inset-top) - 34px)';
export const IS_SSR = typeof window === 'undefined';
export const DEFAULT_TWEEN_CONFIG = {
ease: 'easeOut',
duration: 0.2,
};
export const REDUCED_MOTION_TWEEN_CONFIG = {
ease: 'linear',
duration: 0.01,
};
export const DEFAULT_DRAG_CLOSE_THRESHOLD = 0.6;
export const DEFAULT_DRAG_VELOCITY_THRESHOLD = 500;