UNPKG

mui-extended

Version:

Extended UI Components built on Material UI

7 lines (6 loc) 376 B
import { FunctionComponent, JSXElementConstructor, PropsWithChildren, ReactEventHandler } from "react"; export type CloseOnNavigationProps = { open: boolean; onClose: ReactEventHandler; }; export declare const withCloseOnNavigation: <T extends PropsWithChildren<CloseOnNavigationProps>>(Modal: FunctionComponent<T> | JSXElementConstructor<T>) => FunctionComponent<T>;