@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
14 lines (13 loc) • 446 B
TypeScript
import React from "react";
import { DialogProps } from "@material-ui/core/Dialog";
export declare type SimpleDialogProps = DialogProps & {
actions: React.ReactNode;
children: any;
id: string;
maxWidth: string;
onClose: () => void;
open: boolean;
title: string;
};
declare const _default: ({ onClose, id, maxWidth, open, title, children, actions, ...props }: SimpleDialogProps) => JSX.Element;
export default _default;