@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 • 873 B
JavaScript
import * as React from "react";
function Attatchment02Icon({
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: "M17.48 6.072v11.21c0 3.05-2.107 5.518-5.217 5.518-3.051 0-5.063-2.408-5.063-5.519v-12.6A3.473 3.473 0 0 1 10.68 1.2a3.473 3.473 0 0 1 3.482 3.48v12.823a1.74 1.74 0 0 1-3.481 0V6.072"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(Attatchment02Icon);
export default ForwardRef;