@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 948 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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M8.024 3.446a4.58 4.58 0 0 0-4.578 4.578v6.08a4.28 4.28 0 0 0 2.797 4.017c.188.611.48 1.177.854 1.676A5.73 5.73 0 0 1 2 14.104v-6.08A6.024 6.024 0 0 1 8.024 2h3.995c1.69 0 3.301.71 4.442 1.955l1.04 1.136A5.5 5.5 0 0 0 16.5 5h-1.043l-.062-.068a4.58 4.58 0 0 0-3.376-1.486z"
}), /*#__PURE__*/React.createElement("rect", {
width: 16,
height: 17,
x: 6,
y: 5,
rx: 5.5
}));
}
const ForwardRef = React.forwardRef(CopyIcon);
export default ForwardRef;