@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.45 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 StyledBarsSolid = ({
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.71502ZM0 12.2864C0 11.3382 0.767679 10.5722 1.71429 10.5722H22.2857C23.2339 10.5722 24 11.3382 24 12.2864C24 13.2347 23.2339 14.0007 22.2857 14.0007H1.71429C0.767679 14.0007 0 13.2347 0 12.2864ZM22.2857 22.5722H1.71429C0.767679 22.5722 0 21.8061 0 20.8579C0 19.9097 0.767679 19.1436 1.71429 19.1436H22.2857C23.2339 19.1436 24 19.9097 24 20.8579C24 21.8061 23.2339 22.5722 22.2857 22.5722Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledBarsSolid);
const BarsSolid = /*#__PURE__*/memo(ForwardRef);
export default BarsSolid;