@pushwoosh/kit-icons 1.2.0 → 1.4.1

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.
@@ -1,10 +1,10 @@
1
1
  export declare const AssetMap: {
2
2
  medium: {
3
- filled: null;
3
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
4
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
5
  };
6
6
  small: {
7
- filled: null;
7
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
8
8
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
9
  };
10
10
  };
@@ -1,6 +1,6 @@
1
1
  export declare const AssetMap: {
2
2
  medium: {
3
- filled: null;
3
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
4
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
5
  };
6
6
  small: {
@@ -1,10 +1,10 @@
1
1
  export declare const AssetMap: {
2
2
  medium: {
3
- filled: null;
3
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
4
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
5
  };
6
6
  small: {
7
- filled: null;
7
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
8
8
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
9
  };
10
10
  };
@@ -1,6 +1,6 @@
1
1
  export declare const AssetMap: {
2
2
  medium: {
3
- filled: null;
3
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
4
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
5
  };
6
6
  small: {
@@ -1,7 +1,7 @@
1
1
  export declare const AssetMap: {
2
2
  medium: {
3
3
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
- lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
+ lined: null;
5
5
  };
6
6
  small: {
7
7
  filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
@@ -0,0 +1,10 @@
1
+ export declare const AssetMap: {
2
+ medium: {
3
+ filled: null;
4
+ lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
+ };
6
+ small: {
7
+ filled: null;
8
+ lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
+ };
10
+ };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { HistoryIconProps } from './history-icon.types';
3
+ export declare function HistoryIcon(props: HistoryIconProps): JSX.Element | null;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare type HistoryIconProps = Omit<JSX.IntrinsicElements['div'], 'ref'> & {
3
+ readonly boxRef?: React.Ref<HTMLDivElement>;
4
+ readonly size: 'medium' | 'small';
5
+ readonly view: 'filled' | 'lined';
6
+ };
@@ -0,0 +1,2 @@
1
+ export * from './history-icon.component';
2
+ export * from './history-icon.types';
@@ -1,10 +1,10 @@
1
1
  export declare const AssetMap: {
2
2
  medium: {
3
- filled: null;
3
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
4
4
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
5
  };
6
6
  small: {
7
- filled: null;
7
+ filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
8
8
  lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
9
  };
10
10
  };
@@ -0,0 +1,10 @@
1
+ export declare const AssetMap: {
2
+ medium: {
3
+ filled: null;
4
+ lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
5
+ };
6
+ small: {
7
+ filled: null;
8
+ lined: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
9
+ };
10
+ };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { ImageIconProps } from './image-icon.types';
3
+ export declare function ImageIcon(props: ImageIconProps): JSX.Element | null;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare type ImageIconProps = Omit<JSX.IntrinsicElements['div'], 'ref'> & {
3
+ readonly boxRef?: React.Ref<HTMLDivElement>;
4
+ readonly size: 'medium' | 'small';
5
+ readonly view: 'filled' | 'lined';
6
+ };
@@ -0,0 +1,2 @@
1
+ export * from './image-icon.component';
2
+ export * from './image-icon.types';
package/dist/index.d.ts CHANGED
@@ -37,7 +37,9 @@ export * from './flash-icon';
37
37
  export * from './folder-icon';
38
38
  export * from './funnel-icon';
39
39
  export * from './help-round-icon';
40
+ export * from './history-icon';
40
41
  export * from './home-icon';
42
+ export * from './image-icon';
41
43
  export * from './industry-icon';
42
44
  export * from './infinity-icon';
43
45
  export * from './info-round-icon';