UNPKG

react-hoc-modal

Version:
11 lines (10 loc) 400 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: ({ style, active, onScroll, ...props }: ContentScrollProps) => JSX.Element; export { ContentScroll };