@1771technologies/lytenyte-pro
Version:
21 lines (20 loc) • 478 B
JavaScript
import { jsx } from "react/jsx-runtime";
function CrossIcon(props) {
return /* @__PURE__ */ jsx(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
width: 20,
height: 20,
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
...props,
children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6 18 18 6M6 6l12 12" })
}
);
}
export {
CrossIcon as C
};