@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
25 lines • 902 B
JavaScript
import * as React from "react";
function Attatchment01Icon({
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",
d: "m20.298 12.241-7.926 7.926c-2.157 2.158-5.393 2.412-7.592.213-2.158-2.157-1.877-5.283.322-7.482l8.91-8.91a3.473 3.473 0 0 1 4.923 0 3.473 3.473 0 0 1 0 4.922l-9.066 9.067a1.74 1.74 0 0 1-2.462-2.462l8.083-8.082"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(Attatchment01Icon);
export default ForwardRef;