UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.69 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 StyledFiltersSolid = ({ 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: "M22.5 3.74487C23.0963 3.74487 23.6325 4.097 23.8725 4.64225C24.1126 5.18712 24.0076 5.82237 23.6026 6.26037L18 12.3511V18.1449C18 18.5986 17.745 19.0149 17.3363 19.2174C16.9313 19.4199 16.4438 19.3786 16.08 19.1049L13.68 17.3049C13.3763 17.0799 13.2 16.7236 13.2 16.3449V12.3511L7.59753 6.26037C7.19253 5.82237 7.05378 5.18712 7.32753 4.64225C7.56378 4.097 8.10378 3.74487 8.66628 3.74487H22.5ZM1.49965 6.14487H6.15378C6.27378 6.48237 6.46128 6.79737 6.71253 7.07112L12 12.7861V13.4461L10.8 14.7511V19.3449C10.8 19.7986 10.545 20.2149 10.1363 20.4174C9.73128 20.6199 9.24378 20.5786 8.88003 20.3049L6.48003 18.5049C6.17628 18.2799 6.00003 17.9236 6.00003 17.5449V14.7511L0.39565 8.66112C-0.00736255 8.22237 -0.113188 7.58862 0.126025 7.04112C0.365275 6.49737 0.904151 6.14487 1.49965 6.14487Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledFiltersSolid); const FiltersSolid = /*#__PURE__*/memo(ForwardRef); export default FiltersSolid;