UNPKG

@developermafia/simple-alert-react

Version:

```bash npm i @developermafia/simple-alert-react ```

14 lines (13 loc) 410 B
interface IPropsModal { acceptButton?: boolean; cancelButton?: boolean; content: string | JSX.Element; closeButton?: boolean; opacityBackdrop?: string; colorBackdrop?: string; reverseButtons?: boolean; textAccept?: string; textCancel?: string; } declare const DialogComponent: (props: IPropsModal) => import("react/jsx-runtime").JSX.Element; export default DialogComponent;