UNPKG

alchemy-tech-ui

Version:

react component library for alchemy apps

14 lines (10 loc) 426 B
'use strict'; var React = require('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" }) ); } module.exports = Menu;