@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
34 lines • 1.25 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const TargetIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M12.47 8.29a5.041 5.041 0 1 0 3.422 3.277"
}), /*#__PURE__*/React.createElement("circle", {
cx: 11.105,
cy: 13.144,
r: 1.022,
transform: "rotate(-26.992 11.105 13.144)"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m11.284 12.966 6.08-6.566M17.683 6.055l-.11-2.874a.188.188 0 0 0-.327-.12l-2.811 3.036a.19.19 0 0 0-.038.195l.685 1.82q.015.041.049.072l.628.58a.2.2 0 0 0 .075.042l1.868.544c.068.02.142 0 .19-.053l2.812-3.037a.188.188 0 0 0-.145-.316l-2.873.11"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M12.183 5.36a7.858 7.858 0 1 0 6.595 6.092"
}));
const ForwardRef = forwardRef(TargetIcon);
module.exports = ForwardRef;