@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
31 lines (29 loc) • 1.48 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.IconClose = void 0;
var _react = _interopRequireDefault(require("react"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/* eslint-disable react/no-unknown-property */
var IconClose = exports.IconClose = function IconClose(props) {
var style = props.style,
_props$width = props.width,
width = _props$width === void 0 ? '12px' : _props$width,
_props$height = props.height,
height = _props$height === void 0 ? '12px' : _props$height;
return /*#__PURE__*/_react.default.createElement("svg", {
viewBox: "0 0 1024 1024",
version: "1.1",
xmlns: "http://www.w3.org/2000/svg",
"p-id": "7388",
width: width,
height: height,
style: style
}, /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("style", {
type: "text/css"
})), /*#__PURE__*/_react.default.createElement("path", {
d: "M797.525333 226.474667c16.256 16.256 17.450667 41.941333 3.498667 59.52l-3.498667 3.925333L575.445333 512l222.08 222.08a44.885333 44.885333 0 0 1-59.52 66.944l-3.925333-3.498667L512 575.445333l-222.08 222.08a44.885333 44.885333 0 0 1-66.944-59.52l3.498667-3.925333L448.554667 512 226.474667 289.92a44.885333 44.885333 0 0 1 59.52-66.944l3.925333 3.498667L512 448.554667l222.08-222.08c17.493333-17.493333 45.909333-17.493333 63.445333 0z",
"p-id": "7537"
}));
};