@sellgar/kit 0.0.122 → 0.0.124

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sellgar/kit",
3
3
  "type": "module",
4
- "version": "0.0.122",
4
+ "version": "0.0.124",
5
5
  "description": "Sellgar kit",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -1,7 +1,9 @@
1
1
  import { default as React } from 'react';
2
- import { TIconName } from './icon.types.ts';
2
+ import { iconName, TIconName } from './icon.types.ts';
3
3
  interface IProps {
4
4
  icon: TIconName;
5
5
  }
6
- export declare const Icon: React.FC<IProps>;
6
+ export declare const IconComponent: React.FC<IProps>;
7
+ type TIcon = typeof IconComponent & typeof iconName;
8
+ export declare const Icon: TIcon;
7
9
  export {};