@integrigo/integrigo-ui 1.3.7 → 1.3.10

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,11 +1,18 @@
1
1
  import React from "react";
2
- import { FontAwesomeIconProps } from "@fortawesome/react-fontawesome";
3
- declare const ICONS: string[];
4
- declare const SOCIAL_ICONS: string[];
5
- declare type IconType = typeof ICONS[number];
6
- declare type IconSocialType = typeof SOCIAL_ICONS[number];
7
- declare type IconProps = Omit<FontAwesomeIconProps, "icon"> & {
8
- icon: IconType | IconSocialType;
2
+ export declare const iconHashMap: {
3
+ bars: React.FC<{}>;
4
+ envelope: React.FC<{}>;
5
+ facebook: React.FC<{}>;
6
+ instagram: React.FC<{}>;
7
+ linkedin: React.FC<{}>;
8
+ minus: React.FC<{}>;
9
+ phone: React.FC<{}>;
10
+ plus: React.FC<{}>;
11
+ "user-circle": React.FC<{}>;
12
+ };
13
+ declare type IconProps = React.SVGProps<SVGSVGElement> & {
14
+ type: keyof typeof iconHashMap;
15
+ size?: "ultra-small" | "small" | "medium" | "big";
9
16
  };
10
17
  export declare const Icon: React.FC<IconProps>;
11
18
  export {};
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const Bars: React.FC;
3
+ export default Bars;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const Envelope: React.FC;
3
+ export default Envelope;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const Facebook: React.FC;
3
+ export default Facebook;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const Instagram: React.FC;
3
+ export default Instagram;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const Linkedin: React.FC;
3
+ export default Linkedin;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const Minus: React.FC;
3
+ export default Minus;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const Phone: React.FC;
3
+ export default Phone;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const Plus: React.FC;
3
+ export default Plus;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const UserCircle: React.FC;
3
+ export default UserCircle;