alchemy-tech-ui
Version:
react component library for alchemy apps
14 lines (10 loc) • 374 B
JavaScript
var React = require('react');
function Menu() {
return React.createElement(
"svg",
{ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", stroke: "currentColor" },
React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M4 6h16M4 12h16M4 18h16" })
);
}
module.exports = Menu;
;