huspy-icons 0.1.9 → 0.1.11

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.
Files changed (46) hide show
  1. package/dist/fonts/HuspyIcons.css +94 -19
  2. package/dist/fonts/HuspyIcons.eot +0 -0
  3. package/dist/fonts/HuspyIcons.json +40 -15
  4. package/dist/fonts/HuspyIcons.ts +91 -16
  5. package/dist/fonts/HuspyIcons.ttf +0 -0
  6. package/dist/fonts/HuspyIcons.woff +0 -0
  7. package/dist/fonts/HuspyIcons.woff2 +0 -0
  8. package/dist/native/index.d.ts +1 -1
  9. package/dist/native/index.js +40 -15
  10. package/dist/native/index.js.map +1 -1
  11. package/dist/react/index.d.mts +52 -2
  12. package/dist/react/index.d.ts +52 -2
  13. package/dist/react/index.js +1547 -221
  14. package/dist/react/index.js.map +1 -1
  15. package/dist/react/index.mjs +1537 -211
  16. package/dist/react/index.mjs.map +1 -1
  17. package/package.json +1 -1
  18. package/src/native/glyphMap.ts +41 -16
  19. package/src/react/AlertTriangle.tsx +38 -0
  20. package/src/react/ArrowDown.tsx +32 -0
  21. package/src/react/ArrowDownLeft.tsx +32 -0
  22. package/src/react/ArrowDownRight.tsx +32 -0
  23. package/src/react/ArrowRight.tsx +32 -0
  24. package/src/react/ArrowUp.tsx +32 -0
  25. package/src/react/ArrowUpLeft.tsx +32 -0
  26. package/src/react/ArrowUpRight.tsx +32 -0
  27. package/src/react/Bell.tsx +32 -0
  28. package/src/react/CancelCircleSolid.tsx +26 -0
  29. package/src/react/ChevronDown.tsx +24 -0
  30. package/src/react/ChevronLeft.tsx +24 -0
  31. package/src/react/ChevronRight.tsx +24 -0
  32. package/src/react/ChevronUp.tsx +24 -0
  33. package/src/react/ExploreFilled.tsx +36 -0
  34. package/src/react/ExploreLinear.tsx +32 -0
  35. package/src/react/FileKey.tsx +44 -0
  36. package/src/react/Icon.tsx +76 -1
  37. package/src/react/Keys01.tsx +38 -0
  38. package/src/react/Mail.tsx +32 -0
  39. package/src/react/Mortgage.tsx +62 -0
  40. package/src/react/Payments.tsx +24 -0
  41. package/src/react/Rent.tsx +38 -0
  42. package/src/react/SearchX.tsx +44 -0
  43. package/src/react/Share.tsx +38 -0
  44. package/src/react/Whatsapp.tsx +26 -0
  45. package/src/react/index.ts +25 -0
  46. package/src/react/index.tsx +25 -0
@@ -28,36 +28,86 @@ interface ReactIconProps extends React.SVGProps<SVGSVGElement> {
28
28
  */
29
29
  declare function resolveSize(size?: IconSize): number;
30
30
 
31
+ declare const SvgAlertTriangle: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
32
+
33
+ declare const SvgArrowDown: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
34
+
35
+ declare const SvgArrowDownLeft: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
36
+
37
+ declare const SvgArrowDownRight: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
38
+
31
39
  declare const SvgArrowLeft: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
32
40
 
41
+ declare const SvgArrowRight: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
42
+
43
+ declare const SvgArrowUp: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
44
+
45
+ declare const SvgArrowUpLeft: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
46
+
47
+ declare const SvgArrowUpRight: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
48
+
49
+ declare const SvgBell: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
50
+
33
51
  declare const SvgCancel: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
34
52
 
53
+ declare const SvgCancelCircleSolid: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
54
+
35
55
  declare const SvgCheck: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
36
56
 
57
+ declare const SvgChevronDown: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
58
+
59
+ declare const SvgChevronLeft: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
60
+
61
+ declare const SvgChevronRight: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
62
+
63
+ declare const SvgChevronUp: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
64
+
37
65
  declare const SvgEdit: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
38
66
 
67
+ declare const SvgExploreFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
68
+
69
+ declare const SvgExploreLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
70
+
39
71
  declare const SvgEyeHidden: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
40
72
 
41
73
  declare const SvgEyeVisible: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
42
74
 
75
+ declare const SvgFileKey: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
76
+
43
77
  declare const SvgHomeFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
44
78
 
45
79
  declare const SvgHomeLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
46
80
 
47
81
  declare const SvgIconSlot: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
48
82
 
83
+ declare const SvgKeys01: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
84
+
49
85
  declare const SvgLeadsFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
50
86
 
51
87
  declare const SvgLeadsLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
52
88
 
89
+ declare const SvgMail: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
90
+
91
+ declare const SvgMortgage: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
92
+
93
+ declare const SvgPayments: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
94
+
53
95
  declare const SvgPropertiesFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
54
96
 
55
97
  declare const SvgPropertiesLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
56
98
 
99
+ declare const SvgRent: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
100
+
57
101
  declare const SvgSearch: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
58
102
 
103
+ declare const SvgSearchX: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
104
+
105
+ declare const SvgShare: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
106
+
59
107
  declare const SvgUser: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
60
108
 
109
+ declare const SvgWhatsapp: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
110
+
61
111
  /**
62
112
  * Icon imports - using dynamic imports for tree-shaking
63
113
  * Auto-generated - do not edit manually
@@ -65,7 +115,7 @@ declare const SvgUser: ({ size, ...props }: ReactIconProps) => React$1.JSX.Eleme
65
115
  /**
66
116
  * Available icon names
67
117
  */
68
- type IconName = 'arrow-left' | 'cancel' | 'check' | 'edit' | 'eye-hidden' | 'eye-visible' | 'home-filled' | 'home-linear' | 'icon-slot' | 'leads-filled' | 'leads-linear' | 'properties-filled' | 'properties-linear' | 'search' | 'user';
118
+ type IconName = 'alert-triangle' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-left' | 'arrow-up-right' | 'bell' | 'cancel' | 'cancel-circle-solid' | 'check' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'edit' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'file-key' | 'home-filled' | 'home-linear' | 'icon-slot' | 'keys01' | 'leads-filled' | 'leads-linear' | 'mail' | 'mortgage' | 'payments' | 'properties-filled' | 'properties-linear' | 'rent' | 'search' | 'search-x' | 'share' | 'user' | 'whatsapp';
69
119
  /**
70
120
  * Props for the unified Icon component
71
121
  */
@@ -80,4 +130,4 @@ interface IconProps extends Omit<ReactIconProps, 'size'> {
80
130
  */
81
131
  declare const Icon: ({ name, size, color, ...props }: IconProps) => React$1.JSX.Element | null;
82
132
 
83
- export { SvgArrowLeft as ArrowLeft, SvgCancel as Cancel, SvgCheck as Check, SvgEdit as Edit, SvgEyeHidden as EyeHidden, SvgEyeVisible as EyeVisible, SvgHomeFilled as HomeFilled, SvgHomeLinear as HomeLinear, ICON_SIZES, Icon, type IconName, type IconProps, type IconSize, type IconSizeToken, SvgIconSlot as IconSlot, SvgLeadsFilled as LeadsFilled, SvgLeadsLinear as LeadsLinear, SvgPropertiesFilled as PropertiesFilled, SvgPropertiesLinear as PropertiesLinear, type ReactIconProps, SvgSearch as Search, SvgUser as User, resolveSize };
133
+ export { SvgAlertTriangle as AlertTriangle, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgBell as Bell, SvgCancel as Cancel, SvgCancelCircleSolid as CancelCircleSolid, SvgCheck as Check, SvgChevronDown as ChevronDown, SvgChevronLeft as ChevronLeft, SvgChevronRight as ChevronRight, SvgChevronUp as ChevronUp, SvgEdit as Edit, SvgExploreFilled as ExploreFilled, SvgExploreLinear as ExploreLinear, SvgEyeHidden as EyeHidden, SvgEyeVisible as EyeVisible, SvgFileKey as FileKey, SvgHomeFilled as HomeFilled, SvgHomeLinear as HomeLinear, ICON_SIZES, Icon, type IconName, type IconProps, type IconSize, type IconSizeToken, SvgIconSlot as IconSlot, SvgKeys01 as Keys01, SvgLeadsFilled as LeadsFilled, SvgLeadsLinear as LeadsLinear, SvgMail as Mail, SvgMortgage as Mortgage, SvgPayments as Payments, SvgPropertiesFilled as PropertiesFilled, SvgPropertiesLinear as PropertiesLinear, type ReactIconProps, SvgRent as Rent, SvgSearch as Search, SvgSearchX as SearchX, SvgShare as Share, SvgUser as User, SvgWhatsapp as Whatsapp, resolveSize };