@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.72 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 StyledCrossCircledRegular = ({
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: "M8.20312 8.20312C8.64375 7.76719 9.35625 7.76719 9.75469 8.20312L11.9578 10.4109L14.2031 8.20312C14.6438 7.76719 15.3563 7.76719 15.7547 8.20312C16.2328 8.64375 16.2328 9.35625 15.7547 9.75469L13.5891 11.9578L15.7547 14.2031C16.2328 14.6438 16.2328 15.3563 15.7547 15.7547C15.3563 16.2328 14.6438 16.2328 14.2031 15.7547L11.9578 13.5891L9.75469 15.7547C9.35625 16.2328 8.64375 16.2328 8.20312 15.7547C7.76719 15.3563 7.76719 14.6438 8.20312 14.2031L10.4109 11.9578L8.20312 9.75469C7.76719 9.35625 7.76719 8.64375 8.20312 8.20312ZM24 12C24 18.6281 18.6281 24 12 24C5.37188 24 0 18.6281 0 12C0 5.37188 5.37188 0 12 0C18.6281 0 24 5.37188 24 12ZM12 2.25C6.61406 2.25 2.25 6.61406 2.25 12C2.25 17.3859 6.61406 21.75 12 21.75C17.3859 21.75 21.75 17.3859 21.75 12C21.75 6.61406 17.3859 2.25 12 2.25Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCrossCircledRegular);
const CrossCircledRegular = /*#__PURE__*/memo(ForwardRef);
export default CrossCircledRegular;