@scaleflex/icons
Version:
SVG icons as React components
38 lines • 2.46 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 Shape = 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": "Shape",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("g", {
clipPath: "url(#clip0)"
}, /*#__PURE__*/React.createElement("path", {
d: "M14.6159 18.6001C6.67021 18.6001 0.274902 24.9954 0.274902 32.9411C0.274902 40.8869 6.67021 47.2822 14.6159 47.2822C22.5616 47.2822 28.9569 40.8869 28.9569 32.9411C29.1507 25.1893 22.5616 18.6001 14.6159 18.6001ZM26.6313 33.1349C26.6313 39.724 21.205 45.1504 14.6159 45.1504C8.02671 45.1504 2.60041 39.7241 2.60041 33.1349C2.60041 26.5458 8.02671 21.1195 14.6159 21.1195C21.205 21.1195 26.6313 26.352 26.6313 33.1349Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M49.1121 27.1272H31.089C30.5076 27.1272 29.9262 27.7086 29.9262 28.29V46.3132C29.9262 46.8946 30.5076 47.4759 31.089 47.4759H49.1121C49.6935 47.4759 50.2749 46.8946 50.2749 46.3132V28.29C50.2749 27.7086 49.8873 27.1272 49.1121 27.1272ZM47.9493 29.6466V45.3442H32.2517V29.6466H47.9493Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M20.0423 16.6621L39.6159 25.7706C39.8096 25.7706 40.0035 25.9644 40.1973 25.9644C40.391 25.9644 40.7786 25.9644 40.9724 25.7706C41.36 25.5768 41.5538 25.1892 41.5538 24.6078L39.6159 3.09631C39.6159 2.7087 39.2282 2.32114 38.8407 2.12731C38.4531 1.93347 38.0655 1.93353 37.6779 2.32109L20.0424 14.7241C19.461 14.7241 19.2672 15.1117 19.461 15.4993C19.461 16.0806 19.6547 16.4683 20.0423 16.6621ZM22.9493 15.3055L37.2903 5.42188L38.8407 22.6698L22.9493 15.3055Z",
fill: color
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("rect", {
width: "50",
height: "50",
fill: "white",
transform: "translate(0.274902)"
})));
});
export default Shape;