@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.42 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 StyledCrossRegular = ({
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.4075 21.1248C24.1102 21.8275 24.1102 22.9676 23.4075 23.6703C22.7048 24.3731 21.5647 24.373 20.862 23.6703L12 14.7423L3.07498 23.6673C2.37231 24.37 1.23223 24.37 0.529481 23.6673C-0.173269 22.9646 -0.173194 21.8246 0.529481 21.1218L9.45748 12.1998L0.527006 3.2073C-0.175669 2.50463 -0.175669 1.36455 0.527006 0.6618C1.22968 -0.04095 2.36976 -0.0408751 3.07251 0.6618L12 9.6573L20.925 0.7323C21.6277 0.0296246 22.7677 0.0296246 23.4705 0.7323C24.1732 1.43498 24.1732 2.57505 23.4705 3.2778L14.5425 12.1998L23.4075 21.1248Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCrossRegular);
const CrossRegular = /*#__PURE__*/memo(ForwardRef);
export default CrossRegular;