@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.35 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledCopyRegular = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M23.56 3.31 20.687.44a1.496 1.496 0 0 0-1.06-.44h-7.67a3 3 0 0 0-3 3l.002 12C9 16.66 10.345 18 12 18h9c1.65 0 3-1.35 3-3V4.371c0-.397-.16-.779-.44-1.06ZM21.75 15a.75.75 0 0 1-.75.75h-9.042a.75.75 0 0 1-.75-.75V3.006a.75.75 0 0 1 .75-.75h6L18 4.5A1.5 1.5 0 0 0 19.5 6h2.208v9h.042Zm-9 6a.75.75 0 0 1-.75.75H2.958a.75.75 0 0 1-.75-.75l.041-11.995a.75.75 0 0 1 .75-.75H7.5V6H3a3 3 0 0 0-3 3v12c0 1.655 1.343 3 3 3h9c1.65 0 3-1.35 3-3v-1.5h-2.208L12.75 21Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCopyRegular);
const CopyRegular = /*#__PURE__*/memo(ForwardRef);
export default CopyRegular;