@scaleflex/icons
Version:
SVG icons as React components
25 lines • 2.13 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 Target = 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": "Target",
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: "M48.1921 22.9167H46.0034C45.0223 13.0895 37.1859 5.25309 27.3587 4.27195V2.08333C27.3587 0.933329 26.4254 0 25.2754 0C24.1254 0 23.1921 0.933329 23.1921 2.08333V4.27195C13.3649 5.25309 5.52848 13.0895 4.54734 22.9167H2.35872C1.20872 22.9167 0.275391 23.85 0.275391 25C0.275391 26.15 1.20872 27.0833 2.35872 27.0833H4.54734C5.52848 36.9105 13.3649 44.7479 23.1921 45.728V47.9167C23.1921 49.0667 24.1254 50 25.2754 50C26.4254 50 27.3587 49.0667 27.3587 47.9167V45.728C37.1859 44.7479 45.0223 36.9105 46.0034 27.0833H48.1921C49.3421 27.0833 50.2754 26.15 50.2754 25C50.2754 23.85 49.3421 22.9167 48.1921 22.9167ZM27.3587 41.5217V30.2083C27.3587 29.0583 26.4254 28.125 25.2754 28.125C24.1254 28.125 23.1921 29.0583 23.1921 30.2083V41.5217C15.6679 40.5772 9.6982 34.6074 8.75368 27.0833H20.0671C21.2171 27.0833 22.1504 26.15 22.1504 25C22.1504 23.85 21.2171 22.9167 20.0671 22.9167H8.75368C9.6982 15.3926 15.6679 9.42281 23.1921 8.47829V19.7917C23.1921 20.9417 24.1254 21.875 25.2754 21.875C26.4254 21.875 27.3587 20.9417 27.3587 19.7917V8.47829C34.8828 9.42281 40.8526 15.3926 41.7971 22.9167H30.4837C29.3337 22.9167 28.4004 23.85 28.4004 25C28.4004 26.15 29.3337 27.0833 30.4837 27.0833H41.7971C40.8526 34.6074 34.8828 40.5772 27.3587 41.5217Z",
fill: color
}));
});
export default Target;