@scaleflex/icons
Version:
SVG icons as React components
30 lines • 1.89 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var Any = intrinsicComponent(function (_ref, ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Any",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M10.7143 3.57204H46.4286V39.2863H33.9286V42.5504H9.26264C9.70617 42.748 10.1974 42.8578 10.7143 42.8578H46.4286C48.401 42.8578 50 41.2588 50 39.2863V3.57204C50 1.59959 48.401 0.000610352 46.4286 0.000610352H10.7143C8.74184 0.000610352 7.14286 1.59959 7.14286 3.57204V13.979H10.7143V3.57204Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M3.57143 7.14347C1.59898 7.14347 0 8.74245 0 10.7149V46.4292C0 48.4016 1.59898 50.0006 3.57143 50.0006H39.2857C41.2582 50.0006 42.8571 48.4016 42.8571 46.4292V10.7149C42.8571 8.74245 41.2582 7.14347 39.2857 7.14347H3.57143ZM33.8425 23.0104C34.7158 22.0718 34.6628 20.6029 33.7241 19.7296C32.7854 18.8563 31.3165 18.9093 30.4432 19.8479L18.8521 32.3068L12.4139 25.3866C11.5406 24.4479 10.0717 24.3949 9.13305 25.2682C8.19437 26.1415 8.14137 27.6104 9.01466 28.5491L17.1525 37.2961C17.5916 37.7682 18.2073 38.0363 18.8521 38.0363C19.4968 38.0363 20.1125 37.7682 20.5517 37.2961L33.8425 23.0104Z",
fill: color
}));
});
export default Any;