UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

25 lines 859 B
const React = require("react"); const { forwardRef } = require("react"); const CopyIcon = ({ title, titleId, ...props }, ref) => /*#__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: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M10.086 21H17a4 4 0 0 0 4-4V9.5a3.55 3.55 0 0 0-3.55-3.55h-7.364a4 4 0 0 0-4 4V17a4 4 0 0 0 4 4Z" }), /*#__PURE__*/React.createElement("path", { d: "M6.878 17.754A3.88 3.88 0 0 1 3 13.876V7a4 4 0 0 1 4-4h5.412a4 4 0 0 1 3.497 2.06l.462.833", opacity: 0.4 })); const ForwardRef = forwardRef(CopyIcon); module.exports = ForwardRef;