@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.1 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 StyledCloneSolid = ({
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: "M0 10.5c0-1.655 1.343-3 3-3h3v6c0 2.484 1.973 4.5 4.5 4.5h6v3c0 1.655-1.345 3-3 3H3c-1.657 0-3-1.345-3-3V10.5Zm10.5 6c-1.655 0-3-1.345-3-3V3c0-1.657 1.345-3 3-3H21c1.655 0 3 1.343 3 3v10.5c0 1.655-1.345 3-3 3H10.5Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCloneSolid);
const CloneSolid = /*#__PURE__*/memo(ForwardRef);
export default CloneSolid;