@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.28 kB
JavaScript
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 StyledFilterSolid = ({
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.180609 2.57203C0.490781 1.91719 1.15031 1.5 1.875 1.5H22.125C22.8516 1.5 23.5078 1.91719 23.8172 2.57203C24.1313 3.22687 24.0328 4.00172 23.5359 4.56234L15 15.0422V21C15 21.5672 14.6813 22.0875 14.1703 22.3406C13.6641 22.5938 13.0547 22.5422 12.6 22.2L9.6 19.95C9.22031 19.6688 9 19.2234 9 18.75V15.0422L0.423844 4.56234C-0.0349221 4.00172 -0.12961 3.22687 0.180656 2.57203H0.180609Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledFilterSolid);
const FilterSolid = /*#__PURE__*/memo(ForwardRef);
export default FilterSolid;