@nextui-org/shared-icons
Advanced tools
Comparing version 2.0.7 to 2.0.8
@@ -5,4 +5,10 @@ import * as react_jsx_runtime from 'react/jsx-runtime'; | ||
declare const CloseIcon: (props: IconSvgProps) => react_jsx_runtime.JSX.Element; | ||
declare const CloseIcon: (props: IconSvgProps & { | ||
"data-checked"?: string; | ||
isSelected?: boolean; | ||
isIndeterminate?: boolean; | ||
disableAnimation?: boolean; | ||
className?: string; | ||
}) => react_jsx_runtime.JSX.Element; | ||
export { CloseIcon }; |
@@ -27,20 +27,23 @@ "use strict"; | ||
var import_jsx_runtime = require("react/jsx-runtime"); | ||
var CloseIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)( | ||
"svg", | ||
{ | ||
"aria-hidden": "true", | ||
fill: "none", | ||
focusable: "false", | ||
height: "1em", | ||
role: "presentation", | ||
stroke: "currentColor", | ||
strokeLinecap: "round", | ||
strokeLinejoin: "round", | ||
strokeWidth: 2, | ||
viewBox: "0 0 24 24", | ||
width: "1em", | ||
...props, | ||
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M18 6L6 18M6 6l12 12" }) | ||
} | ||
); | ||
var CloseIcon = (props) => { | ||
const { isSelected, isIndeterminate, disableAnimation, ...otherProps } = props; | ||
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)( | ||
"svg", | ||
{ | ||
"aria-hidden": "true", | ||
fill: "none", | ||
focusable: "false", | ||
height: "1em", | ||
role: "presentation", | ||
stroke: "currentColor", | ||
strokeLinecap: "round", | ||
strokeLinejoin: "round", | ||
strokeWidth: 2, | ||
viewBox: "0 0 24 24", | ||
width: "1em", | ||
...otherProps, | ||
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M18 6L6 18M6 6l12 12" }) | ||
} | ||
); | ||
}; | ||
// Annotate the CommonJS export names for ESM import in node: | ||
@@ -47,0 +50,0 @@ 0 && (module.exports = { |
{ | ||
"name": "@nextui-org/shared-icons", | ||
"version": "2.0.7", | ||
"version": "2.0.8", | ||
"description": "Internal icons set, commonly used in the components stories", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
455862
13265