@react95/icons
Version:
React95 icons gallery
45 lines • 2.55 kB
JavaScript
var _excluded = ["variant"];
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React from 'react';
var Close_16x16_4 = function Close_16x16_4(props) {
return /*#__PURE__*/React.createElement("svg", _extends({
xmlns: "http://www.w3.org/2000/svg",
width: "16",
height: "16",
shapeRendering: "crispEdges",
viewBox: "0 -0.5 16 16"
}, props), /*#__PURE__*/React.createElement("path", {
stroke: "navy",
d: "M12 1h3m-3 1h2m-2 1h1m1 0h1m0 1h1m-1 1h1"
}), /*#__PURE__*/React.createElement("path", {
stroke: "gray",
d: "M3 4h3M2 5h1M2 6h11M1 7h1M1 8h1M1 9h1m-1 1h1m-1 1h1m-1 1h1m-1 1h1"
}), /*#__PURE__*/React.createElement("path", {
stroke: "#fff",
d: "M3 5h3M2 7h10"
}), /*#__PURE__*/React.createElement("path", {
stroke: "#000",
d: "M6 5h1m6 2h1m-1 1h1m-1 1h1m-1 1h1m-1 1h1m-1 1h1m-1 1h1M1 14h13"
}), /*#__PURE__*/React.createElement("path", {
stroke: "olive",
d: "M12 7h1m-1 1h1m-1 1h1m-1 1h1m-1 1h1m-1 1h1M2 13h11"
}), /*#__PURE__*/React.createElement("path", {
stroke: "silver",
d: "M2 8h1m1 0h1m1 0h1m1 0h1m1 0h1M3 9h1m1 0h1m1 0h1m1 0h1m1 0h1M2 10h1m1 0h1m1 0h1m1 0h1m1 0h1m-8 1h1m1 0h1m1 0h1m1 0h1m1 0h1M2 12h1m1 0h1m1 0h1m1 0h1m1 0h1"
}), /*#__PURE__*/React.createElement("path", {
stroke: "#ff0",
d: "M3 8h1m1 0h1m1 0h1m1 0h1m1 0h1M2 9h1m1 0h1m1 0h1m1 0h1m1 0h1m-8 1h1m1 0h1m1 0h1m1 0h1m1 0h1M2 11h1m1 0h1m1 0h1m1 0h1m1 0h1m-8 1h1m1 0h1m1 0h1m1 0h1m1 0h1"
}));
};
export var closeData = {
'16x16_4': Close_16x16_4
};
export var Close = function Close(_ref) {
var _ref$variant = _ref.variant,
variant = _ref$variant === void 0 ? '16x16_4' : _ref$variant,
rest = _objectWithoutProperties(_ref, _excluded);
var Svg = closeData[variant];
return /*#__PURE__*/React.createElement(Svg, rest);
};