@lucide/astro 0.562.0 → 0.563.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/LICENSE +2 -2
- package/README.md +11 -2
- package/package.json +6 -4
- package/src/Icon.astro +3 -0
- package/src/aliases/aliases.ts +88 -88
- package/src/aliases/prefixed.ts +482 -478
- package/src/aliases/suffixed.ts +901 -897
- package/src/createLucideIcon.ts +2 -1
- package/src/icons/bookmark-check.ts +2 -2
- package/src/icons/bookmark-minus.ts +2 -2
- package/src/icons/bookmark-plus.ts +2 -2
- package/src/icons/bookmark-x.ts +2 -2
- package/src/icons/bookmark.ts +2 -2
- package/src/icons/cloud-off.ts +2 -2
- package/src/icons/cloudy.ts +2 -2
- package/src/icons/globe-x.ts +18 -0
- package/src/icons/index.ts +128 -126
- package/src/icons/lasso.ts +2 -2
- package/src/icons/message-square-dashed.ts +2 -2
- package/src/icons/monitor-off.ts +2 -2
- package/src/icons/printer-x.ts +18 -0
- package/src/icons/star-off.ts +2 -2
- package/src/icons/tickets-plane.ts +2 -2
- package/src/icons/waypoints.ts +2 -2
- package/src/types.ts +1 -0
- package/src/utils/hasA11yProp.ts +15 -0
- package/src/{utils.ts → utils/mergeClasses.ts} +1 -12
- package/src/utils/toKebabCase.ts +8 -0
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
ISC License
|
|
2
2
|
|
|
3
|
-
Copyright (c) for portions of Lucide are held by Cole Bemis 2013-
|
|
3
|
+
Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2026 as part of Feather (MIT). All other copyright (c) for Lucide are held by Lucide Contributors 2026.
|
|
4
4
|
|
|
5
5
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
6
|
purpose with or without fee is hereby granted, provided that the above
|
|
@@ -18,7 +18,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
18
18
|
|
|
19
19
|
The MIT License (MIT) (for portions derived from Feather)
|
|
20
20
|
|
|
21
|
-
Copyright (c) 2013-
|
|
21
|
+
Copyright (c) 2013-2026 Cole Bemis
|
|
22
22
|
|
|
23
23
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24
24
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -68,7 +68,16 @@ Lucide is licensed under the ISC license. See [LICENSE](https://lucide.dev/licen
|
|
|
68
68
|
|
|
69
69
|
<a href="https://www.digitalocean.com/?refcode=b0877a2caebd&utm_campaign=Referral_Invite&utm_medium=Referral_Program&utm_source=badge"><img src="https://lucide.dev/digitalocean.svg" width="200" alt="DigitalOcean Referral Badge" /></a>
|
|
70
70
|
|
|
71
|
+
[//]: <> (Open Collective backers)
|
|
71
72
|
### Awesome backers 🍺
|
|
72
73
|
|
|
73
|
-
<a href="https://
|
|
74
|
-
<a href="https://
|
|
74
|
+
<a href="https://github.com/pdfme/pdfme"><img src="https://lucide.dev/sponsors/pdfme.svg" width="180" alt="pdfme – Open-source PDF generation library built with TypeScript and React." /></a>
|
|
75
|
+
<a href="https://www.paxhistoria.co/"><img src="https://lucide.dev/sponsors/paxhistoria.svg?" width="180" alt="Pax Historia – An alternate history sandbox game" /></a>
|
|
76
|
+
|
|
77
|
+
### Backers ☕
|
|
78
|
+
|
|
79
|
+
<a href="https://www.fina.money/"><img src="https://lucide.dev/sponsors/fina-money.png" width="180" alt="Fina Money – Modular Finance Tracker" /></a>
|
|
80
|
+
|
|
81
|
+
### Other contributors 💸
|
|
82
|
+
|
|
83
|
+
You can find all our past and non-recurring financial contributors at [our Open Collective page](https://opencollective.com/lucide-icons).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.563.0",
|
|
4
4
|
"author": "Moustapha Kebe",
|
|
5
5
|
"description": "A Lucide icon library package for Astro applications.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@astrojs/ts-plugin": "^1.10.4",
|
|
43
43
|
"@testing-library/dom": "^10.4.0",
|
|
44
|
-
"@testing-library/jest-dom": "^6.
|
|
44
|
+
"@testing-library/jest-dom": "^6.8.0",
|
|
45
45
|
"jest-serializer-html": "^7.1.0",
|
|
46
46
|
"linkedom": "^0.18.5",
|
|
47
47
|
"prettier": "^3.4.2",
|
|
@@ -55,11 +55,13 @@
|
|
|
55
55
|
"astro": "^4 || ^5"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
|
-
"build": "pnpm clean && pnpm copy:license && pnpm build:icons",
|
|
58
|
+
"build": "pnpm clean && pnpm copy:license && pnpm copy:utils && pnpm build:icons",
|
|
59
59
|
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mts --renderUniqueKey --withAliases --aliasesFileExtension=.ts --iconFileExtension=.ts --exportFileName=index.ts --pretty=false",
|
|
60
60
|
"clean": "rm -rf dist && rm -rf stats && rm -rf ./src/icons/*.ts",
|
|
61
61
|
"copy:license": "cp ../../LICENSE ./LICENSE",
|
|
62
|
-
"
|
|
62
|
+
"copy:utils": "mkdir -p ./src/utils && for f in hasA11yProp toKebabCase mergeClasses; do cp -f ../../packages/shared/src/utils/$f.ts ./src/utils/; done",
|
|
63
|
+
"test": "pnpm copy:utils && pnpm build:icons && vitest run",
|
|
64
|
+
"test:watch": "pnpm build:icons && vitest run --watch",
|
|
63
65
|
"version": "pnpm version --git-tag-version=false"
|
|
64
66
|
}
|
|
65
67
|
}
|
package/src/Icon.astro
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
import defaultAttributes from './defaultAttributes';
|
|
3
3
|
import type { IconProps as Props } from './types';
|
|
4
|
+
import { hasA11yProp } from './utils/hasA11yProp';
|
|
5
|
+
|
|
4
6
|
|
|
5
7
|
const {
|
|
6
8
|
color = 'currentColor',
|
|
@@ -20,6 +22,7 @@ const {
|
|
|
20
22
|
height: size,
|
|
21
23
|
stroke: color,
|
|
22
24
|
'stroke-width': absoluteStrokeWidth ? (Number(strokeWidth) * 24) / Number(size) : strokeWidth,
|
|
25
|
+
...(!hasA11yProp(rest) && { 'aria-hidden': 'true' }),
|
|
23
26
|
...rest,
|
|
24
27
|
}}
|
|
25
28
|
class:list={['lucide', className]}
|
package/src/aliases/aliases.ts
CHANGED
|
@@ -71,18 +71,18 @@ export {
|
|
|
71
71
|
default as BadgeHelp
|
|
72
72
|
} from '../icons/badge-question-mark';
|
|
73
73
|
|
|
74
|
-
// BetweenHorizontalStart aliases
|
|
75
|
-
export {
|
|
76
|
-
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
|
|
77
|
-
default as BetweenHorizonalStart
|
|
78
|
-
} from '../icons/between-horizontal-start';
|
|
79
|
-
|
|
80
74
|
// BetweenHorizontalEnd aliases
|
|
81
75
|
export {
|
|
82
76
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. This alias will be removed in v1.0 */
|
|
83
77
|
default as BetweenHorizonalEnd
|
|
84
78
|
} from '../icons/between-horizontal-end';
|
|
85
79
|
|
|
80
|
+
// BetweenHorizontalStart aliases
|
|
81
|
+
export {
|
|
82
|
+
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
|
|
83
|
+
default as BetweenHorizonalStart
|
|
84
|
+
} from '../icons/between-horizontal-start';
|
|
85
|
+
|
|
86
86
|
// BookDashed aliases
|
|
87
87
|
export {
|
|
88
88
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. This alias will be removed in v1.0.0 */
|
|
@@ -95,18 +95,18 @@ export {
|
|
|
95
95
|
default as CurlyBraces
|
|
96
96
|
} from '../icons/braces';
|
|
97
97
|
|
|
98
|
-
// Captions aliases
|
|
99
|
-
export {
|
|
100
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Captions} instead. This alias will be removed in v1.0 */
|
|
101
|
-
default as Subtitles
|
|
102
|
-
} from '../icons/captions';
|
|
103
|
-
|
|
104
98
|
// ChartArea aliases
|
|
105
99
|
export {
|
|
106
100
|
/** @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 */
|
|
107
101
|
default as AreaChart
|
|
108
102
|
} from '../icons/chart-area';
|
|
109
103
|
|
|
104
|
+
// Captions aliases
|
|
105
|
+
export {
|
|
106
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Captions} instead. This alias will be removed in v1.0 */
|
|
107
|
+
default as Subtitles
|
|
108
|
+
} from '../icons/captions';
|
|
109
|
+
|
|
110
110
|
// ChartBarBig aliases
|
|
111
111
|
export {
|
|
112
112
|
/** @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 */
|
|
@@ -143,23 +143,17 @@ export {
|
|
|
143
143
|
default as BarChart3
|
|
144
144
|
} from '../icons/chart-column';
|
|
145
145
|
|
|
146
|
-
// ChartLine aliases
|
|
147
|
-
export {
|
|
148
|
-
/** @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 */
|
|
149
|
-
default as LineChart
|
|
150
|
-
} from '../icons/chart-line';
|
|
151
|
-
|
|
152
146
|
// ChartNoAxesColumnIncreasing aliases
|
|
153
147
|
export {
|
|
154
148
|
/** @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 */
|
|
155
149
|
default as BarChart
|
|
156
150
|
} from '../icons/chart-no-axes-column-increasing';
|
|
157
151
|
|
|
158
|
-
//
|
|
152
|
+
// ChartLine aliases
|
|
159
153
|
export {
|
|
160
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
161
|
-
default as
|
|
162
|
-
} from '../icons/chart-
|
|
154
|
+
/** @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 */
|
|
155
|
+
default as LineChart
|
|
156
|
+
} from '../icons/chart-line';
|
|
163
157
|
|
|
164
158
|
// ChartNoAxesGantt aliases
|
|
165
159
|
export {
|
|
@@ -167,6 +161,12 @@ export {
|
|
|
167
161
|
default as GanttChart
|
|
168
162
|
} from '../icons/chart-no-axes-gantt';
|
|
169
163
|
|
|
164
|
+
// ChartNoAxesColumn aliases
|
|
165
|
+
export {
|
|
166
|
+
/** @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 */
|
|
167
|
+
default as BarChart2
|
|
168
|
+
} from '../icons/chart-no-axes-column';
|
|
169
|
+
|
|
170
170
|
// ChartPie aliases
|
|
171
171
|
export {
|
|
172
172
|
/** @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 */
|
|
@@ -227,18 +227,18 @@ export {
|
|
|
227
227
|
default as ArrowUpRightFromCircle
|
|
228
228
|
} from '../icons/circle-arrow-out-up-right';
|
|
229
229
|
|
|
230
|
-
// CircleArrowRight aliases
|
|
231
|
-
export {
|
|
232
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. This alias will be removed in v1.0 */
|
|
233
|
-
default as ArrowRightCircle
|
|
234
|
-
} from '../icons/circle-arrow-right';
|
|
235
|
-
|
|
236
230
|
// CircleArrowUp aliases
|
|
237
231
|
export {
|
|
238
232
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowUp} instead. This alias will be removed in v1.0 */
|
|
239
233
|
default as ArrowUpCircle
|
|
240
234
|
} from '../icons/circle-arrow-up';
|
|
241
235
|
|
|
236
|
+
// CircleArrowRight aliases
|
|
237
|
+
export {
|
|
238
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. This alias will be removed in v1.0 */
|
|
239
|
+
default as ArrowRightCircle
|
|
240
|
+
} from '../icons/circle-arrow-right';
|
|
241
|
+
|
|
242
242
|
// CircleCheckBig aliases
|
|
243
243
|
export {
|
|
244
244
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. This alias will be removed in v1.0 */
|
|
@@ -257,18 +257,18 @@ export {
|
|
|
257
257
|
default as ChevronDownCircle
|
|
258
258
|
} from '../icons/circle-chevron-down';
|
|
259
259
|
|
|
260
|
-
// CircleChevronLeft aliases
|
|
261
|
-
export {
|
|
262
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. This alias will be removed in v1.0 */
|
|
263
|
-
default as ChevronLeftCircle
|
|
264
|
-
} from '../icons/circle-chevron-left';
|
|
265
|
-
|
|
266
260
|
// CircleChevronRight aliases
|
|
267
261
|
export {
|
|
268
262
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronRight} instead. This alias will be removed in v1.0 */
|
|
269
263
|
default as ChevronRightCircle
|
|
270
264
|
} from '../icons/circle-chevron-right';
|
|
271
265
|
|
|
266
|
+
// CircleChevronLeft aliases
|
|
267
|
+
export {
|
|
268
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. This alias will be removed in v1.0 */
|
|
269
|
+
default as ChevronLeftCircle
|
|
270
|
+
} from '../icons/circle-chevron-left';
|
|
271
|
+
|
|
272
272
|
// CircleChevronUp aliases
|
|
273
273
|
export {
|
|
274
274
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronUp} instead. This alias will be removed in v1.0 */
|
|
@@ -311,12 +311,6 @@ export {
|
|
|
311
311
|
default as PauseCircle
|
|
312
312
|
} from '../icons/circle-pause';
|
|
313
313
|
|
|
314
|
-
// CirclePercent aliases
|
|
315
|
-
export {
|
|
316
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePercent} instead. This alias will be removed in v1.0 */
|
|
317
|
-
default as PercentCircle
|
|
318
|
-
} from '../icons/circle-percent';
|
|
319
|
-
|
|
320
314
|
// CirclePlay aliases
|
|
321
315
|
export {
|
|
322
316
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlay} instead. This alias will be removed in v1.0 */
|
|
@@ -329,6 +323,12 @@ export {
|
|
|
329
323
|
default as PlusCircle
|
|
330
324
|
} from '../icons/circle-plus';
|
|
331
325
|
|
|
326
|
+
// CirclePercent aliases
|
|
327
|
+
export {
|
|
328
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePercent} instead. This alias will be removed in v1.0 */
|
|
329
|
+
default as PercentCircle
|
|
330
|
+
} from '../icons/circle-percent';
|
|
331
|
+
|
|
332
332
|
// CirclePower aliases
|
|
333
333
|
export {
|
|
334
334
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePower} instead. This alias will be removed in v1.0 */
|
|
@@ -347,18 +347,18 @@ export {
|
|
|
347
347
|
default as CircleHelp
|
|
348
348
|
} from '../icons/circle-question-mark';
|
|
349
349
|
|
|
350
|
-
// CircleSlash2 aliases
|
|
351
|
-
export {
|
|
352
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleSlash2} instead. This alias will be removed in v1.0 */
|
|
353
|
-
default as CircleSlashed
|
|
354
|
-
} from '../icons/circle-slash-2';
|
|
355
|
-
|
|
356
350
|
// CircleStop aliases
|
|
357
351
|
export {
|
|
358
352
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. This alias will be removed in v1.0 */
|
|
359
353
|
default as StopCircle
|
|
360
354
|
} from '../icons/circle-stop';
|
|
361
355
|
|
|
356
|
+
// CircleSlash2 aliases
|
|
357
|
+
export {
|
|
358
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleSlash2} instead. This alias will be removed in v1.0 */
|
|
359
|
+
default as CircleSlashed
|
|
360
|
+
} from '../icons/circle-slash-2';
|
|
361
|
+
|
|
362
362
|
// CircleUserRound aliases
|
|
363
363
|
export {
|
|
364
364
|
/** @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 */
|
|
@@ -377,18 +377,18 @@ export {
|
|
|
377
377
|
default as XCircle
|
|
378
378
|
} from '../icons/circle-x';
|
|
379
379
|
|
|
380
|
-
// ClipboardPenLine aliases
|
|
381
|
-
export {
|
|
382
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPenLine} instead. This alias will be removed in v1.0 */
|
|
383
|
-
default as ClipboardSignature
|
|
384
|
-
} from '../icons/clipboard-pen-line';
|
|
385
|
-
|
|
386
380
|
// ClipboardPen aliases
|
|
387
381
|
export {
|
|
388
382
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPen} instead. This alias will be removed in v1.0 */
|
|
389
383
|
default as ClipboardEdit
|
|
390
384
|
} from '../icons/clipboard-pen';
|
|
391
385
|
|
|
386
|
+
// ClipboardPenLine aliases
|
|
387
|
+
export {
|
|
388
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPenLine} instead. This alias will be removed in v1.0 */
|
|
389
|
+
default as ClipboardSignature
|
|
390
|
+
} from '../icons/clipboard-pen-line';
|
|
391
|
+
|
|
392
392
|
// CloudDownload aliases
|
|
393
393
|
export {
|
|
394
394
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudDownload} instead. This alias will be removed in v1.0 */
|
|
@@ -503,6 +503,12 @@ export {
|
|
|
503
503
|
default as FilePieChart
|
|
504
504
|
} from '../icons/file-chart-pie';
|
|
505
505
|
|
|
506
|
+
// FileCheckCorner aliases
|
|
507
|
+
export {
|
|
508
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCheckCorner} instead. This alias will be removed in v1.0 */
|
|
509
|
+
default as FileCheck2
|
|
510
|
+
} from '../icons/file-check-corner';
|
|
511
|
+
|
|
506
512
|
// FileChartLine aliases
|
|
507
513
|
export {
|
|
508
514
|
/** @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 */
|
|
@@ -515,12 +521,6 @@ export {
|
|
|
515
521
|
default as FileCode2
|
|
516
522
|
} from '../icons/file-code-corner';
|
|
517
523
|
|
|
518
|
-
// FileCheckCorner aliases
|
|
519
|
-
export {
|
|
520
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCheckCorner} instead. This alias will be removed in v1.0 */
|
|
521
|
-
default as FileCheck2
|
|
522
|
-
} from '../icons/file-check-corner';
|
|
523
|
-
|
|
524
524
|
// FileCog aliases
|
|
525
525
|
export {
|
|
526
526
|
/** @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 */
|
|
@@ -707,18 +707,18 @@ export {
|
|
|
707
707
|
default as HelpingHand
|
|
708
708
|
} from '../icons/hand-helping';
|
|
709
709
|
|
|
710
|
-
// IceCreamBowl aliases
|
|
711
|
-
export {
|
|
712
|
-
/** @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 */
|
|
713
|
-
default as IceCream2
|
|
714
|
-
} from '../icons/ice-cream-bowl';
|
|
715
|
-
|
|
716
710
|
// House aliases
|
|
717
711
|
export {
|
|
718
712
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. This alias will be removed in v1.0 */
|
|
719
713
|
default as Home
|
|
720
714
|
} from '../icons/house';
|
|
721
715
|
|
|
716
|
+
// IceCreamBowl aliases
|
|
717
|
+
export {
|
|
718
|
+
/** @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 */
|
|
719
|
+
default as IceCream2
|
|
720
|
+
} from '../icons/ice-cream-bowl';
|
|
721
|
+
|
|
722
722
|
// IceCreamCone aliases
|
|
723
723
|
export {
|
|
724
724
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. This alias will be removed in v1.0 */
|
|
@@ -893,18 +893,18 @@ export {
|
|
|
893
893
|
default as Edit2
|
|
894
894
|
} from '../icons/pen';
|
|
895
895
|
|
|
896
|
-
// PlugZap aliases
|
|
897
|
-
export {
|
|
898
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PlugZap} instead. This alias will be removed in v1.0 */
|
|
899
|
-
default as PlugZap2
|
|
900
|
-
} from '../icons/plug-zap';
|
|
901
|
-
|
|
902
896
|
// RectangleEllipsis aliases
|
|
903
897
|
export {
|
|
904
898
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RectangleEllipsis} instead. This alias will be removed in v1.0 */
|
|
905
899
|
default as FormInput
|
|
906
900
|
} from '../icons/rectangle-ellipsis';
|
|
907
901
|
|
|
902
|
+
// PlugZap aliases
|
|
903
|
+
export {
|
|
904
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PlugZap} instead. This alias will be removed in v1.0 */
|
|
905
|
+
default as PlugZap2
|
|
906
|
+
} from '../icons/plug-zap';
|
|
907
|
+
|
|
908
908
|
// Rotate3d aliases
|
|
909
909
|
export {
|
|
910
910
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rotate3d} instead. This alias will be removed in v1.0 */
|
|
@@ -1193,12 +1193,6 @@ export {
|
|
|
1193
1193
|
default as ParkingSquare
|
|
1194
1194
|
} from '../icons/square-parking';
|
|
1195
1195
|
|
|
1196
|
-
// SquarePercent aliases
|
|
1197
|
-
export {
|
|
1198
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. This alias will be removed in v1.0 */
|
|
1199
|
-
default as PercentSquare
|
|
1200
|
-
} from '../icons/square-percent';
|
|
1201
|
-
|
|
1202
1196
|
// SquarePen aliases
|
|
1203
1197
|
export {
|
|
1204
1198
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
@@ -1217,6 +1211,12 @@ export {
|
|
|
1217
1211
|
default as PenSquare
|
|
1218
1212
|
} from '../icons/square-pen';
|
|
1219
1213
|
|
|
1214
|
+
// SquarePercent aliases
|
|
1215
|
+
export {
|
|
1216
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. This alias will be removed in v1.0 */
|
|
1217
|
+
default as PercentSquare
|
|
1218
|
+
} from '../icons/square-percent';
|
|
1219
|
+
|
|
1220
1220
|
// SquarePi aliases
|
|
1221
1221
|
export {
|
|
1222
1222
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. This alias will be removed in v1.0 */
|
|
@@ -1247,18 +1247,18 @@ export {
|
|
|
1247
1247
|
default as PowerSquare
|
|
1248
1248
|
} from '../icons/square-power';
|
|
1249
1249
|
|
|
1250
|
-
// SquareScissors aliases
|
|
1251
|
-
export {
|
|
1252
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareScissors} instead. This alias will be removed in v1.0 */
|
|
1253
|
-
default as ScissorsSquare
|
|
1254
|
-
} from '../icons/square-scissors';
|
|
1255
|
-
|
|
1256
1250
|
// SquareSigma aliases
|
|
1257
1251
|
export {
|
|
1258
1252
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSigma} instead. This alias will be removed in v1.0 */
|
|
1259
1253
|
default as SigmaSquare
|
|
1260
1254
|
} from '../icons/square-sigma';
|
|
1261
1255
|
|
|
1256
|
+
// SquareScissors aliases
|
|
1257
|
+
export {
|
|
1258
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareScissors} instead. This alias will be removed in v1.0 */
|
|
1259
|
+
default as ScissorsSquare
|
|
1260
|
+
} from '../icons/square-scissors';
|
|
1261
|
+
|
|
1262
1262
|
// SquareSlash aliases
|
|
1263
1263
|
export {
|
|
1264
1264
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSlash} instead. This alias will be removed in v1.0 */
|
|
@@ -1433,18 +1433,18 @@ export {
|
|
|
1433
1433
|
default as ForkKnifeCrossed
|
|
1434
1434
|
} from '../icons/utensils-crossed';
|
|
1435
1435
|
|
|
1436
|
-
// Utensils aliases
|
|
1437
|
-
export {
|
|
1438
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
1439
|
-
default as ForkKnife
|
|
1440
|
-
} from '../icons/utensils';
|
|
1441
|
-
|
|
1442
1436
|
// WalletMinimal aliases
|
|
1443
1437
|
export {
|
|
1444
1438
|
/** @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 */
|
|
1445
1439
|
default as Wallet2
|
|
1446
1440
|
} from '../icons/wallet-minimal';
|
|
1447
1441
|
|
|
1442
|
+
// Utensils aliases
|
|
1443
|
+
export {
|
|
1444
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
1445
|
+
default as ForkKnife
|
|
1446
|
+
} from '../icons/utensils';
|
|
1447
|
+
|
|
1448
1448
|
// WandSparkles aliases
|
|
1449
1449
|
export {
|
|
1450
1450
|
/** @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 */
|