25 lines
718 B
Plaintext
25 lines
718 B
Plaintext
import * as React from "react";
|
|
const CloseIcon = ()=>{
|
|
return /*#__PURE__*/ React.createElement("svg", {
|
|
width: "24",
|
|
height: "24",
|
|
viewBox: "0 0 24 24",
|
|
fill: "none",
|
|
xmlns: "http://www.w3.org/2000/svg"
|
|
}, /*#__PURE__*/ React.createElement("path", {
|
|
d: "M18 6L6 18",
|
|
stroke: "currentColor",
|
|
strokeWidth: "2",
|
|
strokeLinecap: "round",
|
|
strokeLinejoin: "round"
|
|
}), /*#__PURE__*/ React.createElement("path", {
|
|
d: "M6 6L18 18",
|
|
stroke: "currentColor",
|
|
strokeWidth: "2",
|
|
strokeLinecap: "round",
|
|
strokeLinejoin: "round"
|
|
}));
|
|
};
|
|
export { CloseIcon };
|
|
|
|
//# sourceMappingURL=CloseIcon.js.map |