alchemy-tech-ui
Version:
react component library for alchemy apps
12 lines (9 loc) • 413 B
JavaScript
import React from 'react';
function Menu() {
return React.createElement(
"svg",
{ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", className: "w-6 h-6" },
React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M14.25 9v6m-4.5 0V9M21 12a9 9 0 11-18 0 9 9 0 0118 0z" })
);
}
export { Menu as default };