@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
34 lines • 1.4 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("g", {
opacity: 0.4
}, /*#__PURE__*/React.createElement("path", {
fill: "#4e5964",
d: "M12.015 12.68a1.022 1.022 0 1 1-1.821.927 1.022 1.022 0 0 1 1.82-.927"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m17.685 6.055 2.873-.111a.188.188 0 0 1 .145.316l-2.811 3.037a.19.19 0 0 1-.19.053l-1.869-.544a.2.2 0 0 1-.075-.043l-.628-.58a.2.2 0 0 1-.048-.071l-.686-1.82a.19.19 0 0 1 .038-.195l2.812-3.036a.188.188 0 0 1 .326.12l.11 2.874-3.36 3.628-1.519 1.641-.76.82m-.028.536a1.022 1.022 0 1 1-1.821.927 1.022 1.022 0 0 1 1.82-.927Z"
})), /*#__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;