stratosphere-ui 0.1.6 → 0.1.7
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,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare const statusToIconMap: {
|
|
3
|
-
info: () => JSX.Element;
|
|
4
|
-
success: () => JSX.Element;
|
|
5
|
-
warning: () => JSX.Element;
|
|
6
|
-
error: () => JSX.Element;
|
|
3
|
+
info: (props: import("react").SVGProps<SVGSVGElement>) => JSX.Element;
|
|
4
|
+
success: (props: import("react").SVGProps<SVGSVGElement>) => JSX.Element;
|
|
5
|
+
warning: (props: import("react").SVGProps<SVGSVGElement>) => JSX.Element;
|
|
6
|
+
error: (props: import("react").SVGProps<SVGSVGElement>) => JSX.Element;
|
|
7
7
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const CheckIcon: () => JSX.Element;
|
|
3
|
-
export declare const CloseIcon: () => JSX.Element;
|
|
4
|
-
export declare const ErrorIcon: () => JSX.Element;
|
|
5
|
-
export declare const InfoIcon: () => JSX.Element;
|
|
6
|
-
export declare const SuccessIcon: () => JSX.Element;
|
|
7
|
-
export declare const WarningIcon: () => JSX.Element;
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
export declare const CheckIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
3
|
+
export declare const CloseIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
4
|
+
export declare const ErrorIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
5
|
+
export declare const InfoIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
6
|
+
export declare const SuccessIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
7
|
+
export declare const WarningIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|