UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.51 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 StyledFilterSlashSolid = ({ 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: "M3.06524 3.45387C3.30674 3.29187 3.59549 3.19999 3.89999 3.19999H20.1C20.6812 3.19999 21.2062 3.53412 21.4537 4.05762C21.705 4.58149 21.6262 5.20137 21.2287 5.64987L15.2475 13.0025L23.655 19.5912C24.045 19.8987 24.1162 20.465 23.8087 20.855C23.5012 21.245 22.935 21.3162 22.545 21.0087L0.344843 3.60837C-0.0463567 3.30162 -0.114944 2.73612 0.191693 2.34484C0.498368 1.95364 1.06387 1.88506 1.45537 2.19169L3.06524 3.45387ZM9.59999 17V13.1637L14.4 16.9475V18.8C14.4 19.2537 14.145 19.67 13.7362 19.8725C13.3312 20.075 12.8437 20.0337 12.48 19.76L10.08 17.96C9.77624 17.735 9.59999 17.3787 9.59999 17Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledFilterSlashSolid); const FilterSlashSolid = /*#__PURE__*/memo(ForwardRef); export default FilterSlashSolid;