@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
13 lines (12 loc) • 406 B
TypeScript
import React from "react";
export declare type InPlaceModalProps = {
children: React.ReactNode;
modalHeight: number;
maxWidth?: string;
fullWidth?: boolean;
onClose: Function;
open: boolean;
customStyle?: string;
};
declare const _default: ({ onClose, open, modalHeight, maxWidth, fullWidth, children, customStyle, }: InPlaceModalProps) => JSX.Element;
export default _default;