@idealyst/components 1.0.23 → 1.0.25

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 (110) hide show
  1. package/README.md +567 -567
  2. package/package.json +2 -6
  3. package/plugin/web.js +319 -185
  4. package/src/Avatar/Avatar.native.tsx +43 -43
  5. package/src/Avatar/Avatar.styles.tsx +66 -66
  6. package/src/Avatar/Avatar.web.tsx +50 -50
  7. package/src/Avatar/index.native.ts +1 -1
  8. package/src/Avatar/index.ts +1 -1
  9. package/src/Avatar/index.web.ts +1 -1
  10. package/src/Avatar/types.ts +42 -42
  11. package/src/Badge/Badge.native.tsx +42 -42
  12. package/src/Badge/Badge.styles.tsx +153 -153
  13. package/src/Badge/Badge.web.tsx +44 -44
  14. package/src/Badge/index.native.ts +1 -1
  15. package/src/Badge/index.ts +1 -1
  16. package/src/Badge/index.web.ts +1 -1
  17. package/src/Badge/types.ts +33 -33
  18. package/src/Button/Button.native.tsx +38 -38
  19. package/src/Button/Button.styles.tsx +214 -214
  20. package/src/Button/Button.types.ts +11 -11
  21. package/src/Button/Button.web.tsx +55 -55
  22. package/src/Button/index.native.ts +2 -2
  23. package/src/Button/index.ts +4 -4
  24. package/src/Button/index.web.ts +2 -2
  25. package/src/Button/types.ts +48 -48
  26. package/src/Card/Card.native.tsx +51 -51
  27. package/src/Card/Card.styles.tsx +239 -239
  28. package/src/Card/Card.web.tsx +61 -61
  29. package/src/Card/index.native.ts +2 -2
  30. package/src/Card/index.ts +4 -4
  31. package/src/Card/index.web.ts +2 -2
  32. package/src/Card/types.ts +58 -58
  33. package/src/Checkbox/Checkbox.native.tsx +98 -98
  34. package/src/Checkbox/Checkbox.styles.tsx +291 -291
  35. package/src/Checkbox/Checkbox.web.tsx +130 -130
  36. package/src/Checkbox/index.native.ts +2 -2
  37. package/src/Checkbox/index.ts +4 -4
  38. package/src/Checkbox/index.web.ts +2 -2
  39. package/src/Checkbox/types.ts +78 -78
  40. package/src/Divider/Divider.native.tsx +144 -144
  41. package/src/Divider/Divider.styles.tsx +601 -601
  42. package/src/Divider/Divider.web.tsx +72 -72
  43. package/src/Divider/index.native.ts +2 -2
  44. package/src/Divider/index.ts +4 -4
  45. package/src/Divider/index.web.ts +2 -2
  46. package/src/Divider/types.ts +53 -53
  47. package/src/Icon/Icon.native.tsx +38 -38
  48. package/src/Icon/Icon.styles.tsx +49 -49
  49. package/src/Icon/Icon.web.tsx +46 -46
  50. package/src/Icon/icon-types.ts +7452 -7452
  51. package/src/Icon/index.native.ts +2 -2
  52. package/src/Icon/index.ts +4 -4
  53. package/src/Icon/index.web.ts +2 -2
  54. package/src/Icon/types.ts +35 -35
  55. package/src/Input/Input.native.tsx +74 -74
  56. package/src/Input/Input.styles.tsx +176 -176
  57. package/src/Input/Input.web.tsx +70 -70
  58. package/src/Input/index.native.ts +2 -2
  59. package/src/Input/index.ts +4 -4
  60. package/src/Input/index.web.ts +2 -2
  61. package/src/Input/types.ts +68 -68
  62. package/src/Screen/Screen.native.tsx +40 -40
  63. package/src/Screen/Screen.styles.tsx +59 -59
  64. package/src/Screen/Screen.web.tsx +32 -32
  65. package/src/Screen/index.native.ts +1 -1
  66. package/src/Screen/index.ts +1 -1
  67. package/src/Screen/index.web.ts +1 -1
  68. package/src/Screen/types.ts +37 -37
  69. package/src/Text/Text.native.tsx +35 -35
  70. package/src/Text/Text.styles.tsx +66 -66
  71. package/src/Text/Text.web.tsx +40 -40
  72. package/src/Text/index.native.ts +2 -2
  73. package/src/Text/index.ts +4 -4
  74. package/src/Text/index.web.ts +2 -2
  75. package/src/Text/types.ts +38 -38
  76. package/src/View/View.native.tsx +55 -55
  77. package/src/View/View.styles.tsx +102 -102
  78. package/src/View/View.web.tsx +59 -59
  79. package/src/View/index.native.ts +2 -2
  80. package/src/View/index.ts +4 -4
  81. package/src/View/index.web.ts +2 -2
  82. package/src/View/types.ts +72 -72
  83. package/src/examples/AllExamples.tsx +71 -71
  84. package/src/examples/AvatarExamples.tsx +96 -96
  85. package/src/examples/BadgeExamples.tsx +199 -199
  86. package/src/examples/ButtonExamples.tsx +149 -149
  87. package/src/examples/CardExamples.tsx +175 -175
  88. package/src/examples/CheckboxExamples.tsx +216 -216
  89. package/src/examples/DividerExamples.tsx +217 -217
  90. package/src/examples/IconExamples.tsx +341 -341
  91. package/src/examples/InputExamples.tsx +133 -133
  92. package/src/examples/README.md +135 -135
  93. package/src/examples/ScreenExamples.tsx +153 -153
  94. package/src/examples/TextExamples.tsx +88 -88
  95. package/src/examples/ThemeExtensionExamples.tsx +90 -90
  96. package/src/examples/ValidationExamples.tsx +94 -94
  97. package/src/examples/ViewExamples.tsx +128 -128
  98. package/src/examples/extendedTheme.ts +328 -328
  99. package/src/examples/index.ts +14 -14
  100. package/src/index.native.ts +48 -48
  101. package/src/index.ts +47 -47
  102. package/src/theme/breakpoints.ts +8 -8
  103. package/src/theme/colorResolver.ts +217 -217
  104. package/src/theme/colors.ts +314 -314
  105. package/src/theme/defaultThemes.ts +325 -325
  106. package/src/theme/index.ts +187 -187
  107. package/src/theme/themeBuilder.ts +601 -601
  108. package/src/theme/unistyles.d.ts +5 -5
  109. package/src/theme/variantHelpers.ts +583 -583
  110. package/src/theme/variants.ts +55 -55
@@ -1,342 +1,342 @@
1
- import React from 'react';
2
- import { Screen, View, Icon, Text, Button } from '../index';
3
- import type { IconName } from '../Icon/icon-types';
4
-
5
- export const IconExamples = () => {
6
- return (
7
- <Screen background="primary" padding="lg">
8
- <View spacing="none">
9
- <Text size="large" weight="bold" align="center">
10
- Icon Examples
11
- </Text>
12
-
13
- {/* Color Variants */}
14
- <View spacing="md">
15
- <Text size="medium" weight="semibold">Color Variants</Text>
16
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
17
- <View style={{ alignItems: 'center', gap: 4 }}>
18
- <Icon name="home-account" size="md" color="primary" />
19
- <Text size="small">Primary</Text>
20
- </View>
21
- <View style={{ alignItems: 'center', gap: 4 }}>
22
- <Icon name="check" size="md" color="secondary" />
23
- <Text size="small">Secondary</Text>
24
- </View>
25
- <View style={{ alignItems: 'center', gap: 4 }}>
26
- <Icon name="alert-circle" size="md" color="blue" />
27
- <Text size="small">Blue</Text>
28
- </View>
29
- <View style={{ alignItems: 'center', gap: 4 }}>
30
- <Icon name="alert" size="md" color="green" />
31
- <Text size="small">Green</Text>
32
- </View>
33
- <View style={{ alignItems: 'center', gap: 4 }}>
34
- <Icon name="cog" size="md" color="red" />
35
- <Text size="small">Red</Text>
36
- </View>
37
- <View style={{ alignItems: 'center', gap: 4 }}>
38
- <Icon name="text" size="md" color="orange" />
39
- <Text size="small">Orange</Text>
40
- </View>
41
- <View style={{ alignItems: 'center', gap: 4 }}>
42
- <Icon name="text" size="md" color="disabled" />
43
- <Text size="small">Disabled</Text>
44
- </View>
45
- <View style={{ alignItems: 'center', gap: 4 }}>
46
- <Icon name="text" size="md" color="muted" />
47
- <Text size="small">Muted</Text>
48
- </View>
49
- </View>
50
- </View>
51
-
52
- {/* Color Shades */}
53
- <View spacing="md">
54
- <Text size="medium" weight="semibold">Color Shades</Text>
55
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
56
- <View style={{ alignItems: 'center', gap: 4 }}>
57
- <Icon name="star" size="md" color="blue.200" />
58
- <Text size="small">Blue 200</Text>
59
- </View>
60
- <View style={{ alignItems: 'center', gap: 4 }}>
61
- <Icon name="star" size="md" color="blue.500" />
62
- <Text size="small">Blue 500</Text>
63
- </View>
64
- <View style={{ alignItems: 'center', gap: 4 }}>
65
- <Icon name="star" size="md" color="blue.800" />
66
- <Text size="small">Blue 800</Text>
67
- </View>
68
- <View style={{ alignItems: 'center', gap: 4 }}>
69
- <Icon name="heart" size="md" color="red.300" />
70
- <Text size="small">Red 300</Text>
71
- </View>
72
- <View style={{ alignItems: 'center', gap: 4 }}>
73
- <Icon name="heart" size="md" color="red.600" />
74
- <Text size="small">Red 600</Text>
75
- </View>
76
- <View style={{ alignItems: 'center', gap: 4 }}>
77
- <Icon name="heart" size="md" color="red.900" />
78
- <Text size="small">Red 900</Text>
79
- </View>
80
- </View>
81
- </View>
82
-
83
- {/* Basic Icons */}
84
- <View spacing="md">
85
- <Text size="medium" weight="semibold">Basic Icons</Text>
86
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
87
- <Icon name="home" />
88
- <Icon name="cog" />
89
- <Icon name="account" />
90
- <Icon name="magnify" />
91
- <Icon name="heart" />
92
- <Icon name="star" />
93
- <Icon name="bell" />
94
- <Icon name="mail" />
95
- </View>
96
- </View>
97
-
98
- {/* Icon Sizes */}
99
- <View spacing="md">
100
- <Text size="medium" weight="semibold">Sizes</Text>
101
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
102
- <View style={{ alignItems: 'center', gap: 4 }}>
103
- <Icon name="home" size="xs" />
104
- <Text size="small">XS (12px)</Text>
105
- </View>
106
- <View style={{ alignItems: 'center', gap: 4 }}>
107
- <Icon name="home" size="sm" />
108
- <Text size="small">SM (16px)</Text>
109
- </View>
110
- <View style={{ alignItems: 'center', gap: 4 }}>
111
- <Icon name="home" size="md" />
112
- <Text size="small">MD (24px)</Text>
113
- </View>
114
- <View style={{ alignItems: 'center', gap: 4 }}>
115
- <Icon name="home" size="lg" />
116
- <Text size="small">LG (32px)</Text>
117
- </View>
118
- <View style={{ alignItems: 'center', gap: 4 }}>
119
- <Icon name="home" size="xl" />
120
- <Text size="small">XL (48px)</Text>
121
- </View>
122
- </View>
123
- </View>
124
-
125
- {/* Custom Colors vs Variants */}
126
- <View spacing="md">
127
- <Text size="medium" weight="semibold">Custom Colors vs Variants</Text>
128
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
129
- <View style={{ alignItems: 'center', gap: 4 }}>
130
- <Icon name="heart" size="lg" style={{ color: '#FF0000' }} />
131
- <Text size="small">Custom Red</Text>
132
- </View>
133
- <View style={{ alignItems: 'center', gap: 4 }}>
134
- <Icon name="heart" size="lg" color="red" />
135
- <Text size="small">Red Variant</Text>
136
- </View>
137
- <View style={{ alignItems: 'center', gap: 4 }}>
138
- <Icon name="heart" size="lg" style={{ color: '#00FF00' }} />
139
- <Text size="small">Custom Green</Text>
140
- </View>
141
- <View style={{ alignItems: 'center', gap: 4 }}>
142
- <Icon name="heart" size="lg" color="green" />
143
- <Text size="small">Green Variant</Text>
144
- </View>
145
- </View>
146
- </View>
147
-
148
- {/* Navigation Icons */}
149
- <View spacing="md">
150
- <Text size="medium" weight="semibold">Navigation & Movement</Text>
151
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
152
- <Icon name="arrow-left" size="md" />
153
- <Icon name="arrow-right" size="md" />
154
- <Icon name="arrow-up" size="md" />
155
- <Icon name="arrow-down" size="md" />
156
- <Icon name="chevron-left" size="md" />
157
- <Icon name="chevron-right" size="md" />
158
- <Icon name="arrow-left" size="md" />
159
- <Icon name="forward" size="md" />
160
- <Icon name="compass" size="md" />
161
- <Icon name="map-marker" size="md" />
162
- </View>
163
- </View>
164
-
165
- {/* Action Icons */}
166
- <View spacing="md">
167
- <Text size="medium" weight="semibold">Actions & Controls</Text>
168
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
169
- <Icon name="play" size="md" />
170
- <Icon name="pause" size="md" />
171
- <Icon name="stop" size="md" />
172
- <Icon name="plus" size="md" />
173
- <Icon name="minus" size="md" />
174
- <Icon name="pencil" size="md" />
175
- <Icon name="delete" size="md" />
176
- <Icon name="content-save" size="md" />
177
- <Icon name="content-copy" size="md" />
178
- <Icon name="refresh" size="md" />
179
- </View>
180
- </View>
181
-
182
- {/* Communication Icons */}
183
- <View spacing="md">
184
- <Text size="medium" weight="semibold">Communication</Text>
185
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
186
- <Icon name="mail" size="md" />
187
- <Icon name="message" size="md" />
188
- <Icon name="chat" size="md" />
189
- <Icon name="phone" size="md" />
190
- <Icon name="video" size="md" />
191
- <Icon name="bell" size="md" />
192
- <Icon name="bell" size="md" />
193
- <Icon name="bullhorn" size="md" />
194
- </View>
195
- </View>
196
-
197
- {/* Social Media Icons */}
198
- <View spacing="md">
199
- <Text size="medium" weight="semibold">Social Media</Text>
200
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
201
- <Icon name="facebook" size="md" />
202
- <Icon name="twitter" size="md" />
203
- <Icon name="instagram" size="md" />
204
- <Icon name="linkedin" size="md" />
205
- <Icon name="youtube" size="md" />
206
- <Icon name="github" size="md" />
207
- <Icon name="github" size="md" />
208
- <Icon name="slack" size="md" />
209
- </View>
210
- </View>
211
-
212
- {/* Status & Alert Icons with Variants */}
213
- <View spacing="md">
214
- <Text size="medium" weight="semibold">Status & Alerts (Using Variants)</Text>
215
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
216
- <View style={{ alignItems: 'center', gap: 4 }}>
217
- <Icon name="check-circle" size="md" color="green" />
218
- <Text size="small">Success</Text>
219
- </View>
220
- <View style={{ alignItems: 'center', gap: 4 }}>
221
- <Icon name="alert" size="md" color="orange" />
222
- <Text size="small">Warning</Text>
223
- </View>
224
- <View style={{ alignItems: 'center', gap: 4 }}>
225
- <Icon name="alert-circle" size="md" color="red" />
226
- <Text size="small">Error</Text>
227
- </View>
228
- <View style={{ alignItems: 'center', gap: 4 }}>
229
- <Icon name="information" size="md" color="blue" />
230
- <Text size="small">Info</Text>
231
- </View>
232
- </View>
233
- </View>
234
-
235
- {/* File & Document Icons */}
236
- <View spacing="md">
237
- <Text size="medium" weight="semibold">Files & Documents</Text>
238
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
239
- <Icon name="file-document" size="md" />
240
- <Icon name="folder" size="md" />
241
- <Icon name="file-document" size="md" />
242
- <Icon name="file-pdf-box" size="md" />
243
- <Icon name="file-word" size="md" />
244
- <Icon name="file-excel" size="md" />
245
- <Icon name="zip-box" size="md" />
246
- <Icon name="attachment" size="md" />
247
- </View>
248
- </View>
249
-
250
- {/* Media Icons */}
251
- <View spacing="md">
252
- <Text size="medium" weight="semibold">Media & Content</Text>
253
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
254
- <Icon name="image" size="md" />
255
- <Icon name="camera" size="md" />
256
- <Icon name="video" size="md" />
257
- <Icon name="music" size="md" />
258
- <Icon name="headphones" size="md" />
259
- <Icon name="microphone" size="md" />
260
- <Icon name="television" size="md" />
261
- <Icon name="monitor" size="md" />
262
- </View>
263
- </View>
264
-
265
- {/* Technology Icons */}
266
- <View spacing="md">
267
- <Text size="medium" weight="semibold">Technology & Devices</Text>
268
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
269
- <Icon name="cellphone" size="md" />
270
- <Icon name="laptop" size="md" />
271
- <Icon name="monitor" size="md" />
272
- <Icon name="tablet" size="md" />
273
- <Icon name="wifi" size="md" />
274
- <Icon name="bluetooth" size="md" />
275
- <Icon name="battery" size="md" />
276
- <Icon name="usb" size="md" />
277
- </View>
278
- </View>
279
-
280
- {/* Weather Icons */}
281
- <View spacing="md">
282
- <Text size="medium" weight="semibold">Weather</Text>
283
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
284
- <Icon name="weather-sunny" size="md" />
285
- <Icon name="weather-night" size="md" />
286
- <Icon name="cloud" size="md" />
287
- <Icon name="weather-rainy" size="md" />
288
- <Icon name="weather-snowy" size="md" />
289
- <Icon name="weather-lightning" size="md" />
290
- <Icon name="weather-windy" size="md" />
291
- <Icon name="umbrella" size="md" />
292
- </View>
293
- </View>
294
-
295
- {/* Gaming & Entertainment Icons */}
296
- <View spacing="md">
297
- <Text size="medium" weight="semibold">Gaming & Entertainment</Text>
298
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
299
- <Icon name="gamepad" size="md" />
300
- <Icon name="trophy" size="md" />
301
- <Icon name="medal" size="md" />
302
- <Icon name="target" size="md" />
303
- <Icon name="rocket" size="md" />
304
- <Icon name="crown" size="md" />
305
- <Icon name="diamond" size="md" />
306
- <Icon name="dice-6" size="md" />
307
- </View>
308
- </View>
309
-
310
- {/* Business & Work Icons */}
311
- <View spacing="md">
312
- <Text size="medium" weight="semibold">Business & Work</Text>
313
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
314
- <Icon name="briefcase" size="md" />
315
- <Icon name="presentation" size="md" />
316
- <Icon name="chart-line" size="md" />
317
- <Icon name="chart-bar" size="md" />
318
- <Icon name="view-dashboard" size="md" />
319
- <Icon name="table-large" size="md" />
320
- <Icon name="file-document" size="md" />
321
- <Icon name="stamper" size="md" />
322
- </View>
323
- </View>
324
-
325
- {/* Tool Icons */}
326
- <View spacing="md">
327
- <Text size="medium" weight="semibold">Tools & Utilities</Text>
328
- <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
329
- <Icon name="tools" size="md" />
330
- <Icon name="hammer" size="md" />
331
- <Icon name="wrench" size="md" />
332
- <Icon name="screwdriver" size="md" />
333
- <Icon name="cog" size="md" />
334
- <Icon name="cog" size="md" />
335
- <Icon name="toolbox" size="md" />
336
- <Icon name="hammer-wrench" size="md" />
337
- </View>
338
- </View>
339
- </View>
340
- </Screen>
341
- );
1
+ import React from 'react';
2
+ import { Screen, View, Icon, Text, Button } from '../index';
3
+ import type { IconName } from '../Icon/icon-types';
4
+
5
+ export const IconExamples = () => {
6
+ return (
7
+ <Screen background="primary" padding="lg">
8
+ <View spacing="none">
9
+ <Text size="large" weight="bold" align="center">
10
+ Icon Examples
11
+ </Text>
12
+
13
+ {/* Color Variants */}
14
+ <View spacing="md">
15
+ <Text size="medium" weight="semibold">Color Variants</Text>
16
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
17
+ <View style={{ alignItems: 'center', gap: 4 }}>
18
+ <Icon name="home-account" size="md" color="primary" />
19
+ <Text size="small">Primary</Text>
20
+ </View>
21
+ <View style={{ alignItems: 'center', gap: 4 }}>
22
+ <Icon name="check" size="md" color="secondary" />
23
+ <Text size="small">Secondary</Text>
24
+ </View>
25
+ <View style={{ alignItems: 'center', gap: 4 }}>
26
+ <Icon name="alert-circle" size="md" color="blue" />
27
+ <Text size="small">Blue</Text>
28
+ </View>
29
+ <View style={{ alignItems: 'center', gap: 4 }}>
30
+ <Icon name="alert" size="md" color="green" />
31
+ <Text size="small">Green</Text>
32
+ </View>
33
+ <View style={{ alignItems: 'center', gap: 4 }}>
34
+ <Icon name="cog" size="md" color="red" />
35
+ <Text size="small">Red</Text>
36
+ </View>
37
+ <View style={{ alignItems: 'center', gap: 4 }}>
38
+ <Icon name="text" size="md" color="orange" />
39
+ <Text size="small">Orange</Text>
40
+ </View>
41
+ <View style={{ alignItems: 'center', gap: 4 }}>
42
+ <Icon name="text" size="md" color="disabled" />
43
+ <Text size="small">Disabled</Text>
44
+ </View>
45
+ <View style={{ alignItems: 'center', gap: 4 }}>
46
+ <Icon name="text" size="md" color="muted" />
47
+ <Text size="small">Muted</Text>
48
+ </View>
49
+ </View>
50
+ </View>
51
+
52
+ {/* Color Shades */}
53
+ <View spacing="md">
54
+ <Text size="medium" weight="semibold">Color Shades</Text>
55
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
56
+ <View style={{ alignItems: 'center', gap: 4 }}>
57
+ <Icon name="star" size="md" color="blue.200" />
58
+ <Text size="small">Blue 200</Text>
59
+ </View>
60
+ <View style={{ alignItems: 'center', gap: 4 }}>
61
+ <Icon name="star" size="md" color="blue.500" />
62
+ <Text size="small">Blue 500</Text>
63
+ </View>
64
+ <View style={{ alignItems: 'center', gap: 4 }}>
65
+ <Icon name="star" size="md" color="blue.800" />
66
+ <Text size="small">Blue 800</Text>
67
+ </View>
68
+ <View style={{ alignItems: 'center', gap: 4 }}>
69
+ <Icon name="heart" size="md" color="red.300" />
70
+ <Text size="small">Red 300</Text>
71
+ </View>
72
+ <View style={{ alignItems: 'center', gap: 4 }}>
73
+ <Icon name="heart" size="md" color="red.600" />
74
+ <Text size="small">Red 600</Text>
75
+ </View>
76
+ <View style={{ alignItems: 'center', gap: 4 }}>
77
+ <Icon name="heart" size="md" color="red.900" />
78
+ <Text size="small">Red 900</Text>
79
+ </View>
80
+ </View>
81
+ </View>
82
+
83
+ {/* Basic Icons */}
84
+ <View spacing="md">
85
+ <Text size="medium" weight="semibold">Basic Icons</Text>
86
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
87
+ <Icon name="home" />
88
+ <Icon name="cog" />
89
+ <Icon name="account" />
90
+ <Icon name="magnify" />
91
+ <Icon name="heart" />
92
+ <Icon name="star" />
93
+ <Icon name="bell" />
94
+ <Icon name="mail" />
95
+ </View>
96
+ </View>
97
+
98
+ {/* Icon Sizes */}
99
+ <View spacing="md">
100
+ <Text size="medium" weight="semibold">Sizes</Text>
101
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
102
+ <View style={{ alignItems: 'center', gap: 4 }}>
103
+ <Icon name="home" size="xs" />
104
+ <Text size="small">XS (12px)</Text>
105
+ </View>
106
+ <View style={{ alignItems: 'center', gap: 4 }}>
107
+ <Icon name="home" size="sm" />
108
+ <Text size="small">SM (16px)</Text>
109
+ </View>
110
+ <View style={{ alignItems: 'center', gap: 4 }}>
111
+ <Icon name="home" size="md" />
112
+ <Text size="small">MD (24px)</Text>
113
+ </View>
114
+ <View style={{ alignItems: 'center', gap: 4 }}>
115
+ <Icon name="home" size="lg" />
116
+ <Text size="small">LG (32px)</Text>
117
+ </View>
118
+ <View style={{ alignItems: 'center', gap: 4 }}>
119
+ <Icon name="home" size="xl" />
120
+ <Text size="small">XL (48px)</Text>
121
+ </View>
122
+ </View>
123
+ </View>
124
+
125
+ {/* Custom Colors vs Variants */}
126
+ <View spacing="md">
127
+ <Text size="medium" weight="semibold">Custom Colors vs Variants</Text>
128
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
129
+ <View style={{ alignItems: 'center', gap: 4 }}>
130
+ <Icon name="heart" size="lg" style={{ color: '#FF0000' }} />
131
+ <Text size="small">Custom Red</Text>
132
+ </View>
133
+ <View style={{ alignItems: 'center', gap: 4 }}>
134
+ <Icon name="heart" size="lg" color="red" />
135
+ <Text size="small">Red Variant</Text>
136
+ </View>
137
+ <View style={{ alignItems: 'center', gap: 4 }}>
138
+ <Icon name="heart" size="lg" style={{ color: '#00FF00' }} />
139
+ <Text size="small">Custom Green</Text>
140
+ </View>
141
+ <View style={{ alignItems: 'center', gap: 4 }}>
142
+ <Icon name="heart" size="lg" color="green" />
143
+ <Text size="small">Green Variant</Text>
144
+ </View>
145
+ </View>
146
+ </View>
147
+
148
+ {/* Navigation Icons */}
149
+ <View spacing="md">
150
+ <Text size="medium" weight="semibold">Navigation & Movement</Text>
151
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
152
+ <Icon name="arrow-left" size="md" />
153
+ <Icon name="arrow-right" size="md" />
154
+ <Icon name="arrow-up" size="md" />
155
+ <Icon name="arrow-down" size="md" />
156
+ <Icon name="chevron-left" size="md" />
157
+ <Icon name="chevron-right" size="md" />
158
+ <Icon name="arrow-left" size="md" />
159
+ <Icon name="forward" size="md" />
160
+ <Icon name="compass" size="md" />
161
+ <Icon name="map-marker" size="md" />
162
+ </View>
163
+ </View>
164
+
165
+ {/* Action Icons */}
166
+ <View spacing="md">
167
+ <Text size="medium" weight="semibold">Actions & Controls</Text>
168
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
169
+ <Icon name="play" size="md" />
170
+ <Icon name="pause" size="md" />
171
+ <Icon name="stop" size="md" />
172
+ <Icon name="plus" size="md" />
173
+ <Icon name="minus" size="md" />
174
+ <Icon name="pencil" size="md" />
175
+ <Icon name="delete" size="md" />
176
+ <Icon name="content-save" size="md" />
177
+ <Icon name="content-copy" size="md" />
178
+ <Icon name="refresh" size="md" />
179
+ </View>
180
+ </View>
181
+
182
+ {/* Communication Icons */}
183
+ <View spacing="md">
184
+ <Text size="medium" weight="semibold">Communication</Text>
185
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
186
+ <Icon name="mail" size="md" />
187
+ <Icon name="message" size="md" />
188
+ <Icon name="chat" size="md" />
189
+ <Icon name="phone" size="md" />
190
+ <Icon name="video" size="md" />
191
+ <Icon name="bell" size="md" />
192
+ <Icon name="bell" size="md" />
193
+ <Icon name="bullhorn" size="md" />
194
+ </View>
195
+ </View>
196
+
197
+ {/* Social Media Icons */}
198
+ <View spacing="md">
199
+ <Text size="medium" weight="semibold">Social Media</Text>
200
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
201
+ <Icon name="facebook" size="md" />
202
+ <Icon name="twitter" size="md" />
203
+ <Icon name="instagram" size="md" />
204
+ <Icon name="linkedin" size="md" />
205
+ <Icon name="youtube" size="md" />
206
+ <Icon name="github" size="md" />
207
+ <Icon name="github" size="md" />
208
+ <Icon name="slack" size="md" />
209
+ </View>
210
+ </View>
211
+
212
+ {/* Status & Alert Icons with Variants */}
213
+ <View spacing="md">
214
+ <Text size="medium" weight="semibold">Status & Alerts (Using Variants)</Text>
215
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
216
+ <View style={{ alignItems: 'center', gap: 4 }}>
217
+ <Icon name="check-circle" size="md" color="green" />
218
+ <Text size="small">Success</Text>
219
+ </View>
220
+ <View style={{ alignItems: 'center', gap: 4 }}>
221
+ <Icon name="alert" size="md" color="orange" />
222
+ <Text size="small">Warning</Text>
223
+ </View>
224
+ <View style={{ alignItems: 'center', gap: 4 }}>
225
+ <Icon name="alert-circle" size="md" color="red" />
226
+ <Text size="small">Error</Text>
227
+ </View>
228
+ <View style={{ alignItems: 'center', gap: 4 }}>
229
+ <Icon name="information" size="md" color="blue" />
230
+ <Text size="small">Info</Text>
231
+ </View>
232
+ </View>
233
+ </View>
234
+
235
+ {/* File & Document Icons */}
236
+ <View spacing="md">
237
+ <Text size="medium" weight="semibold">Files & Documents</Text>
238
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
239
+ <Icon name="file-document" size="md" />
240
+ <Icon name="folder" size="md" />
241
+ <Icon name="file-document" size="md" />
242
+ <Icon name="file-pdf-box" size="md" />
243
+ <Icon name="file-word" size="md" />
244
+ <Icon name="file-excel" size="md" />
245
+ <Icon name="zip-box" size="md" />
246
+ <Icon name="attachment" size="md" />
247
+ </View>
248
+ </View>
249
+
250
+ {/* Media Icons */}
251
+ <View spacing="md">
252
+ <Text size="medium" weight="semibold">Media & Content</Text>
253
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
254
+ <Icon name="image" size="md" />
255
+ <Icon name="camera" size="md" />
256
+ <Icon name="video" size="md" />
257
+ <Icon name="music" size="md" />
258
+ <Icon name="headphones" size="md" />
259
+ <Icon name="microphone" size="md" />
260
+ <Icon name="television" size="md" />
261
+ <Icon name="monitor" size="md" />
262
+ </View>
263
+ </View>
264
+
265
+ {/* Technology Icons */}
266
+ <View spacing="md">
267
+ <Text size="medium" weight="semibold">Technology & Devices</Text>
268
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
269
+ <Icon name="cellphone" size="md" />
270
+ <Icon name="laptop" size="md" />
271
+ <Icon name="monitor" size="md" />
272
+ <Icon name="tablet" size="md" />
273
+ <Icon name="wifi" size="md" />
274
+ <Icon name="bluetooth" size="md" />
275
+ <Icon name="battery" size="md" />
276
+ <Icon name="usb" size="md" />
277
+ </View>
278
+ </View>
279
+
280
+ {/* Weather Icons */}
281
+ <View spacing="md">
282
+ <Text size="medium" weight="semibold">Weather</Text>
283
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
284
+ <Icon name="weather-sunny" size="md" />
285
+ <Icon name="weather-night" size="md" />
286
+ <Icon name="cloud" size="md" />
287
+ <Icon name="weather-rainy" size="md" />
288
+ <Icon name="weather-snowy" size="md" />
289
+ <Icon name="weather-lightning" size="md" />
290
+ <Icon name="weather-windy" size="md" />
291
+ <Icon name="umbrella" size="md" />
292
+ </View>
293
+ </View>
294
+
295
+ {/* Gaming & Entertainment Icons */}
296
+ <View spacing="md">
297
+ <Text size="medium" weight="semibold">Gaming & Entertainment</Text>
298
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
299
+ <Icon name="gamepad" size="md" />
300
+ <Icon name="trophy" size="md" />
301
+ <Icon name="medal" size="md" />
302
+ <Icon name="target" size="md" />
303
+ <Icon name="rocket" size="md" />
304
+ <Icon name="crown" size="md" />
305
+ <Icon name="diamond" size="md" />
306
+ <Icon name="dice-6" size="md" />
307
+ </View>
308
+ </View>
309
+
310
+ {/* Business & Work Icons */}
311
+ <View spacing="md">
312
+ <Text size="medium" weight="semibold">Business & Work</Text>
313
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
314
+ <Icon name="briefcase" size="md" />
315
+ <Icon name="presentation" size="md" />
316
+ <Icon name="chart-line" size="md" />
317
+ <Icon name="chart-bar" size="md" />
318
+ <Icon name="view-dashboard" size="md" />
319
+ <Icon name="table-large" size="md" />
320
+ <Icon name="file-document" size="md" />
321
+ <Icon name="stamper" size="md" />
322
+ </View>
323
+ </View>
324
+
325
+ {/* Tool Icons */}
326
+ <View spacing="md">
327
+ <Text size="medium" weight="semibold">Tools & Utilities</Text>
328
+ <View style={{ flexDirection: 'row', gap: 16, flexWrap: 'wrap', alignItems: 'center' }}>
329
+ <Icon name="tools" size="md" />
330
+ <Icon name="hammer" size="md" />
331
+ <Icon name="wrench" size="md" />
332
+ <Icon name="screwdriver" size="md" />
333
+ <Icon name="cog" size="md" />
334
+ <Icon name="cog" size="md" />
335
+ <Icon name="toolbox" size="md" />
336
+ <Icon name="hammer-wrench" size="md" />
337
+ </View>
338
+ </View>
339
+ </View>
340
+ </Screen>
341
+ );
342
342
  };