alchemy-tech-ui
Version:
react component library for alchemy apps
12 lines (9 loc) • 382 B
JavaScript
import React from '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" })
);
}
export { Close as default };