huspy-icons 0.1.8 → 0.1.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.
Files changed (51) hide show
  1. package/README.md +5 -8
  2. package/dist/fonts/HuspyIcons.css +100 -13
  3. package/dist/fonts/HuspyIcons.eot +0 -0
  4. package/dist/fonts/HuspyIcons.json +38 -9
  5. package/dist/fonts/HuspyIcons.ts +97 -10
  6. package/dist/fonts/HuspyIcons.ttf +0 -0
  7. package/dist/fonts/HuspyIcons.woff +0 -0
  8. package/dist/fonts/HuspyIcons.woff2 +0 -0
  9. package/dist/native/index.d.ts +1 -1
  10. package/dist/native/index.js +38 -9
  11. package/dist/native/index.js.map +1 -1
  12. package/dist/react/index.d.mts +60 -2
  13. package/dist/react/index.d.ts +60 -2
  14. package/dist/react/index.js +1704 -113
  15. package/dist/react/index.js.map +1 -1
  16. package/dist/react/index.mjs +1715 -124
  17. package/dist/react/index.mjs.map +1 -1
  18. package/package.json +2 -2
  19. package/src/native/glyphMap.ts +39 -10
  20. package/src/react/AlertTriangle.tsx +38 -0
  21. package/src/react/ArrowDown.tsx +32 -0
  22. package/src/react/ArrowDownLeft.tsx +32 -0
  23. package/src/react/ArrowDownRight.tsx +32 -0
  24. package/src/react/ArrowRight.tsx +32 -0
  25. package/src/react/ArrowUp.tsx +32 -0
  26. package/src/react/ArrowUpLeft.tsx +32 -0
  27. package/src/react/ArrowUpRight.tsx +32 -0
  28. package/src/react/Bell.tsx +32 -0
  29. package/src/react/CancelCircleSolid.tsx +26 -0
  30. package/src/react/ChevronDown.tsx +24 -0
  31. package/src/react/ChevronLeft.tsx +24 -0
  32. package/src/react/ChevronRight.tsx +24 -0
  33. package/src/react/ChevronUp.tsx +24 -0
  34. package/src/react/FileKey.tsx +44 -0
  35. package/src/react/HomeFilled.tsx +24 -0
  36. package/src/react/HomeLinear.tsx +26 -0
  37. package/src/react/Icon.tsx +88 -1
  38. package/src/react/Keys01.tsx +38 -0
  39. package/src/react/LeadsFilled.tsx +44 -0
  40. package/src/react/LeadsLinear.tsx +44 -0
  41. package/src/react/Mail.tsx +32 -0
  42. package/src/react/Mortgage.tsx +62 -0
  43. package/src/react/Payments.tsx +24 -0
  44. package/src/react/PropertiesFilled.tsx +36 -0
  45. package/src/react/PropertiesLinear.tsx +62 -0
  46. package/src/react/Rent.tsx +38 -0
  47. package/src/react/SearchX.tsx +44 -0
  48. package/src/react/Share.tsx +38 -0
  49. package/src/react/Whatsapp.tsx +26 -0
  50. package/src/react/index.ts +29 -0
  51. package/src/react/index.tsx +29 -0
package/README.md CHANGED
@@ -156,14 +156,13 @@ This will:
156
156
  - Update `package.json` version
157
157
  - Update `package-lock.json` version
158
158
  - Update `CHANGELOG.md` with a new version entry
159
- - Print next steps for committing and tagging
159
+ - Print next steps for committing
160
160
 
161
- Then commit, tag, and publish:
161
+ Then commit and publish:
162
162
  ```bash
163
163
  git add package.json package-lock.json CHANGELOG.md
164
164
  git commit -m "chore: bump version to X.X.X"
165
- git tag vX.X.X
166
- git push && git push --tags
165
+ git push
167
166
  npm publish
168
167
  ```
169
168
 
@@ -264,13 +263,11 @@ The script will:
264
263
  - ✅ Bump version in `package-lock.json`
265
264
  - ✅ Update `CHANGELOG.md` with a new version entry
266
265
 
267
- After running, commit, tag, and publish:
266
+ After running, commit and publish:
268
267
  ```bash
269
268
  git add package.json package-lock.json CHANGELOG.md
270
269
  git commit -m "chore: bump version to X.X.X"
271
- git tag vX.X.X
272
- git push && git push --tags
273
- npm publish
270
+ git push
274
271
  ```
275
272
 
276
273
  ---
@@ -1,9 +1,9 @@
1
1
  @font-face {
2
2
  font-family: "HuspyIcons";
3
- src: url(".//HuspyIcons.ttf?205afe71b5266cc3b69b2d08638c65ec") format("truetype"),
4
- url(".//HuspyIcons.woff?205afe71b5266cc3b69b2d08638c65ec") format("woff"),
5
- url(".//HuspyIcons.woff2?205afe71b5266cc3b69b2d08638c65ec") format("woff2"),
6
- url(".//HuspyIcons.eot?205afe71b5266cc3b69b2d08638c65ec#iefix") format("embedded-opentype");
3
+ src: url(".//HuspyIcons.ttf?3f801102a96debb460890aa5c2c14b3b") format("truetype"),
4
+ url(".//HuspyIcons.woff?3f801102a96debb460890aa5c2c14b3b") format("woff"),
5
+ url(".//HuspyIcons.woff2?3f801102a96debb460890aa5c2c14b3b") format("woff2"),
6
+ url(".//HuspyIcons.eot?3f801102a96debb460890aa5c2c14b3b#iefix") format("embedded-opentype");
7
7
  }
8
8
 
9
9
  .icon:before {
@@ -17,30 +17,117 @@ url(".//HuspyIcons.eot?205afe71b5266cc3b69b2d08638c65ec#iefix") format("embedded
17
17
  -moz-osx-font-smoothing: grayscale;
18
18
  }
19
19
 
20
- .icon.huspy-icon-user:before {
20
+ .icon.huspy-icon-whatsapp:before {
21
21
  content: "\f101";
22
22
  }
23
- .icon.huspy-icon-search:before {
23
+ .icon.huspy-icon-user:before {
24
24
  content: "\f102";
25
25
  }
26
- .icon.huspy-icon-icon-slot:before {
26
+ .icon.huspy-icon-share:before {
27
27
  content: "\f103";
28
28
  }
29
- .icon.huspy-icon-eye-visible:before {
29
+ .icon.huspy-icon-search:before {
30
30
  content: "\f104";
31
31
  }
32
- .icon.huspy-icon-eye-hidden:before {
32
+ .icon.huspy-icon-search-x:before {
33
33
  content: "\f105";
34
34
  }
35
- .icon.huspy-icon-edit:before {
35
+ .icon.huspy-icon-rent:before {
36
36
  content: "\f106";
37
37
  }
38
- .icon.huspy-icon-check:before {
38
+ .icon.huspy-icon-properties-linear:before {
39
39
  content: "\f107";
40
40
  }
41
- .icon.huspy-icon-cancel:before {
41
+ .icon.huspy-icon-properties-filled:before {
42
42
  content: "\f108";
43
43
  }
44
- .icon.huspy-icon-arrow-left:before {
44
+ .icon.huspy-icon-payments:before {
45
45
  content: "\f109";
46
46
  }
47
+ .icon.huspy-icon-mortgage:before {
48
+ content: "\f10a";
49
+ }
50
+ .icon.huspy-icon-mail:before {
51
+ content: "\f10b";
52
+ }
53
+ .icon.huspy-icon-leads-linear:before {
54
+ content: "\f10c";
55
+ }
56
+ .icon.huspy-icon-leads-filled:before {
57
+ content: "\f10d";
58
+ }
59
+ .icon.huspy-icon-keys_01:before {
60
+ content: "\f10e";
61
+ }
62
+ .icon.huspy-icon-icon-slot:before {
63
+ content: "\f10f";
64
+ }
65
+ .icon.huspy-icon-home-linear:before {
66
+ content: "\f110";
67
+ }
68
+ .icon.huspy-icon-home-filled:before {
69
+ content: "\f111";
70
+ }
71
+ .icon.huspy-icon-file-key:before {
72
+ content: "\f112";
73
+ }
74
+ .icon.huspy-icon-eye-visible:before {
75
+ content: "\f113";
76
+ }
77
+ .icon.huspy-icon-eye-hidden:before {
78
+ content: "\f114";
79
+ }
80
+ .icon.huspy-icon-edit:before {
81
+ content: "\f115";
82
+ }
83
+ .icon.huspy-icon-chevron-up:before {
84
+ content: "\f116";
85
+ }
86
+ .icon.huspy-icon-chevron-right:before {
87
+ content: "\f117";
88
+ }
89
+ .icon.huspy-icon-chevron-left:before {
90
+ content: "\f118";
91
+ }
92
+ .icon.huspy-icon-chevron-down:before {
93
+ content: "\f119";
94
+ }
95
+ .icon.huspy-icon-check:before {
96
+ content: "\f11a";
97
+ }
98
+ .icon.huspy-icon-cancel:before {
99
+ content: "\f11b";
100
+ }
101
+ .icon.huspy-icon-cancel-circle-solid:before {
102
+ content: "\f11c";
103
+ }
104
+ .icon.huspy-icon-bell:before {
105
+ content: "\f11d";
106
+ }
107
+ .icon.huspy-icon-arrow-up:before {
108
+ content: "\f11e";
109
+ }
110
+ .icon.huspy-icon-arrow-up-right:before {
111
+ content: "\f11f";
112
+ }
113
+ .icon.huspy-icon-arrow-up-left:before {
114
+ content: "\f120";
115
+ }
116
+ .icon.huspy-icon-arrow-right:before {
117
+ content: "\f121";
118
+ }
119
+ .icon.huspy-icon-arrow-left:before {
120
+ content: "\f122";
121
+ }
122
+ .icon.huspy-icon-arrow-down:before {
123
+ content: "\f123";
124
+ }
125
+ .icon.huspy-icon-arrow-down-right:before {
126
+ content: "\f124";
127
+ }
128
+ .icon.huspy-icon-arrow-down-left:before {
129
+ content: "\f125";
130
+ }
131
+ .icon.huspy-icon-alert-triangle:before {
132
+ content: "\f126";
133
+ }
Binary file
@@ -1,11 +1,40 @@
1
1
  {
2
- "user": 61697,
3
- "search": 61698,
4
- "icon-slot": 61699,
5
- "eye-visible": 61700,
6
- "eye-hidden": 61701,
7
- "edit": 61702,
8
- "check": 61703,
9
- "cancel": 61704,
10
- "arrow-left": 61705
2
+ "whatsapp": 61697,
3
+ "user": 61698,
4
+ "share": 61699,
5
+ "search": 61700,
6
+ "search-x": 61701,
7
+ "rent": 61702,
8
+ "properties-linear": 61703,
9
+ "properties-filled": 61704,
10
+ "payments": 61705,
11
+ "mortgage": 61706,
12
+ "mail": 61707,
13
+ "leads-linear": 61708,
14
+ "leads-filled": 61709,
15
+ "keys_01": 61710,
16
+ "icon-slot": 61711,
17
+ "home-linear": 61712,
18
+ "home-filled": 61713,
19
+ "file-key": 61714,
20
+ "eye-visible": 61715,
21
+ "eye-hidden": 61716,
22
+ "edit": 61717,
23
+ "chevron-up": 61718,
24
+ "chevron-right": 61719,
25
+ "chevron-left": 61720,
26
+ "chevron-down": 61721,
27
+ "check": 61722,
28
+ "cancel": 61723,
29
+ "cancel-circle-solid": 61724,
30
+ "bell": 61725,
31
+ "arrow-up": 61726,
32
+ "arrow-up-right": 61727,
33
+ "arrow-up-left": 61728,
34
+ "arrow-right": 61729,
35
+ "arrow-left": 61730,
36
+ "arrow-down": 61731,
37
+ "arrow-down-right": 61732,
38
+ "arrow-down-left": 61733,
39
+ "alert-triangle": 61734
11
40
  }
@@ -1,34 +1,121 @@
1
1
  export type HuspyIconsId =
2
+ | "whatsapp"
2
3
  | "user"
4
+ | "share"
3
5
  | "search"
6
+ | "search-x"
7
+ | "rent"
8
+ | "properties-linear"
9
+ | "properties-filled"
10
+ | "payments"
11
+ | "mortgage"
12
+ | "mail"
13
+ | "leads-linear"
14
+ | "leads-filled"
15
+ | "keys_01"
4
16
  | "icon-slot"
17
+ | "home-linear"
18
+ | "home-filled"
19
+ | "file-key"
5
20
  | "eye-visible"
6
21
  | "eye-hidden"
7
22
  | "edit"
23
+ | "chevron-up"
24
+ | "chevron-right"
25
+ | "chevron-left"
26
+ | "chevron-down"
8
27
  | "check"
9
28
  | "cancel"
10
- | "arrow-left";
29
+ | "cancel-circle-solid"
30
+ | "bell"
31
+ | "arrow-up"
32
+ | "arrow-up-right"
33
+ | "arrow-up-left"
34
+ | "arrow-right"
35
+ | "arrow-left"
36
+ | "arrow-down"
37
+ | "arrow-down-right"
38
+ | "arrow-down-left"
39
+ | "alert-triangle";
11
40
 
12
41
  export enum HuspyIcons {
42
+ Whatsapp = "whatsapp",
13
43
  User = "user",
44
+ Share = "share",
14
45
  Search = "search",
46
+ SearchX = "search-x",
47
+ Rent = "rent",
48
+ PropertiesLinear = "properties-linear",
49
+ PropertiesFilled = "properties-filled",
50
+ Payments = "payments",
51
+ Mortgage = "mortgage",
52
+ Mail = "mail",
53
+ LeadsLinear = "leads-linear",
54
+ LeadsFilled = "leads-filled",
55
+ Keys01 = "keys_01",
15
56
  IconSlot = "icon-slot",
57
+ HomeLinear = "home-linear",
58
+ HomeFilled = "home-filled",
59
+ FileKey = "file-key",
16
60
  EyeVisible = "eye-visible",
17
61
  EyeHidden = "eye-hidden",
18
62
  Edit = "edit",
63
+ ChevronUp = "chevron-up",
64
+ ChevronRight = "chevron-right",
65
+ ChevronLeft = "chevron-left",
66
+ ChevronDown = "chevron-down",
19
67
  Check = "check",
20
68
  Cancel = "cancel",
69
+ CancelCircleSolid = "cancel-circle-solid",
70
+ Bell = "bell",
71
+ ArrowUp = "arrow-up",
72
+ ArrowUpRight = "arrow-up-right",
73
+ ArrowUpLeft = "arrow-up-left",
74
+ ArrowRight = "arrow-right",
21
75
  ArrowLeft = "arrow-left",
76
+ ArrowDown = "arrow-down",
77
+ ArrowDownRight = "arrow-down-right",
78
+ ArrowDownLeft = "arrow-down-left",
79
+ AlertTriangle = "alert-triangle",
22
80
  }
23
81
 
24
82
  export const HUSPY_ICONS_CODEPOINTS: { [key in HuspyIcons]: string } = {
25
- [HuspyIcons.User]: "61697",
26
- [HuspyIcons.Search]: "61698",
27
- [HuspyIcons.IconSlot]: "61699",
28
- [HuspyIcons.EyeVisible]: "61700",
29
- [HuspyIcons.EyeHidden]: "61701",
30
- [HuspyIcons.Edit]: "61702",
31
- [HuspyIcons.Check]: "61703",
32
- [HuspyIcons.Cancel]: "61704",
33
- [HuspyIcons.ArrowLeft]: "61705",
83
+ [HuspyIcons.Whatsapp]: "61697",
84
+ [HuspyIcons.User]: "61698",
85
+ [HuspyIcons.Share]: "61699",
86
+ [HuspyIcons.Search]: "61700",
87
+ [HuspyIcons.SearchX]: "61701",
88
+ [HuspyIcons.Rent]: "61702",
89
+ [HuspyIcons.PropertiesLinear]: "61703",
90
+ [HuspyIcons.PropertiesFilled]: "61704",
91
+ [HuspyIcons.Payments]: "61705",
92
+ [HuspyIcons.Mortgage]: "61706",
93
+ [HuspyIcons.Mail]: "61707",
94
+ [HuspyIcons.LeadsLinear]: "61708",
95
+ [HuspyIcons.LeadsFilled]: "61709",
96
+ [HuspyIcons.Keys01]: "61710",
97
+ [HuspyIcons.IconSlot]: "61711",
98
+ [HuspyIcons.HomeLinear]: "61712",
99
+ [HuspyIcons.HomeFilled]: "61713",
100
+ [HuspyIcons.FileKey]: "61714",
101
+ [HuspyIcons.EyeVisible]: "61715",
102
+ [HuspyIcons.EyeHidden]: "61716",
103
+ [HuspyIcons.Edit]: "61717",
104
+ [HuspyIcons.ChevronUp]: "61718",
105
+ [HuspyIcons.ChevronRight]: "61719",
106
+ [HuspyIcons.ChevronLeft]: "61720",
107
+ [HuspyIcons.ChevronDown]: "61721",
108
+ [HuspyIcons.Check]: "61722",
109
+ [HuspyIcons.Cancel]: "61723",
110
+ [HuspyIcons.CancelCircleSolid]: "61724",
111
+ [HuspyIcons.Bell]: "61725",
112
+ [HuspyIcons.ArrowUp]: "61726",
113
+ [HuspyIcons.ArrowUpRight]: "61727",
114
+ [HuspyIcons.ArrowUpLeft]: "61728",
115
+ [HuspyIcons.ArrowRight]: "61729",
116
+ [HuspyIcons.ArrowLeft]: "61730",
117
+ [HuspyIcons.ArrowDown]: "61731",
118
+ [HuspyIcons.ArrowDownRight]: "61732",
119
+ [HuspyIcons.ArrowDownLeft]: "61733",
120
+ [HuspyIcons.AlertTriangle]: "61734",
34
121
  };
Binary file
Binary file
Binary file
@@ -4,7 +4,7 @@ import { TextProps } from 'react-native';
4
4
  /**
5
5
  * Available icon names in the HuspyIcons font
6
6
  */
7
- type IconName = 'user' | 'search' | 'icon-slot' | 'eye-visible' | 'eye-hidden' | 'edit' | 'check' | 'cancel' | 'arrow-left';
7
+ type IconName = 'whatsapp' | 'user' | 'share' | 'search' | 'search-x' | 'rent' | 'properties-linear' | 'properties-filled' | 'payments' | 'mortgage' | 'mail' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'icon-slot' | 'home-linear' | 'home-filled' | 'file-key' | 'eye-visible' | 'eye-hidden' | 'edit' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'cancel' | 'cancel-circle-solid' | 'bell' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'alert-triangle';
8
8
  /**
9
9
  * Mapping of icon names to unicode codepoints
10
10
  * Used by the Icon component to render the correct glyph
@@ -42,15 +42,44 @@ var import_react_native = require("react-native");
42
42
 
43
43
  // src/native/glyphMap.ts
44
44
  var glyphMap = {
45
- "user": 61697,
46
- "search": 61698,
47
- "icon-slot": 61699,
48
- "eye-visible": 61700,
49
- "eye-hidden": 61701,
50
- "edit": 61702,
51
- "check": 61703,
52
- "cancel": 61704,
53
- "arrow-left": 61705
45
+ "whatsapp": 61697,
46
+ "user": 61698,
47
+ "share": 61699,
48
+ "search": 61700,
49
+ "search-x": 61701,
50
+ "rent": 61702,
51
+ "properties-linear": 61703,
52
+ "properties-filled": 61704,
53
+ "payments": 61705,
54
+ "mortgage": 61706,
55
+ "mail": 61707,
56
+ "leads-linear": 61708,
57
+ "leads-filled": 61709,
58
+ "keys_01": 61710,
59
+ "icon-slot": 61711,
60
+ "home-linear": 61712,
61
+ "home-filled": 61713,
62
+ "file-key": 61714,
63
+ "eye-visible": 61715,
64
+ "eye-hidden": 61716,
65
+ "edit": 61717,
66
+ "chevron-up": 61718,
67
+ "chevron-right": 61719,
68
+ "chevron-left": 61720,
69
+ "chevron-down": 61721,
70
+ "check": 61722,
71
+ "cancel": 61723,
72
+ "cancel-circle-solid": 61724,
73
+ "bell": 61725,
74
+ "arrow-up": 61726,
75
+ "arrow-up-right": 61727,
76
+ "arrow-up-left": 61728,
77
+ "arrow-right": 61729,
78
+ "arrow-left": 61730,
79
+ "arrow-down": 61731,
80
+ "arrow-down-right": 61732,
81
+ "arrow-down-left": 61733,
82
+ "alert-triangle": 61734
54
83
  };
55
84
  var fontFamily = "HuspyIcons";
56
85
 
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/native/index.ts","../../src/native/Icon.tsx","../../src/native/glyphMap.ts"],"sourcesContent":["/**\n * Huspy Icons - React Native (Font-based)\n * \n * This package provides icon components for React Native using a custom font.\n * \n * @example\n * ```tsx\n * import { Icon } from 'huspy-icons/native';\n * \n * function MyComponent() {\n * return <Icon name=\"arrow-left\" size={24} color=\"#000\" />;\n * }\n * ```\n */\n\nexport { default as Icon } from './Icon';\nexport type { IconProps, IconName } from './Icon';\nexport { glyphMap, fontFamily } from './glyphMap';\n\n","import * as React from 'react';\nimport { Text, TextProps } from 'react-native';\nimport { glyphMap, fontFamily, IconName } from './glyphMap';\n\n/**\n * Props for the Icon component (React Native)\n */\nexport interface IconProps extends Omit<TextProps, 'children'> {\n /**\n * Name of the icon to display\n */\n name: IconName;\n\n /**\n * Size of the icon (default: 16)\n */\n size?: number;\n\n /**\n * Color of the icon (default: inherits from parent or 'black')\n */\n color?: string;\n}\n\n/**\n * Icon component for React Native\n *\n * Renders icons using a custom font (HuspyIcons)\n *\n * @example\n * ```tsx\n * <Icon name=\"arrow-left\" size={24} color=\"#000\" />\n * ```\n */\nconst Icon = ({ name, size = 16, color = '#000', style, ...props }: IconProps) => {\n const codepoint = glyphMap[name];\n\n if (!codepoint) {\n if (__DEV__) {\n console.warn(`Icon \"${name}\" not found in HuspyIcons font`);\n }\n return null;\n }\n\n // Convert codepoint to character\n const glyph = String.fromCharCode(codepoint);\n\n return (\n <Text\n {...props}\n style={[\n {\n fontFamily: fontFamily,\n fontSize: size,\n color: color,\n // Ensure icon doesn't inherit text styles\n fontWeight: 'normal',\n fontStyle: 'normal',\n // Prevent text selection and ensure proper rendering\n includeFontPadding: false, // Android: removes extra padding\n textAlignVertical: 'center', // Android: centers the glyph vertically\n },\n style,\n ]}\n // Accessibility\n accessible\n accessibilityLabel={props.accessibilityLabel || name}\n accessibilityRole=\"image\"\n >\n {glyph}\n </Text>\n );\n};\n\nexport default Icon;\nexport type { IconName };\n","// Auto-generated by generate-font.js - do not edit manually\n// Source: icons-src/*.svg → dist/fonts/HuspyIcons.*\n\n/**\n * Available icon names in the HuspyIcons font\n */\nexport type IconName = 'user' | 'search' | 'icon-slot' | 'eye-visible' | 'eye-hidden' | 'edit' | 'check' | 'cancel' | 'arrow-left';\n\n/**\n * Mapping of icon names to unicode codepoints\n * Used by the Icon component to render the correct glyph\n */\nexport const glyphMap: Record<IconName, number> = {\n \"user\": 61697,\n \"search\": 61698,\n \"icon-slot\": 61699,\n \"eye-visible\": 61700,\n \"eye-hidden\": 61701,\n \"edit\": 61702,\n \"check\": 61703,\n \"cancel\": 61704,\n \"arrow-left\": 61705\n};\n\n/**\n * Font family name for React Native\n */\nexport const fontFamily = 'HuspyIcons';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,YAAuB;AACvB,0BAAgC;;;ACWzB,IAAM,WAAqC;AAAA,EAChD,QAAQ;AAAA,EACR,UAAU;AAAA,EACV,aAAa;AAAA,EACb,eAAe;AAAA,EACf,cAAc;AAAA,EACd,QAAQ;AAAA,EACR,SAAS;AAAA,EACT,UAAU;AAAA,EACV,cAAc;AAChB;AAKO,IAAM,aAAa;;;ADO1B,IAAM,OAAO,CAAC,EAAE,MAAM,OAAO,IAAI,QAAQ,QAAQ,OAAO,GAAG,MAAM,MAAiB;AAChF,QAAM,YAAY,SAAS,IAAI;AAE/B,MAAI,CAAC,WAAW;AACd,QAAI,SAAS;AACX,cAAQ,KAAK,SAAS,IAAI,gCAAgC;AAAA,IAC5D;AACA,WAAO;AAAA,EACT;AAGA,QAAM,QAAQ,OAAO,aAAa,SAAS;AAE3C,SACE;AAAA,IAAC;AAAA;AAAA,MACE,GAAG;AAAA,MACJ,OAAO;AAAA,QACL;AAAA,UACE;AAAA,UACA,UAAU;AAAA,UACV;AAAA;AAAA,UAEA,YAAY;AAAA,UACZ,WAAW;AAAA;AAAA,UAEX,oBAAoB;AAAA;AAAA,UACpB,mBAAmB;AAAA;AAAA,QACrB;AAAA,QACA;AAAA,MACF;AAAA,MAEA,YAAU;AAAA,MACV,oBAAoB,MAAM,sBAAsB;AAAA,MAChD,mBAAkB;AAAA;AAAA,IAEjB;AAAA,EACH;AAEJ;AAEA,IAAO,eAAQ;","names":[]}
1
+ {"version":3,"sources":["../../src/native/index.ts","../../src/native/Icon.tsx","../../src/native/glyphMap.ts"],"sourcesContent":["/**\n * Huspy Icons - React Native (Font-based)\n * \n * This package provides icon components for React Native using a custom font.\n * \n * @example\n * ```tsx\n * import { Icon } from 'huspy-icons/native';\n * \n * function MyComponent() {\n * return <Icon name=\"arrow-left\" size={24} color=\"#000\" />;\n * }\n * ```\n */\n\nexport { default as Icon } from './Icon';\nexport type { IconProps, IconName } from './Icon';\nexport { glyphMap, fontFamily } from './glyphMap';\n\n","import * as React from 'react';\nimport { Text, TextProps } from 'react-native';\nimport { glyphMap, fontFamily, IconName } from './glyphMap';\n\n/**\n * Props for the Icon component (React Native)\n */\nexport interface IconProps extends Omit<TextProps, 'children'> {\n /**\n * Name of the icon to display\n */\n name: IconName;\n\n /**\n * Size of the icon (default: 16)\n */\n size?: number;\n\n /**\n * Color of the icon (default: inherits from parent or 'black')\n */\n color?: string;\n}\n\n/**\n * Icon component for React Native\n *\n * Renders icons using a custom font (HuspyIcons)\n *\n * @example\n * ```tsx\n * <Icon name=\"arrow-left\" size={24} color=\"#000\" />\n * ```\n */\nconst Icon = ({ name, size = 16, color = '#000', style, ...props }: IconProps) => {\n const codepoint = glyphMap[name];\n\n if (!codepoint) {\n if (__DEV__) {\n console.warn(`Icon \"${name}\" not found in HuspyIcons font`);\n }\n return null;\n }\n\n // Convert codepoint to character\n const glyph = String.fromCharCode(codepoint);\n\n return (\n <Text\n {...props}\n style={[\n {\n fontFamily: fontFamily,\n fontSize: size,\n color: color,\n // Ensure icon doesn't inherit text styles\n fontWeight: 'normal',\n fontStyle: 'normal',\n // Prevent text selection and ensure proper rendering\n includeFontPadding: false, // Android: removes extra padding\n textAlignVertical: 'center', // Android: centers the glyph vertically\n },\n style,\n ]}\n // Accessibility\n accessible\n accessibilityLabel={props.accessibilityLabel || name}\n accessibilityRole=\"image\"\n >\n {glyph}\n </Text>\n );\n};\n\nexport default Icon;\nexport type { IconName };\n","// Auto-generated by generate-font.js - do not edit manually\n// Source: icons-src/*.svg → dist/fonts/HuspyIcons.*\n\n/**\n * Available icon names in the HuspyIcons font\n */\nexport type IconName = 'whatsapp' | 'user' | 'share' | 'search' | 'search-x' | 'rent' | 'properties-linear' | 'properties-filled' | 'payments' | 'mortgage' | 'mail' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'icon-slot' | 'home-linear' | 'home-filled' | 'file-key' | 'eye-visible' | 'eye-hidden' | 'edit' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'cancel' | 'cancel-circle-solid' | 'bell' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'alert-triangle';\n\n/**\n * Mapping of icon names to unicode codepoints\n * Used by the Icon component to render the correct glyph\n */\nexport const glyphMap: Record<IconName, number> = {\n \"whatsapp\": 61697,\n \"user\": 61698,\n \"share\": 61699,\n \"search\": 61700,\n \"search-x\": 61701,\n \"rent\": 61702,\n \"properties-linear\": 61703,\n \"properties-filled\": 61704,\n \"payments\": 61705,\n \"mortgage\": 61706,\n \"mail\": 61707,\n \"leads-linear\": 61708,\n \"leads-filled\": 61709,\n \"keys_01\": 61710,\n \"icon-slot\": 61711,\n \"home-linear\": 61712,\n \"home-filled\": 61713,\n \"file-key\": 61714,\n \"eye-visible\": 61715,\n \"eye-hidden\": 61716,\n \"edit\": 61717,\n \"chevron-up\": 61718,\n \"chevron-right\": 61719,\n \"chevron-left\": 61720,\n \"chevron-down\": 61721,\n \"check\": 61722,\n \"cancel\": 61723,\n \"cancel-circle-solid\": 61724,\n \"bell\": 61725,\n \"arrow-up\": 61726,\n \"arrow-up-right\": 61727,\n \"arrow-up-left\": 61728,\n \"arrow-right\": 61729,\n \"arrow-left\": 61730,\n \"arrow-down\": 61731,\n \"arrow-down-right\": 61732,\n \"arrow-down-left\": 61733,\n \"alert-triangle\": 61734\n};\n\n/**\n * Font family name for React Native\n */\nexport const fontFamily = 'HuspyIcons';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,YAAuB;AACvB,0BAAgC;;;ACWzB,IAAM,WAAqC;AAAA,EAChD,YAAY;AAAA,EACZ,QAAQ;AAAA,EACR,SAAS;AAAA,EACT,UAAU;AAAA,EACV,YAAY;AAAA,EACZ,QAAQ;AAAA,EACR,qBAAqB;AAAA,EACrB,qBAAqB;AAAA,EACrB,YAAY;AAAA,EACZ,YAAY;AAAA,EACZ,QAAQ;AAAA,EACR,gBAAgB;AAAA,EAChB,gBAAgB;AAAA,EAChB,WAAW;AAAA,EACX,aAAa;AAAA,EACb,eAAe;AAAA,EACf,eAAe;AAAA,EACf,YAAY;AAAA,EACZ,eAAe;AAAA,EACf,cAAc;AAAA,EACd,QAAQ;AAAA,EACR,cAAc;AAAA,EACd,iBAAiB;AAAA,EACjB,gBAAgB;AAAA,EAChB,gBAAgB;AAAA,EAChB,SAAS;AAAA,EACT,UAAU;AAAA,EACV,uBAAuB;AAAA,EACvB,QAAQ;AAAA,EACR,YAAY;AAAA,EACZ,kBAAkB;AAAA,EAClB,iBAAiB;AAAA,EACjB,eAAe;AAAA,EACf,cAAc;AAAA,EACd,cAAc;AAAA,EACd,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,kBAAkB;AACpB;AAKO,IAAM,aAAa;;;ADtB1B,IAAM,OAAO,CAAC,EAAE,MAAM,OAAO,IAAI,QAAQ,QAAQ,OAAO,GAAG,MAAM,MAAiB;AAChF,QAAM,YAAY,SAAS,IAAI;AAE/B,MAAI,CAAC,WAAW;AACd,QAAI,SAAS;AACX,cAAQ,KAAK,SAAS,IAAI,gCAAgC;AAAA,IAC5D;AACA,WAAO;AAAA,EACT;AAGA,QAAM,QAAQ,OAAO,aAAa,SAAS;AAE3C,SACE;AAAA,IAAC;AAAA;AAAA,MACE,GAAG;AAAA,MACJ,OAAO;AAAA,QACL;AAAA,UACE;AAAA,UACA,UAAU;AAAA,UACV;AAAA;AAAA,UAEA,YAAY;AAAA,UACZ,WAAW;AAAA;AAAA,UAEX,oBAAoB;AAAA;AAAA,UACpB,mBAAmB;AAAA;AAAA,QACrB;AAAA,QACA;AAAA,MACF;AAAA,MAEA,YAAU;AAAA,MACV,oBAAoB,MAAM,sBAAsB;AAAA,MAChD,mBAAkB;AAAA;AAAA,IAEjB;AAAA,EACH;AAEJ;AAEA,IAAO,eAAQ;","names":[]}
@@ -28,24 +28,82 @@ 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
 
39
67
  declare const SvgEyeHidden: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
40
68
 
41
69
  declare const SvgEyeVisible: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
42
70
 
71
+ declare const SvgFileKey: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
72
+
73
+ declare const SvgHomeFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
74
+
75
+ declare const SvgHomeLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
76
+
43
77
  declare const SvgIconSlot: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
44
78
 
79
+ declare const SvgKeys01: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
80
+
81
+ declare const SvgLeadsFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
82
+
83
+ declare const SvgLeadsLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
84
+
85
+ declare const SvgMail: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
86
+
87
+ declare const SvgMortgage: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
88
+
89
+ declare const SvgPayments: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
90
+
91
+ declare const SvgPropertiesFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
92
+
93
+ declare const SvgPropertiesLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
94
+
95
+ declare const SvgRent: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
96
+
45
97
  declare const SvgSearch: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
46
98
 
99
+ declare const SvgSearchX: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
100
+
101
+ declare const SvgShare: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
102
+
47
103
  declare const SvgUser: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
48
104
 
105
+ declare const SvgWhatsapp: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
106
+
49
107
  /**
50
108
  * Icon imports - using dynamic imports for tree-shaking
51
109
  * Auto-generated - do not edit manually
@@ -53,7 +111,7 @@ declare const SvgUser: ({ size, ...props }: ReactIconProps) => React$1.JSX.Eleme
53
111
  /**
54
112
  * Available icon names
55
113
  */
56
- type IconName = 'arrow-left' | 'cancel' | 'check' | 'edit' | 'eye-hidden' | 'eye-visible' | 'icon-slot' | 'search' | 'user';
114
+ 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' | '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';
57
115
  /**
58
116
  * Props for the unified Icon component
59
117
  */
@@ -68,4 +126,4 @@ interface IconProps extends Omit<ReactIconProps, 'size'> {
68
126
  */
69
127
  declare const Icon: ({ name, size, color, ...props }: IconProps) => React$1.JSX.Element | null;
70
128
 
71
- export { SvgArrowLeft as ArrowLeft, SvgCancel as Cancel, SvgCheck as Check, SvgEdit as Edit, SvgEyeHidden as EyeHidden, SvgEyeVisible as EyeVisible, ICON_SIZES, Icon, type IconName, type IconProps, type IconSize, type IconSizeToken, SvgIconSlot as IconSlot, type ReactIconProps, SvgSearch as Search, SvgUser as User, resolveSize };
129
+ 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, 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 };
@@ -28,24 +28,82 @@ 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
 
39
67
  declare const SvgEyeHidden: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
40
68
 
41
69
  declare const SvgEyeVisible: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
42
70
 
71
+ declare const SvgFileKey: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
72
+
73
+ declare const SvgHomeFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
74
+
75
+ declare const SvgHomeLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
76
+
43
77
  declare const SvgIconSlot: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
44
78
 
79
+ declare const SvgKeys01: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
80
+
81
+ declare const SvgLeadsFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
82
+
83
+ declare const SvgLeadsLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
84
+
85
+ declare const SvgMail: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
86
+
87
+ declare const SvgMortgage: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
88
+
89
+ declare const SvgPayments: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
90
+
91
+ declare const SvgPropertiesFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
92
+
93
+ declare const SvgPropertiesLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
94
+
95
+ declare const SvgRent: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
96
+
45
97
  declare const SvgSearch: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
46
98
 
99
+ declare const SvgSearchX: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
100
+
101
+ declare const SvgShare: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
102
+
47
103
  declare const SvgUser: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
48
104
 
105
+ declare const SvgWhatsapp: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
106
+
49
107
  /**
50
108
  * Icon imports - using dynamic imports for tree-shaking
51
109
  * Auto-generated - do not edit manually
@@ -53,7 +111,7 @@ declare const SvgUser: ({ size, ...props }: ReactIconProps) => React$1.JSX.Eleme
53
111
  /**
54
112
  * Available icon names
55
113
  */
56
- type IconName = 'arrow-left' | 'cancel' | 'check' | 'edit' | 'eye-hidden' | 'eye-visible' | 'icon-slot' | 'search' | 'user';
114
+ 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' | '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';
57
115
  /**
58
116
  * Props for the unified Icon component
59
117
  */
@@ -68,4 +126,4 @@ interface IconProps extends Omit<ReactIconProps, 'size'> {
68
126
  */
69
127
  declare const Icon: ({ name, size, color, ...props }: IconProps) => React$1.JSX.Element | null;
70
128
 
71
- export { SvgArrowLeft as ArrowLeft, SvgCancel as Cancel, SvgCheck as Check, SvgEdit as Edit, SvgEyeHidden as EyeHidden, SvgEyeVisible as EyeVisible, ICON_SIZES, Icon, type IconName, type IconProps, type IconSize, type IconSizeToken, SvgIconSlot as IconSlot, type ReactIconProps, SvgSearch as Search, SvgUser as User, resolveSize };
129
+ 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, 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 };