alchemy-tech-ui
Version:
react component library for alchemy apps
14 lines (10 loc) • 395 B
JavaScript
var React = require('react');
function Close() {
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: "M6 18L18 6M6 6l12 12" })
);
}
module.exports = Close;
;