@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
62 lines • 1.5 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const Filter1Icon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M8 5h13",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M15 12h6"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M9 19h12",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M3 5h2"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M3 12h9",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M3 19h2"
}), /*#__PURE__*/React.createElement("rect", {
width: 3,
height: 4,
x: 5,
y: 3,
strokeLinecap: "round",
rx: 1
}), /*#__PURE__*/React.createElement("rect", {
width: 3,
height: 4,
x: 12,
y: 10,
strokeLinecap: "round",
rx: 1
}), /*#__PURE__*/React.createElement("rect", {
width: 3,
height: 4,
x: 6,
y: 17,
strokeLinecap: "round",
rx: 1
}));
const ForwardRef = forwardRef(Filter1Icon);
module.exports = ForwardRef;