@eclass/ui-kit 1.9.1 → 1.10.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.
@@ -9,6 +9,7 @@ export interface BaseProps {
9
9
  interface IconProps extends BaseProps {
10
10
  viewBox?: string;
11
11
  children: React.ReactChild | React.ReactChild[];
12
+ title?: string;
12
13
  }
13
- export declare function Base({ w, h, color, m, viewBox, children, }: IconProps): JSX.Element;
14
+ export declare function Base({ w, h, color, m, viewBox, children, title, }: IconProps): JSX.Element;
14
15
  export {};
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Base';
3
+ export declare function GoBack(props: BaseProps): JSX.Element;
4
+ export declare namespace GoBack {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ interface props {
3
+ fill?: string;
4
+ }
5
+ export declare function Loader({ fill }: props): JSX.Element;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Base';
3
+ export declare function Multimedia(props: BaseProps): JSX.Element;
4
+ export declare namespace Multimedia {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Base';
3
+ export declare function Password(props: BaseProps): JSX.Element;
4
+ export declare namespace Password {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Base';
3
+ export declare function Pen(props: BaseProps): JSX.Element;
4
+ export declare namespace Pen {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Base';
3
+ export declare function PlusSign(props: BaseProps): JSX.Element;
4
+ export declare namespace PlusSign {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Base';
3
+ export declare function TextBubble(props: BaseProps): JSX.Element;
4
+ export declare namespace TextBubble {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Base';
3
+ export declare function TrashCan(props: BaseProps): JSX.Element;
4
+ export declare namespace TrashCan {
5
+ var displayName: string;
6
+ }
@@ -3,9 +3,17 @@ export * from './ArrowRight';
3
3
  export * from './Certificate';
4
4
  export * from './CircularCheck';
5
5
  export * from './CircularInformation';
6
+ export * from './Loader';
6
7
  export * from './Profile';
7
8
  export * from './Schedule';
8
9
  export * from './TinyAlertInfo';
9
10
  export * from './TinyAlertError';
10
11
  export * from './TinyAlertWarning';
11
12
  export * from './TinyAlertSuccess';
13
+ export * from './Multimedia';
14
+ export * from './GoBack';
15
+ export * from './Password';
16
+ export * from './Pen';
17
+ export * from './PlusSign';
18
+ export * from './TrashCan';
19
+ export * from './TextBubble';