@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
23 lines • 1.2 kB
JavaScript
/* eslint-disable react/no-unknown-property */
import React from 'react';
export var 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.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.createElement("defs", null, /*#__PURE__*/React.createElement("style", {
type: "text/css"
})), /*#__PURE__*/React.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"
}));
};