You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
789 B
36 lines
789 B
import AntModal from './Modal';
|
|
import confirm from './confirm';
|
|
import objectAssign from 'object-assign';
|
|
|
|
AntModal.info = function (props) {
|
|
const config = objectAssign({}, props, {
|
|
iconClassName: 'info-circle',
|
|
okCancel: false,
|
|
});
|
|
return confirm(config);
|
|
};
|
|
|
|
AntModal.success = function (props) {
|
|
const config = objectAssign({}, props, {
|
|
iconClassName: 'check-circle',
|
|
okCancel: false,
|
|
});
|
|
return confirm(config);
|
|
};
|
|
|
|
AntModal.error = function (props) {
|
|
const config = objectAssign({}, props, {
|
|
iconClassName: 'exclamation-circle',
|
|
okCancel: false,
|
|
});
|
|
return confirm(config);
|
|
};
|
|
|
|
AntModal.confirm = function (props) {
|
|
const config = objectAssign({}, props, {
|
|
okCancel: true,
|
|
});
|
|
return confirm(config);
|
|
};
|
|
|
|
export default AntModal;
|
|
|