@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 • 976 B
JavaScript
const React = require("react");
function LinkAngledIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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",
"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: "m7.379 10.19-2.234 2.234a4.45 4.45 0 0 0 .047 6.343 4.45 4.45 0 0 0 3.181 1.352c1.22.01 2.328-.444 3.162-1.278l2.234-2.233m2.853-2.798 2.233-2.234a4.45 4.45 0 0 0-.047-6.343 4.54 4.54 0 0 0-3.18-1.325 4.4 4.4 0 0 0-3.163 1.278L10.232 7.42m-1.619 7.907 6.7-6.7"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(LinkAngledIcon);
module.exports = ForwardRef;