@lucide/astro 0.526.0 → 0.527.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 +1 -1
- package/src/aliases/aliases.ts +89 -89
- package/src/aliases/prefixed.ts +633 -631
- package/src/aliases/suffixed.ts +941 -939
- package/src/icons/index.ts +145 -144
- package/src/icons/monitor-dot.ts +2 -2
- package/src/icons/spotlight.ts +18 -0
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -17,12 +17,12 @@ export { default as SortDesc } from '../icons/arrow-down-wide-narrow';
|
|
|
17
17
|
// ArrowDownZA aliases
|
|
18
18
|
export { default as ArrowDownZa } from '../icons/arrow-down-z-a';
|
|
19
19
|
|
|
20
|
-
// ArrowUpNarrowWide aliases
|
|
21
|
-
export { default as SortAsc } from '../icons/arrow-up-narrow-wide';
|
|
22
|
-
|
|
23
20
|
// ArrowUpAZ aliases
|
|
24
21
|
export { default as ArrowUpAz } from '../icons/arrow-up-a-z';
|
|
25
22
|
|
|
23
|
+
// ArrowUpNarrowWide aliases
|
|
24
|
+
export { default as SortAsc } from '../icons/arrow-up-narrow-wide';
|
|
25
|
+
|
|
26
26
|
// ArrowUpZA aliases
|
|
27
27
|
export { default as ArrowUpZa } from '../icons/arrow-up-z-a';
|
|
28
28
|
|
|
@@ -41,15 +41,15 @@ export {
|
|
|
41
41
|
default as BetweenHorizonalEnd
|
|
42
42
|
} from '../icons/between-horizontal-end';
|
|
43
43
|
|
|
44
|
-
// BookDashed aliases
|
|
45
|
-
export { default as BookTemplate } from '../icons/book-dashed';
|
|
46
|
-
|
|
47
44
|
// BetweenHorizontalStart aliases
|
|
48
45
|
export {
|
|
49
46
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
|
|
50
47
|
default as BetweenHorizonalStart
|
|
51
48
|
} from '../icons/between-horizontal-start';
|
|
52
49
|
|
|
50
|
+
// BookDashed aliases
|
|
51
|
+
export { default as BookTemplate } from '../icons/book-dashed';
|
|
52
|
+
|
|
53
53
|
// Braces aliases
|
|
54
54
|
export { default as CurlyBraces } from '../icons/braces';
|
|
55
55
|
|
|
@@ -98,18 +98,18 @@ export {
|
|
|
98
98
|
default as BarChart3
|
|
99
99
|
} from '../icons/chart-column';
|
|
100
100
|
|
|
101
|
-
// ChartNoAxesColumnIncreasing aliases
|
|
102
|
-
export {
|
|
103
|
-
/** @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 */
|
|
104
|
-
default as BarChart
|
|
105
|
-
} from '../icons/chart-no-axes-column-increasing';
|
|
106
|
-
|
|
107
101
|
// ChartLine aliases
|
|
108
102
|
export {
|
|
109
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 */
|
|
110
104
|
default as LineChart
|
|
111
105
|
} from '../icons/chart-line';
|
|
112
106
|
|
|
107
|
+
// ChartNoAxesColumnIncreasing aliases
|
|
108
|
+
export {
|
|
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 */
|
|
110
|
+
default as BarChart
|
|
111
|
+
} from '../icons/chart-no-axes-column-increasing';
|
|
112
|
+
|
|
113
113
|
// ChartNoAxesColumn aliases
|
|
114
114
|
export {
|
|
115
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 */
|
|
@@ -128,33 +128,33 @@ export {
|
|
|
128
128
|
default as PieChart
|
|
129
129
|
} from '../icons/chart-pie';
|
|
130
130
|
|
|
131
|
-
// ChartScatter aliases
|
|
132
|
-
export {
|
|
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 */
|
|
134
|
-
default as ScatterChart
|
|
135
|
-
} from '../icons/chart-scatter';
|
|
136
|
-
|
|
137
131
|
// CircleAlert aliases
|
|
138
132
|
export { default as AlertCircle } from '../icons/circle-alert';
|
|
139
133
|
|
|
140
134
|
// CircleArrowDown aliases
|
|
141
135
|
export { default as ArrowDownCircle } from '../icons/circle-arrow-down';
|
|
142
136
|
|
|
143
|
-
//
|
|
144
|
-
export {
|
|
137
|
+
// ChartScatter aliases
|
|
138
|
+
export {
|
|
139
|
+
/** @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 */
|
|
140
|
+
default as ScatterChart
|
|
141
|
+
} from '../icons/chart-scatter';
|
|
145
142
|
|
|
146
143
|
// CircleArrowOutDownLeft aliases
|
|
147
144
|
export { default as ArrowDownLeftFromCircle } from '../icons/circle-arrow-out-down-left';
|
|
148
145
|
|
|
146
|
+
// CircleArrowLeft aliases
|
|
147
|
+
export { default as ArrowLeftCircle } from '../icons/circle-arrow-left';
|
|
148
|
+
|
|
149
149
|
// CircleArrowOutDownRight aliases
|
|
150
150
|
export { default as ArrowDownRightFromCircle } from '../icons/circle-arrow-out-down-right';
|
|
151
151
|
|
|
152
|
-
// CircleArrowOutUpLeft aliases
|
|
153
|
-
export { default as ArrowUpLeftFromCircle } from '../icons/circle-arrow-out-up-left';
|
|
154
|
-
|
|
155
152
|
// CircleArrowOutUpRight aliases
|
|
156
153
|
export { default as ArrowUpRightFromCircle } from '../icons/circle-arrow-out-up-right';
|
|
157
154
|
|
|
155
|
+
// CircleArrowOutUpLeft aliases
|
|
156
|
+
export { default as ArrowUpLeftFromCircle } from '../icons/circle-arrow-out-up-left';
|
|
157
|
+
|
|
158
158
|
// CircleArrowRight aliases
|
|
159
159
|
export { default as ArrowRightCircle } from '../icons/circle-arrow-right';
|
|
160
160
|
|
|
@@ -173,12 +173,12 @@ export { default as ChevronDownCircle } from '../icons/circle-chevron-down';
|
|
|
173
173
|
// CircleChevronLeft aliases
|
|
174
174
|
export { default as ChevronLeftCircle } from '../icons/circle-chevron-left';
|
|
175
175
|
|
|
176
|
-
// CircleChevronUp aliases
|
|
177
|
-
export { default as ChevronUpCircle } from '../icons/circle-chevron-up';
|
|
178
|
-
|
|
179
176
|
// CircleChevronRight aliases
|
|
180
177
|
export { default as ChevronRightCircle } from '../icons/circle-chevron-right';
|
|
181
178
|
|
|
179
|
+
// CircleChevronUp aliases
|
|
180
|
+
export { default as ChevronUpCircle } from '../icons/circle-chevron-up';
|
|
181
|
+
|
|
182
182
|
// CircleDivide aliases
|
|
183
183
|
export { default as DivideCircle } from '../icons/circle-divide';
|
|
184
184
|
|
|
@@ -209,51 +209,51 @@ 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
|
-
// CircleSlash2 aliases
|
|
213
|
-
export { default as CircleSlashed } from '../icons/circle-slash-2';
|
|
214
|
-
|
|
215
212
|
// CircleQuestionMark aliases
|
|
216
213
|
export { default as HelpCircle } from '../icons/circle-question-mark';
|
|
217
214
|
|
|
218
215
|
// CircleQuestionMark aliases
|
|
219
216
|
export { default as CircleHelp } from '../icons/circle-question-mark';
|
|
220
217
|
|
|
218
|
+
// CircleSlash2 aliases
|
|
219
|
+
export { default as CircleSlashed } from '../icons/circle-slash-2';
|
|
220
|
+
|
|
221
221
|
// CircleStop aliases
|
|
222
222
|
export { default as StopCircle } from '../icons/circle-stop';
|
|
223
223
|
|
|
224
|
+
// CircleUser aliases
|
|
225
|
+
export { default as UserCircle } from '../icons/circle-user';
|
|
226
|
+
|
|
224
227
|
// CircleUserRound aliases
|
|
225
228
|
export {
|
|
226
229
|
/** @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 */
|
|
227
230
|
default as UserCircle2
|
|
228
231
|
} from '../icons/circle-user-round';
|
|
229
232
|
|
|
230
|
-
// CircleUser aliases
|
|
231
|
-
export { default as UserCircle } from '../icons/circle-user';
|
|
232
|
-
|
|
233
233
|
// CircleX aliases
|
|
234
234
|
export { default as XCircle } from '../icons/circle-x';
|
|
235
235
|
|
|
236
|
-
// ClipboardPen aliases
|
|
237
|
-
export { default as ClipboardEdit } from '../icons/clipboard-pen';
|
|
238
|
-
|
|
239
236
|
// ClipboardPenLine aliases
|
|
240
237
|
export { default as ClipboardSignature } from '../icons/clipboard-pen-line';
|
|
241
238
|
|
|
239
|
+
// ClipboardPen aliases
|
|
240
|
+
export { default as ClipboardEdit } from '../icons/clipboard-pen';
|
|
241
|
+
|
|
242
242
|
// CloudDownload aliases
|
|
243
243
|
export { default as DownloadCloud } from '../icons/cloud-download';
|
|
244
244
|
|
|
245
245
|
// CloudUpload aliases
|
|
246
246
|
export { default as UploadCloud } from '../icons/cloud-upload';
|
|
247
247
|
|
|
248
|
+
// Columns2 aliases
|
|
249
|
+
export { default as Columns } from '../icons/columns-2';
|
|
250
|
+
|
|
248
251
|
// CodeXml aliases
|
|
249
252
|
export {
|
|
250
253
|
/** @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 */
|
|
251
254
|
default as Code2
|
|
252
255
|
} from '../icons/code-xml';
|
|
253
256
|
|
|
254
|
-
// Columns2 aliases
|
|
255
|
-
export { default as Columns } from '../icons/columns-2';
|
|
256
|
-
|
|
257
257
|
// Columns3Cog aliases
|
|
258
258
|
export { default as ColumnsSettings } from '../icons/columns-3-cog';
|
|
259
259
|
|
|
@@ -263,15 +263,15 @@ export { default as TableConfig } from '../icons/columns-3-cog';
|
|
|
263
263
|
// Columns3 aliases
|
|
264
264
|
export { default as PanelsLeftRight } from '../icons/columns-3';
|
|
265
265
|
|
|
266
|
+
// DiamondPercent aliases
|
|
267
|
+
export { default as PercentDiamond } from '../icons/diamond-percent';
|
|
268
|
+
|
|
266
269
|
// ContactRound aliases
|
|
267
270
|
export {
|
|
268
271
|
/** @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 */
|
|
269
272
|
default as Contact2
|
|
270
273
|
} from '../icons/contact-round';
|
|
271
274
|
|
|
272
|
-
// DiamondPercent aliases
|
|
273
|
-
export { default as PercentDiamond } from '../icons/diamond-percent';
|
|
274
|
-
|
|
275
275
|
// Earth aliases
|
|
276
276
|
export {
|
|
277
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 */
|
|
@@ -281,18 +281,18 @@ export {
|
|
|
281
281
|
// EllipsisVertical aliases
|
|
282
282
|
export { default as MoreVertical } from '../icons/ellipsis-vertical';
|
|
283
283
|
|
|
284
|
-
// Ellipsis aliases
|
|
285
|
-
export { default as MoreHorizontal } from '../icons/ellipsis';
|
|
286
|
-
|
|
287
|
-
// FileAxis3d aliases
|
|
288
|
-
export { default as FileAxis3D } from '../icons/file-axis-3d';
|
|
289
|
-
|
|
290
284
|
// FileChartColumnIncreasing aliases
|
|
291
285
|
export {
|
|
292
286
|
/** @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 */
|
|
293
287
|
default as FileBarChart
|
|
294
288
|
} from '../icons/file-chart-column-increasing';
|
|
295
289
|
|
|
290
|
+
// Ellipsis aliases
|
|
291
|
+
export { default as MoreHorizontal } from '../icons/ellipsis';
|
|
292
|
+
|
|
293
|
+
// FileAxis3d aliases
|
|
294
|
+
export { default as FileAxis3D } from '../icons/file-axis-3d';
|
|
295
|
+
|
|
296
296
|
// FileChartColumn aliases
|
|
297
297
|
export {
|
|
298
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 */
|
|
@@ -332,15 +332,15 @@ export {
|
|
|
332
332
|
default as FolderCog2
|
|
333
333
|
} from '../icons/folder-cog';
|
|
334
334
|
|
|
335
|
+
// FolderPen aliases
|
|
336
|
+
export { default as FolderEdit } from '../icons/folder-pen';
|
|
337
|
+
|
|
335
338
|
// FunnelX aliases
|
|
336
339
|
export {
|
|
337
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 */
|
|
338
341
|
default as FilterX
|
|
339
342
|
} from '../icons/funnel-x';
|
|
340
343
|
|
|
341
|
-
// FolderPen aliases
|
|
342
|
-
export { default as FolderEdit } from '../icons/folder-pen';
|
|
343
|
-
|
|
344
344
|
// Funnel aliases
|
|
345
345
|
export {
|
|
346
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 */
|
|
@@ -383,12 +383,12 @@ export {
|
|
|
383
383
|
// IceCreamCone aliases
|
|
384
384
|
export { default as IceCream } from '../icons/ice-cream-cone';
|
|
385
385
|
|
|
386
|
-
// IndentDecrease aliases
|
|
387
|
-
export { default as Outdent } from '../icons/indent-decrease';
|
|
388
|
-
|
|
389
386
|
// IndentIncrease aliases
|
|
390
387
|
export { default as Indent } from '../icons/indent-increase';
|
|
391
388
|
|
|
389
|
+
// IndentDecrease aliases
|
|
390
|
+
export { default as Outdent } from '../icons/indent-decrease';
|
|
391
|
+
|
|
392
392
|
// LaptopMinimal aliases
|
|
393
393
|
export {
|
|
394
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 */
|
|
@@ -398,12 +398,12 @@ export {
|
|
|
398
398
|
// Layers aliases
|
|
399
399
|
export { default as Layers3 } from '../icons/layers';
|
|
400
400
|
|
|
401
|
-
// LockKeyholeOpen aliases
|
|
402
|
-
export { default as UnlockKeyhole } from '../icons/lock-keyhole-open';
|
|
403
|
-
|
|
404
401
|
// LoaderCircle aliases
|
|
405
402
|
export { default as Loader2 } from '../icons/loader-circle';
|
|
406
403
|
|
|
404
|
+
// LockKeyholeOpen aliases
|
|
405
|
+
export { default as UnlockKeyhole } from '../icons/lock-keyhole-open';
|
|
406
|
+
|
|
407
407
|
// LockOpen aliases
|
|
408
408
|
export { default as Unlock } from '../icons/lock-open';
|
|
409
409
|
|
|
@@ -440,24 +440,24 @@ export { default as PanelBottomInactive } from '../icons/panel-bottom-dashed';
|
|
|
440
440
|
// PanelLeftDashed aliases
|
|
441
441
|
export { default as PanelLeftInactive } from '../icons/panel-left-dashed';
|
|
442
442
|
|
|
443
|
-
// PanelLeftOpen aliases
|
|
444
|
-
export { default as SidebarOpen } from '../icons/panel-left-open';
|
|
445
|
-
|
|
446
443
|
// PanelLeftClose aliases
|
|
447
444
|
export { default as SidebarClose } from '../icons/panel-left-close';
|
|
448
445
|
|
|
449
|
-
//
|
|
450
|
-
export { default as
|
|
446
|
+
// PanelLeftOpen aliases
|
|
447
|
+
export { default as SidebarOpen } from '../icons/panel-left-open';
|
|
451
448
|
|
|
452
449
|
// PanelRightDashed aliases
|
|
453
450
|
export { default as PanelRightInactive } from '../icons/panel-right-dashed';
|
|
454
451
|
|
|
455
|
-
//
|
|
456
|
-
export { default as
|
|
452
|
+
// PanelLeft aliases
|
|
453
|
+
export { default as Sidebar } from '../icons/panel-left';
|
|
457
454
|
|
|
458
455
|
// PanelsTopLeft aliases
|
|
459
456
|
export { default as Layout } from '../icons/panels-top-left';
|
|
460
457
|
|
|
458
|
+
// PanelTopDashed aliases
|
|
459
|
+
export { default as PanelTopInactive } from '../icons/panel-top-dashed';
|
|
460
|
+
|
|
461
461
|
// PenLine aliases
|
|
462
462
|
export {
|
|
463
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 */
|
|
@@ -470,24 +470,24 @@ export {
|
|
|
470
470
|
default as Edit2
|
|
471
471
|
} from '../icons/pen';
|
|
472
472
|
|
|
473
|
-
// PlugZap aliases
|
|
474
|
-
export { default as PlugZap2 } from '../icons/plug-zap';
|
|
475
|
-
|
|
476
473
|
// RectangleEllipsis aliases
|
|
477
474
|
export { default as FormInput } from '../icons/rectangle-ellipsis';
|
|
478
475
|
|
|
476
|
+
// PlugZap aliases
|
|
477
|
+
export { default as PlugZap2 } from '../icons/plug-zap';
|
|
478
|
+
|
|
479
479
|
// Rotate3d aliases
|
|
480
480
|
export { default as Rotate3D } from '../icons/rotate-3d';
|
|
481
481
|
|
|
482
482
|
// Rows2 aliases
|
|
483
483
|
export { default as Rows } from '../icons/rows-2';
|
|
484
484
|
|
|
485
|
-
// Scale3d aliases
|
|
486
|
-
export { default as Scale3D } from '../icons/scale-3d';
|
|
487
|
-
|
|
488
485
|
// Rows3 aliases
|
|
489
486
|
export { default as PanelsTopBottom } from '../icons/rows-3';
|
|
490
487
|
|
|
488
|
+
// Scale3d aliases
|
|
489
|
+
export { default as Scale3D } from '../icons/scale-3d';
|
|
490
|
+
|
|
491
491
|
// SendHorizontal aliases
|
|
492
492
|
export {
|
|
493
493
|
/** @deprecated Renamed because of typo, use {@link SendHorizontal} instead. This alias will be removed in v1.0 */
|
|
@@ -500,12 +500,12 @@ export { default as ShieldQuestion } from '../icons/shield-question-mark';
|
|
|
500
500
|
// ShieldX aliases
|
|
501
501
|
export { default as ShieldClose } from '../icons/shield-x';
|
|
502
502
|
|
|
503
|
-
// Sparkles aliases
|
|
504
|
-
export { default as Stars } from '../icons/sparkles';
|
|
505
|
-
|
|
506
503
|
// SlidersVertical aliases
|
|
507
504
|
export { default as Sliders } from '../icons/sliders-vertical';
|
|
508
505
|
|
|
506
|
+
// Sparkles aliases
|
|
507
|
+
export { default as Stars } from '../icons/sparkles';
|
|
508
|
+
|
|
509
509
|
// SquareActivity aliases
|
|
510
510
|
export { default as ActivitySquare } from '../icons/square-activity';
|
|
511
511
|
|
|
@@ -542,14 +542,11 @@ export { default as ArrowUpLeftSquare } from '../icons/square-arrow-up-left';
|
|
|
542
542
|
// SquareArrowUpRight aliases
|
|
543
543
|
export { default as ArrowUpRightSquare } from '../icons/square-arrow-up-right';
|
|
544
544
|
|
|
545
|
-
// SquareArrowUp aliases
|
|
546
|
-
export { default as ArrowUpSquare } from '../icons/square-arrow-up';
|
|
547
|
-
|
|
548
545
|
// SquareAsterisk aliases
|
|
549
546
|
export { default as AsteriskSquare } from '../icons/square-asterisk';
|
|
550
547
|
|
|
551
|
-
//
|
|
552
|
-
export { default as
|
|
548
|
+
// SquareArrowUp aliases
|
|
549
|
+
export { default as ArrowUpSquare } from '../icons/square-arrow-up';
|
|
553
550
|
|
|
554
551
|
// SquareChartGantt aliases
|
|
555
552
|
export { default as GanttChartSquare } from '../icons/square-chart-gantt';
|
|
@@ -557,6 +554,9 @@ export { default as GanttChartSquare } from '../icons/square-chart-gantt';
|
|
|
557
554
|
// SquareChartGantt aliases
|
|
558
555
|
export { default as SquareGanttChart } from '../icons/square-chart-gantt';
|
|
559
556
|
|
|
557
|
+
// SquareBottomDashedScissors aliases
|
|
558
|
+
export { default as ScissorsSquareDashedBottom } from '../icons/square-bottom-dashed-scissors';
|
|
559
|
+
|
|
560
560
|
// SquareCheckBig aliases
|
|
561
561
|
export { default as CheckSquare } from '../icons/square-check-big';
|
|
562
562
|
|
|
@@ -602,27 +602,27 @@ export { default as FunctionSquare } from '../icons/square-function';
|
|
|
602
602
|
// SquareKanban aliases
|
|
603
603
|
export { default as KanbanSquare } from '../icons/square-kanban';
|
|
604
604
|
|
|
605
|
+
// SquareM aliases
|
|
606
|
+
export { default as MSquare } from '../icons/square-m';
|
|
607
|
+
|
|
605
608
|
// SquareLibrary aliases
|
|
606
609
|
export { default as LibrarySquare } from '../icons/square-library';
|
|
607
610
|
|
|
608
611
|
// SquareMenu aliases
|
|
609
612
|
export { default as MenuSquare } from '../icons/square-menu';
|
|
610
613
|
|
|
611
|
-
// SquareM aliases
|
|
612
|
-
export { default as MSquare } from '../icons/square-m';
|
|
613
|
-
|
|
614
614
|
// SquareMinus aliases
|
|
615
615
|
export { default as MinusSquare } from '../icons/square-minus';
|
|
616
616
|
|
|
617
617
|
// SquareMousePointer aliases
|
|
618
618
|
export { default as Inspect } from '../icons/square-mouse-pointer';
|
|
619
619
|
|
|
620
|
-
// SquareParking aliases
|
|
621
|
-
export { default as ParkingSquare } from '../icons/square-parking';
|
|
622
|
-
|
|
623
620
|
// SquareParkingOff aliases
|
|
624
621
|
export { default as ParkingSquareOff } from '../icons/square-parking-off';
|
|
625
622
|
|
|
623
|
+
// SquareParking aliases
|
|
624
|
+
export { default as ParkingSquare } from '../icons/square-parking';
|
|
625
|
+
|
|
626
626
|
// SquarePen aliases
|
|
627
627
|
export { default as PenBox } from '../icons/square-pen';
|
|
628
628
|
|
|
@@ -662,12 +662,12 @@ export { default as SlashSquare } from '../icons/square-slash';
|
|
|
662
662
|
// SquareSplitHorizontal aliases
|
|
663
663
|
export { default as SplitSquareHorizontal } from '../icons/square-split-horizontal';
|
|
664
664
|
|
|
665
|
-
// SquareTerminal aliases
|
|
666
|
-
export { default as TerminalSquare } from '../icons/square-terminal';
|
|
667
|
-
|
|
668
665
|
// SquareSplitVertical aliases
|
|
669
666
|
export { default as SplitSquareVertical } from '../icons/square-split-vertical';
|
|
670
667
|
|
|
668
|
+
// SquareTerminal aliases
|
|
669
|
+
export { default as TerminalSquare } from '../icons/square-terminal';
|
|
670
|
+
|
|
671
671
|
// SquareUserRound aliases
|
|
672
672
|
export {
|
|
673
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 */
|
|
@@ -677,15 +677,15 @@ export {
|
|
|
677
677
|
// SquareUser aliases
|
|
678
678
|
export { default as UserSquare } from '../icons/square-user';
|
|
679
679
|
|
|
680
|
-
// SquareX aliases
|
|
681
|
-
export { default as XSquare } from '../icons/square-x';
|
|
682
|
-
|
|
683
680
|
// TestTubeDiagonal aliases
|
|
684
681
|
export { default as TestTube2 } from '../icons/test-tube-diagonal';
|
|
685
682
|
|
|
686
683
|
// TextSelect aliases
|
|
687
684
|
export { default as TextSelection } from '../icons/text-select';
|
|
688
685
|
|
|
686
|
+
// SquareX aliases
|
|
687
|
+
export { default as XSquare } from '../icons/square-x';
|
|
688
|
+
|
|
689
689
|
// TramFront aliases
|
|
690
690
|
export { default as Train } from '../icons/tram-front';
|
|
691
691
|
|