@nextelco/common-ui 1.7.162 → 1.7.165
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,11 @@
|
|
1
|
+
import React, { ReactNode } from 'react';
|
2
|
+
import './ConfirmModal.scss';
|
3
|
+
interface ConfirmModal {
|
4
|
+
title: string;
|
5
|
+
children: ReactNode;
|
6
|
+
handleCancel: () => void;
|
7
|
+
handleConfirm: () => void;
|
8
|
+
working: boolean;
|
9
|
+
}
|
10
|
+
declare function ConfirmModal({ title, children, handleCancel, handleConfirm, working, }: ConfirmModal): React.JSX.Element;
|
11
|
+
export default ConfirmModal;
|
@@ -1,3 +1,4 @@
|
|
1
1
|
export { default as Modal } from '../components/molecules/Modal/Modal';
|
2
2
|
export { default as Sidebar } from '../components/molecules/Sidebar/Sidebar';
|
3
|
-
export { default as MultiTagPicker, Option } from '../components/molecules/MultiTagPicker/MultiTagPicker';
|
3
|
+
export { default as MultiTagPicker, Option, } from '../components/molecules/MultiTagPicker/MultiTagPicker';
|
4
|
+
export { default as ConfirmModal } from '../components/molecules/ConfirmModal/ConfirmModal';
|