@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.54 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 StyledBarsFilterSolid = ({
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 3.71502C0 2.76841 0.767679 2.00073 1.71429 2.00073H22.2857C23.2339 2.00073 24 2.76841 24 3.71502C24 4.66323 23.2339 5.4293 22.2857 5.4293H1.71429C0.767679 5.4293 0 4.66323 0 3.71502ZM3.42857 12.2864C3.42857 11.3382 4.19625 10.5722 5.14286 10.5722H18.8571C19.8054 10.5722 20.5714 11.3382 20.5714 12.2864C20.5714 13.2347 19.8054 14.0007 18.8571 14.0007H5.14286C4.19625 14.0007 3.42857 13.2347 3.42857 12.2864ZM13.7143 22.5722H10.2857C9.3375 22.5722 8.57143 21.8061 8.57143 20.8579C8.57143 19.9097 9.3375 19.1436 10.2857 19.1436H13.7143C14.6625 19.1436 15.4286 19.9097 15.4286 20.8579C15.4286 21.8061 14.6625 22.5722 13.7143 22.5722Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledBarsFilterSolid);
const BarsFilterSolid = /*#__PURE__*/memo(ForwardRef);
export default BarsFilterSolid;