@vela-ui/react
Version:
Vela UI React components
28 lines (26 loc) • 588 B
JavaScript
// src/icons/close.tsx
import { jsx, jsxs } from "react/jsx-runtime";
var CloseIcon = (props) => {
return /* @__PURE__ */ jsxs(
"svg",
{
fill: "none",
stroke: "currentColor",
strokeWidth: 2,
strokeLinecap: "round",
strokeLinejoin: "round",
width: "1em",
height: "1em",
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [
/* @__PURE__ */ jsx("path", { d: "M18 6 6 18" }),
/* @__PURE__ */ jsx("path", { d: "m6 6 12 12" })
]
}
);
};
export {
CloseIcon
};