@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.28 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 StyledCloneRegular = ({
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: "M3 21.75h10.5c.412 0 .75-.337.75-.75v-3h2.25v3c0 1.655-1.345 3-3 3H3c-1.657 0-3-1.345-3-3V10.5c0-1.655 1.343-3 3-3h3v2.25H3a.751.751 0 0 0-.75.75V21c0 .413.336.75.75.75ZM7.5 3c0-1.657 1.345-3 3-3H21c1.655 0 3 1.343 3 3v10.5c0 1.655-1.345 3-3 3H10.5c-1.655 0-3-1.345-3-3V3Zm3 11.25H21c.413 0 .75-.338.75-.75V3a.751.751 0 0 0-.75-.75H10.5a.751.751 0 0 0-.75.75v10.5c0 .412.338.75.75.75Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCloneRegular);
const CloneRegular = /*#__PURE__*/memo(ForwardRef);
export default CloneRegular;