@app-studio/web 0.9.67 → 0.9.69
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.
- package/dist/components/Icon/Icon.d.ts +382 -90
- package/dist/web.cjs.development.js +490 -2515
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +484 -2514
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +493 -2519
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/package.json +4 -6
|
@@ -1,97 +1,389 @@
|
|
|
1
1
|
import { ViewProps } from 'app-studio';
|
|
2
2
|
import React from 'react';
|
|
3
|
+
import { DynamicIconComponentProps } from 'lucide-react/dynamic';
|
|
3
4
|
export interface IconProps extends Omit<ViewProps, 'orientation'> {
|
|
4
5
|
color?: string;
|
|
5
6
|
filled?: boolean;
|
|
6
7
|
orientation?: 'left' | 'right' | 'up' | 'down';
|
|
8
|
+
name?: DynamicIconComponentProps['name'];
|
|
9
|
+
strokeWidth?: number | string;
|
|
10
|
+
size?: number | string;
|
|
7
11
|
}
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
export declare const
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
export declare const
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
export declare const
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
export declare const
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
export declare const
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
export declare const
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
export declare const
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
export declare const
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
export declare const
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
export declare const
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
export declare const
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
export declare const
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
export declare const
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
export declare const
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
export declare const
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
export declare const
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
export declare const
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
export declare const
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
export declare const
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
export declare const
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
export declare const
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
export declare const
|
|
12
|
+
export declare const Icon: React.FC<IconProps>;
|
|
13
|
+
export declare const UserIcon: {
|
|
14
|
+
(props: IconProps): React.JSX.Element;
|
|
15
|
+
displayName: string;
|
|
16
|
+
};
|
|
17
|
+
export declare const HelpIcon: {
|
|
18
|
+
(props: IconProps): React.JSX.Element;
|
|
19
|
+
displayName: string;
|
|
20
|
+
};
|
|
21
|
+
export declare const FolderIcon: {
|
|
22
|
+
(props: IconProps): React.JSX.Element;
|
|
23
|
+
displayName: string;
|
|
24
|
+
};
|
|
25
|
+
export declare const ChevronIcon: {
|
|
26
|
+
(props: IconProps): React.JSX.Element;
|
|
27
|
+
displayName: string;
|
|
28
|
+
};
|
|
29
|
+
export declare const DragHandleIcon: {
|
|
30
|
+
(props: IconProps): React.JSX.Element;
|
|
31
|
+
displayName: string;
|
|
32
|
+
};
|
|
33
|
+
export declare const FileIcon: {
|
|
34
|
+
(props: IconProps): React.JSX.Element;
|
|
35
|
+
displayName: string;
|
|
36
|
+
};
|
|
37
|
+
export declare const VideoIcon: {
|
|
38
|
+
(props: IconProps): React.JSX.Element;
|
|
39
|
+
displayName: string;
|
|
40
|
+
};
|
|
41
|
+
export declare const ImageIcon: {
|
|
42
|
+
(props: IconProps): React.JSX.Element;
|
|
43
|
+
displayName: string;
|
|
44
|
+
};
|
|
45
|
+
export declare const AudioIcon: {
|
|
46
|
+
(props: IconProps): React.JSX.Element;
|
|
47
|
+
displayName: string;
|
|
48
|
+
};
|
|
49
|
+
export declare const TwitterIcon: {
|
|
50
|
+
(props: IconProps): React.JSX.Element;
|
|
51
|
+
displayName: string;
|
|
52
|
+
};
|
|
53
|
+
export declare const XIcon: {
|
|
54
|
+
(props: IconProps): React.JSX.Element;
|
|
55
|
+
displayName: string;
|
|
56
|
+
};
|
|
57
|
+
export declare const TwitchIcon: {
|
|
58
|
+
(props: IconProps): React.JSX.Element;
|
|
59
|
+
displayName: string;
|
|
60
|
+
};
|
|
61
|
+
export declare const CloseIcon: {
|
|
62
|
+
(props: IconProps): React.JSX.Element;
|
|
63
|
+
displayName: string;
|
|
64
|
+
};
|
|
65
|
+
export declare const InstagramIcon: {
|
|
66
|
+
(props: IconProps): React.JSX.Element;
|
|
67
|
+
displayName: string;
|
|
68
|
+
};
|
|
69
|
+
export declare const YoutubeIcon: {
|
|
70
|
+
(props: IconProps): React.JSX.Element;
|
|
71
|
+
displayName: string;
|
|
72
|
+
};
|
|
73
|
+
export declare const FacebookIcon: {
|
|
74
|
+
(props: IconProps): React.JSX.Element;
|
|
75
|
+
displayName: string;
|
|
76
|
+
};
|
|
77
|
+
export declare const LinkedinIcon: {
|
|
78
|
+
(props: IconProps): React.JSX.Element;
|
|
79
|
+
displayName: string;
|
|
80
|
+
};
|
|
81
|
+
export declare const ThreadsIcon: {
|
|
82
|
+
(props: IconProps): React.JSX.Element;
|
|
83
|
+
displayName: string;
|
|
84
|
+
};
|
|
85
|
+
export declare const MinusIcon: {
|
|
86
|
+
(props: IconProps): React.JSX.Element;
|
|
87
|
+
displayName: string;
|
|
88
|
+
};
|
|
89
|
+
export declare const InfoIcon: {
|
|
90
|
+
(props: IconProps): React.JSX.Element;
|
|
91
|
+
displayName: string;
|
|
92
|
+
};
|
|
93
|
+
export declare const PlayIcon: {
|
|
94
|
+
(props: IconProps): React.JSX.Element;
|
|
95
|
+
displayName: string;
|
|
96
|
+
};
|
|
97
|
+
export declare const PauseIcon: {
|
|
98
|
+
(props: IconProps): React.JSX.Element;
|
|
99
|
+
displayName: string;
|
|
100
|
+
};
|
|
101
|
+
export declare const HeartIcon: {
|
|
102
|
+
(props: IconProps): React.JSX.Element;
|
|
103
|
+
displayName: string;
|
|
104
|
+
};
|
|
105
|
+
export declare const StarIcon: {
|
|
106
|
+
(props: IconProps): React.JSX.Element;
|
|
107
|
+
displayName: string;
|
|
108
|
+
};
|
|
109
|
+
export declare const SaveIcon: {
|
|
110
|
+
(props: IconProps): React.JSX.Element;
|
|
111
|
+
displayName: string;
|
|
112
|
+
};
|
|
113
|
+
export declare const WarningIcon: {
|
|
114
|
+
(props: IconProps): React.JSX.Element;
|
|
115
|
+
displayName: string;
|
|
116
|
+
};
|
|
117
|
+
export declare const BatteryIcon: {
|
|
118
|
+
(props: IconProps): React.JSX.Element;
|
|
119
|
+
displayName: string;
|
|
120
|
+
};
|
|
121
|
+
export declare const BookmarkIcon: {
|
|
122
|
+
(props: IconProps): React.JSX.Element;
|
|
123
|
+
displayName: string;
|
|
124
|
+
};
|
|
125
|
+
export declare const CloudIcon: {
|
|
126
|
+
(props: IconProps): React.JSX.Element;
|
|
127
|
+
displayName: string;
|
|
128
|
+
};
|
|
129
|
+
export declare const CopyIcon: {
|
|
130
|
+
(props: IconProps): React.JSX.Element;
|
|
131
|
+
displayName: string;
|
|
132
|
+
};
|
|
133
|
+
export declare const DustBinIcon: {
|
|
134
|
+
(props: IconProps): React.JSX.Element;
|
|
135
|
+
displayName: string;
|
|
136
|
+
};
|
|
137
|
+
export declare const DeleteIcon: {
|
|
138
|
+
(props: IconProps): React.JSX.Element;
|
|
139
|
+
displayName: string;
|
|
140
|
+
};
|
|
141
|
+
export declare const EditIcon: {
|
|
142
|
+
(props: IconProps): React.JSX.Element;
|
|
143
|
+
displayName: string;
|
|
144
|
+
};
|
|
145
|
+
export declare const MicrophoneIcon: {
|
|
146
|
+
(props: IconProps): React.JSX.Element;
|
|
147
|
+
displayName: string;
|
|
148
|
+
};
|
|
149
|
+
export declare const StopIcon: {
|
|
150
|
+
(props: IconProps): React.JSX.Element;
|
|
151
|
+
displayName: string;
|
|
152
|
+
};
|
|
153
|
+
export declare const SendIcon: {
|
|
154
|
+
(props: IconProps): React.JSX.Element;
|
|
155
|
+
displayName: string;
|
|
156
|
+
};
|
|
157
|
+
export declare const LoadingSpinnerIcon: {
|
|
158
|
+
(props: IconProps): React.JSX.Element;
|
|
159
|
+
displayName: string;
|
|
160
|
+
};
|
|
161
|
+
export declare const AttachmentIcon: {
|
|
162
|
+
(props: IconProps): React.JSX.Element;
|
|
163
|
+
displayName: string;
|
|
164
|
+
};
|
|
165
|
+
export declare const SearchIcon: {
|
|
166
|
+
(props: IconProps): React.JSX.Element;
|
|
167
|
+
displayName: string;
|
|
168
|
+
};
|
|
169
|
+
export declare const HomeIcon: {
|
|
170
|
+
(props: IconProps): React.JSX.Element;
|
|
171
|
+
displayName: string;
|
|
172
|
+
};
|
|
173
|
+
export declare const SettingsIcon: {
|
|
174
|
+
(props: IconProps): React.JSX.Element;
|
|
175
|
+
displayName: string;
|
|
176
|
+
};
|
|
177
|
+
export declare const DownloadIcon: {
|
|
178
|
+
(props: IconProps): React.JSX.Element;
|
|
179
|
+
displayName: string;
|
|
180
|
+
};
|
|
181
|
+
export declare const ShareIcon: {
|
|
182
|
+
(props: IconProps): React.JSX.Element;
|
|
183
|
+
displayName: string;
|
|
184
|
+
};
|
|
185
|
+
export declare const TickIcon: {
|
|
186
|
+
(props: IconProps): React.JSX.Element;
|
|
187
|
+
displayName: string;
|
|
188
|
+
};
|
|
189
|
+
export declare const PlusIcon: {
|
|
190
|
+
(props: IconProps): React.JSX.Element;
|
|
191
|
+
displayName: string;
|
|
192
|
+
};
|
|
193
|
+
export declare const CloseEyeIcon: {
|
|
194
|
+
(props: IconProps): React.JSX.Element;
|
|
195
|
+
displayName: string;
|
|
196
|
+
};
|
|
197
|
+
export declare const OpenEyeIcon: {
|
|
198
|
+
(props: IconProps): React.JSX.Element;
|
|
199
|
+
displayName: string;
|
|
200
|
+
};
|
|
201
|
+
export declare const LockIcon: {
|
|
202
|
+
(props: IconProps): React.JSX.Element;
|
|
203
|
+
displayName: string;
|
|
204
|
+
};
|
|
205
|
+
export declare const ProfileIcon: {
|
|
206
|
+
(props: IconProps): React.JSX.Element;
|
|
207
|
+
displayName: string;
|
|
208
|
+
};
|
|
209
|
+
export declare const ExternalLinkIcon: {
|
|
210
|
+
(props: IconProps): React.JSX.Element;
|
|
211
|
+
displayName: string;
|
|
212
|
+
};
|
|
213
|
+
export declare const SuccessIcon: {
|
|
214
|
+
(props: IconProps): React.JSX.Element;
|
|
215
|
+
displayName: string;
|
|
216
|
+
};
|
|
217
|
+
export declare const ErrorIcon: {
|
|
218
|
+
(props: IconProps): React.JSX.Element;
|
|
219
|
+
displayName: string;
|
|
220
|
+
};
|
|
221
|
+
export declare const NotificationIcon: {
|
|
222
|
+
(props: IconProps): React.JSX.Element;
|
|
223
|
+
displayName: string;
|
|
224
|
+
};
|
|
225
|
+
export declare const DocumentIcon: {
|
|
226
|
+
(props: IconProps): React.JSX.Element;
|
|
227
|
+
displayName: string;
|
|
228
|
+
};
|
|
229
|
+
export declare const ChartIcon: {
|
|
230
|
+
(props: IconProps): React.JSX.Element;
|
|
231
|
+
displayName: string;
|
|
232
|
+
};
|
|
233
|
+
export declare const MoonIcon: {
|
|
234
|
+
(props: IconProps): React.JSX.Element;
|
|
235
|
+
displayName: string;
|
|
236
|
+
};
|
|
237
|
+
export declare const PanelIcon: {
|
|
238
|
+
(props: IconProps): React.JSX.Element;
|
|
239
|
+
displayName: string;
|
|
240
|
+
};
|
|
241
|
+
export declare const UploadIcon: {
|
|
242
|
+
(props: IconProps): React.JSX.Element;
|
|
243
|
+
displayName: string;
|
|
244
|
+
};
|
|
245
|
+
export declare const CheckIcon: {
|
|
246
|
+
(props: IconProps): React.JSX.Element;
|
|
247
|
+
displayName: string;
|
|
248
|
+
};
|
|
249
|
+
export declare const BackIcon: (props: IconProps) => React.JSX.Element;
|
|
250
|
+
export declare const ZoomOutIcon: {
|
|
251
|
+
(props: IconProps): React.JSX.Element;
|
|
252
|
+
displayName: string;
|
|
253
|
+
};
|
|
254
|
+
export declare const TextIcon: {
|
|
255
|
+
(props: IconProps): React.JSX.Element;
|
|
256
|
+
displayName: string;
|
|
257
|
+
};
|
|
258
|
+
export declare const ShapeIcon: {
|
|
259
|
+
(props: IconProps): React.JSX.Element;
|
|
260
|
+
displayName: string;
|
|
261
|
+
};
|
|
262
|
+
export declare const RotateIcon: {
|
|
263
|
+
(props: IconProps): React.JSX.Element;
|
|
264
|
+
displayName: string;
|
|
265
|
+
};
|
|
266
|
+
export declare const GiftIcon: {
|
|
267
|
+
(props: IconProps): React.JSX.Element;
|
|
268
|
+
displayName: string;
|
|
269
|
+
};
|
|
270
|
+
export declare const ShieldIcon: {
|
|
271
|
+
(props: IconProps): React.JSX.Element;
|
|
272
|
+
displayName: string;
|
|
273
|
+
};
|
|
274
|
+
export declare const LogoutIcon: {
|
|
275
|
+
(props: IconProps): React.JSX.Element;
|
|
276
|
+
displayName: string;
|
|
277
|
+
};
|
|
278
|
+
export declare const PowerOffIcon: {
|
|
279
|
+
(props: IconProps): React.JSX.Element;
|
|
280
|
+
displayName: string;
|
|
281
|
+
};
|
|
282
|
+
export declare const LinkIcon: {
|
|
283
|
+
(props: IconProps): React.JSX.Element;
|
|
284
|
+
displayName: string;
|
|
285
|
+
};
|
|
286
|
+
export declare const LayoutIcon: {
|
|
287
|
+
(props: IconProps): React.JSX.Element;
|
|
288
|
+
displayName: string;
|
|
289
|
+
};
|
|
290
|
+
export declare const ZapIcon: {
|
|
291
|
+
(props: IconProps): React.JSX.Element;
|
|
292
|
+
displayName: string;
|
|
293
|
+
};
|
|
294
|
+
export declare const CreditCardIcon: {
|
|
295
|
+
(props: IconProps): React.JSX.Element;
|
|
296
|
+
displayName: string;
|
|
297
|
+
};
|
|
298
|
+
export declare const MoreIcon: {
|
|
299
|
+
(props: IconProps): React.JSX.Element;
|
|
300
|
+
displayName: string;
|
|
301
|
+
};
|
|
302
|
+
export declare const TrashIcon: {
|
|
303
|
+
(props: IconProps): React.JSX.Element;
|
|
304
|
+
displayName: string;
|
|
305
|
+
};
|
|
306
|
+
export declare const FilterIcon: {
|
|
307
|
+
(props: IconProps): React.JSX.Element;
|
|
308
|
+
displayName: string;
|
|
309
|
+
};
|
|
310
|
+
export declare const CalendarIcon: {
|
|
311
|
+
(props: IconProps): React.JSX.Element;
|
|
312
|
+
displayName: string;
|
|
313
|
+
};
|
|
314
|
+
export declare const ClockIcon: {
|
|
315
|
+
(props: IconProps): React.JSX.Element;
|
|
316
|
+
displayName: string;
|
|
317
|
+
};
|
|
318
|
+
export declare const MapPinIcon: {
|
|
319
|
+
(props: IconProps): React.JSX.Element;
|
|
320
|
+
displayName: string;
|
|
321
|
+
};
|
|
322
|
+
export declare const MenuIcon: {
|
|
323
|
+
(props: IconProps): React.JSX.Element;
|
|
324
|
+
displayName: string;
|
|
325
|
+
};
|
|
326
|
+
export declare const RefreshIcon: {
|
|
327
|
+
(props: IconProps): React.JSX.Element;
|
|
328
|
+
displayName: string;
|
|
329
|
+
};
|
|
330
|
+
export declare const PrintIcon: {
|
|
331
|
+
(props: IconProps): React.JSX.Element;
|
|
332
|
+
displayName: string;
|
|
333
|
+
};
|
|
334
|
+
export declare const MagicWandIcon: {
|
|
335
|
+
(props: IconProps): React.JSX.Element;
|
|
336
|
+
displayName: string;
|
|
337
|
+
};
|
|
338
|
+
export declare const UnLikeIcon: {
|
|
339
|
+
(props: IconProps): React.JSX.Element;
|
|
340
|
+
displayName: string;
|
|
341
|
+
};
|
|
342
|
+
export declare const LikeIcon: {
|
|
343
|
+
(props: IconProps): React.JSX.Element;
|
|
344
|
+
displayName: string;
|
|
345
|
+
};
|
|
346
|
+
export declare const CameraIcon: {
|
|
347
|
+
(props: IconProps): React.JSX.Element;
|
|
348
|
+
displayName: string;
|
|
349
|
+
};
|
|
350
|
+
export declare const BluetoothIcon: {
|
|
351
|
+
(props: IconProps): React.JSX.Element;
|
|
352
|
+
displayName: string;
|
|
353
|
+
};
|
|
354
|
+
export declare const UnlockIcon: {
|
|
355
|
+
(props: IconProps): React.JSX.Element;
|
|
356
|
+
displayName: string;
|
|
357
|
+
};
|
|
358
|
+
export declare const WifiIcon: {
|
|
359
|
+
(props: IconProps): React.JSX.Element;
|
|
360
|
+
displayName: string;
|
|
361
|
+
};
|
|
362
|
+
export declare const BoldArrowIcon: {
|
|
363
|
+
(props: IconProps): React.JSX.Element;
|
|
364
|
+
displayName: string;
|
|
365
|
+
};
|
|
366
|
+
export declare const ArrowIcon: {
|
|
367
|
+
(props: IconProps): React.JSX.Element;
|
|
368
|
+
displayName: string;
|
|
369
|
+
};
|
|
370
|
+
export declare const SpinnerIcon: {
|
|
371
|
+
(props: IconProps): React.JSX.Element;
|
|
372
|
+
displayName: string;
|
|
373
|
+
};
|
|
374
|
+
export declare const SliderIcon: {
|
|
375
|
+
(props: IconProps): React.JSX.Element;
|
|
376
|
+
displayName: string;
|
|
377
|
+
};
|
|
378
|
+
export declare const CropIcon: {
|
|
379
|
+
(props: IconProps): React.JSX.Element;
|
|
380
|
+
displayName: string;
|
|
381
|
+
};
|
|
382
|
+
export declare const ZoomInIcon: {
|
|
383
|
+
(props: IconProps): React.JSX.Element;
|
|
384
|
+
displayName: string;
|
|
385
|
+
};
|
|
386
|
+
export declare const DragHandleLinesIcon: {
|
|
387
|
+
(props: IconProps): React.JSX.Element;
|
|
388
|
+
displayName: string;
|
|
389
|
+
};
|