@jfstech/icons-react
Version:
<p align="center"> <a href="https://jfstech.uk" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/JFS-Tech/icons/HEAD/.github/logo-dark.svg"> <source media="(prefers-color
26 lines • 920 B
JavaScript
const React = require("react");
function Target02Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 26 26",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M9.652 4A9.6 9.6 0 0 1 13 3.4a9.6 9.6 0 0 1 9.6 9.6 9.6 9.6 0 0 1-.698 3.6M16 22.122a9.6 9.6 0 0 1-3 .478A9.6 9.6 0 0 1 3.4 13c0-1.273.248-2.488.698-3.6M13 5.8V1m0 24v-4.8m7.2-7.2H25M1 13h4.8M4.6 4l16.8 18.6"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(Target02Icon);
module.exports = ForwardRef;