@lucide/astro 0.534.0 → 0.536.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 +735 -225
- package/src/aliases/prefixed.ts +1087 -575
- package/src/aliases/suffixed.ts +1351 -839
- package/src/icons/a-arrow-down.ts +2 -2
- package/src/icons/a-arrow-up.ts +2 -2
- package/src/icons/book-heart.ts +2 -2
- package/src/icons/bot-message-square.ts +2 -2
- package/src/icons/cake-slice.ts +2 -2
- package/src/icons/calendar-heart.ts +2 -2
- package/src/icons/file-heart.ts +2 -2
- package/src/icons/folder-heart.ts +2 -2
- package/src/icons/hand-fist.ts +18 -0
- package/src/icons/{grab.ts → hand-grab.ts} +4 -4
- package/src/icons/hand-heart.ts +2 -2
- package/src/icons/hospital.ts +2 -2
- package/src/icons/index.ts +148 -146
- package/src/icons/message-circle-code.ts +2 -2
- package/src/icons/message-circle-dashed.ts +2 -2
- package/src/icons/message-circle-heart.ts +2 -2
- package/src/icons/message-circle-more.ts +2 -2
- package/src/icons/message-circle-off.ts +2 -2
- package/src/icons/message-circle-plus.ts +2 -2
- package/src/icons/message-circle-question-mark.ts +2 -2
- package/src/icons/message-circle-reply.ts +2 -2
- package/src/icons/message-circle-warning.ts +2 -2
- package/src/icons/message-circle-x.ts +2 -2
- package/src/icons/message-circle.ts +2 -2
- package/src/icons/message-square-code.ts +2 -2
- package/src/icons/message-square-dashed.ts +2 -2
- package/src/icons/message-square-diff.ts +2 -2
- package/src/icons/message-square-dot.ts +2 -2
- package/src/icons/message-square-heart.ts +2 -2
- package/src/icons/message-square-lock.ts +2 -2
- package/src/icons/message-square-more.ts +2 -2
- package/src/icons/message-square-off.ts +2 -2
- package/src/icons/message-square-plus.ts +2 -2
- package/src/icons/message-square-quote.ts +2 -2
- package/src/icons/message-square-reply.ts +2 -2
- package/src/icons/message-square-share.ts +2 -2
- package/src/icons/message-square-text.ts +2 -2
- package/src/icons/message-square-warning.ts +2 -2
- package/src/icons/message-square-x.ts +2 -2
- package/src/icons/message-square.ts +2 -2
- package/src/icons/messages-square.ts +2 -2
- package/src/icons/scan-heart.ts +2 -2
- package/src/icons/turntable.ts +18 -0
package/src/aliases/aliases.ts
CHANGED
|
@@ -1,39 +1,75 @@
|
|
|
1
1
|
|
|
2
2
|
// AlarmClockCheck aliases
|
|
3
|
-
export {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
export {
|
|
4
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockCheck} instead. This alias will be removed in v1.0 */
|
|
5
|
+
default as AlarmCheck
|
|
6
|
+
} from '../icons/alarm-clock-check';
|
|
7
7
|
|
|
8
8
|
// AlarmClockPlus aliases
|
|
9
|
-
export {
|
|
9
|
+
export {
|
|
10
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockPlus} instead. This alias will be removed in v1.0 */
|
|
11
|
+
default as AlarmPlus
|
|
12
|
+
} from '../icons/alarm-clock-plus';
|
|
13
|
+
|
|
14
|
+
// AlarmClockMinus aliases
|
|
15
|
+
export {
|
|
16
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockMinus} instead. This alias will be removed in v1.0 */
|
|
17
|
+
default as AlarmMinus
|
|
18
|
+
} from '../icons/alarm-clock-minus';
|
|
10
19
|
|
|
11
20
|
// ArrowDownAZ aliases
|
|
12
|
-
export {
|
|
21
|
+
export {
|
|
22
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownAZ} instead. This alias will be removed in v1.0 */
|
|
23
|
+
default as ArrowDownAz
|
|
24
|
+
} from '../icons/arrow-down-a-z';
|
|
13
25
|
|
|
14
26
|
// ArrowDownWideNarrow aliases
|
|
15
|
-
export {
|
|
27
|
+
export {
|
|
28
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownWideNarrow} instead. This alias will be removed in v1.0 */
|
|
29
|
+
default as SortDesc
|
|
30
|
+
} from '../icons/arrow-down-wide-narrow';
|
|
16
31
|
|
|
17
32
|
// ArrowDownZA aliases
|
|
18
|
-
export {
|
|
33
|
+
export {
|
|
34
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownZA} instead. This alias will be removed in v1.0 */
|
|
35
|
+
default as ArrowDownZa
|
|
36
|
+
} from '../icons/arrow-down-z-a';
|
|
19
37
|
|
|
20
38
|
// ArrowUpAZ aliases
|
|
21
|
-
export {
|
|
39
|
+
export {
|
|
40
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpAZ} instead. This alias will be removed in v1.0 */
|
|
41
|
+
default as ArrowUpAz
|
|
42
|
+
} from '../icons/arrow-up-a-z';
|
|
22
43
|
|
|
23
44
|
// ArrowUpNarrowWide aliases
|
|
24
|
-
export {
|
|
45
|
+
export {
|
|
46
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. This alias will be removed in v1.0 */
|
|
47
|
+
default as SortAsc
|
|
48
|
+
} from '../icons/arrow-up-narrow-wide';
|
|
25
49
|
|
|
26
50
|
// ArrowUpZA aliases
|
|
27
|
-
export {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
51
|
+
export {
|
|
52
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. This alias will be removed in v1.0 */
|
|
53
|
+
default as ArrowUpZa
|
|
54
|
+
} from '../icons/arrow-up-z-a';
|
|
31
55
|
|
|
32
56
|
// BadgeCheck aliases
|
|
33
|
-
export {
|
|
57
|
+
export {
|
|
58
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. This alias will be removed in v1.0 */
|
|
59
|
+
default as Verified
|
|
60
|
+
} from '../icons/badge-check';
|
|
61
|
+
|
|
62
|
+
// Axis3d aliases
|
|
63
|
+
export {
|
|
64
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Axis3d} instead. This alias will be removed in v1.0 */
|
|
65
|
+
default as Axis3D
|
|
66
|
+
} from '../icons/axis-3d';
|
|
34
67
|
|
|
35
68
|
// BadgeQuestionMark aliases
|
|
36
|
-
export {
|
|
69
|
+
export {
|
|
70
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. This alias will be removed in v1.0 */
|
|
71
|
+
default as BadgeHelp
|
|
72
|
+
} from '../icons/badge-question-mark';
|
|
37
73
|
|
|
38
74
|
// BetweenHorizontalEnd aliases
|
|
39
75
|
export {
|
|
@@ -41,20 +77,29 @@ export {
|
|
|
41
77
|
default as BetweenHorizonalEnd
|
|
42
78
|
} from '../icons/between-horizontal-end';
|
|
43
79
|
|
|
44
|
-
// BookDashed aliases
|
|
45
|
-
export { default as BookTemplate } from '../icons/book-dashed';
|
|
46
|
-
|
|
47
80
|
// BetweenHorizontalStart aliases
|
|
48
81
|
export {
|
|
49
82
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
|
|
50
83
|
default as BetweenHorizonalStart
|
|
51
84
|
} from '../icons/between-horizontal-start';
|
|
52
85
|
|
|
86
|
+
// BookDashed aliases
|
|
87
|
+
export {
|
|
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 */
|
|
89
|
+
default as BookTemplate
|
|
90
|
+
} from '../icons/book-dashed';
|
|
91
|
+
|
|
53
92
|
// Braces aliases
|
|
54
|
-
export {
|
|
93
|
+
export {
|
|
94
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Braces} instead. This alias will be removed in v1.0 */
|
|
95
|
+
default as CurlyBraces
|
|
96
|
+
} from '../icons/braces';
|
|
55
97
|
|
|
56
98
|
// Captions aliases
|
|
57
|
-
export {
|
|
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';
|
|
58
103
|
|
|
59
104
|
// ChartArea aliases
|
|
60
105
|
export {
|
|
@@ -98,36 +143,36 @@ export {
|
|
|
98
143
|
default as BarChart3
|
|
99
144
|
} from '../icons/chart-column';
|
|
100
145
|
|
|
101
|
-
// ChartLine aliases
|
|
102
|
-
export {
|
|
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 */
|
|
104
|
-
default as LineChart
|
|
105
|
-
} from '../icons/chart-line';
|
|
106
|
-
|
|
107
146
|
// ChartNoAxesColumnIncreasing aliases
|
|
108
147
|
export {
|
|
109
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 */
|
|
110
149
|
default as BarChart
|
|
111
150
|
} from '../icons/chart-no-axes-column-increasing';
|
|
112
151
|
|
|
152
|
+
// ChartLine aliases
|
|
153
|
+
export {
|
|
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';
|
|
157
|
+
|
|
113
158
|
// ChartNoAxesColumn aliases
|
|
114
159
|
export {
|
|
115
160
|
/** @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 */
|
|
116
161
|
default as BarChart2
|
|
117
162
|
} from '../icons/chart-no-axes-column';
|
|
118
163
|
|
|
119
|
-
// ChartNoAxesGantt aliases
|
|
120
|
-
export {
|
|
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 */
|
|
122
|
-
default as GanttChart
|
|
123
|
-
} from '../icons/chart-no-axes-gantt';
|
|
124
|
-
|
|
125
164
|
// ChartPie aliases
|
|
126
165
|
export {
|
|
127
166
|
/** @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 */
|
|
128
167
|
default as PieChart
|
|
129
168
|
} from '../icons/chart-pie';
|
|
130
169
|
|
|
170
|
+
// ChartNoAxesGantt aliases
|
|
171
|
+
export {
|
|
172
|
+
/** @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 */
|
|
173
|
+
default as GanttChart
|
|
174
|
+
} from '../icons/chart-no-axes-gantt';
|
|
175
|
+
|
|
131
176
|
// ChartScatter aliases
|
|
132
177
|
export {
|
|
133
178
|
/** @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 */
|
|
@@ -135,91 +180,172 @@ export {
|
|
|
135
180
|
} from '../icons/chart-scatter';
|
|
136
181
|
|
|
137
182
|
// CircleAlert aliases
|
|
138
|
-
export {
|
|
183
|
+
export {
|
|
184
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. This alias will be removed in v1.0 */
|
|
185
|
+
default as AlertCircle
|
|
186
|
+
} from '../icons/circle-alert';
|
|
139
187
|
|
|
140
188
|
// CircleArrowDown aliases
|
|
141
|
-
export {
|
|
189
|
+
export {
|
|
190
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowDown} instead. This alias will be removed in v1.0 */
|
|
191
|
+
default as ArrowDownCircle
|
|
192
|
+
} from '../icons/circle-arrow-down';
|
|
142
193
|
|
|
143
194
|
// CircleArrowLeft aliases
|
|
144
|
-
export {
|
|
195
|
+
export {
|
|
196
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowLeft} instead. This alias will be removed in v1.0 */
|
|
197
|
+
default as ArrowLeftCircle
|
|
198
|
+
} from '../icons/circle-arrow-left';
|
|
145
199
|
|
|
146
200
|
// CircleArrowOutDownLeft aliases
|
|
147
|
-
export {
|
|
201
|
+
export {
|
|
202
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
203
|
+
default as ArrowDownLeftFromCircle
|
|
204
|
+
} from '../icons/circle-arrow-out-down-left';
|
|
148
205
|
|
|
149
206
|
// CircleArrowOutDownRight aliases
|
|
150
|
-
export {
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
207
|
+
export {
|
|
208
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
209
|
+
default as ArrowDownRightFromCircle
|
|
210
|
+
} from '../icons/circle-arrow-out-down-right';
|
|
154
211
|
|
|
155
212
|
// CircleArrowOutUpRight aliases
|
|
156
|
-
export {
|
|
213
|
+
export {
|
|
214
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
215
|
+
default as ArrowUpRightFromCircle
|
|
216
|
+
} from '../icons/circle-arrow-out-up-right';
|
|
157
217
|
|
|
158
218
|
// CircleArrowRight aliases
|
|
159
|
-
export {
|
|
219
|
+
export {
|
|
220
|
+
/** @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 */
|
|
221
|
+
default as ArrowRightCircle
|
|
222
|
+
} from '../icons/circle-arrow-right';
|
|
223
|
+
|
|
224
|
+
// CircleArrowOutUpLeft aliases
|
|
225
|
+
export {
|
|
226
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
227
|
+
default as ArrowUpLeftFromCircle
|
|
228
|
+
} from '../icons/circle-arrow-out-up-left';
|
|
160
229
|
|
|
161
230
|
// CircleArrowUp aliases
|
|
162
|
-
export {
|
|
231
|
+
export {
|
|
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 */
|
|
233
|
+
default as ArrowUpCircle
|
|
234
|
+
} from '../icons/circle-arrow-up';
|
|
163
235
|
|
|
164
236
|
// CircleCheckBig aliases
|
|
165
|
-
export {
|
|
237
|
+
export {
|
|
238
|
+
/** @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 */
|
|
239
|
+
default as CheckCircle
|
|
240
|
+
} from '../icons/circle-check-big';
|
|
166
241
|
|
|
167
242
|
// CircleCheck aliases
|
|
168
|
-
export {
|
|
243
|
+
export {
|
|
244
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheck} instead. This alias will be removed in v1.0 */
|
|
245
|
+
default as CheckCircle2
|
|
246
|
+
} from '../icons/circle-check';
|
|
169
247
|
|
|
170
248
|
// CircleChevronDown aliases
|
|
171
|
-
export {
|
|
249
|
+
export {
|
|
250
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. This alias will be removed in v1.0 */
|
|
251
|
+
default as ChevronDownCircle
|
|
252
|
+
} from '../icons/circle-chevron-down';
|
|
172
253
|
|
|
173
254
|
// CircleChevronLeft aliases
|
|
174
|
-
export {
|
|
255
|
+
export {
|
|
256
|
+
/** @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 */
|
|
257
|
+
default as ChevronLeftCircle
|
|
258
|
+
} from '../icons/circle-chevron-left';
|
|
175
259
|
|
|
176
260
|
// CircleChevronRight aliases
|
|
177
|
-
export {
|
|
261
|
+
export {
|
|
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 */
|
|
263
|
+
default as ChevronRightCircle
|
|
264
|
+
} from '../icons/circle-chevron-right';
|
|
178
265
|
|
|
179
266
|
// CircleChevronUp aliases
|
|
180
|
-
export {
|
|
267
|
+
export {
|
|
268
|
+
/** @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 */
|
|
269
|
+
default as ChevronUpCircle
|
|
270
|
+
} from '../icons/circle-chevron-up';
|
|
181
271
|
|
|
182
272
|
// CircleDivide aliases
|
|
183
|
-
export {
|
|
273
|
+
export {
|
|
274
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. This alias will be removed in v1.0 */
|
|
275
|
+
default as DivideCircle
|
|
276
|
+
} from '../icons/circle-divide';
|
|
184
277
|
|
|
185
278
|
// CircleGauge aliases
|
|
186
|
-
export {
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
279
|
+
export {
|
|
280
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleGauge} instead. This alias will be removed in v1.0 */
|
|
281
|
+
default as GaugeCircle
|
|
282
|
+
} from '../icons/circle-gauge';
|
|
190
283
|
|
|
191
284
|
// CircleParkingOff aliases
|
|
192
|
-
export {
|
|
285
|
+
export {
|
|
286
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. This alias will be removed in v1.0 */
|
|
287
|
+
default as ParkingCircleOff
|
|
288
|
+
} from '../icons/circle-parking-off';
|
|
193
289
|
|
|
194
|
-
//
|
|
195
|
-
export {
|
|
290
|
+
// CircleMinus aliases
|
|
291
|
+
export {
|
|
292
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. This alias will be removed in v1.0 */
|
|
293
|
+
default as MinusCircle
|
|
294
|
+
} from '../icons/circle-minus';
|
|
196
295
|
|
|
197
296
|
// CirclePause aliases
|
|
198
|
-
export {
|
|
297
|
+
export {
|
|
298
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. This alias will be removed in v1.0 */
|
|
299
|
+
default as PauseCircle
|
|
300
|
+
} from '../icons/circle-pause';
|
|
301
|
+
|
|
302
|
+
// CircleParking aliases
|
|
303
|
+
export {
|
|
304
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. This alias will be removed in v1.0 */
|
|
305
|
+
default as ParkingCircle
|
|
306
|
+
} from '../icons/circle-parking';
|
|
199
307
|
|
|
200
308
|
// CirclePercent aliases
|
|
201
|
-
export {
|
|
309
|
+
export {
|
|
310
|
+
/** @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 */
|
|
311
|
+
default as PercentCircle
|
|
312
|
+
} from '../icons/circle-percent';
|
|
202
313
|
|
|
203
314
|
// CirclePlay aliases
|
|
204
|
-
export {
|
|
315
|
+
export {
|
|
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 */
|
|
317
|
+
default as PlayCircle
|
|
318
|
+
} from '../icons/circle-play';
|
|
205
319
|
|
|
206
320
|
// CirclePlus aliases
|
|
207
|
-
export {
|
|
321
|
+
export {
|
|
322
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlus} instead. This alias will be removed in v1.0 */
|
|
323
|
+
default as PlusCircle
|
|
324
|
+
} from '../icons/circle-plus';
|
|
208
325
|
|
|
209
326
|
// CirclePower aliases
|
|
210
|
-
export {
|
|
327
|
+
export {
|
|
328
|
+
/** @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 */
|
|
329
|
+
default as PowerCircle
|
|
330
|
+
} from '../icons/circle-power';
|
|
211
331
|
|
|
212
332
|
// CircleQuestionMark aliases
|
|
213
|
-
export {
|
|
333
|
+
export {
|
|
334
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
335
|
+
default as HelpCircle
|
|
336
|
+
} from '../icons/circle-question-mark';
|
|
214
337
|
|
|
215
338
|
// CircleQuestionMark aliases
|
|
216
|
-
export {
|
|
339
|
+
export {
|
|
340
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
341
|
+
default as CircleHelp
|
|
342
|
+
} from '../icons/circle-question-mark';
|
|
217
343
|
|
|
218
344
|
// CircleSlash2 aliases
|
|
219
|
-
export {
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
345
|
+
export {
|
|
346
|
+
/** @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 */
|
|
347
|
+
default as CircleSlashed
|
|
348
|
+
} from '../icons/circle-slash-2';
|
|
223
349
|
|
|
224
350
|
// CircleUserRound aliases
|
|
225
351
|
export {
|
|
@@ -227,23 +353,47 @@ export {
|
|
|
227
353
|
default as UserCircle2
|
|
228
354
|
} from '../icons/circle-user-round';
|
|
229
355
|
|
|
230
|
-
//
|
|
231
|
-
export {
|
|
356
|
+
// CircleStop aliases
|
|
357
|
+
export {
|
|
358
|
+
/** @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
|
+
default as StopCircle
|
|
360
|
+
} from '../icons/circle-stop';
|
|
232
361
|
|
|
233
362
|
// CircleUser aliases
|
|
234
|
-
export {
|
|
363
|
+
export {
|
|
364
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUser} instead. This alias will be removed in v1.0 */
|
|
365
|
+
default as UserCircle
|
|
366
|
+
} from '../icons/circle-user';
|
|
367
|
+
|
|
368
|
+
// CircleX aliases
|
|
369
|
+
export {
|
|
370
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleX} instead. This alias will be removed in v1.0 */
|
|
371
|
+
default as XCircle
|
|
372
|
+
} from '../icons/circle-x';
|
|
235
373
|
|
|
236
374
|
// ClipboardPenLine aliases
|
|
237
|
-
export {
|
|
375
|
+
export {
|
|
376
|
+
/** @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 */
|
|
377
|
+
default as ClipboardSignature
|
|
378
|
+
} from '../icons/clipboard-pen-line';
|
|
238
379
|
|
|
239
380
|
// ClipboardPen aliases
|
|
240
|
-
export {
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
381
|
+
export {
|
|
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 */
|
|
383
|
+
default as ClipboardEdit
|
|
384
|
+
} from '../icons/clipboard-pen';
|
|
244
385
|
|
|
245
386
|
// CloudDownload aliases
|
|
246
|
-
export {
|
|
387
|
+
export {
|
|
388
|
+
/** @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 */
|
|
389
|
+
default as DownloadCloud
|
|
390
|
+
} from '../icons/cloud-download';
|
|
391
|
+
|
|
392
|
+
// CloudUpload aliases
|
|
393
|
+
export {
|
|
394
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudUpload} instead. This alias will be removed in v1.0 */
|
|
395
|
+
default as UploadCloud
|
|
396
|
+
} from '../icons/cloud-upload';
|
|
247
397
|
|
|
248
398
|
// CodeXml aliases
|
|
249
399
|
export {
|
|
@@ -252,16 +402,28 @@ export {
|
|
|
252
402
|
} from '../icons/code-xml';
|
|
253
403
|
|
|
254
404
|
// Columns2 aliases
|
|
255
|
-
export {
|
|
405
|
+
export {
|
|
406
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. This alias will be removed in v1.0 */
|
|
407
|
+
default as Columns
|
|
408
|
+
} from '../icons/columns-2';
|
|
256
409
|
|
|
257
410
|
// Columns3Cog aliases
|
|
258
|
-
export {
|
|
411
|
+
export {
|
|
412
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
413
|
+
default as ColumnsSettings
|
|
414
|
+
} from '../icons/columns-3-cog';
|
|
259
415
|
|
|
260
416
|
// Columns3Cog aliases
|
|
261
|
-
export {
|
|
417
|
+
export {
|
|
418
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
419
|
+
default as TableConfig
|
|
420
|
+
} from '../icons/columns-3-cog';
|
|
262
421
|
|
|
263
422
|
// Columns3 aliases
|
|
264
|
-
export {
|
|
423
|
+
export {
|
|
424
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3} instead. This alias will be removed in v1.0 */
|
|
425
|
+
default as PanelsLeftRight
|
|
426
|
+
} from '../icons/columns-3';
|
|
265
427
|
|
|
266
428
|
// ContactRound aliases
|
|
267
429
|
export {
|
|
@@ -270,7 +432,10 @@ export {
|
|
|
270
432
|
} from '../icons/contact-round';
|
|
271
433
|
|
|
272
434
|
// DiamondPercent aliases
|
|
273
|
-
export {
|
|
435
|
+
export {
|
|
436
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. This alias will be removed in v1.0 */
|
|
437
|
+
default as PercentDiamond
|
|
438
|
+
} from '../icons/diamond-percent';
|
|
274
439
|
|
|
275
440
|
// Earth aliases
|
|
276
441
|
export {
|
|
@@ -279,13 +444,22 @@ export {
|
|
|
279
444
|
} from '../icons/earth';
|
|
280
445
|
|
|
281
446
|
// EllipsisVertical aliases
|
|
282
|
-
export {
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
447
|
+
export {
|
|
448
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. This alias will be removed in v1.0 */
|
|
449
|
+
default as MoreVertical
|
|
450
|
+
} from '../icons/ellipsis-vertical';
|
|
286
451
|
|
|
287
452
|
// FileAxis3d aliases
|
|
288
|
-
export {
|
|
453
|
+
export {
|
|
454
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. This alias will be removed in v1.0 */
|
|
455
|
+
default as FileAxis3D
|
|
456
|
+
} from '../icons/file-axis-3d';
|
|
457
|
+
|
|
458
|
+
// Ellipsis aliases
|
|
459
|
+
export {
|
|
460
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. This alias will be removed in v1.0 */
|
|
461
|
+
default as MoreHorizontal
|
|
462
|
+
} from '../icons/ellipsis';
|
|
289
463
|
|
|
290
464
|
// FileChartColumnIncreasing aliases
|
|
291
465
|
export {
|
|
@@ -293,18 +467,18 @@ export {
|
|
|
293
467
|
default as FileBarChart
|
|
294
468
|
} from '../icons/file-chart-column-increasing';
|
|
295
469
|
|
|
296
|
-
// FileChartColumn aliases
|
|
297
|
-
export {
|
|
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 */
|
|
299
|
-
default as FileBarChart2
|
|
300
|
-
} from '../icons/file-chart-column';
|
|
301
|
-
|
|
302
470
|
// FileChartLine aliases
|
|
303
471
|
export {
|
|
304
472
|
/** @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 */
|
|
305
473
|
default as FileLineChart
|
|
306
474
|
} from '../icons/file-chart-line';
|
|
307
475
|
|
|
476
|
+
// FileChartColumn aliases
|
|
477
|
+
export {
|
|
478
|
+
/** @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 */
|
|
479
|
+
default as FileBarChart2
|
|
480
|
+
} from '../icons/file-chart-column';
|
|
481
|
+
|
|
308
482
|
// FileChartPie aliases
|
|
309
483
|
export {
|
|
310
484
|
/** @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 */
|
|
@@ -317,20 +491,35 @@ export {
|
|
|
317
491
|
default as FileCog2
|
|
318
492
|
} from '../icons/file-cog';
|
|
319
493
|
|
|
320
|
-
// FilePenLine aliases
|
|
321
|
-
export { default as FileSignature } from '../icons/file-pen-line';
|
|
322
|
-
|
|
323
494
|
// FilePen aliases
|
|
324
|
-
export {
|
|
495
|
+
export {
|
|
496
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePen} instead. This alias will be removed in v1.0 */
|
|
497
|
+
default as FileEdit
|
|
498
|
+
} from '../icons/file-pen';
|
|
499
|
+
|
|
500
|
+
// FilePenLine aliases
|
|
501
|
+
export {
|
|
502
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePenLine} instead. This alias will be removed in v1.0 */
|
|
503
|
+
default as FileSignature
|
|
504
|
+
} from '../icons/file-pen-line';
|
|
325
505
|
|
|
326
506
|
// FilePlay aliases
|
|
327
|
-
export {
|
|
507
|
+
export {
|
|
508
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlay} instead. This alias will be removed in v1.0 */
|
|
509
|
+
default as FileVideo
|
|
510
|
+
} from '../icons/file-play';
|
|
328
511
|
|
|
329
512
|
// FileQuestionMark aliases
|
|
330
|
-
export {
|
|
513
|
+
export {
|
|
514
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileQuestionMark} instead. This alias will be removed in v1.0 */
|
|
515
|
+
default as FileQuestion
|
|
516
|
+
} from '../icons/file-question-mark';
|
|
331
517
|
|
|
332
518
|
// FileVideoCamera aliases
|
|
333
|
-
export {
|
|
519
|
+
export {
|
|
520
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. This alias will be removed in v1.0 */
|
|
521
|
+
default as FileVideo2
|
|
522
|
+
} from '../icons/file-video-camera';
|
|
334
523
|
|
|
335
524
|
// FolderCog aliases
|
|
336
525
|
export {
|
|
@@ -339,7 +528,10 @@ export {
|
|
|
339
528
|
} from '../icons/folder-cog';
|
|
340
529
|
|
|
341
530
|
// FolderPen aliases
|
|
342
|
-
export {
|
|
531
|
+
export {
|
|
532
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderPen} instead. This alias will be removed in v1.0 */
|
|
533
|
+
default as FolderEdit
|
|
534
|
+
} from '../icons/folder-pen';
|
|
343
535
|
|
|
344
536
|
// FunnelX aliases
|
|
345
537
|
export {
|
|
@@ -353,32 +545,65 @@ export {
|
|
|
353
545
|
default as Filter
|
|
354
546
|
} from '../icons/funnel';
|
|
355
547
|
|
|
356
|
-
// Grid2x2Check aliases
|
|
357
|
-
export { default as Grid2X2Check } from '../icons/grid-2x2-check';
|
|
358
|
-
|
|
359
548
|
// GitCommitHorizontal aliases
|
|
360
|
-
export {
|
|
549
|
+
export {
|
|
550
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link GitCommitHorizontal} instead. This alias will be removed in v1.0 */
|
|
551
|
+
default as GitCommit
|
|
552
|
+
} from '../icons/git-commit-horizontal';
|
|
361
553
|
|
|
362
|
-
//
|
|
363
|
-
export {
|
|
554
|
+
// Grid2x2Check aliases
|
|
555
|
+
export {
|
|
556
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Check} instead. This alias will be removed in v1.0 */
|
|
557
|
+
default as Grid2X2Check
|
|
558
|
+
} from '../icons/grid-2x2-check';
|
|
364
559
|
|
|
365
560
|
// Grid2x2X aliases
|
|
366
|
-
export {
|
|
561
|
+
export {
|
|
562
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. This alias will be removed in v1.0 */
|
|
563
|
+
default as Grid2X2X
|
|
564
|
+
} from '../icons/grid-2x2-x';
|
|
367
565
|
|
|
368
566
|
// Grid2x2 aliases
|
|
369
|
-
export {
|
|
567
|
+
export {
|
|
568
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. This alias will be removed in v1.0 */
|
|
569
|
+
default as Grid2X2
|
|
570
|
+
} from '../icons/grid-2x2';
|
|
571
|
+
|
|
572
|
+
// Grid2x2Plus aliases
|
|
573
|
+
export {
|
|
574
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Plus} instead. This alias will be removed in v1.0 */
|
|
575
|
+
default as Grid2X2Plus
|
|
576
|
+
} from '../icons/grid-2x2-plus';
|
|
370
577
|
|
|
371
578
|
// Grid3x3 aliases
|
|
372
|
-
export {
|
|
579
|
+
export {
|
|
580
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid3x3} instead. This alias will be removed in v1.0 */
|
|
581
|
+
default as Grid
|
|
582
|
+
} from '../icons/grid-3x3';
|
|
373
583
|
|
|
374
584
|
// Grid3x3 aliases
|
|
375
|
-
export {
|
|
585
|
+
export {
|
|
586
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid3x3} instead. This alias will be removed in v1.0 */
|
|
587
|
+
default as Grid3X3
|
|
588
|
+
} from '../icons/grid-3x3';
|
|
589
|
+
|
|
590
|
+
// HandGrab aliases
|
|
591
|
+
export {
|
|
592
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. This alias will be removed in v1.0 */
|
|
593
|
+
default as Grab
|
|
594
|
+
} from '../icons/hand-grab';
|
|
376
595
|
|
|
377
596
|
// HandHelping aliases
|
|
378
|
-
export {
|
|
597
|
+
export {
|
|
598
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandHelping} instead. This alias will be removed in v1.0 */
|
|
599
|
+
default as HelpingHand
|
|
600
|
+
} from '../icons/hand-helping';
|
|
379
601
|
|
|
380
602
|
// House aliases
|
|
381
|
-
export {
|
|
603
|
+
export {
|
|
604
|
+
/** @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 */
|
|
605
|
+
default as Home
|
|
606
|
+
} from '../icons/house';
|
|
382
607
|
|
|
383
608
|
// IceCreamBowl aliases
|
|
384
609
|
export {
|
|
@@ -387,13 +612,22 @@ export {
|
|
|
387
612
|
} from '../icons/ice-cream-bowl';
|
|
388
613
|
|
|
389
614
|
// IceCreamCone aliases
|
|
390
|
-
export {
|
|
615
|
+
export {
|
|
616
|
+
/** @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 */
|
|
617
|
+
default as IceCream
|
|
618
|
+
} from '../icons/ice-cream-cone';
|
|
391
619
|
|
|
392
620
|
// IndentDecrease aliases
|
|
393
|
-
export {
|
|
621
|
+
export {
|
|
622
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IndentDecrease} instead. This alias will be removed in v1.0 */
|
|
623
|
+
default as Outdent
|
|
624
|
+
} from '../icons/indent-decrease';
|
|
394
625
|
|
|
395
626
|
// IndentIncrease aliases
|
|
396
|
-
export {
|
|
627
|
+
export {
|
|
628
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IndentIncrease} instead. This alias will be removed in v1.0 */
|
|
629
|
+
default as Indent
|
|
630
|
+
} from '../icons/indent-increase';
|
|
397
631
|
|
|
398
632
|
// LaptopMinimal aliases
|
|
399
633
|
export {
|
|
@@ -402,19 +636,34 @@ export {
|
|
|
402
636
|
} from '../icons/laptop-minimal';
|
|
403
637
|
|
|
404
638
|
// Layers aliases
|
|
405
|
-
export {
|
|
639
|
+
export {
|
|
640
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. This alias will be removed in v1.0 */
|
|
641
|
+
default as Layers3
|
|
642
|
+
} from '../icons/layers';
|
|
406
643
|
|
|
407
644
|
// LoaderCircle aliases
|
|
408
|
-
export {
|
|
645
|
+
export {
|
|
646
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. This alias will be removed in v1.0 */
|
|
647
|
+
default as Loader2
|
|
648
|
+
} from '../icons/loader-circle';
|
|
409
649
|
|
|
410
650
|
// LockKeyholeOpen aliases
|
|
411
|
-
export {
|
|
651
|
+
export {
|
|
652
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. This alias will be removed in v1.0 */
|
|
653
|
+
default as UnlockKeyhole
|
|
654
|
+
} from '../icons/lock-keyhole-open';
|
|
412
655
|
|
|
413
656
|
// LockOpen aliases
|
|
414
|
-
export {
|
|
657
|
+
export {
|
|
658
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockOpen} instead. This alias will be removed in v1.0 */
|
|
659
|
+
default as Unlock
|
|
660
|
+
} from '../icons/lock-open';
|
|
415
661
|
|
|
416
662
|
// MailQuestionMark aliases
|
|
417
|
-
export {
|
|
663
|
+
export {
|
|
664
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MailQuestionMark} instead. This alias will be removed in v1.0 */
|
|
665
|
+
default as MailQuestion
|
|
666
|
+
} from '../icons/mail-question-mark';
|
|
418
667
|
|
|
419
668
|
// MapPinPen aliases
|
|
420
669
|
export {
|
|
@@ -423,7 +672,10 @@ export {
|
|
|
423
672
|
} from '../icons/map-pin-pen';
|
|
424
673
|
|
|
425
674
|
// MessageCircleQuestionMark aliases
|
|
426
|
-
export {
|
|
675
|
+
export {
|
|
676
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
677
|
+
default as MessageCircleQuestion
|
|
678
|
+
} from '../icons/message-circle-question-mark';
|
|
427
679
|
|
|
428
680
|
// MicVocal aliases
|
|
429
681
|
export {
|
|
@@ -432,43 +684,82 @@ export {
|
|
|
432
684
|
} from '../icons/mic-vocal';
|
|
433
685
|
|
|
434
686
|
// Move3d aliases
|
|
435
|
-
export {
|
|
687
|
+
export {
|
|
688
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Move3d} instead. This alias will be removed in v1.0 */
|
|
689
|
+
default as Move3D
|
|
690
|
+
} from '../icons/move-3d';
|
|
436
691
|
|
|
437
692
|
// OctagonAlert aliases
|
|
438
|
-
export {
|
|
693
|
+
export {
|
|
694
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. This alias will be removed in v1.0 */
|
|
695
|
+
default as AlertOctagon
|
|
696
|
+
} from '../icons/octagon-alert';
|
|
439
697
|
|
|
440
698
|
// OctagonPause aliases
|
|
441
|
-
export {
|
|
699
|
+
export {
|
|
700
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. This alias will be removed in v1.0 */
|
|
701
|
+
default as PauseOctagon
|
|
702
|
+
} from '../icons/octagon-pause';
|
|
442
703
|
|
|
443
704
|
// OctagonX aliases
|
|
444
|
-
export {
|
|
705
|
+
export {
|
|
706
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. This alias will be removed in v1.0 */
|
|
707
|
+
default as XOctagon
|
|
708
|
+
} from '../icons/octagon-x';
|
|
445
709
|
|
|
446
710
|
// PaintbrushVertical aliases
|
|
447
|
-
export {
|
|
711
|
+
export {
|
|
712
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PaintbrushVertical} instead. This alias will be removed in v1.0 */
|
|
713
|
+
default as Paintbrush2
|
|
714
|
+
} from '../icons/paintbrush-vertical';
|
|
448
715
|
|
|
449
716
|
// PanelBottomDashed aliases
|
|
450
|
-
export {
|
|
717
|
+
export {
|
|
718
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelBottomDashed} instead. This alias will be removed in v1.0 */
|
|
719
|
+
default as PanelBottomInactive
|
|
720
|
+
} from '../icons/panel-bottom-dashed';
|
|
451
721
|
|
|
452
722
|
// PanelLeftClose aliases
|
|
453
|
-
export {
|
|
723
|
+
export {
|
|
724
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftClose} instead. This alias will be removed in v1.0 */
|
|
725
|
+
default as SidebarClose
|
|
726
|
+
} from '../icons/panel-left-close';
|
|
454
727
|
|
|
455
728
|
// PanelLeftDashed aliases
|
|
456
|
-
export {
|
|
729
|
+
export {
|
|
730
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftDashed} instead. This alias will be removed in v1.0 */
|
|
731
|
+
default as PanelLeftInactive
|
|
732
|
+
} from '../icons/panel-left-dashed';
|
|
457
733
|
|
|
458
734
|
// PanelLeftOpen aliases
|
|
459
|
-
export {
|
|
735
|
+
export {
|
|
736
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftOpen} instead. This alias will be removed in v1.0 */
|
|
737
|
+
default as SidebarOpen
|
|
738
|
+
} from '../icons/panel-left-open';
|
|
460
739
|
|
|
461
740
|
// PanelLeft aliases
|
|
462
|
-
export {
|
|
741
|
+
export {
|
|
742
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeft} instead. This alias will be removed in v1.0 */
|
|
743
|
+
default as Sidebar
|
|
744
|
+
} from '../icons/panel-left';
|
|
463
745
|
|
|
464
746
|
// PanelRightDashed aliases
|
|
465
|
-
export {
|
|
747
|
+
export {
|
|
748
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelRightDashed} instead. This alias will be removed in v1.0 */
|
|
749
|
+
default as PanelRightInactive
|
|
750
|
+
} from '../icons/panel-right-dashed';
|
|
466
751
|
|
|
467
752
|
// PanelTopDashed aliases
|
|
468
|
-
export {
|
|
753
|
+
export {
|
|
754
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelTopDashed} instead. This alias will be removed in v1.0 */
|
|
755
|
+
default as PanelTopInactive
|
|
756
|
+
} from '../icons/panel-top-dashed';
|
|
469
757
|
|
|
470
758
|
// PanelsTopLeft aliases
|
|
471
|
-
export {
|
|
759
|
+
export {
|
|
760
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelsTopLeft} instead. This alias will be removed in v1.0 */
|
|
761
|
+
default as Layout
|
|
762
|
+
} from '../icons/panels-top-left';
|
|
472
763
|
|
|
473
764
|
// PenLine aliases
|
|
474
765
|
export {
|
|
@@ -483,22 +774,40 @@ export {
|
|
|
483
774
|
} from '../icons/pen';
|
|
484
775
|
|
|
485
776
|
// PlugZap aliases
|
|
486
|
-
export {
|
|
777
|
+
export {
|
|
778
|
+
/** @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 */
|
|
779
|
+
default as PlugZap2
|
|
780
|
+
} from '../icons/plug-zap';
|
|
487
781
|
|
|
488
782
|
// RectangleEllipsis aliases
|
|
489
|
-
export {
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
783
|
+
export {
|
|
784
|
+
/** @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 */
|
|
785
|
+
default as FormInput
|
|
786
|
+
} from '../icons/rectangle-ellipsis';
|
|
493
787
|
|
|
494
788
|
// Rotate3d aliases
|
|
495
|
-
export {
|
|
789
|
+
export {
|
|
790
|
+
/** @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 */
|
|
791
|
+
default as Rotate3D
|
|
792
|
+
} from '../icons/rotate-3d';
|
|
793
|
+
|
|
794
|
+
// Rows2 aliases
|
|
795
|
+
export {
|
|
796
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. This alias will be removed in v1.0 */
|
|
797
|
+
default as Rows
|
|
798
|
+
} from '../icons/rows-2';
|
|
496
799
|
|
|
497
800
|
// Rows3 aliases
|
|
498
|
-
export {
|
|
801
|
+
export {
|
|
802
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. This alias will be removed in v1.0 */
|
|
803
|
+
default as PanelsTopBottom
|
|
804
|
+
} from '../icons/rows-3';
|
|
499
805
|
|
|
500
806
|
// Scale3d aliases
|
|
501
|
-
export {
|
|
807
|
+
export {
|
|
808
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Scale3d} instead. This alias will be removed in v1.0 */
|
|
809
|
+
default as Scale3D
|
|
810
|
+
} from '../icons/scale-3d';
|
|
502
811
|
|
|
503
812
|
// SendHorizontal aliases
|
|
504
813
|
export {
|
|
@@ -507,178 +816,352 @@ export {
|
|
|
507
816
|
} from '../icons/send-horizontal';
|
|
508
817
|
|
|
509
818
|
// ShieldQuestionMark aliases
|
|
510
|
-
export {
|
|
819
|
+
export {
|
|
820
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. This alias will be removed in v1.0 */
|
|
821
|
+
default as ShieldQuestion
|
|
822
|
+
} from '../icons/shield-question-mark';
|
|
511
823
|
|
|
512
824
|
// ShieldX aliases
|
|
513
|
-
export {
|
|
825
|
+
export {
|
|
826
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. This alias will be removed in v1.0 */
|
|
827
|
+
default as ShieldClose
|
|
828
|
+
} from '../icons/shield-x';
|
|
514
829
|
|
|
515
830
|
// SlidersVertical aliases
|
|
516
|
-
export {
|
|
831
|
+
export {
|
|
832
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SlidersVertical} instead. This alias will be removed in v1.0 */
|
|
833
|
+
default as Sliders
|
|
834
|
+
} from '../icons/sliders-vertical';
|
|
517
835
|
|
|
518
836
|
// Sparkles aliases
|
|
519
|
-
export {
|
|
837
|
+
export {
|
|
838
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. This alias will be removed in v1.0 */
|
|
839
|
+
default as Stars
|
|
840
|
+
} from '../icons/sparkles';
|
|
520
841
|
|
|
521
842
|
// SquareActivity aliases
|
|
522
|
-
export {
|
|
843
|
+
export {
|
|
844
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareActivity} instead. This alias will be removed in v1.0 */
|
|
845
|
+
default as ActivitySquare
|
|
846
|
+
} from '../icons/square-activity';
|
|
523
847
|
|
|
524
848
|
// SquareArrowDownLeft aliases
|
|
525
|
-
export {
|
|
849
|
+
export {
|
|
850
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownLeft} instead. This alias will be removed in v1.0 */
|
|
851
|
+
default as ArrowDownLeftSquare
|
|
852
|
+
} from '../icons/square-arrow-down-left';
|
|
526
853
|
|
|
527
854
|
// SquareArrowDownRight aliases
|
|
528
|
-
export {
|
|
855
|
+
export {
|
|
856
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownRight} instead. This alias will be removed in v1.0 */
|
|
857
|
+
default as ArrowDownRightSquare
|
|
858
|
+
} from '../icons/square-arrow-down-right';
|
|
529
859
|
|
|
530
860
|
// SquareArrowDown aliases
|
|
531
|
-
export {
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
861
|
+
export {
|
|
862
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. This alias will be removed in v1.0 */
|
|
863
|
+
default as ArrowDownSquare
|
|
864
|
+
} from '../icons/square-arrow-down';
|
|
535
865
|
|
|
536
866
|
// SquareArrowLeft aliases
|
|
537
|
-
export {
|
|
867
|
+
export {
|
|
868
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowLeft} instead. This alias will be removed in v1.0 */
|
|
869
|
+
default as ArrowLeftSquare
|
|
870
|
+
} from '../icons/square-arrow-left';
|
|
871
|
+
|
|
872
|
+
// SquareArrowOutDownLeft aliases
|
|
873
|
+
export {
|
|
874
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
875
|
+
default as ArrowDownLeftFromSquare
|
|
876
|
+
} from '../icons/square-arrow-out-down-left';
|
|
538
877
|
|
|
539
878
|
// SquareArrowOutDownRight aliases
|
|
540
|
-
export {
|
|
879
|
+
export {
|
|
880
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
881
|
+
default as ArrowDownRightFromSquare
|
|
882
|
+
} from '../icons/square-arrow-out-down-right';
|
|
541
883
|
|
|
542
884
|
// SquareArrowOutUpLeft aliases
|
|
543
|
-
export {
|
|
885
|
+
export {
|
|
886
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
887
|
+
default as ArrowUpLeftFromSquare
|
|
888
|
+
} from '../icons/square-arrow-out-up-left';
|
|
544
889
|
|
|
545
890
|
// SquareArrowOutUpRight aliases
|
|
546
|
-
export {
|
|
891
|
+
export {
|
|
892
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
893
|
+
default as ArrowUpRightFromSquare
|
|
894
|
+
} from '../icons/square-arrow-out-up-right';
|
|
547
895
|
|
|
548
896
|
// SquareArrowRight aliases
|
|
549
|
-
export {
|
|
897
|
+
export {
|
|
898
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowRight} instead. This alias will be removed in v1.0 */
|
|
899
|
+
default as ArrowRightSquare
|
|
900
|
+
} from '../icons/square-arrow-right';
|
|
550
901
|
|
|
551
902
|
// SquareArrowUpLeft aliases
|
|
552
|
-
export {
|
|
903
|
+
export {
|
|
904
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. This alias will be removed in v1.0 */
|
|
905
|
+
default as ArrowUpLeftSquare
|
|
906
|
+
} from '../icons/square-arrow-up-left';
|
|
553
907
|
|
|
554
908
|
// SquareArrowUpRight aliases
|
|
555
|
-
export {
|
|
909
|
+
export {
|
|
910
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. This alias will be removed in v1.0 */
|
|
911
|
+
default as ArrowUpRightSquare
|
|
912
|
+
} from '../icons/square-arrow-up-right';
|
|
556
913
|
|
|
557
914
|
// SquareArrowUp aliases
|
|
558
|
-
export {
|
|
915
|
+
export {
|
|
916
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUp} instead. This alias will be removed in v1.0 */
|
|
917
|
+
default as ArrowUpSquare
|
|
918
|
+
} from '../icons/square-arrow-up';
|
|
559
919
|
|
|
560
920
|
// SquareAsterisk aliases
|
|
561
|
-
export {
|
|
921
|
+
export {
|
|
922
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareAsterisk} instead. This alias will be removed in v1.0 */
|
|
923
|
+
default as AsteriskSquare
|
|
924
|
+
} from '../icons/square-asterisk';
|
|
562
925
|
|
|
563
926
|
// SquareBottomDashedScissors aliases
|
|
564
|
-
export {
|
|
927
|
+
export {
|
|
928
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBottomDashedScissors} instead. This alias will be removed in v1.0 */
|
|
929
|
+
default as ScissorsSquareDashedBottom
|
|
930
|
+
} from '../icons/square-bottom-dashed-scissors';
|
|
565
931
|
|
|
566
932
|
// SquareChartGantt aliases
|
|
567
|
-
export {
|
|
933
|
+
export {
|
|
934
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. This alias will be removed in v1.0 */
|
|
935
|
+
default as GanttChartSquare
|
|
936
|
+
} from '../icons/square-chart-gantt';
|
|
568
937
|
|
|
569
938
|
// SquareChartGantt aliases
|
|
570
|
-
export {
|
|
939
|
+
export {
|
|
940
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. This alias will be removed in v1.0 */
|
|
941
|
+
default as SquareGanttChart
|
|
942
|
+
} from '../icons/square-chart-gantt';
|
|
571
943
|
|
|
572
944
|
// SquareCheckBig aliases
|
|
573
|
-
export {
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
945
|
+
export {
|
|
946
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. This alias will be removed in v1.0 */
|
|
947
|
+
default as CheckSquare
|
|
948
|
+
} from '../icons/square-check-big';
|
|
577
949
|
|
|
578
950
|
// SquareCheck aliases
|
|
579
|
-
export {
|
|
951
|
+
export {
|
|
952
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. This alias will be removed in v1.0 */
|
|
953
|
+
default as CheckSquare2
|
|
954
|
+
} from '../icons/square-check';
|
|
580
955
|
|
|
581
|
-
//
|
|
582
|
-
export {
|
|
956
|
+
// SquareChevronDown aliases
|
|
957
|
+
export {
|
|
958
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. This alias will be removed in v1.0 */
|
|
959
|
+
default as ChevronDownSquare
|
|
960
|
+
} from '../icons/square-chevron-down';
|
|
583
961
|
|
|
584
|
-
//
|
|
585
|
-
export {
|
|
962
|
+
// SquareChevronLeft aliases
|
|
963
|
+
export {
|
|
964
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. This alias will be removed in v1.0 */
|
|
965
|
+
default as ChevronLeftSquare
|
|
966
|
+
} from '../icons/square-chevron-left';
|
|
586
967
|
|
|
587
968
|
// SquareChevronRight aliases
|
|
588
|
-
export {
|
|
969
|
+
export {
|
|
970
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. This alias will be removed in v1.0 */
|
|
971
|
+
default as ChevronRightSquare
|
|
972
|
+
} from '../icons/square-chevron-right';
|
|
973
|
+
|
|
974
|
+
// SquareChevronUp aliases
|
|
975
|
+
export {
|
|
976
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. This alias will be removed in v1.0 */
|
|
977
|
+
default as ChevronUpSquare
|
|
978
|
+
} from '../icons/square-chevron-up';
|
|
589
979
|
|
|
590
980
|
// SquareCode aliases
|
|
591
|
-
export {
|
|
981
|
+
export {
|
|
982
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCode} instead. This alias will be removed in v1.0 */
|
|
983
|
+
default as CodeSquare
|
|
984
|
+
} from '../icons/square-code';
|
|
592
985
|
|
|
593
986
|
// SquareDashedKanban aliases
|
|
594
|
-
export {
|
|
987
|
+
export {
|
|
988
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedKanban} instead. This alias will be removed in v1.0 */
|
|
989
|
+
default as KanbanSquareDashed
|
|
990
|
+
} from '../icons/square-dashed-kanban';
|
|
595
991
|
|
|
596
992
|
// SquareDashedMousePointer aliases
|
|
597
|
-
export {
|
|
993
|
+
export {
|
|
994
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. This alias will be removed in v1.0 */
|
|
995
|
+
default as MousePointerSquareDashed
|
|
996
|
+
} from '../icons/square-dashed-mouse-pointer';
|
|
598
997
|
|
|
599
998
|
// SquareDashed aliases
|
|
600
|
-
export {
|
|
999
|
+
export {
|
|
1000
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. This alias will be removed in v1.0 */
|
|
1001
|
+
default as BoxSelect
|
|
1002
|
+
} from '../icons/square-dashed';
|
|
601
1003
|
|
|
602
1004
|
// SquareDivide aliases
|
|
603
|
-
export {
|
|
1005
|
+
export {
|
|
1006
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDivide} instead. This alias will be removed in v1.0 */
|
|
1007
|
+
default as DivideSquare
|
|
1008
|
+
} from '../icons/square-divide';
|
|
604
1009
|
|
|
605
1010
|
// SquareDot aliases
|
|
606
|
-
export {
|
|
1011
|
+
export {
|
|
1012
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDot} instead. This alias will be removed in v1.0 */
|
|
1013
|
+
default as DotSquare
|
|
1014
|
+
} from '../icons/square-dot';
|
|
607
1015
|
|
|
608
1016
|
// SquareEqual aliases
|
|
609
|
-
export {
|
|
1017
|
+
export {
|
|
1018
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareEqual} instead. This alias will be removed in v1.0 */
|
|
1019
|
+
default as EqualSquare
|
|
1020
|
+
} from '../icons/square-equal';
|
|
610
1021
|
|
|
611
1022
|
// SquareFunction aliases
|
|
612
|
-
export {
|
|
1023
|
+
export {
|
|
1024
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareFunction} instead. This alias will be removed in v1.0 */
|
|
1025
|
+
default as FunctionSquare
|
|
1026
|
+
} from '../icons/square-function';
|
|
613
1027
|
|
|
614
1028
|
// SquareKanban aliases
|
|
615
|
-
export {
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
1029
|
+
export {
|
|
1030
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. This alias will be removed in v1.0 */
|
|
1031
|
+
default as KanbanSquare
|
|
1032
|
+
} from '../icons/square-kanban';
|
|
619
1033
|
|
|
620
1034
|
// SquareLibrary aliases
|
|
621
|
-
export {
|
|
1035
|
+
export {
|
|
1036
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareLibrary} instead. This alias will be removed in v1.0 */
|
|
1037
|
+
default as LibrarySquare
|
|
1038
|
+
} from '../icons/square-library';
|
|
1039
|
+
|
|
1040
|
+
// SquareM aliases
|
|
1041
|
+
export {
|
|
1042
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareM} instead. This alias will be removed in v1.0 */
|
|
1043
|
+
default as MSquare
|
|
1044
|
+
} from '../icons/square-m';
|
|
622
1045
|
|
|
623
1046
|
// SquareMenu aliases
|
|
624
|
-
export {
|
|
1047
|
+
export {
|
|
1048
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. This alias will be removed in v1.0 */
|
|
1049
|
+
default as MenuSquare
|
|
1050
|
+
} from '../icons/square-menu';
|
|
625
1051
|
|
|
626
1052
|
// SquareMinus aliases
|
|
627
|
-
export {
|
|
1053
|
+
export {
|
|
1054
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMinus} instead. This alias will be removed in v1.0 */
|
|
1055
|
+
default as MinusSquare
|
|
1056
|
+
} from '../icons/square-minus';
|
|
628
1057
|
|
|
629
1058
|
// SquareMousePointer aliases
|
|
630
|
-
export {
|
|
1059
|
+
export {
|
|
1060
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMousePointer} instead. This alias will be removed in v1.0 */
|
|
1061
|
+
default as Inspect
|
|
1062
|
+
} from '../icons/square-mouse-pointer';
|
|
631
1063
|
|
|
632
1064
|
// SquareParkingOff aliases
|
|
633
|
-
export {
|
|
1065
|
+
export {
|
|
1066
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParkingOff} instead. This alias will be removed in v1.0 */
|
|
1067
|
+
default as ParkingSquareOff
|
|
1068
|
+
} from '../icons/square-parking-off';
|
|
634
1069
|
|
|
635
1070
|
// SquareParking aliases
|
|
636
|
-
export {
|
|
1071
|
+
export {
|
|
1072
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParking} instead. This alias will be removed in v1.0 */
|
|
1073
|
+
default as ParkingSquare
|
|
1074
|
+
} from '../icons/square-parking';
|
|
637
1075
|
|
|
638
1076
|
// SquarePen aliases
|
|
639
|
-
export {
|
|
1077
|
+
export {
|
|
1078
|
+
/** @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 */
|
|
1079
|
+
default as PenBox
|
|
1080
|
+
} from '../icons/square-pen';
|
|
640
1081
|
|
|
641
1082
|
// SquarePen aliases
|
|
642
|
-
export {
|
|
1083
|
+
export {
|
|
1084
|
+
/** @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 */
|
|
1085
|
+
default as Edit
|
|
1086
|
+
} from '../icons/square-pen';
|
|
643
1087
|
|
|
644
1088
|
// SquarePen aliases
|
|
645
|
-
export {
|
|
1089
|
+
export {
|
|
1090
|
+
/** @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 */
|
|
1091
|
+
default as PenSquare
|
|
1092
|
+
} from '../icons/square-pen';
|
|
646
1093
|
|
|
647
1094
|
// SquarePercent aliases
|
|
648
|
-
export {
|
|
1095
|
+
export {
|
|
1096
|
+
/** @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 */
|
|
1097
|
+
default as PercentSquare
|
|
1098
|
+
} from '../icons/square-percent';
|
|
649
1099
|
|
|
650
1100
|
// SquarePi aliases
|
|
651
|
-
export {
|
|
1101
|
+
export {
|
|
1102
|
+
/** @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 */
|
|
1103
|
+
default as PiSquare
|
|
1104
|
+
} from '../icons/square-pi';
|
|
652
1105
|
|
|
653
1106
|
// SquarePilcrow aliases
|
|
654
|
-
export {
|
|
1107
|
+
export {
|
|
1108
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. This alias will be removed in v1.0 */
|
|
1109
|
+
default as PilcrowSquare
|
|
1110
|
+
} from '../icons/square-pilcrow';
|
|
655
1111
|
|
|
656
1112
|
// SquarePlay aliases
|
|
657
|
-
export {
|
|
1113
|
+
export {
|
|
1114
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlay} instead. This alias will be removed in v1.0 */
|
|
1115
|
+
default as PlaySquare
|
|
1116
|
+
} from '../icons/square-play';
|
|
658
1117
|
|
|
659
1118
|
// SquarePlus aliases
|
|
660
|
-
export {
|
|
1119
|
+
export {
|
|
1120
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. This alias will be removed in v1.0 */
|
|
1121
|
+
default as PlusSquare
|
|
1122
|
+
} from '../icons/square-plus';
|
|
661
1123
|
|
|
662
1124
|
// SquarePower aliases
|
|
663
|
-
export {
|
|
1125
|
+
export {
|
|
1126
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePower} instead. This alias will be removed in v1.0 */
|
|
1127
|
+
default as PowerSquare
|
|
1128
|
+
} from '../icons/square-power';
|
|
664
1129
|
|
|
665
1130
|
// SquareScissors aliases
|
|
666
|
-
export {
|
|
1131
|
+
export {
|
|
1132
|
+
/** @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 */
|
|
1133
|
+
default as ScissorsSquare
|
|
1134
|
+
} from '../icons/square-scissors';
|
|
1135
|
+
|
|
1136
|
+
// SquareSigma aliases
|
|
1137
|
+
export {
|
|
1138
|
+
/** @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 */
|
|
1139
|
+
default as SigmaSquare
|
|
1140
|
+
} from '../icons/square-sigma';
|
|
667
1141
|
|
|
668
1142
|
// SquareSlash aliases
|
|
669
|
-
export {
|
|
1143
|
+
export {
|
|
1144
|
+
/** @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 */
|
|
1145
|
+
default as SlashSquare
|
|
1146
|
+
} from '../icons/square-slash';
|
|
670
1147
|
|
|
671
1148
|
// SquareSplitHorizontal aliases
|
|
672
|
-
export {
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
1149
|
+
export {
|
|
1150
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
1151
|
+
default as SplitSquareHorizontal
|
|
1152
|
+
} from '../icons/square-split-horizontal';
|
|
676
1153
|
|
|
677
1154
|
// SquareSplitVertical aliases
|
|
678
|
-
export {
|
|
1155
|
+
export {
|
|
1156
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. This alias will be removed in v1.0 */
|
|
1157
|
+
default as SplitSquareVertical
|
|
1158
|
+
} from '../icons/square-split-vertical';
|
|
679
1159
|
|
|
680
1160
|
// SquareTerminal aliases
|
|
681
|
-
export {
|
|
1161
|
+
export {
|
|
1162
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. This alias will be removed in v1.0 */
|
|
1163
|
+
default as TerminalSquare
|
|
1164
|
+
} from '../icons/square-terminal';
|
|
682
1165
|
|
|
683
1166
|
// SquareUserRound aliases
|
|
684
1167
|
export {
|
|
@@ -687,25 +1170,46 @@ export {
|
|
|
687
1170
|
} from '../icons/square-user-round';
|
|
688
1171
|
|
|
689
1172
|
// SquareUser aliases
|
|
690
|
-
export {
|
|
1173
|
+
export {
|
|
1174
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. This alias will be removed in v1.0 */
|
|
1175
|
+
default as UserSquare
|
|
1176
|
+
} from '../icons/square-user';
|
|
691
1177
|
|
|
692
1178
|
// SquareX aliases
|
|
693
|
-
export {
|
|
1179
|
+
export {
|
|
1180
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareX} instead. This alias will be removed in v1.0 */
|
|
1181
|
+
default as XSquare
|
|
1182
|
+
} from '../icons/square-x';
|
|
694
1183
|
|
|
695
1184
|
// TestTubeDiagonal aliases
|
|
696
|
-
export {
|
|
1185
|
+
export {
|
|
1186
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TestTubeDiagonal} instead. This alias will be removed in v1.0 */
|
|
1187
|
+
default as TestTube2
|
|
1188
|
+
} from '../icons/test-tube-diagonal';
|
|
697
1189
|
|
|
698
1190
|
// TextSelect aliases
|
|
699
|
-
export {
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
1191
|
+
export {
|
|
1192
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextSelect} instead. This alias will be removed in v1.0 */
|
|
1193
|
+
default as TextSelection
|
|
1194
|
+
} from '../icons/text-select';
|
|
703
1195
|
|
|
704
1196
|
// TramFront aliases
|
|
705
|
-
export {
|
|
1197
|
+
export {
|
|
1198
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. This alias will be removed in v1.0 */
|
|
1199
|
+
default as Train
|
|
1200
|
+
} from '../icons/tram-front';
|
|
1201
|
+
|
|
1202
|
+
// TreePalm aliases
|
|
1203
|
+
export {
|
|
1204
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TreePalm} instead. This alias will be removed in v1.0 */
|
|
1205
|
+
default as Palmtree
|
|
1206
|
+
} from '../icons/tree-palm';
|
|
706
1207
|
|
|
707
1208
|
// TriangleAlert aliases
|
|
708
|
-
export {
|
|
1209
|
+
export {
|
|
1210
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TriangleAlert} instead. This alias will be removed in v1.0 */
|
|
1211
|
+
default as AlertTriangle
|
|
1212
|
+
} from '../icons/triangle-alert';
|
|
709
1213
|
|
|
710
1214
|
// TvMinimal aliases
|
|
711
1215
|
export {
|
|
@@ -755,17 +1259,23 @@ export {
|
|
|
755
1259
|
default as User2
|
|
756
1260
|
} from '../icons/user-round';
|
|
757
1261
|
|
|
758
|
-
// UtensilsCrossed aliases
|
|
759
|
-
export { default as ForkKnifeCrossed } from '../icons/utensils-crossed';
|
|
760
|
-
|
|
761
1262
|
// UsersRound aliases
|
|
762
1263
|
export {
|
|
763
1264
|
/** @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 */
|
|
764
1265
|
default as Users2
|
|
765
1266
|
} from '../icons/users-round';
|
|
766
1267
|
|
|
1268
|
+
// UtensilsCrossed aliases
|
|
1269
|
+
export {
|
|
1270
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UtensilsCrossed} instead. This alias will be removed in v1.0 */
|
|
1271
|
+
default as ForkKnifeCrossed
|
|
1272
|
+
} from '../icons/utensils-crossed';
|
|
1273
|
+
|
|
767
1274
|
// Utensils aliases
|
|
768
|
-
export {
|
|
1275
|
+
export {
|
|
1276
|
+
/** @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 */
|
|
1277
|
+
default as ForkKnife
|
|
1278
|
+
} from '../icons/utensils';
|
|
769
1279
|
|
|
770
1280
|
// WalletMinimal aliases
|
|
771
1281
|
export {
|