react-material-overlay
Version:
A fully featured Material UI implementation of overlays like modals, alert dialogs, lightboxes, and bottom sheets featuring easy stack management and browser history integration
5 lines • 376 B
TypeScript
import React from 'react';
export type transitionPreset = 'zoom' | 'fade' | 'grow' | 'slide' | 'collapse';
declare const getPresetTransitionComponent: (transitionPreset: transitionPreset) => React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<unknown>>;
export default getPresetTransitionComponent;
//# sourceMappingURL=getPresetTransitionComponent.d.ts.map