@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 888 B
JavaScript
import * as React from "react";
function CopyIcon({
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",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m16.58 4.747-.88-.962A5.5 5.5 0 0 0 11.644 2H7.5A5.5 5.5 0 0 0 2 7.5V14c0 2.761 1.739 5 4.5 5"
}), /*#__PURE__*/React.createElement("path", {
d: "M6 10.5A5.5 5.5 0 0 1 11.5 5h5a5.5 5.5 0 0 1 5.5 5.5v6a5.5 5.5 0 0 1-5.5 5.5h-5A5.5 5.5 0 0 1 6 16.5z"
}));
}
const ForwardRef = React.forwardRef(CopyIcon);
export default ForwardRef;