UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.86 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 StyledFiltersRegular = ({ 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.4325 3.74487C23.2988 3.74487 24 4.44762 24 5.31425C24 5.66487 23.8838 6.005 23.6663 6.28137L18.6 12.7561V18.1261C18.6 19.1274 17.445 19.6899 16.6575 19.0711L13.1737 16.3336C12.81 16.0486 12.6 15.6136 12.6 15.1524V12.7561L7.53375 6.28137C7.31625 6.005 7.2 5.66487 7.2 5.31425C7.2 4.44762 7.90125 3.74487 8.7675 3.74487H22.4325ZM14.4 12.4449V15.0061L16.8 16.8924V12.4449C16.8 12.2424 16.8675 12.0474 16.9913 11.8899L21.9563 5.54487H9.24375L14.2088 11.8899C14.3325 12.0474 14.4 12.2424 14.4 12.4449ZM6.58875 7.02237L7.27875 7.94487H2.043L7.00875 14.2899C7.1325 14.4474 7.2 14.6424 7.2 14.8449V16.2061L9.6 18.0924V14.8449C9.6 14.6424 9.6675 14.4474 9.79125 14.2899L11.0363 12.6999L11.4 13.1686V19.3261C11.4 20.3274 10.245 20.8899 9.4575 20.2711L5.97375 17.5336C5.61 17.2486 5.4 16.8136 5.4 16.3524V15.1561L0.33345 8.67987C0.117413 8.40612 0 8.06487 0 7.71237C0 6.84612 0.70275 6.14487 1.56938 6.14487H6.1275C6.225 6.45987 6.3825 6.75612 6.58875 7.02237Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledFiltersRegular); const FiltersRegular = /*#__PURE__*/memo(ForwardRef); export default FiltersRegular;