UNPKG

react-hoc-modal

Version:
11 lines (10 loc) 472 B
import { type UIEvent, type ReactNode, type CSSProperties } from "react"; export interface ContentScrollProps { children: ReactNode; active?: boolean; style?: CSSProperties; className?: string; onScroll?: (event: UIEvent<HTMLDivElement>) => void; } declare const ContentScroll: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<ContentScrollProps & import("react").RefAttributes<HTMLDivElement>>>; export { ContentScroll };