@eclass/ui-kit 1.20.0 → 1.21.0

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.
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from '../Base';
3
+ export declare function ErrorWhite(props: BaseProps): JSX.Element;
4
+ export declare namespace ErrorWhite {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from '../Base';
3
+ export declare function InfoWhite(props: BaseProps): JSX.Element;
4
+ export declare namespace InfoWhite {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from '../Base';
3
+ export declare function SuccessWhite(props: BaseProps): JSX.Element;
4
+ export declare namespace SuccessWhite {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from '../Base';
3
+ export declare function WarningWhite(props: BaseProps): JSX.Element;
4
+ export declare namespace WarningWhite {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,4 @@
1
+ export * from './ErrorWhite';
2
+ export * from './InfoWhite';
3
+ export * from './SuccessWhite';
4
+ export * from './WarningWhite';
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Base';
3
+ export declare function Close(props: BaseProps): JSX.Element;
4
+ export declare namespace Close {
5
+ var displayName: string;
6
+ }
@@ -20,3 +20,5 @@ export * from './Pen';
20
20
  export * from './PlusSign';
21
21
  export * from './TrashCan';
22
22
  export * from './TextBubble';
23
+ export * from './Alerts';
24
+ export * from './Close';