@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 926 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const CopyIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M12.411 2.25a4.75 4.75 0 0 1 4.154 2.446l.28.505h.606A4.3 4.3 0 0 1 21.75 9.5V17A4.75 4.75 0 0 1 17 21.75h-6.914a4.75 4.75 0 0 1-4.568-3.45 4.63 4.63 0 0 1-3.268-4.424V7A4.75 4.75 0 0 1 7 2.25zM7 3.75A3.25 3.25 0 0 0 3.75 7v6.876c0 1.166.64 2.18 1.586 2.719V9.95a4.75 4.75 0 0 1 4.75-4.75h5.031a3.25 3.25 0 0 0-2.706-1.451z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(CopyIcon);
export default ForwardRef;