@mindly/ui-components 5.2.1 → 5.4.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,3 @@
1
+ import * as React from 'react';
2
+ import { FC } from 'react';
3
+ export declare const IconApple: FC<React.SVGAttributes<SVGElement>>;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { FC } from 'react';
3
+ export declare const IconGoogle: FC<React.SVGAttributes<SVGElement>>;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { FC } from 'react';
3
+ export declare const IconLetter: FC<React.SVGAttributes<SVGElement>>;
@@ -19,10 +19,13 @@ export * from './IconProfileCircle';
19
19
  export * from './IconProfileSetting';
20
20
  export * from './IconProfileUnderReview';
21
21
  export * from './IconResume';
22
- export * from "./IconSettings";
22
+ export * from './IconSettings';
23
23
  export * from './IconStar';
24
24
  export * from './IconStarFilled';
25
25
  export * from './IconSuccess';
26
26
  export * from './IconTime';
27
27
  export * from './IconVerifiedUser';
28
28
  export * from './IconVisible';
29
+ export * from './IconApple';
30
+ export * from './IconGoogle';
31
+ export * from './IconLetter';
@@ -9,6 +9,8 @@ type ButtonProps = {
9
9
  routerLink?: string;
10
10
  onClick?: (e: React.MouseEvent<HTMLIonButtonElement>) => void;
11
11
  isLoading?: boolean;
12
+ icon?: React.ReactNode;
13
+ iconPosition?: 'start' | 'center';
12
14
  } & JSX.IonButton;
13
15
  declare const Button_v2: FC<ButtonProps>;
14
16
  export default Button_v2;
@@ -2,7 +2,8 @@ import React from 'react';
2
2
  type IconButtonProps = {
3
3
  icon: JSX.Element;
4
4
  className?: string;
5
- onClick?: () => void;
5
+ routerLink?: string;
6
+ onClick?: (e: React.MouseEvent<HTMLIonButtonElement>) => void;
6
7
  };
7
8
  declare const _default: React.NamedExoticComponent<IconButtonProps>;
8
9
  export default _default;