@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 904 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const Filter2Icon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M17.765 2.25c2 0 3.221 2.196 2.167 3.895l-4.324 6.968a1.05 1.05 0 0 0-.157.554v6.513c0 .916-.903 1.56-1.77 1.264l-3.405-1.164a2.55 2.55 0 0 1-1.726-2.413v-4.2a1.05 1.05 0 0 0-.157-.554L4.07 6.145c-1.054-1.7.168-3.895 2.167-3.895zm-.162 2.346a.75.75 0 0 0-1.036.227l-2.426 3.79a.75.75 0 0 0 1.264.809l2.426-3.79a.75.75 0 0 0-.228-1.036"
}));
const ForwardRef = forwardRef(Filter2Icon);
module.exports = ForwardRef;