UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.08 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 StyledFilterCircleXmarkSolid = ({ 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.160542 2.69706C0.43625 2.11514 1.0225 1.74414 1.66667 1.74414H19.6667C20.3125 1.74414 20.8958 2.11514 21.1708 2.69706C21.45 3.27914 21.3625 3.96789 20.9208 4.46622L16.5167 9.89414C13.175 10.5816 10.6292 13.5358 10.6292 17.0775C10.6292 18.2191 10.9292 19.3025 11.3958 20.265C11.325 20.2316 11.2625 20.19 11.2 20.1441L8.53333 18.1441C8.19583 17.8941 8 17.4983 8 17.0775V13.7816L0.37675 4.46622C-0.0310418 3.96789 -0.115208 3.27914 0.160583 2.69706H0.160542ZM11.9625 17.0775C11.9625 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 11.9625 20.39 11.9625 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(StyledFilterCircleXmarkSolid); const FilterCircleXmarkSolid = /*#__PURE__*/memo(ForwardRef); export default FilterCircleXmarkSolid;