@lucide/astro 0.517.0 → 0.519.0
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/package.json +2 -2
- package/src/aliases/aliases.ts +99 -81
- package/src/aliases/prefixed.ts +438 -428
- package/src/aliases/suffixed.ts +867 -857
- package/src/icons/{badge-help.ts → badge-question-mark.ts} +4 -4
- package/src/icons/blocks.ts +2 -2
- package/src/icons/{circle-help.ts → circle-question-mark.ts} +4 -4
- package/src/icons/drone.ts +18 -0
- package/src/icons/egg-off.ts +2 -2
- package/src/icons/egg.ts +2 -2
- package/src/icons/{file-question.ts → file-question-mark.ts} +4 -4
- package/src/icons/index.ts +82 -80
- package/src/icons/{mail-question.ts → mail-question-mark.ts} +4 -4
- package/src/icons/{message-circle-question.ts → message-circle-question-mark.ts} +4 -4
- package/src/icons/{shield-question.ts → shield-question-mark.ts} +4 -4
- package/src/icons/spool.ts +18 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.519.0",
|
|
4
4
|
"author": "Moustapha Kebe",
|
|
5
5
|
"description": "A Lucide icon library package for Astro applications.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "pnpm clean && pnpm copy:license && pnpm build:icons",
|
|
57
|
-
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.
|
|
57
|
+
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mts --renderUniqueKey --withAliases --aliasesFileExtension=.ts --iconFileExtension=.ts --exportFileName=index.ts --pretty=false",
|
|
58
58
|
"clean": "rm -rf dist && rm -rf stats && rm -rf ./src/icons/*.ts",
|
|
59
59
|
"copy:license": "cp ../../LICENSE ./LICENSE",
|
|
60
60
|
"test": "pnpm build:icons && vitest run",
|
package/src/aliases/aliases.ts
CHANGED
|
@@ -32,6 +32,9 @@ export { default as Axis3D } from '../icons/axis-3d';
|
|
|
32
32
|
// BadgeCheck aliases
|
|
33
33
|
export { default as Verified } from '../icons/badge-check';
|
|
34
34
|
|
|
35
|
+
// BadgeQuestionMark aliases
|
|
36
|
+
export { default as BadgeHelp } from '../icons/badge-question-mark';
|
|
37
|
+
|
|
35
38
|
// BetweenHorizontalEnd aliases
|
|
36
39
|
export {
|
|
37
40
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. This alias will be removed in v1.0 */
|
|
@@ -55,79 +58,79 @@ export { default as Subtitles } from '../icons/captions';
|
|
|
55
58
|
|
|
56
59
|
// ChartArea aliases
|
|
57
60
|
export {
|
|
58
|
-
/** @deprecated
|
|
61
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. This alias will be removed in v1.0 */
|
|
59
62
|
default as AreaChart
|
|
60
63
|
} from '../icons/chart-area';
|
|
61
64
|
|
|
62
65
|
// ChartBarBig aliases
|
|
63
66
|
export {
|
|
64
|
-
/** @deprecated
|
|
67
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. This alias will be removed in v1.0 */
|
|
65
68
|
default as BarChartHorizontalBig
|
|
66
69
|
} from '../icons/chart-bar-big';
|
|
67
70
|
|
|
68
71
|
// ChartBar aliases
|
|
69
72
|
export {
|
|
70
|
-
/** @deprecated
|
|
73
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBar} instead. This alias will be removed in v1.0 */
|
|
71
74
|
default as BarChartHorizontal
|
|
72
75
|
} from '../icons/chart-bar';
|
|
73
76
|
|
|
74
77
|
// ChartCandlestick aliases
|
|
75
78
|
export {
|
|
76
|
-
/** @deprecated
|
|
79
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartCandlestick} instead. This alias will be removed in v1.0 */
|
|
77
80
|
default as CandlestickChart
|
|
78
81
|
} from '../icons/chart-candlestick';
|
|
79
82
|
|
|
80
83
|
// ChartColumnBig aliases
|
|
81
84
|
export {
|
|
82
|
-
/** @deprecated
|
|
85
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnBig} instead. This alias will be removed in v1.0 */
|
|
83
86
|
default as BarChartBig
|
|
84
87
|
} from '../icons/chart-column-big';
|
|
85
88
|
|
|
86
89
|
// ChartColumnIncreasing aliases
|
|
87
90
|
export {
|
|
88
|
-
/** @deprecated
|
|
91
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
89
92
|
default as BarChart4
|
|
90
93
|
} from '../icons/chart-column-increasing';
|
|
91
94
|
|
|
92
95
|
// ChartColumn aliases
|
|
93
96
|
export {
|
|
94
|
-
/** @deprecated
|
|
97
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. This alias will be removed in v1.0 */
|
|
95
98
|
default as BarChart3
|
|
96
99
|
} from '../icons/chart-column';
|
|
97
100
|
|
|
98
101
|
// ChartLine aliases
|
|
99
102
|
export {
|
|
100
|
-
/** @deprecated
|
|
103
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. This alias will be removed in v1.0 */
|
|
101
104
|
default as LineChart
|
|
102
105
|
} from '../icons/chart-line';
|
|
103
106
|
|
|
104
107
|
// ChartNoAxesColumnIncreasing aliases
|
|
105
108
|
export {
|
|
106
|
-
/** @deprecated
|
|
109
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
107
110
|
default as BarChart
|
|
108
111
|
} from '../icons/chart-no-axes-column-increasing';
|
|
109
112
|
|
|
110
113
|
// ChartNoAxesColumn aliases
|
|
111
114
|
export {
|
|
112
|
-
/** @deprecated
|
|
115
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumn} instead. This alias will be removed in v1.0 */
|
|
113
116
|
default as BarChart2
|
|
114
117
|
} from '../icons/chart-no-axes-column';
|
|
115
118
|
|
|
116
119
|
// ChartNoAxesGantt aliases
|
|
117
120
|
export {
|
|
118
|
-
/** @deprecated
|
|
121
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesGantt} instead. This alias will be removed in v1.0 */
|
|
119
122
|
default as GanttChart
|
|
120
123
|
} from '../icons/chart-no-axes-gantt';
|
|
121
124
|
|
|
122
125
|
// ChartPie aliases
|
|
123
126
|
export {
|
|
124
|
-
/** @deprecated
|
|
127
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartPie} instead. This alias will be removed in v1.0 */
|
|
125
128
|
default as PieChart
|
|
126
129
|
} from '../icons/chart-pie';
|
|
127
130
|
|
|
128
131
|
// ChartScatter aliases
|
|
129
132
|
export {
|
|
130
|
-
/** @deprecated
|
|
133
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartScatter} instead. This alias will be removed in v1.0 */
|
|
131
134
|
default as ScatterChart
|
|
132
135
|
} from '../icons/chart-scatter';
|
|
133
136
|
|
|
@@ -182,15 +185,12 @@ export { default as DivideCircle } from '../icons/circle-divide';
|
|
|
182
185
|
// CircleGauge aliases
|
|
183
186
|
export { default as GaugeCircle } from '../icons/circle-gauge';
|
|
184
187
|
|
|
185
|
-
//
|
|
186
|
-
export { default as
|
|
188
|
+
// CircleMinus aliases
|
|
189
|
+
export { default as MinusCircle } from '../icons/circle-minus';
|
|
187
190
|
|
|
188
191
|
// CircleParkingOff aliases
|
|
189
192
|
export { default as ParkingCircleOff } from '../icons/circle-parking-off';
|
|
190
193
|
|
|
191
|
-
// CircleMinus aliases
|
|
192
|
-
export { default as MinusCircle } from '../icons/circle-minus';
|
|
193
|
-
|
|
194
194
|
// CircleParking aliases
|
|
195
195
|
export { default as ParkingCircle } from '../icons/circle-parking';
|
|
196
196
|
|
|
@@ -209,6 +209,12 @@ export { default as PlusCircle } from '../icons/circle-plus';
|
|
|
209
209
|
// CirclePower aliases
|
|
210
210
|
export { default as PowerCircle } from '../icons/circle-power';
|
|
211
211
|
|
|
212
|
+
// CircleQuestionMark aliases
|
|
213
|
+
export { default as HelpCircle } from '../icons/circle-question-mark';
|
|
214
|
+
|
|
215
|
+
// CircleQuestionMark aliases
|
|
216
|
+
export { default as CircleHelp } from '../icons/circle-question-mark';
|
|
217
|
+
|
|
212
218
|
// CircleSlash2 aliases
|
|
213
219
|
export { default as CircleSlashed } from '../icons/circle-slash-2';
|
|
214
220
|
|
|
@@ -217,7 +223,7 @@ export { default as StopCircle } from '../icons/circle-stop';
|
|
|
217
223
|
|
|
218
224
|
// CircleUserRound aliases
|
|
219
225
|
export {
|
|
220
|
-
/** @deprecated
|
|
226
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} instead. This alias will be removed in v1.0 */
|
|
221
227
|
default as UserCircle2
|
|
222
228
|
} from '../icons/circle-user-round';
|
|
223
229
|
|
|
@@ -241,7 +247,7 @@ export { default as UploadCloud } from '../icons/cloud-upload';
|
|
|
241
247
|
|
|
242
248
|
// CodeXml aliases
|
|
243
249
|
export {
|
|
244
|
-
/** @deprecated
|
|
250
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. This alias will be removed in v1.0 */
|
|
245
251
|
default as Code2
|
|
246
252
|
} from '../icons/code-xml';
|
|
247
253
|
|
|
@@ -259,7 +265,7 @@ export { default as PanelsLeftRight } from '../icons/columns-3';
|
|
|
259
265
|
|
|
260
266
|
// ContactRound aliases
|
|
261
267
|
export {
|
|
262
|
-
/** @deprecated
|
|
268
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ContactRound} instead. This alias will be removed in v1.0 */
|
|
263
269
|
default as Contact2
|
|
264
270
|
} from '../icons/contact-round';
|
|
265
271
|
|
|
@@ -268,58 +274,61 @@ export { default as PercentDiamond } from '../icons/diamond-percent';
|
|
|
268
274
|
|
|
269
275
|
// Earth aliases
|
|
270
276
|
export {
|
|
271
|
-
/** @deprecated
|
|
277
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. This alias will be removed in v1.0 */
|
|
272
278
|
default as Globe2
|
|
273
279
|
} from '../icons/earth';
|
|
274
280
|
|
|
275
|
-
// Ellipsis aliases
|
|
276
|
-
export { default as MoreHorizontal } from '../icons/ellipsis';
|
|
277
|
-
|
|
278
281
|
// EllipsisVertical aliases
|
|
279
282
|
export { default as MoreVertical } from '../icons/ellipsis-vertical';
|
|
280
283
|
|
|
281
|
-
//
|
|
282
|
-
export { default as
|
|
284
|
+
// Ellipsis aliases
|
|
285
|
+
export { default as MoreHorizontal } from '../icons/ellipsis';
|
|
283
286
|
|
|
284
287
|
// FileChartColumnIncreasing aliases
|
|
285
288
|
export {
|
|
286
|
-
/** @deprecated
|
|
289
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
287
290
|
default as FileBarChart
|
|
288
291
|
} from '../icons/file-chart-column-increasing';
|
|
289
292
|
|
|
293
|
+
// FileAxis3d aliases
|
|
294
|
+
export { default as FileAxis3D } from '../icons/file-axis-3d';
|
|
295
|
+
|
|
290
296
|
// FileChartColumn aliases
|
|
291
297
|
export {
|
|
292
|
-
/** @deprecated
|
|
298
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumn} instead. This alias will be removed in v1.0 */
|
|
293
299
|
default as FileBarChart2
|
|
294
300
|
} from '../icons/file-chart-column';
|
|
295
301
|
|
|
296
302
|
// FileChartLine aliases
|
|
297
303
|
export {
|
|
298
|
-
/** @deprecated
|
|
304
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartLine} instead. This alias will be removed in v1.0 */
|
|
299
305
|
default as FileLineChart
|
|
300
306
|
} from '../icons/file-chart-line';
|
|
301
307
|
|
|
302
|
-
// FileCog aliases
|
|
303
|
-
export {
|
|
304
|
-
/** @deprecated */
|
|
305
|
-
default as FileCog2
|
|
306
|
-
} from '../icons/file-cog';
|
|
307
|
-
|
|
308
308
|
// FileChartPie aliases
|
|
309
309
|
export {
|
|
310
|
-
/** @deprecated
|
|
310
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartPie} instead. This alias will be removed in v1.0 */
|
|
311
311
|
default as FilePieChart
|
|
312
312
|
} from '../icons/file-chart-pie';
|
|
313
313
|
|
|
314
|
+
// FileCog aliases
|
|
315
|
+
export {
|
|
316
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCog} instead. This alias will be removed in v1.0 */
|
|
317
|
+
default as FileCog2
|
|
318
|
+
} from '../icons/file-cog';
|
|
319
|
+
|
|
314
320
|
// FilePenLine aliases
|
|
315
321
|
export { default as FileSignature } from '../icons/file-pen-line';
|
|
316
322
|
|
|
317
323
|
// FilePen aliases
|
|
318
324
|
export { default as FileEdit } from '../icons/file-pen';
|
|
319
325
|
|
|
326
|
+
// FileQuestionMark aliases
|
|
327
|
+
export { default as FileQuestion } from '../icons/file-question-mark';
|
|
328
|
+
|
|
320
329
|
// FolderCog aliases
|
|
321
330
|
export {
|
|
322
|
-
/** @deprecated
|
|
331
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderCog} instead. This alias will be removed in v1.0 */
|
|
323
332
|
default as FolderCog2
|
|
324
333
|
} from '../icons/folder-cog';
|
|
325
334
|
|
|
@@ -328,22 +337,22 @@ export { default as FolderEdit } from '../icons/folder-pen';
|
|
|
328
337
|
|
|
329
338
|
// FunnelX aliases
|
|
330
339
|
export {
|
|
331
|
-
/** @deprecated
|
|
340
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. This alias will be removed in v1.0 */
|
|
332
341
|
default as FilterX
|
|
333
342
|
} from '../icons/funnel-x';
|
|
334
343
|
|
|
335
344
|
// Funnel aliases
|
|
336
345
|
export {
|
|
337
|
-
/** @deprecated
|
|
346
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. This alias will be removed in v1.0 */
|
|
338
347
|
default as Filter
|
|
339
348
|
} from '../icons/funnel';
|
|
340
349
|
|
|
341
|
-
// Grid2x2Check aliases
|
|
342
|
-
export { default as Grid2X2Check } from '../icons/grid-2x2-check';
|
|
343
|
-
|
|
344
350
|
// GitCommitHorizontal aliases
|
|
345
351
|
export { default as GitCommit } from '../icons/git-commit-horizontal';
|
|
346
352
|
|
|
353
|
+
// Grid2x2Check aliases
|
|
354
|
+
export { default as Grid2X2Check } from '../icons/grid-2x2-check';
|
|
355
|
+
|
|
347
356
|
// Grid2x2Plus aliases
|
|
348
357
|
export { default as Grid2X2Plus } from '../icons/grid-2x2-plus';
|
|
349
358
|
|
|
@@ -367,7 +376,7 @@ export { default as Home } from '../icons/house';
|
|
|
367
376
|
|
|
368
377
|
// IceCreamBowl aliases
|
|
369
378
|
export {
|
|
370
|
-
/** @deprecated
|
|
379
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. This alias will be removed in v1.0 */
|
|
371
380
|
default as IceCream2
|
|
372
381
|
} from '../icons/ice-cream-bowl';
|
|
373
382
|
|
|
@@ -377,15 +386,15 @@ export { default as IceCream } from '../icons/ice-cream-cone';
|
|
|
377
386
|
// IndentDecrease aliases
|
|
378
387
|
export { default as Outdent } from '../icons/indent-decrease';
|
|
379
388
|
|
|
389
|
+
// IndentIncrease aliases
|
|
390
|
+
export { default as Indent } from '../icons/indent-increase';
|
|
391
|
+
|
|
380
392
|
// LaptopMinimal aliases
|
|
381
393
|
export {
|
|
382
|
-
/** @deprecated
|
|
394
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LaptopMinimal} instead. This alias will be removed in v1.0 */
|
|
383
395
|
default as Laptop2
|
|
384
396
|
} from '../icons/laptop-minimal';
|
|
385
397
|
|
|
386
|
-
// IndentIncrease aliases
|
|
387
|
-
export { default as Indent } from '../icons/indent-increase';
|
|
388
|
-
|
|
389
398
|
// Layers aliases
|
|
390
399
|
export { default as Layers3 } from '../icons/layers';
|
|
391
400
|
|
|
@@ -398,9 +407,15 @@ export { default as UnlockKeyhole } from '../icons/lock-keyhole-open';
|
|
|
398
407
|
// LockOpen aliases
|
|
399
408
|
export { default as Unlock } from '../icons/lock-open';
|
|
400
409
|
|
|
410
|
+
// MailQuestionMark aliases
|
|
411
|
+
export { default as MailQuestion } from '../icons/mail-question-mark';
|
|
412
|
+
|
|
413
|
+
// MessageCircleQuestionMark aliases
|
|
414
|
+
export { default as MessageCircleQuestion } from '../icons/message-circle-question-mark';
|
|
415
|
+
|
|
401
416
|
// MicVocal aliases
|
|
402
417
|
export {
|
|
403
|
-
/** @deprecated
|
|
418
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicVocal} instead. This alias will be removed in v1.0 */
|
|
404
419
|
default as Mic2
|
|
405
420
|
} from '../icons/mic-vocal';
|
|
406
421
|
|
|
@@ -425,12 +440,12 @@ export { default as PanelBottomInactive } from '../icons/panel-bottom-dashed';
|
|
|
425
440
|
// PanelLeftClose aliases
|
|
426
441
|
export { default as SidebarClose } from '../icons/panel-left-close';
|
|
427
442
|
|
|
428
|
-
// PanelLeftOpen aliases
|
|
429
|
-
export { default as SidebarOpen } from '../icons/panel-left-open';
|
|
430
|
-
|
|
431
443
|
// PanelLeftDashed aliases
|
|
432
444
|
export { default as PanelLeftInactive } from '../icons/panel-left-dashed';
|
|
433
445
|
|
|
446
|
+
// PanelLeftOpen aliases
|
|
447
|
+
export { default as SidebarOpen } from '../icons/panel-left-open';
|
|
448
|
+
|
|
434
449
|
// PanelLeft aliases
|
|
435
450
|
export { default as Sidebar } from '../icons/panel-left';
|
|
436
451
|
|
|
@@ -440,18 +455,18 @@ export { default as PanelRightInactive } from '../icons/panel-right-dashed';
|
|
|
440
455
|
// PanelTopDashed aliases
|
|
441
456
|
export { default as PanelTopInactive } from '../icons/panel-top-dashed';
|
|
442
457
|
|
|
458
|
+
// PanelsTopLeft aliases
|
|
459
|
+
export { default as Layout } from '../icons/panels-top-left';
|
|
460
|
+
|
|
443
461
|
// PenLine aliases
|
|
444
462
|
export {
|
|
445
|
-
/** @deprecated
|
|
463
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PenLine} instead. This alias will be removed in v1.0 */
|
|
446
464
|
default as Edit3
|
|
447
465
|
} from '../icons/pen-line';
|
|
448
466
|
|
|
449
|
-
// PanelsTopLeft aliases
|
|
450
|
-
export { default as Layout } from '../icons/panels-top-left';
|
|
451
|
-
|
|
452
467
|
// Pen aliases
|
|
453
468
|
export {
|
|
454
|
-
/** @deprecated
|
|
469
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Pen} instead. This alias will be removed in v1.0 */
|
|
455
470
|
default as Edit2
|
|
456
471
|
} from '../icons/pen';
|
|
457
472
|
|
|
@@ -461,12 +476,12 @@ export { default as PlugZap2 } from '../icons/plug-zap';
|
|
|
461
476
|
// RectangleEllipsis aliases
|
|
462
477
|
export { default as FormInput } from '../icons/rectangle-ellipsis';
|
|
463
478
|
|
|
464
|
-
// Rows2 aliases
|
|
465
|
-
export { default as Rows } from '../icons/rows-2';
|
|
466
|
-
|
|
467
479
|
// Rotate3d aliases
|
|
468
480
|
export { default as Rotate3D } from '../icons/rotate-3d';
|
|
469
481
|
|
|
482
|
+
// Rows2 aliases
|
|
483
|
+
export { default as Rows } from '../icons/rows-2';
|
|
484
|
+
|
|
470
485
|
// Rows3 aliases
|
|
471
486
|
export { default as PanelsTopBottom } from '../icons/rows-3';
|
|
472
487
|
|
|
@@ -479,6 +494,9 @@ export {
|
|
|
479
494
|
default as SendHorizonal
|
|
480
495
|
} from '../icons/send-horizontal';
|
|
481
496
|
|
|
497
|
+
// ShieldQuestionMark aliases
|
|
498
|
+
export { default as ShieldQuestion } from '../icons/shield-question-mark';
|
|
499
|
+
|
|
482
500
|
// ShieldX aliases
|
|
483
501
|
export { default as ShieldClose } from '../icons/shield-x';
|
|
484
502
|
|
|
@@ -488,15 +506,15 @@ export { default as Sliders } from '../icons/sliders-vertical';
|
|
|
488
506
|
// Sparkles aliases
|
|
489
507
|
export { default as Stars } from '../icons/sparkles';
|
|
490
508
|
|
|
491
|
-
// SquareActivity aliases
|
|
492
|
-
export { default as ActivitySquare } from '../icons/square-activity';
|
|
493
|
-
|
|
494
509
|
// SquareArrowDownLeft aliases
|
|
495
510
|
export { default as ArrowDownLeftSquare } from '../icons/square-arrow-down-left';
|
|
496
511
|
|
|
497
512
|
// SquareArrowDownRight aliases
|
|
498
513
|
export { default as ArrowDownRightSquare } from '../icons/square-arrow-down-right';
|
|
499
514
|
|
|
515
|
+
// SquareActivity aliases
|
|
516
|
+
export { default as ActivitySquare } from '../icons/square-activity';
|
|
517
|
+
|
|
500
518
|
// SquareArrowDown aliases
|
|
501
519
|
export { default as ArrowDownSquare } from '../icons/square-arrow-down';
|
|
502
520
|
|
|
@@ -518,12 +536,12 @@ export { default as ArrowUpRightFromSquare } from '../icons/square-arrow-out-up-
|
|
|
518
536
|
// SquareArrowRight aliases
|
|
519
537
|
export { default as ArrowRightSquare } from '../icons/square-arrow-right';
|
|
520
538
|
|
|
521
|
-
// SquareArrowUpLeft aliases
|
|
522
|
-
export { default as ArrowUpLeftSquare } from '../icons/square-arrow-up-left';
|
|
523
|
-
|
|
524
539
|
// SquareArrowUpRight aliases
|
|
525
540
|
export { default as ArrowUpRightSquare } from '../icons/square-arrow-up-right';
|
|
526
541
|
|
|
542
|
+
// SquareArrowUpLeft aliases
|
|
543
|
+
export { default as ArrowUpLeftSquare } from '../icons/square-arrow-up-left';
|
|
544
|
+
|
|
527
545
|
// SquareArrowUp aliases
|
|
528
546
|
export { default as ArrowUpSquare } from '../icons/square-arrow-up';
|
|
529
547
|
|
|
@@ -533,15 +551,15 @@ export { default as AsteriskSquare } from '../icons/square-asterisk';
|
|
|
533
551
|
// SquareBottomDashedScissors aliases
|
|
534
552
|
export { default as ScissorsSquareDashedBottom } from '../icons/square-bottom-dashed-scissors';
|
|
535
553
|
|
|
554
|
+
// SquareCheckBig aliases
|
|
555
|
+
export { default as CheckSquare } from '../icons/square-check-big';
|
|
556
|
+
|
|
536
557
|
// SquareChartGantt aliases
|
|
537
558
|
export { default as GanttChartSquare } from '../icons/square-chart-gantt';
|
|
538
559
|
|
|
539
560
|
// SquareChartGantt aliases
|
|
540
561
|
export { default as SquareGanttChart } from '../icons/square-chart-gantt';
|
|
541
562
|
|
|
542
|
-
// SquareCheckBig aliases
|
|
543
|
-
export { default as CheckSquare } from '../icons/square-check-big';
|
|
544
|
-
|
|
545
563
|
// SquareCheck aliases
|
|
546
564
|
export { default as CheckSquare2 } from '../icons/square-check';
|
|
547
565
|
|
|
@@ -652,7 +670,7 @@ export { default as TerminalSquare } from '../icons/square-terminal';
|
|
|
652
670
|
|
|
653
671
|
// SquareUserRound aliases
|
|
654
672
|
export {
|
|
655
|
-
/** @deprecated
|
|
673
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUserRound} instead. This alias will be removed in v1.0 */
|
|
656
674
|
default as UserSquare2
|
|
657
675
|
} from '../icons/square-user-round';
|
|
658
676
|
|
|
@@ -679,55 +697,55 @@ export { default as AlertTriangle } from '../icons/triangle-alert';
|
|
|
679
697
|
|
|
680
698
|
// TvMinimal aliases
|
|
681
699
|
export {
|
|
682
|
-
/** @deprecated
|
|
700
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TvMinimal} instead. This alias will be removed in v1.0 */
|
|
683
701
|
default as Tv2
|
|
684
702
|
} from '../icons/tv-minimal';
|
|
685
703
|
|
|
686
704
|
// University aliases
|
|
687
705
|
export {
|
|
688
|
-
/** @deprecated
|
|
706
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. This alias will be removed in v1.0 */
|
|
689
707
|
default as School2
|
|
690
708
|
} from '../icons/university';
|
|
691
709
|
|
|
692
710
|
// UserRoundCheck aliases
|
|
693
711
|
export {
|
|
694
|
-
/** @deprecated
|
|
712
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. This alias will be removed in v1.0 */
|
|
695
713
|
default as UserCheck2
|
|
696
714
|
} from '../icons/user-round-check';
|
|
697
715
|
|
|
698
716
|
// UserRoundCog aliases
|
|
699
717
|
export {
|
|
700
|
-
/** @deprecated
|
|
718
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCog} instead. This alias will be removed in v1.0 */
|
|
701
719
|
default as UserCog2
|
|
702
720
|
} from '../icons/user-round-cog';
|
|
703
721
|
|
|
704
722
|
// UserRoundMinus aliases
|
|
705
723
|
export {
|
|
706
|
-
/** @deprecated
|
|
724
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundMinus} instead. This alias will be removed in v1.0 */
|
|
707
725
|
default as UserMinus2
|
|
708
726
|
} from '../icons/user-round-minus';
|
|
709
727
|
|
|
710
728
|
// UserRoundPlus aliases
|
|
711
729
|
export {
|
|
712
|
-
/** @deprecated
|
|
730
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundPlus} instead. This alias will be removed in v1.0 */
|
|
713
731
|
default as UserPlus2
|
|
714
732
|
} from '../icons/user-round-plus';
|
|
715
733
|
|
|
716
734
|
// UserRoundX aliases
|
|
717
735
|
export {
|
|
718
|
-
/** @deprecated
|
|
736
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundX} instead. This alias will be removed in v1.0 */
|
|
719
737
|
default as UserX2
|
|
720
738
|
} from '../icons/user-round-x';
|
|
721
739
|
|
|
722
740
|
// UserRound aliases
|
|
723
741
|
export {
|
|
724
|
-
/** @deprecated
|
|
742
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. This alias will be removed in v1.0 */
|
|
725
743
|
default as User2
|
|
726
744
|
} from '../icons/user-round';
|
|
727
745
|
|
|
728
746
|
// UsersRound aliases
|
|
729
747
|
export {
|
|
730
|
-
/** @deprecated
|
|
748
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UsersRound} instead. This alias will be removed in v1.0 */
|
|
731
749
|
default as Users2
|
|
732
750
|
} from '../icons/users-round';
|
|
733
751
|
|
|
@@ -739,13 +757,13 @@ export { default as ForkKnife } from '../icons/utensils';
|
|
|
739
757
|
|
|
740
758
|
// WalletMinimal aliases
|
|
741
759
|
export {
|
|
742
|
-
/** @deprecated
|
|
760
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WalletMinimal} instead. This alias will be removed in v1.0 */
|
|
743
761
|
default as Wallet2
|
|
744
762
|
} from '../icons/wallet-minimal';
|
|
745
763
|
|
|
746
764
|
// WandSparkles aliases
|
|
747
765
|
export {
|
|
748
|
-
/** @deprecated
|
|
766
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WandSparkles} instead. This alias will be removed in v1.0 */
|
|
749
767
|
default as Wand2
|
|
750
768
|
} from '../icons/wand-sparkles';
|
|
751
769
|
|