UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.22 kB
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 StyledFilterCircleXmarkRegular = ({ 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: "M19.675 1.74415C20.5917 1.74415 21.3333 2.48622 21.3333 3.40122C21.3333 3.77956 21.2042 4.14622 20.9667 4.44039L17.4458 8.81497C17.1 9.24414 16.4708 9.31497 16.0042 8.96914C15.6083 8.62331 15.5042 7.98997 15.8875 7.56081L18.9583 3.74414H2.41417L9.1125 12.1191C9.25417 12.2983 9.33333 12.5191 9.33333 12.7441V15.5775L10.2667 16.2775C10.7083 16.6108 10.8 17.2358 10.4667 17.6775C10.1333 18.1191 9.50833 18.2108 9.06667 17.8775L7.73333 16.8775C7.48333 16.69 7.33333 16.3941 7.33333 16.0775V13.0941L0.354333 4.37122C0.124958 4.08456 0 3.72831 0 3.36122C0 2.46789 0.72375 1.74414 1.61708 1.74414L19.675 1.74415ZM12 17.0775C12 13.765 14.6875 11.0775 18 11.0775C21.3125 11.0775 24 13.765 24 17.0775C24 20.39 21.3125 23.0775 18 23.0775C14.6875 23.0775 12 20.39 12 17.0775ZM20.4708 15.5483C20.7333 15.29 20.7333 14.865 20.4708 14.6066C20.2125 14.3441 19.7875 14.3441 19.5292 14.6066L18 16.1358L16.4708 14.6066C16.2125 14.3441 15.7875 14.3441 15.5292 14.6066C15.2667 14.865 15.2667 15.29 15.5292 15.5483L17.0583 17.0775L15.5292 18.6066C15.2667 18.865 15.2667 19.29 15.5292 19.5483C15.7875 19.8108 16.2125 19.8108 16.4708 19.5483L18 18.0191L19.5292 19.5483C19.7875 19.8108 20.2125 19.8108 20.4708 19.5483C20.7333 19.29 20.7333 18.865 20.4708 18.6066L18.9417 17.0775L20.4708 15.5483Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledFilterCircleXmarkRegular); const FilterCircleXmarkRegular = /*#__PURE__*/memo(ForwardRef); export default FilterCircleXmarkRegular;