@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.46 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 StyledBarsRegular = ({
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.28645C0 2.57663 0.575893 2.00073 1.28571 2.00073H22.7143C23.4268 2.00073 24 2.57663 24 3.28645C24 3.99895 23.4268 4.57216 22.7143 4.57216H1.28571C0.575893 4.57216 0 3.99895 0 3.28645ZM0 11.8579C0 11.1454 0.575893 10.5722 1.28571 10.5722H22.7143C23.4268 10.5722 24 11.1454 24 11.8579C24 12.5704 23.4268 13.1436 22.7143 13.1436H1.28571C0.575893 13.1436 0 12.5704 0 11.8579ZM22.7143 21.715H1.28571C0.575893 21.715 0 21.1418 0 20.4293C0 19.7168 0.575893 19.1436 1.28571 19.1436H22.7143C23.4268 19.1436 24 19.7168 24 20.4293C24 21.1418 23.4268 21.715 22.7143 21.715Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledBarsRegular);
const BarsRegular = /*#__PURE__*/memo(ForwardRef);
export default BarsRegular;