@iimm/icons
Version:
some react svg icons
31 lines (25 loc) • 2.29 kB
JavaScript
var _excluded = ["size", "color"];
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); }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
import React from 'react';
/** 方框里的减号 */
export var IconSquareMinusColorful = function IconSquareMinusColorful(props) {
var _props$size = props.size,
size = _props$size === void 0 ? 24 : _props$size,
_props$color = props.color,
color = _props$color === void 0 ? '#0a31cf' : _props$color,
restProps = _objectWithoutProperties(props, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
xmlns: "http://www.w3.org/2000/svg",
width: size,
height: size
}, restProps, {
viewBox: "0 0 1024 1024"
}), /*#__PURE__*/React.createElement("path", {
d: "M888.490667 135.509333v753.066667H135.509333V135.552h752.981334z m0-72.021333H135.509333c-39.808 0-72.021333 32.213333-72.021333 72.021333v753.066667c0 39.808 32.213333 72.021333 72.021333 72.021333h753.066667c39.808 0 72.021333-32.213333 72.021333-71.978666V135.509333a72.106667 72.106667 0 0 0-72.106666-72.021333z m-157.013334 485.546667H290.56a35.968 35.968 0 1 1 0-72.021334h441.002667a35.968 35.968 0 1 1 0 72.021334z",
fill: color,
opacity: ".65",
"p-id": "26461"
}));
};