drip-table
Version:
A tiny and powerful enterprise-class solution for building tables.
40 lines (39 loc) • 1.91 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
/*
* This file is part of the drip-table project.
* @link : https://drip-table.jd.com/
* @author : Estherjing(qichudegensui@163.com)
* @modifier : Estherjing(qichudegensui@163.com)
* @copyright: Copyright (c) 2021 JD Network Technology Co., Ltd.
*/
import "./index.less";
import Dialog from 'rc-dialog';
import React from 'react';
var prefixCls = 'jfe-drip-table-rc-modal';
var Modal = /*#__PURE__*/React.memo(function (_ref) {
var props = Object.assign({}, _ref);
var closeIconToRender = /*#__PURE__*/React.createElement("span", {
className: "".concat(prefixCls, "-close-x")
}, props.closeIcon || /*#__PURE__*/React.createElement("span", {
role: "img",
"aria-label": "close",
className: "".concat(prefixCls, "-close-icon")
}, /*#__PURE__*/React.createElement("svg", {
viewBox: "64 64 896 896",
focusable: "false",
"data-icon": "close",
width: "1em",
height: "1em",
fill: "currentColor",
"aria-hidden": "true"
}, /*#__PURE__*/React.createElement("path", {
d: "M563.8 512l262.5-312.9c4.4-5.2.7-13.1-6.1-13.1h-79.8c-4.7 0-9.2 2.1-12.3 5.7L511.6 449.8 295.1 191.7c-3-3.6-7.5-5.7-12.3-5.7H203c-6.8 0-10.5 7.9-6.1 13.1L459.4 512 196.9 824.9A7.95 7.95 0 00203 838h79.8c4.7 0 9.2-2.1 12.3-5.7l216.5-258.1 216.5 258.1c3 3.6 7.5 5.7 12.3 5.7h79.8c6.8 0 10.5-7.9 6.1-13.1L563.8 512z"
}))));
return /*#__PURE__*/React.createElement(Dialog, _extends({}, props, {
title: props.title,
prefixCls: prefixCls,
closeIcon: closeIconToRender,
maskClosable: false
}));
});
export default Modal;