@afzalimdad9/react-alert-template-mui
Version:
react alert template using mui
16 lines • 430 B
TypeScript
import React from "react";
interface IProps {
message: string | React.ReactNode;
options: {
title?: string | React.ReactNode;
actions?: {
copy: string;
onClick: any;
}[];
closeCopy?: string;
};
close: any;
}
declare const AlertDialog: ({ close, message, options }: IProps) => React.JSX.Element;
export default AlertDialog;
//# sourceMappingURL=index.d.ts.map