New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nextui-org/shared-icons

Package Overview
Dependencies
Maintainers
1
Versions
245
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nextui-org/shared-icons - npm Package Compare versions

Comparing version 2.0.7 to 2.0.8

dist/chunk-LJROZDOV.mjs

8

dist/close.d.ts

@@ -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 };

39

dist/close.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc