UNPKG

react-hoc-modal

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