@spark-ui/icons
Version:
spark-ui icons
29 lines (28 loc) • 913 B
JavaScript
// src/icons/Close.tsx
import React from "react";
var Close = ({
title,
fill = "currentColor",
stroke = "none",
ref,
...props
}) => /* @__PURE__ */ React.createElement(
"svg",
{
ref,
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
"data-title": "Close",
...{ ...title && { "data-title": title }, fill, stroke, ...props },
dangerouslySetInnerHTML: {
__html: (title === void 0 ? "" : `<title>${title}</title>`) + '<path fill-rule="evenodd" d="m21.6,19.67l-7.68-7.68,7.57-7.59c.53-.53.53-1.4,0-1.93-.53-.53-1.4-.53-1.93,0l-7.57,7.58L4.33,2.4c-.53-.53-1.4-.53-1.93,0-.53.53-.53,1.4,0,1.93l7.66,7.66-7.66,7.65c-.53.53-.53,1.4,0,1.93.53.53,1.4.53,1.93,0l7.66-7.66,7.68,7.68c.53.53,1.4.53,1.93,0,.53-.53.53-1.4,0-1.93h0Z"/>'
}
}
);
Close.displayName = "Close";
var tags = ["Close", ""];
export {
Close,
tags
};
//# sourceMappingURL=chunk-2IZW5ALE.mjs.map