blowfish/node_modules/@heroicons/react/20/solid/Bars2Icon.js

25 lines
765 B
JavaScript
Raw Normal View History

2023-01-29 16:30:24 -06:00
const React = require("react");
function Bars2Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M2 6.75A.75.75 0 012.75 6h14.5a.75.75 0 010 1.5H2.75A.75.75 0 012 6.75zm0 6.5a.75.75 0 01.75-.75h14.5a.75.75 0 010 1.5H2.75a.75.75 0 01-.75-.75z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(Bars2Icon);
module.exports = ForwardRef;