UNPKG

mui-simple

Version:

Override mui-v7 components to simplify usage

22 lines 737 B
import React from 'react'; import type { ReactNode, ReactElement, PropsWithChildren } from 'react'; import type { SxProps } from '@mui/material'; interface OnScrollEventWrapperProps { bottom?: number; defaultFabProps?: object; elevation?: number; elevationScroll?: boolean; hideOnScroll?: boolean; left?: number; right?: number; scrollElement?: any; scrollToId?: string; scrollToTop?: ReactElement | ReactNode | boolean; scrollToTopProps?: SxProps; top?: number; zIndex?: number; [key: string]: any; } declare const OnScrollEventWrapper: React.FC<PropsWithChildren<OnScrollEventWrapperProps>>; export default OnScrollEventWrapper; //# sourceMappingURL=OnScrollEventWrapper.d.ts.map