@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.62 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 StyledSquareDashedSolid = ({
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: "M5.14286 0H6.85714V3.42857H5.14286C4.19625 3.42857 3.42857 4.19464 3.42857 5.14286V6.85714H0V5.14286C0 2.3025 2.3025 0 5.14286 0ZM3.42857 8.57143V15.4286H0V8.57143H3.42857ZM24 8.57143V15.4286H20.5714V8.57143H24ZM20.5714 6.85714V5.14286C20.5714 4.19464 19.8054 3.42857 18.8571 3.42857H17.1429V0H18.8571C21.6964 0 24 2.3025 24 5.14286V6.85714H20.5714ZM24 18.8571C24 21.6964 21.6964 24 18.8571 24H17.1429V20.5714H18.8571C19.8054 20.5714 20.5714 19.8054 20.5714 18.8571V17.1429H24V18.8571ZM3.42857 18.8571C3.42857 19.8054 4.19625 20.5714 5.14286 20.5714H6.85714V24H5.14286C2.3025 24 0 21.6964 0 18.8571V17.1429H3.42857V18.8571ZM8.57143 24V20.5714H15.4286V24H8.57143ZM8.57143 0H15.4286V3.42857H8.57143V0Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledSquareDashedSolid);
const SquareDashedSolid = /*#__PURE__*/memo(ForwardRef);
export default SquareDashedSolid;