magick-icons 0.1.13 → 0.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  // Auto-generated file - do not edit manually
2
- export { Frame, type FrameProps } from './icons/Frame';
3
- export { IconContainer19, type IconContainer19Props } from './icons/IconContainer19';
2
+ export { Image10, type Image10Props } from './icons/Image10';
3
+ export { Image8, type Image8Props } from './icons/Image8';
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "magick-icons",
3
- "version": "0.1.13",
3
+ "version": "0.1.16",
4
4
  "main": "index.js",
5
- "module": "index.esm.js",
5
+ "module": "index.mjs",
6
6
  "types": "index.d.ts",
7
7
  "exports": {
8
8
  ".": {
9
- "types": "./index.d.ts",
10
- "import": "./index.esm.js",
9
+ "types": {
10
+ "import": "./index.d.mts",
11
+ "require": "./index.d.ts"
12
+ },
13
+ "import": "./index.mjs",
11
14
  "require": "./index.js"
12
15
  }
13
16
  },
package/types.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  // Auto-generated file - do not edit manually
2
2
  import type * as React from 'react';
3
- import type { FrameProps } from './icons/Frame';
4
- import type { IconContainer19Props } from './icons/IconContainer19';
3
+ import type { Image10Props } from './icons/Image10';
4
+ import type { Image8Props } from './icons/Image8';
5
5
 
6
6
  export interface IconComponents {
7
- Frame: React.ComponentType<FrameProps>;
8
- IconContainer19: React.ComponentType<IconContainer19Props>;
7
+ Image10: React.ComponentType<Image10Props>;
8
+ Image8: React.ComponentType<Image8Props>;
9
9
  }
10
10
 
11
- export type IconName = 'Frame' | 'IconContainer19';
11
+ export type IconName = 'Image10' | 'Image8';