@arclux/arc-ui 1.0.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 +21 -0
- package/README.md +64 -0
- package/package.json +186 -0
- package/src/content/accordion-item.js +27 -0
- package/src/content/accordion.js +151 -0
- package/src/content/animated-number.js +160 -0
- package/src/content/aspect-ratio.js +78 -0
- package/src/content/avatar-group.js +101 -0
- package/src/content/avatar.js +92 -0
- package/src/content/badge.js +98 -0
- package/src/content/callout.js +141 -0
- package/src/content/card.js +75 -0
- package/src/content/carousel.js +300 -0
- package/src/content/code-block.js +152 -0
- package/src/content/collapsible.js +142 -0
- package/src/content/color-swatch.js +86 -0
- package/src/content/column.js +28 -0
- package/src/content/data-table.js +332 -0
- package/src/content/divider.js +153 -0
- package/src/content/empty-state.js +78 -0
- package/src/content/feature-card.js +142 -0
- package/src/content/highlight.js +63 -0
- package/src/content/icon-library.js +30 -0
- package/src/content/icon-registry.js +39 -0
- package/src/content/icon.js +95 -0
- package/src/content/index.js +44 -0
- package/src/content/infinite-scroll.js +144 -0
- package/src/content/kbd.js +40 -0
- package/src/content/markdown.js +294 -0
- package/src/content/marquee.js +166 -0
- package/src/content/meter.js +167 -0
- package/src/content/scroll-area.js +107 -0
- package/src/content/skeleton.js +85 -0
- package/src/content/spinner.js +77 -0
- package/src/content/stack.js +68 -0
- package/src/content/stat.js +72 -0
- package/src/content/step.js +22 -0
- package/src/content/stepper.js +202 -0
- package/src/content/table.js +134 -0
- package/src/content/tag.js +156 -0
- package/src/content/text.js +111 -0
- package/src/content/timeline-item.js +29 -0
- package/src/content/timeline.js +170 -0
- package/src/content/truncate.js +161 -0
- package/src/content/value-card.js +94 -0
- package/src/feedback/alert.js +187 -0
- package/src/feedback/command-item.js +28 -0
- package/src/feedback/command-palette.js +346 -0
- package/src/feedback/context-menu.js +299 -0
- package/src/feedback/dialog.js +298 -0
- package/src/feedback/dropdown-menu.js +259 -0
- package/src/feedback/hover-card.js +186 -0
- package/src/feedback/index.js +17 -0
- package/src/feedback/modal.js +226 -0
- package/src/feedback/notification-panel.js +196 -0
- package/src/feedback/popover.js +184 -0
- package/src/feedback/progress.js +169 -0
- package/src/feedback/sheet.js +249 -0
- package/src/feedback/toast.js +207 -0
- package/src/feedback/tooltip.js +189 -0
- package/src/icons/lucide.d.ts +1915 -0
- package/src/icons/lucide.js +1915 -0
- package/src/icons/phosphor.d.ts +1517 -0
- package/src/icons/phosphor.js +1517 -0
- package/src/icons/types.d.ts +8 -0
- package/src/index.js +9 -0
- package/src/input/button.js +127 -0
- package/src/input/calendar.js +340 -0
- package/src/input/checkbox.js +159 -0
- package/src/input/chip.js +120 -0
- package/src/input/color-picker.js +461 -0
- package/src/input/combobox.js +295 -0
- package/src/input/copy-button.js +144 -0
- package/src/input/date-picker.js +534 -0
- package/src/input/file-upload.js +333 -0
- package/src/input/form.js +179 -0
- package/src/input/icon-button.js +179 -0
- package/src/input/index.js +31 -0
- package/src/input/input.js +158 -0
- package/src/input/multi-select.js +392 -0
- package/src/input/number-input.js +239 -0
- package/src/input/otp-input.js +221 -0
- package/src/input/pin-input.js +294 -0
- package/src/input/radio-group.js +177 -0
- package/src/input/radio.js +28 -0
- package/src/input/rating.js +195 -0
- package/src/input/search.js +371 -0
- package/src/input/segmented-control.js +174 -0
- package/src/input/select.js +267 -0
- package/src/input/slider.js +217 -0
- package/src/input/sortable-list.js +345 -0
- package/src/input/suggestion.js +26 -0
- package/src/input/textarea.js +203 -0
- package/src/input/theme-toggle.js +196 -0
- package/src/input/toggle.js +166 -0
- package/src/layout/app-shell.js +266 -0
- package/src/layout/auth-shell.js +153 -0
- package/src/layout/container.js +37 -0
- package/src/layout/dashboard-grid.js +62 -0
- package/src/layout/index.js +15 -0
- package/src/layout/page-header.js +100 -0
- package/src/layout/page-layout.js +112 -0
- package/src/layout/resizable.js +221 -0
- package/src/layout/section.js +54 -0
- package/src/layout/settings-layout.js +91 -0
- package/src/layout/split-pane.js +172 -0
- package/src/layout/status-bar.js +84 -0
- package/src/layout/toolbar.js +92 -0
- package/src/navigation/breadcrumb-item.js +26 -0
- package/src/navigation/breadcrumb.js +129 -0
- package/src/navigation/drawer.js +183 -0
- package/src/navigation/footer.js +99 -0
- package/src/navigation/index.js +22 -0
- package/src/navigation/link.js +120 -0
- package/src/navigation/nav-item.js +46 -0
- package/src/navigation/navigation-menu.js +687 -0
- package/src/navigation/pagination.js +186 -0
- package/src/navigation/scroll-spy.js +198 -0
- package/src/navigation/scroll-to-top.js +163 -0
- package/src/navigation/sidebar-link.js +28 -0
- package/src/navigation/sidebar-section.js +45 -0
- package/src/navigation/sidebar.js +336 -0
- package/src/navigation/spy-link.js +26 -0
- package/src/navigation/tab.js +26 -0
- package/src/navigation/tabs.js +202 -0
- package/src/navigation/top-bar.js +263 -0
- package/src/navigation/tree-item.js +38 -0
- package/src/navigation/tree-view.js +255 -0
- package/src/shared/index.js +6 -0
- package/src/shared/menu-divider.js +9 -0
- package/src/shared/menu-item.js +30 -0
- package/src/shared/option.js +31 -0
- package/src/shared-styles.js +81 -0
- package/src/tokens.js +445 -0
- package/types/index.d.ts +973 -0
|
@@ -0,0 +1,1915 @@
|
|
|
1
|
+
// Auto-generated — do not edit manually.
|
|
2
|
+
export type LucideIconName =
|
|
3
|
+
| 'a-arrow-down'
|
|
4
|
+
| 'a-arrow-up'
|
|
5
|
+
| 'a-large-small'
|
|
6
|
+
| 'accessibility'
|
|
7
|
+
| 'activity'
|
|
8
|
+
| 'activity-square'
|
|
9
|
+
| 'air-vent'
|
|
10
|
+
| 'airplay'
|
|
11
|
+
| 'alarm-check'
|
|
12
|
+
| 'alarm-clock'
|
|
13
|
+
| 'alarm-clock-check'
|
|
14
|
+
| 'alarm-clock-minus'
|
|
15
|
+
| 'alarm-clock-off'
|
|
16
|
+
| 'alarm-clock-plus'
|
|
17
|
+
| 'alarm-minus'
|
|
18
|
+
| 'alarm-plus'
|
|
19
|
+
| 'alarm-smoke'
|
|
20
|
+
| 'album'
|
|
21
|
+
| 'alert-circle'
|
|
22
|
+
| 'alert-octagon'
|
|
23
|
+
| 'alert-triangle'
|
|
24
|
+
| 'align-center'
|
|
25
|
+
| 'align-center-horizontal'
|
|
26
|
+
| 'align-center-vertical'
|
|
27
|
+
| 'align-end-horizontal'
|
|
28
|
+
| 'align-end-vertical'
|
|
29
|
+
| 'align-horizontal-distribute-center'
|
|
30
|
+
| 'align-horizontal-distribute-end'
|
|
31
|
+
| 'align-horizontal-distribute-start'
|
|
32
|
+
| 'align-horizontal-justify-center'
|
|
33
|
+
| 'align-horizontal-justify-end'
|
|
34
|
+
| 'align-horizontal-justify-start'
|
|
35
|
+
| 'align-horizontal-space-around'
|
|
36
|
+
| 'align-horizontal-space-between'
|
|
37
|
+
| 'align-justify'
|
|
38
|
+
| 'align-left'
|
|
39
|
+
| 'align-right'
|
|
40
|
+
| 'align-start-horizontal'
|
|
41
|
+
| 'align-start-vertical'
|
|
42
|
+
| 'align-vertical-distribute-center'
|
|
43
|
+
| 'align-vertical-distribute-end'
|
|
44
|
+
| 'align-vertical-distribute-start'
|
|
45
|
+
| 'align-vertical-justify-center'
|
|
46
|
+
| 'align-vertical-justify-end'
|
|
47
|
+
| 'align-vertical-justify-start'
|
|
48
|
+
| 'align-vertical-space-around'
|
|
49
|
+
| 'align-vertical-space-between'
|
|
50
|
+
| 'ambulance'
|
|
51
|
+
| 'ampersand'
|
|
52
|
+
| 'ampersands'
|
|
53
|
+
| 'amphora'
|
|
54
|
+
| 'anchor'
|
|
55
|
+
| 'angry'
|
|
56
|
+
| 'annoyed'
|
|
57
|
+
| 'antenna'
|
|
58
|
+
| 'anvil'
|
|
59
|
+
| 'aperture'
|
|
60
|
+
| 'app-window'
|
|
61
|
+
| 'app-window-mac'
|
|
62
|
+
| 'apple'
|
|
63
|
+
| 'archive'
|
|
64
|
+
| 'archive-restore'
|
|
65
|
+
| 'archive-x'
|
|
66
|
+
| 'area-chart'
|
|
67
|
+
| 'armchair'
|
|
68
|
+
| 'arrow-big-down'
|
|
69
|
+
| 'arrow-big-down-dash'
|
|
70
|
+
| 'arrow-big-left'
|
|
71
|
+
| 'arrow-big-left-dash'
|
|
72
|
+
| 'arrow-big-right'
|
|
73
|
+
| 'arrow-big-right-dash'
|
|
74
|
+
| 'arrow-big-up'
|
|
75
|
+
| 'arrow-big-up-dash'
|
|
76
|
+
| 'arrow-down'
|
|
77
|
+
| 'arrow-down-az'
|
|
78
|
+
| 'arrow-down-az'
|
|
79
|
+
| 'arrow-down-circle'
|
|
80
|
+
| 'arrow-down-from-line'
|
|
81
|
+
| 'arrow-down-left'
|
|
82
|
+
| 'arrow-down-left-from-circle'
|
|
83
|
+
| 'arrow-down-left-from-square'
|
|
84
|
+
| 'arrow-down-left-square'
|
|
85
|
+
| 'arrow-down-narrow-wide'
|
|
86
|
+
| 'arrow-down-right'
|
|
87
|
+
| 'arrow-down-right-from-circle'
|
|
88
|
+
| 'arrow-down-right-from-square'
|
|
89
|
+
| 'arrow-down-right-square'
|
|
90
|
+
| 'arrow-down-square'
|
|
91
|
+
| 'arrow-down-to-dot'
|
|
92
|
+
| 'arrow-down-to-line'
|
|
93
|
+
| 'arrow-down-up'
|
|
94
|
+
| 'arrow-down-wide-narrow'
|
|
95
|
+
| 'arrow-down-za'
|
|
96
|
+
| 'arrow-down-za'
|
|
97
|
+
| 'arrow-down01'
|
|
98
|
+
| 'arrow-down10'
|
|
99
|
+
| 'arrow-left'
|
|
100
|
+
| 'arrow-left-circle'
|
|
101
|
+
| 'arrow-left-from-line'
|
|
102
|
+
| 'arrow-left-right'
|
|
103
|
+
| 'arrow-left-square'
|
|
104
|
+
| 'arrow-left-to-line'
|
|
105
|
+
| 'arrow-right'
|
|
106
|
+
| 'arrow-right-circle'
|
|
107
|
+
| 'arrow-right-from-line'
|
|
108
|
+
| 'arrow-right-left'
|
|
109
|
+
| 'arrow-right-square'
|
|
110
|
+
| 'arrow-right-to-line'
|
|
111
|
+
| 'arrow-up'
|
|
112
|
+
| 'arrow-up-az'
|
|
113
|
+
| 'arrow-up-az'
|
|
114
|
+
| 'arrow-up-circle'
|
|
115
|
+
| 'arrow-up-down'
|
|
116
|
+
| 'arrow-up-from-dot'
|
|
117
|
+
| 'arrow-up-from-line'
|
|
118
|
+
| 'arrow-up-left'
|
|
119
|
+
| 'arrow-up-left-from-circle'
|
|
120
|
+
| 'arrow-up-left-from-square'
|
|
121
|
+
| 'arrow-up-left-square'
|
|
122
|
+
| 'arrow-up-narrow-wide'
|
|
123
|
+
| 'arrow-up-right'
|
|
124
|
+
| 'arrow-up-right-from-circle'
|
|
125
|
+
| 'arrow-up-right-from-square'
|
|
126
|
+
| 'arrow-up-right-square'
|
|
127
|
+
| 'arrow-up-square'
|
|
128
|
+
| 'arrow-up-to-line'
|
|
129
|
+
| 'arrow-up-wide-narrow'
|
|
130
|
+
| 'arrow-up-za'
|
|
131
|
+
| 'arrow-up-za'
|
|
132
|
+
| 'arrow-up01'
|
|
133
|
+
| 'arrow-up10'
|
|
134
|
+
| 'arrows-up-from-line'
|
|
135
|
+
| 'asterisk'
|
|
136
|
+
| 'asterisk-square'
|
|
137
|
+
| 'at-sign'
|
|
138
|
+
| 'atom'
|
|
139
|
+
| 'audio-lines'
|
|
140
|
+
| 'audio-waveform'
|
|
141
|
+
| 'award'
|
|
142
|
+
| 'axe'
|
|
143
|
+
| 'axis3d'
|
|
144
|
+
| 'axis3d'
|
|
145
|
+
| 'baby'
|
|
146
|
+
| 'backpack'
|
|
147
|
+
| 'badge'
|
|
148
|
+
| 'badge-alert'
|
|
149
|
+
| 'badge-cent'
|
|
150
|
+
| 'badge-check'
|
|
151
|
+
| 'badge-dollar-sign'
|
|
152
|
+
| 'badge-euro'
|
|
153
|
+
| 'badge-help'
|
|
154
|
+
| 'badge-indian-rupee'
|
|
155
|
+
| 'badge-info'
|
|
156
|
+
| 'badge-japanese-yen'
|
|
157
|
+
| 'badge-minus'
|
|
158
|
+
| 'badge-percent'
|
|
159
|
+
| 'badge-plus'
|
|
160
|
+
| 'badge-pound-sterling'
|
|
161
|
+
| 'badge-question-mark'
|
|
162
|
+
| 'badge-russian-ruble'
|
|
163
|
+
| 'badge-swiss-franc'
|
|
164
|
+
| 'badge-turkish-lira'
|
|
165
|
+
| 'badge-x'
|
|
166
|
+
| 'baggage-claim'
|
|
167
|
+
| 'balloon'
|
|
168
|
+
| 'ban'
|
|
169
|
+
| 'banana'
|
|
170
|
+
| 'bandage'
|
|
171
|
+
| 'banknote'
|
|
172
|
+
| 'banknote-arrow-down'
|
|
173
|
+
| 'banknote-arrow-up'
|
|
174
|
+
| 'banknote-x'
|
|
175
|
+
| 'bar-chart'
|
|
176
|
+
| 'bar-chart-big'
|
|
177
|
+
| 'bar-chart-horizontal'
|
|
178
|
+
| 'bar-chart-horizontal-big'
|
|
179
|
+
| 'bar-chart2'
|
|
180
|
+
| 'bar-chart3'
|
|
181
|
+
| 'bar-chart4'
|
|
182
|
+
| 'barcode'
|
|
183
|
+
| 'barrel'
|
|
184
|
+
| 'baseline'
|
|
185
|
+
| 'bath'
|
|
186
|
+
| 'battery'
|
|
187
|
+
| 'battery-charging'
|
|
188
|
+
| 'battery-full'
|
|
189
|
+
| 'battery-low'
|
|
190
|
+
| 'battery-medium'
|
|
191
|
+
| 'battery-plus'
|
|
192
|
+
| 'battery-warning'
|
|
193
|
+
| 'beaker'
|
|
194
|
+
| 'bean'
|
|
195
|
+
| 'bean-off'
|
|
196
|
+
| 'bed'
|
|
197
|
+
| 'bed-double'
|
|
198
|
+
| 'bed-single'
|
|
199
|
+
| 'beef'
|
|
200
|
+
| 'beer'
|
|
201
|
+
| 'beer-off'
|
|
202
|
+
| 'bell'
|
|
203
|
+
| 'bell-dot'
|
|
204
|
+
| 'bell-electric'
|
|
205
|
+
| 'bell-minus'
|
|
206
|
+
| 'bell-off'
|
|
207
|
+
| 'bell-plus'
|
|
208
|
+
| 'bell-ring'
|
|
209
|
+
| 'between-horizonal-end'
|
|
210
|
+
| 'between-horizonal-start'
|
|
211
|
+
| 'between-horizontal-end'
|
|
212
|
+
| 'between-horizontal-start'
|
|
213
|
+
| 'between-vertical-end'
|
|
214
|
+
| 'between-vertical-start'
|
|
215
|
+
| 'biceps-flexed'
|
|
216
|
+
| 'bike'
|
|
217
|
+
| 'binary'
|
|
218
|
+
| 'binoculars'
|
|
219
|
+
| 'biohazard'
|
|
220
|
+
| 'bird'
|
|
221
|
+
| 'birdhouse'
|
|
222
|
+
| 'bitcoin'
|
|
223
|
+
| 'blend'
|
|
224
|
+
| 'blinds'
|
|
225
|
+
| 'blocks'
|
|
226
|
+
| 'bluetooth'
|
|
227
|
+
| 'bluetooth-connected'
|
|
228
|
+
| 'bluetooth-off'
|
|
229
|
+
| 'bluetooth-searching'
|
|
230
|
+
| 'bold'
|
|
231
|
+
| 'bolt'
|
|
232
|
+
| 'bomb'
|
|
233
|
+
| 'bone'
|
|
234
|
+
| 'book'
|
|
235
|
+
| 'book-a'
|
|
236
|
+
| 'book-alert'
|
|
237
|
+
| 'book-audio'
|
|
238
|
+
| 'book-check'
|
|
239
|
+
| 'book-copy'
|
|
240
|
+
| 'book-dashed'
|
|
241
|
+
| 'book-down'
|
|
242
|
+
| 'book-headphones'
|
|
243
|
+
| 'book-heart'
|
|
244
|
+
| 'book-image'
|
|
245
|
+
| 'book-key'
|
|
246
|
+
| 'book-lock'
|
|
247
|
+
| 'book-marked'
|
|
248
|
+
| 'book-minus'
|
|
249
|
+
| 'book-open'
|
|
250
|
+
| 'book-open-check'
|
|
251
|
+
| 'book-open-text'
|
|
252
|
+
| 'book-plus'
|
|
253
|
+
| 'book-search'
|
|
254
|
+
| 'book-template'
|
|
255
|
+
| 'book-text'
|
|
256
|
+
| 'book-type'
|
|
257
|
+
| 'book-up'
|
|
258
|
+
| 'book-up2'
|
|
259
|
+
| 'book-user'
|
|
260
|
+
| 'book-x'
|
|
261
|
+
| 'bookmark'
|
|
262
|
+
| 'bookmark-check'
|
|
263
|
+
| 'bookmark-minus'
|
|
264
|
+
| 'bookmark-plus'
|
|
265
|
+
| 'bookmark-x'
|
|
266
|
+
| 'boom-box'
|
|
267
|
+
| 'bot'
|
|
268
|
+
| 'bot-message-square'
|
|
269
|
+
| 'bot-off'
|
|
270
|
+
| 'bottle-wine'
|
|
271
|
+
| 'bow-arrow'
|
|
272
|
+
| 'box'
|
|
273
|
+
| 'box-select'
|
|
274
|
+
| 'boxes'
|
|
275
|
+
| 'braces'
|
|
276
|
+
| 'brackets'
|
|
277
|
+
| 'brain'
|
|
278
|
+
| 'brain-circuit'
|
|
279
|
+
| 'brain-cog'
|
|
280
|
+
| 'brick-wall'
|
|
281
|
+
| 'brick-wall-fire'
|
|
282
|
+
| 'brick-wall-shield'
|
|
283
|
+
| 'briefcase'
|
|
284
|
+
| 'briefcase-business'
|
|
285
|
+
| 'briefcase-conveyor-belt'
|
|
286
|
+
| 'briefcase-medical'
|
|
287
|
+
| 'bring-to-front'
|
|
288
|
+
| 'brush'
|
|
289
|
+
| 'brush-cleaning'
|
|
290
|
+
| 'bubbles'
|
|
291
|
+
| 'bug'
|
|
292
|
+
| 'bug-off'
|
|
293
|
+
| 'bug-play'
|
|
294
|
+
| 'building'
|
|
295
|
+
| 'building2'
|
|
296
|
+
| 'bus'
|
|
297
|
+
| 'bus-front'
|
|
298
|
+
| 'cable'
|
|
299
|
+
| 'cable-car'
|
|
300
|
+
| 'cake'
|
|
301
|
+
| 'cake-slice'
|
|
302
|
+
| 'calculator'
|
|
303
|
+
| 'calendar'
|
|
304
|
+
| 'calendar-arrow-down'
|
|
305
|
+
| 'calendar-arrow-up'
|
|
306
|
+
| 'calendar-check'
|
|
307
|
+
| 'calendar-check2'
|
|
308
|
+
| 'calendar-clock'
|
|
309
|
+
| 'calendar-cog'
|
|
310
|
+
| 'calendar-days'
|
|
311
|
+
| 'calendar-fold'
|
|
312
|
+
| 'calendar-heart'
|
|
313
|
+
| 'calendar-minus'
|
|
314
|
+
| 'calendar-minus2'
|
|
315
|
+
| 'calendar-off'
|
|
316
|
+
| 'calendar-plus'
|
|
317
|
+
| 'calendar-plus2'
|
|
318
|
+
| 'calendar-range'
|
|
319
|
+
| 'calendar-search'
|
|
320
|
+
| 'calendar-sync'
|
|
321
|
+
| 'calendar-x'
|
|
322
|
+
| 'calendar-x2'
|
|
323
|
+
| 'calendar1'
|
|
324
|
+
| 'calendars'
|
|
325
|
+
| 'camera'
|
|
326
|
+
| 'camera-off'
|
|
327
|
+
| 'candlestick-chart'
|
|
328
|
+
| 'candy'
|
|
329
|
+
| 'candy-cane'
|
|
330
|
+
| 'candy-off'
|
|
331
|
+
| 'cannabis'
|
|
332
|
+
| 'cannabis-off'
|
|
333
|
+
| 'captions'
|
|
334
|
+
| 'captions-off'
|
|
335
|
+
| 'car'
|
|
336
|
+
| 'car-front'
|
|
337
|
+
| 'car-taxi-front'
|
|
338
|
+
| 'caravan'
|
|
339
|
+
| 'card-sim'
|
|
340
|
+
| 'carrot'
|
|
341
|
+
| 'case-lower'
|
|
342
|
+
| 'case-sensitive'
|
|
343
|
+
| 'case-upper'
|
|
344
|
+
| 'cassette-tape'
|
|
345
|
+
| 'cast'
|
|
346
|
+
| 'castle'
|
|
347
|
+
| 'cat'
|
|
348
|
+
| 'cctv'
|
|
349
|
+
| 'chart-area'
|
|
350
|
+
| 'chart-bar'
|
|
351
|
+
| 'chart-bar-big'
|
|
352
|
+
| 'chart-bar-decreasing'
|
|
353
|
+
| 'chart-bar-increasing'
|
|
354
|
+
| 'chart-bar-stacked'
|
|
355
|
+
| 'chart-candlestick'
|
|
356
|
+
| 'chart-column'
|
|
357
|
+
| 'chart-column-big'
|
|
358
|
+
| 'chart-column-decreasing'
|
|
359
|
+
| 'chart-column-increasing'
|
|
360
|
+
| 'chart-column-stacked'
|
|
361
|
+
| 'chart-gantt'
|
|
362
|
+
| 'chart-line'
|
|
363
|
+
| 'chart-network'
|
|
364
|
+
| 'chart-no-axes-column'
|
|
365
|
+
| 'chart-no-axes-column-decreasing'
|
|
366
|
+
| 'chart-no-axes-column-increasing'
|
|
367
|
+
| 'chart-no-axes-combined'
|
|
368
|
+
| 'chart-no-axes-gantt'
|
|
369
|
+
| 'chart-pie'
|
|
370
|
+
| 'chart-scatter'
|
|
371
|
+
| 'chart-spline'
|
|
372
|
+
| 'check'
|
|
373
|
+
| 'check-check'
|
|
374
|
+
| 'check-circle'
|
|
375
|
+
| 'check-circle2'
|
|
376
|
+
| 'check-line'
|
|
377
|
+
| 'check-square'
|
|
378
|
+
| 'check-square2'
|
|
379
|
+
| 'chef-hat'
|
|
380
|
+
| 'cherry'
|
|
381
|
+
| 'chess-bishop'
|
|
382
|
+
| 'chess-king'
|
|
383
|
+
| 'chess-knight'
|
|
384
|
+
| 'chess-pawn'
|
|
385
|
+
| 'chess-queen'
|
|
386
|
+
| 'chess-rook'
|
|
387
|
+
| 'chevron-down'
|
|
388
|
+
| 'chevron-down-circle'
|
|
389
|
+
| 'chevron-down-square'
|
|
390
|
+
| 'chevron-first'
|
|
391
|
+
| 'chevron-last'
|
|
392
|
+
| 'chevron-left'
|
|
393
|
+
| 'chevron-left-circle'
|
|
394
|
+
| 'chevron-left-square'
|
|
395
|
+
| 'chevron-right'
|
|
396
|
+
| 'chevron-right-circle'
|
|
397
|
+
| 'chevron-right-square'
|
|
398
|
+
| 'chevron-up'
|
|
399
|
+
| 'chevron-up-circle'
|
|
400
|
+
| 'chevron-up-square'
|
|
401
|
+
| 'chevrons-down'
|
|
402
|
+
| 'chevrons-down-up'
|
|
403
|
+
| 'chevrons-left'
|
|
404
|
+
| 'chevrons-left-right'
|
|
405
|
+
| 'chevrons-left-right-ellipsis'
|
|
406
|
+
| 'chevrons-right'
|
|
407
|
+
| 'chevrons-right-left'
|
|
408
|
+
| 'chevrons-up'
|
|
409
|
+
| 'chevrons-up-down'
|
|
410
|
+
| 'chrome'
|
|
411
|
+
| 'chromium'
|
|
412
|
+
| 'church'
|
|
413
|
+
| 'cigarette'
|
|
414
|
+
| 'cigarette-off'
|
|
415
|
+
| 'circle'
|
|
416
|
+
| 'circle-alert'
|
|
417
|
+
| 'circle-arrow-down'
|
|
418
|
+
| 'circle-arrow-left'
|
|
419
|
+
| 'circle-arrow-out-down-left'
|
|
420
|
+
| 'circle-arrow-out-down-right'
|
|
421
|
+
| 'circle-arrow-out-up-left'
|
|
422
|
+
| 'circle-arrow-out-up-right'
|
|
423
|
+
| 'circle-arrow-right'
|
|
424
|
+
| 'circle-arrow-up'
|
|
425
|
+
| 'circle-check'
|
|
426
|
+
| 'circle-check-big'
|
|
427
|
+
| 'circle-chevron-down'
|
|
428
|
+
| 'circle-chevron-left'
|
|
429
|
+
| 'circle-chevron-right'
|
|
430
|
+
| 'circle-chevron-up'
|
|
431
|
+
| 'circle-dashed'
|
|
432
|
+
| 'circle-divide'
|
|
433
|
+
| 'circle-dollar-sign'
|
|
434
|
+
| 'circle-dot'
|
|
435
|
+
| 'circle-dot-dashed'
|
|
436
|
+
| 'circle-ellipsis'
|
|
437
|
+
| 'circle-equal'
|
|
438
|
+
| 'circle-fading-arrow-up'
|
|
439
|
+
| 'circle-fading-plus'
|
|
440
|
+
| 'circle-gauge'
|
|
441
|
+
| 'circle-help'
|
|
442
|
+
| 'circle-minus'
|
|
443
|
+
| 'circle-off'
|
|
444
|
+
| 'circle-parking'
|
|
445
|
+
| 'circle-parking-off'
|
|
446
|
+
| 'circle-pause'
|
|
447
|
+
| 'circle-percent'
|
|
448
|
+
| 'circle-pile'
|
|
449
|
+
| 'circle-play'
|
|
450
|
+
| 'circle-plus'
|
|
451
|
+
| 'circle-pound-sterling'
|
|
452
|
+
| 'circle-power'
|
|
453
|
+
| 'circle-question-mark'
|
|
454
|
+
| 'circle-slash'
|
|
455
|
+
| 'circle-slash2'
|
|
456
|
+
| 'circle-slashed'
|
|
457
|
+
| 'circle-small'
|
|
458
|
+
| 'circle-star'
|
|
459
|
+
| 'circle-stop'
|
|
460
|
+
| 'circle-user'
|
|
461
|
+
| 'circle-user-round'
|
|
462
|
+
| 'circle-x'
|
|
463
|
+
| 'circuit-board'
|
|
464
|
+
| 'citrus'
|
|
465
|
+
| 'clapperboard'
|
|
466
|
+
| 'clipboard'
|
|
467
|
+
| 'clipboard-check'
|
|
468
|
+
| 'clipboard-clock'
|
|
469
|
+
| 'clipboard-copy'
|
|
470
|
+
| 'clipboard-edit'
|
|
471
|
+
| 'clipboard-list'
|
|
472
|
+
| 'clipboard-minus'
|
|
473
|
+
| 'clipboard-paste'
|
|
474
|
+
| 'clipboard-pen'
|
|
475
|
+
| 'clipboard-pen-line'
|
|
476
|
+
| 'clipboard-plus'
|
|
477
|
+
| 'clipboard-signature'
|
|
478
|
+
| 'clipboard-type'
|
|
479
|
+
| 'clipboard-x'
|
|
480
|
+
| 'clock'
|
|
481
|
+
| 'clock-alert'
|
|
482
|
+
| 'clock-arrow-down'
|
|
483
|
+
| 'clock-arrow-up'
|
|
484
|
+
| 'clock-check'
|
|
485
|
+
| 'clock-fading'
|
|
486
|
+
| 'clock-plus'
|
|
487
|
+
| 'clock1'
|
|
488
|
+
| 'clock10'
|
|
489
|
+
| 'clock11'
|
|
490
|
+
| 'clock12'
|
|
491
|
+
| 'clock2'
|
|
492
|
+
| 'clock3'
|
|
493
|
+
| 'clock4'
|
|
494
|
+
| 'clock5'
|
|
495
|
+
| 'clock6'
|
|
496
|
+
| 'clock7'
|
|
497
|
+
| 'clock8'
|
|
498
|
+
| 'clock9'
|
|
499
|
+
| 'closed-caption'
|
|
500
|
+
| 'cloud'
|
|
501
|
+
| 'cloud-alert'
|
|
502
|
+
| 'cloud-backup'
|
|
503
|
+
| 'cloud-check'
|
|
504
|
+
| 'cloud-cog'
|
|
505
|
+
| 'cloud-download'
|
|
506
|
+
| 'cloud-drizzle'
|
|
507
|
+
| 'cloud-fog'
|
|
508
|
+
| 'cloud-hail'
|
|
509
|
+
| 'cloud-lightning'
|
|
510
|
+
| 'cloud-moon'
|
|
511
|
+
| 'cloud-moon-rain'
|
|
512
|
+
| 'cloud-off'
|
|
513
|
+
| 'cloud-rain'
|
|
514
|
+
| 'cloud-rain-wind'
|
|
515
|
+
| 'cloud-snow'
|
|
516
|
+
| 'cloud-sun'
|
|
517
|
+
| 'cloud-sun-rain'
|
|
518
|
+
| 'cloud-sync'
|
|
519
|
+
| 'cloud-upload'
|
|
520
|
+
| 'cloudy'
|
|
521
|
+
| 'clover'
|
|
522
|
+
| 'club'
|
|
523
|
+
| 'code'
|
|
524
|
+
| 'code-square'
|
|
525
|
+
| 'code-xml'
|
|
526
|
+
| 'code2'
|
|
527
|
+
| 'codepen'
|
|
528
|
+
| 'codesandbox'
|
|
529
|
+
| 'coffee'
|
|
530
|
+
| 'cog'
|
|
531
|
+
| 'coins'
|
|
532
|
+
| 'columns'
|
|
533
|
+
| 'columns-settings'
|
|
534
|
+
| 'columns2'
|
|
535
|
+
| 'columns3'
|
|
536
|
+
| 'columns3cog'
|
|
537
|
+
| 'columns4'
|
|
538
|
+
| 'combine'
|
|
539
|
+
| 'command'
|
|
540
|
+
| 'compass'
|
|
541
|
+
| 'component'
|
|
542
|
+
| 'computer'
|
|
543
|
+
| 'concierge-bell'
|
|
544
|
+
| 'cone'
|
|
545
|
+
| 'construction'
|
|
546
|
+
| 'contact'
|
|
547
|
+
| 'contact-round'
|
|
548
|
+
| 'contact2'
|
|
549
|
+
| 'container'
|
|
550
|
+
| 'contrast'
|
|
551
|
+
| 'cookie'
|
|
552
|
+
| 'cooking-pot'
|
|
553
|
+
| 'copy'
|
|
554
|
+
| 'copy-check'
|
|
555
|
+
| 'copy-minus'
|
|
556
|
+
| 'copy-plus'
|
|
557
|
+
| 'copy-slash'
|
|
558
|
+
| 'copy-x'
|
|
559
|
+
| 'copyleft'
|
|
560
|
+
| 'copyright'
|
|
561
|
+
| 'corner-down-left'
|
|
562
|
+
| 'corner-down-right'
|
|
563
|
+
| 'corner-left-down'
|
|
564
|
+
| 'corner-left-up'
|
|
565
|
+
| 'corner-right-down'
|
|
566
|
+
| 'corner-right-up'
|
|
567
|
+
| 'corner-up-left'
|
|
568
|
+
| 'corner-up-right'
|
|
569
|
+
| 'cpu'
|
|
570
|
+
| 'creative-commons'
|
|
571
|
+
| 'credit-card'
|
|
572
|
+
| 'croissant'
|
|
573
|
+
| 'crop'
|
|
574
|
+
| 'cross'
|
|
575
|
+
| 'crosshair'
|
|
576
|
+
| 'crown'
|
|
577
|
+
| 'cuboid'
|
|
578
|
+
| 'cup-soda'
|
|
579
|
+
| 'curly-braces'
|
|
580
|
+
| 'currency'
|
|
581
|
+
| 'cylinder'
|
|
582
|
+
| 'dam'
|
|
583
|
+
| 'database'
|
|
584
|
+
| 'database-backup'
|
|
585
|
+
| 'database-zap'
|
|
586
|
+
| 'decimals-arrow-left'
|
|
587
|
+
| 'decimals-arrow-right'
|
|
588
|
+
| 'delete'
|
|
589
|
+
| 'dessert'
|
|
590
|
+
| 'diameter'
|
|
591
|
+
| 'diamond'
|
|
592
|
+
| 'diamond-minus'
|
|
593
|
+
| 'diamond-percent'
|
|
594
|
+
| 'diamond-plus'
|
|
595
|
+
| 'dice1'
|
|
596
|
+
| 'dice2'
|
|
597
|
+
| 'dice3'
|
|
598
|
+
| 'dice4'
|
|
599
|
+
| 'dice5'
|
|
600
|
+
| 'dice6'
|
|
601
|
+
| 'dices'
|
|
602
|
+
| 'diff'
|
|
603
|
+
| 'disc'
|
|
604
|
+
| 'disc-album'
|
|
605
|
+
| 'disc2'
|
|
606
|
+
| 'disc3'
|
|
607
|
+
| 'divide'
|
|
608
|
+
| 'divide-circle'
|
|
609
|
+
| 'divide-square'
|
|
610
|
+
| 'dna'
|
|
611
|
+
| 'dna-off'
|
|
612
|
+
| 'dock'
|
|
613
|
+
| 'dog'
|
|
614
|
+
| 'dollar-sign'
|
|
615
|
+
| 'donut'
|
|
616
|
+
| 'door-closed'
|
|
617
|
+
| 'door-closed-locked'
|
|
618
|
+
| 'door-open'
|
|
619
|
+
| 'dot'
|
|
620
|
+
| 'dot-square'
|
|
621
|
+
| 'download'
|
|
622
|
+
| 'download-cloud'
|
|
623
|
+
| 'drafting-compass'
|
|
624
|
+
| 'drama'
|
|
625
|
+
| 'dribbble'
|
|
626
|
+
| 'drill'
|
|
627
|
+
| 'drone'
|
|
628
|
+
| 'droplet'
|
|
629
|
+
| 'droplet-off'
|
|
630
|
+
| 'droplets'
|
|
631
|
+
| 'drum'
|
|
632
|
+
| 'drumstick'
|
|
633
|
+
| 'dumbbell'
|
|
634
|
+
| 'ear'
|
|
635
|
+
| 'ear-off'
|
|
636
|
+
| 'earth'
|
|
637
|
+
| 'earth-lock'
|
|
638
|
+
| 'eclipse'
|
|
639
|
+
| 'edit'
|
|
640
|
+
| 'edit2'
|
|
641
|
+
| 'edit3'
|
|
642
|
+
| 'egg'
|
|
643
|
+
| 'egg-fried'
|
|
644
|
+
| 'egg-off'
|
|
645
|
+
| 'ellipsis'
|
|
646
|
+
| 'ellipsis-vertical'
|
|
647
|
+
| 'equal'
|
|
648
|
+
| 'equal-approximately'
|
|
649
|
+
| 'equal-not'
|
|
650
|
+
| 'equal-square'
|
|
651
|
+
| 'eraser'
|
|
652
|
+
| 'ethernet-port'
|
|
653
|
+
| 'euro'
|
|
654
|
+
| 'ev-charger'
|
|
655
|
+
| 'expand'
|
|
656
|
+
| 'external-link'
|
|
657
|
+
| 'eye'
|
|
658
|
+
| 'eye-closed'
|
|
659
|
+
| 'eye-off'
|
|
660
|
+
| 'facebook'
|
|
661
|
+
| 'factory'
|
|
662
|
+
| 'fan'
|
|
663
|
+
| 'fast-forward'
|
|
664
|
+
| 'feather'
|
|
665
|
+
| 'fence'
|
|
666
|
+
| 'ferris-wheel'
|
|
667
|
+
| 'figma'
|
|
668
|
+
| 'file'
|
|
669
|
+
| 'file-archive'
|
|
670
|
+
| 'file-audio'
|
|
671
|
+
| 'file-audio2'
|
|
672
|
+
| 'file-axis3d'
|
|
673
|
+
| 'file-axis3d'
|
|
674
|
+
| 'file-badge'
|
|
675
|
+
| 'file-badge2'
|
|
676
|
+
| 'file-bar-chart'
|
|
677
|
+
| 'file-bar-chart2'
|
|
678
|
+
| 'file-box'
|
|
679
|
+
| 'file-braces'
|
|
680
|
+
| 'file-braces-corner'
|
|
681
|
+
| 'file-chart-column'
|
|
682
|
+
| 'file-chart-column-increasing'
|
|
683
|
+
| 'file-chart-line'
|
|
684
|
+
| 'file-chart-pie'
|
|
685
|
+
| 'file-check'
|
|
686
|
+
| 'file-check-corner'
|
|
687
|
+
| 'file-check2'
|
|
688
|
+
| 'file-clock'
|
|
689
|
+
| 'file-code'
|
|
690
|
+
| 'file-code-corner'
|
|
691
|
+
| 'file-code2'
|
|
692
|
+
| 'file-cog'
|
|
693
|
+
| 'file-cog2'
|
|
694
|
+
| 'file-diff'
|
|
695
|
+
| 'file-digit'
|
|
696
|
+
| 'file-down'
|
|
697
|
+
| 'file-edit'
|
|
698
|
+
| 'file-exclamation-point'
|
|
699
|
+
| 'file-headphone'
|
|
700
|
+
| 'file-heart'
|
|
701
|
+
| 'file-image'
|
|
702
|
+
| 'file-input'
|
|
703
|
+
| 'file-json'
|
|
704
|
+
| 'file-json2'
|
|
705
|
+
| 'file-key'
|
|
706
|
+
| 'file-key2'
|
|
707
|
+
| 'file-line-chart'
|
|
708
|
+
| 'file-lock'
|
|
709
|
+
| 'file-lock2'
|
|
710
|
+
| 'file-minus'
|
|
711
|
+
| 'file-minus-corner'
|
|
712
|
+
| 'file-minus2'
|
|
713
|
+
| 'file-music'
|
|
714
|
+
| 'file-output'
|
|
715
|
+
| 'file-pen'
|
|
716
|
+
| 'file-pen-line'
|
|
717
|
+
| 'file-pie-chart'
|
|
718
|
+
| 'file-play'
|
|
719
|
+
| 'file-plus'
|
|
720
|
+
| 'file-plus-corner'
|
|
721
|
+
| 'file-plus2'
|
|
722
|
+
| 'file-question'
|
|
723
|
+
| 'file-question-mark'
|
|
724
|
+
| 'file-scan'
|
|
725
|
+
| 'file-search'
|
|
726
|
+
| 'file-search-corner'
|
|
727
|
+
| 'file-search2'
|
|
728
|
+
| 'file-signal'
|
|
729
|
+
| 'file-signature'
|
|
730
|
+
| 'file-sliders'
|
|
731
|
+
| 'file-spreadsheet'
|
|
732
|
+
| 'file-stack'
|
|
733
|
+
| 'file-symlink'
|
|
734
|
+
| 'file-terminal'
|
|
735
|
+
| 'file-text'
|
|
736
|
+
| 'file-type'
|
|
737
|
+
| 'file-type-corner'
|
|
738
|
+
| 'file-type2'
|
|
739
|
+
| 'file-up'
|
|
740
|
+
| 'file-user'
|
|
741
|
+
| 'file-video'
|
|
742
|
+
| 'file-video-camera'
|
|
743
|
+
| 'file-video2'
|
|
744
|
+
| 'file-volume'
|
|
745
|
+
| 'file-volume2'
|
|
746
|
+
| 'file-warning'
|
|
747
|
+
| 'file-x'
|
|
748
|
+
| 'file-x-corner'
|
|
749
|
+
| 'file-x2'
|
|
750
|
+
| 'files'
|
|
751
|
+
| 'film'
|
|
752
|
+
| 'filter'
|
|
753
|
+
| 'filter-x'
|
|
754
|
+
| 'fingerprint'
|
|
755
|
+
| 'fingerprint-pattern'
|
|
756
|
+
| 'fire-extinguisher'
|
|
757
|
+
| 'fish'
|
|
758
|
+
| 'fish-off'
|
|
759
|
+
| 'fish-symbol'
|
|
760
|
+
| 'fishing-hook'
|
|
761
|
+
| 'flag'
|
|
762
|
+
| 'flag-off'
|
|
763
|
+
| 'flag-triangle-left'
|
|
764
|
+
| 'flag-triangle-right'
|
|
765
|
+
| 'flame'
|
|
766
|
+
| 'flame-kindling'
|
|
767
|
+
| 'flashlight'
|
|
768
|
+
| 'flashlight-off'
|
|
769
|
+
| 'flask-conical'
|
|
770
|
+
| 'flask-conical-off'
|
|
771
|
+
| 'flask-round'
|
|
772
|
+
| 'flip-horizontal'
|
|
773
|
+
| 'flip-horizontal2'
|
|
774
|
+
| 'flip-vertical'
|
|
775
|
+
| 'flip-vertical2'
|
|
776
|
+
| 'flower'
|
|
777
|
+
| 'flower2'
|
|
778
|
+
| 'focus'
|
|
779
|
+
| 'fold-horizontal'
|
|
780
|
+
| 'fold-vertical'
|
|
781
|
+
| 'folder'
|
|
782
|
+
| 'folder-archive'
|
|
783
|
+
| 'folder-check'
|
|
784
|
+
| 'folder-clock'
|
|
785
|
+
| 'folder-closed'
|
|
786
|
+
| 'folder-code'
|
|
787
|
+
| 'folder-cog'
|
|
788
|
+
| 'folder-cog2'
|
|
789
|
+
| 'folder-dot'
|
|
790
|
+
| 'folder-down'
|
|
791
|
+
| 'folder-edit'
|
|
792
|
+
| 'folder-git'
|
|
793
|
+
| 'folder-git2'
|
|
794
|
+
| 'folder-heart'
|
|
795
|
+
| 'folder-input'
|
|
796
|
+
| 'folder-kanban'
|
|
797
|
+
| 'folder-key'
|
|
798
|
+
| 'folder-lock'
|
|
799
|
+
| 'folder-minus'
|
|
800
|
+
| 'folder-open'
|
|
801
|
+
| 'folder-open-dot'
|
|
802
|
+
| 'folder-output'
|
|
803
|
+
| 'folder-pen'
|
|
804
|
+
| 'folder-plus'
|
|
805
|
+
| 'folder-root'
|
|
806
|
+
| 'folder-search'
|
|
807
|
+
| 'folder-search2'
|
|
808
|
+
| 'folder-symlink'
|
|
809
|
+
| 'folder-sync'
|
|
810
|
+
| 'folder-tree'
|
|
811
|
+
| 'folder-up'
|
|
812
|
+
| 'folder-x'
|
|
813
|
+
| 'folders'
|
|
814
|
+
| 'footprints'
|
|
815
|
+
| 'fork-knife'
|
|
816
|
+
| 'fork-knife-crossed'
|
|
817
|
+
| 'forklift'
|
|
818
|
+
| 'form'
|
|
819
|
+
| 'form-input'
|
|
820
|
+
| 'forward'
|
|
821
|
+
| 'frame'
|
|
822
|
+
| 'framer'
|
|
823
|
+
| 'frown'
|
|
824
|
+
| 'fuel'
|
|
825
|
+
| 'fullscreen'
|
|
826
|
+
| 'function-square'
|
|
827
|
+
| 'funnel'
|
|
828
|
+
| 'funnel-plus'
|
|
829
|
+
| 'funnel-x'
|
|
830
|
+
| 'gallery-horizontal'
|
|
831
|
+
| 'gallery-horizontal-end'
|
|
832
|
+
| 'gallery-thumbnails'
|
|
833
|
+
| 'gallery-vertical'
|
|
834
|
+
| 'gallery-vertical-end'
|
|
835
|
+
| 'gamepad'
|
|
836
|
+
| 'gamepad-directional'
|
|
837
|
+
| 'gamepad2'
|
|
838
|
+
| 'gantt-chart'
|
|
839
|
+
| 'gantt-chart-square'
|
|
840
|
+
| 'gauge'
|
|
841
|
+
| 'gauge-circle'
|
|
842
|
+
| 'gavel'
|
|
843
|
+
| 'gem'
|
|
844
|
+
| 'georgian-lari'
|
|
845
|
+
| 'ghost'
|
|
846
|
+
| 'gift'
|
|
847
|
+
| 'git-branch'
|
|
848
|
+
| 'git-branch-minus'
|
|
849
|
+
| 'git-branch-plus'
|
|
850
|
+
| 'git-commit'
|
|
851
|
+
| 'git-commit-horizontal'
|
|
852
|
+
| 'git-commit-vertical'
|
|
853
|
+
| 'git-compare'
|
|
854
|
+
| 'git-compare-arrows'
|
|
855
|
+
| 'git-fork'
|
|
856
|
+
| 'git-graph'
|
|
857
|
+
| 'git-merge'
|
|
858
|
+
| 'git-pull-request'
|
|
859
|
+
| 'git-pull-request-arrow'
|
|
860
|
+
| 'git-pull-request-closed'
|
|
861
|
+
| 'git-pull-request-create'
|
|
862
|
+
| 'git-pull-request-create-arrow'
|
|
863
|
+
| 'git-pull-request-draft'
|
|
864
|
+
| 'github'
|
|
865
|
+
| 'gitlab'
|
|
866
|
+
| 'glass-water'
|
|
867
|
+
| 'glasses'
|
|
868
|
+
| 'globe'
|
|
869
|
+
| 'globe-lock'
|
|
870
|
+
| 'globe-x'
|
|
871
|
+
| 'globe2'
|
|
872
|
+
| 'goal'
|
|
873
|
+
| 'gpu'
|
|
874
|
+
| 'grab'
|
|
875
|
+
| 'graduation-cap'
|
|
876
|
+
| 'grape'
|
|
877
|
+
| 'grid'
|
|
878
|
+
| 'grid2x2'
|
|
879
|
+
| 'grid2x2'
|
|
880
|
+
| 'grid2x2check'
|
|
881
|
+
| 'grid2x2check'
|
|
882
|
+
| 'grid2x2plus'
|
|
883
|
+
| 'grid2x2plus'
|
|
884
|
+
| 'grid2x2x'
|
|
885
|
+
| 'grid2x2x'
|
|
886
|
+
| 'grid3x2'
|
|
887
|
+
| 'grid3x3'
|
|
888
|
+
| 'grid3x3'
|
|
889
|
+
| 'grip'
|
|
890
|
+
| 'grip-horizontal'
|
|
891
|
+
| 'grip-vertical'
|
|
892
|
+
| 'group'
|
|
893
|
+
| 'guitar'
|
|
894
|
+
| 'ham'
|
|
895
|
+
| 'hamburger'
|
|
896
|
+
| 'hammer'
|
|
897
|
+
| 'hand'
|
|
898
|
+
| 'hand-coins'
|
|
899
|
+
| 'hand-fist'
|
|
900
|
+
| 'hand-grab'
|
|
901
|
+
| 'hand-heart'
|
|
902
|
+
| 'hand-helping'
|
|
903
|
+
| 'hand-metal'
|
|
904
|
+
| 'hand-platter'
|
|
905
|
+
| 'handbag'
|
|
906
|
+
| 'handshake'
|
|
907
|
+
| 'hard-drive'
|
|
908
|
+
| 'hard-drive-download'
|
|
909
|
+
| 'hard-drive-upload'
|
|
910
|
+
| 'hard-hat'
|
|
911
|
+
| 'hash'
|
|
912
|
+
| 'hat-glasses'
|
|
913
|
+
| 'haze'
|
|
914
|
+
| 'hd'
|
|
915
|
+
| 'hdmi-port'
|
|
916
|
+
| 'heading'
|
|
917
|
+
| 'heading1'
|
|
918
|
+
| 'heading2'
|
|
919
|
+
| 'heading3'
|
|
920
|
+
| 'heading4'
|
|
921
|
+
| 'heading5'
|
|
922
|
+
| 'heading6'
|
|
923
|
+
| 'headphone-off'
|
|
924
|
+
| 'headphones'
|
|
925
|
+
| 'headset'
|
|
926
|
+
| 'heart'
|
|
927
|
+
| 'heart-crack'
|
|
928
|
+
| 'heart-handshake'
|
|
929
|
+
| 'heart-minus'
|
|
930
|
+
| 'heart-off'
|
|
931
|
+
| 'heart-plus'
|
|
932
|
+
| 'heart-pulse'
|
|
933
|
+
| 'heater'
|
|
934
|
+
| 'helicopter'
|
|
935
|
+
| 'help-circle'
|
|
936
|
+
| 'helping-hand'
|
|
937
|
+
| 'hexagon'
|
|
938
|
+
| 'highlighter'
|
|
939
|
+
| 'history'
|
|
940
|
+
| 'home'
|
|
941
|
+
| 'hop'
|
|
942
|
+
| 'hop-off'
|
|
943
|
+
| 'hospital'
|
|
944
|
+
| 'hotel'
|
|
945
|
+
| 'hourglass'
|
|
946
|
+
| 'house'
|
|
947
|
+
| 'house-heart'
|
|
948
|
+
| 'house-plug'
|
|
949
|
+
| 'house-plus'
|
|
950
|
+
| 'house-wifi'
|
|
951
|
+
| 'ice-cream'
|
|
952
|
+
| 'ice-cream-bowl'
|
|
953
|
+
| 'ice-cream-cone'
|
|
954
|
+
| 'ice-cream2'
|
|
955
|
+
| 'id-card'
|
|
956
|
+
| 'id-card-lanyard'
|
|
957
|
+
| 'image'
|
|
958
|
+
| 'image-down'
|
|
959
|
+
| 'image-minus'
|
|
960
|
+
| 'image-off'
|
|
961
|
+
| 'image-play'
|
|
962
|
+
| 'image-plus'
|
|
963
|
+
| 'image-up'
|
|
964
|
+
| 'image-upscale'
|
|
965
|
+
| 'images'
|
|
966
|
+
| 'import'
|
|
967
|
+
| 'inbox'
|
|
968
|
+
| 'indent'
|
|
969
|
+
| 'indent-decrease'
|
|
970
|
+
| 'indent-increase'
|
|
971
|
+
| 'indian-rupee'
|
|
972
|
+
| 'infinity'
|
|
973
|
+
| 'info'
|
|
974
|
+
| 'inspect'
|
|
975
|
+
| 'inspection-panel'
|
|
976
|
+
| 'instagram'
|
|
977
|
+
| 'italic'
|
|
978
|
+
| 'iteration-ccw'
|
|
979
|
+
| 'iteration-cw'
|
|
980
|
+
| 'japanese-yen'
|
|
981
|
+
| 'joystick'
|
|
982
|
+
| 'kanban'
|
|
983
|
+
| 'kanban-square'
|
|
984
|
+
| 'kanban-square-dashed'
|
|
985
|
+
| 'kayak'
|
|
986
|
+
| 'key'
|
|
987
|
+
| 'key-round'
|
|
988
|
+
| 'key-square'
|
|
989
|
+
| 'keyboard'
|
|
990
|
+
| 'keyboard-music'
|
|
991
|
+
| 'keyboard-off'
|
|
992
|
+
| 'lamp'
|
|
993
|
+
| 'lamp-ceiling'
|
|
994
|
+
| 'lamp-desk'
|
|
995
|
+
| 'lamp-floor'
|
|
996
|
+
| 'lamp-wall-down'
|
|
997
|
+
| 'lamp-wall-up'
|
|
998
|
+
| 'land-plot'
|
|
999
|
+
| 'landmark'
|
|
1000
|
+
| 'languages'
|
|
1001
|
+
| 'laptop'
|
|
1002
|
+
| 'laptop-minimal'
|
|
1003
|
+
| 'laptop-minimal-check'
|
|
1004
|
+
| 'laptop2'
|
|
1005
|
+
| 'lasso'
|
|
1006
|
+
| 'lasso-select'
|
|
1007
|
+
| 'laugh'
|
|
1008
|
+
| 'layers'
|
|
1009
|
+
| 'layers-plus'
|
|
1010
|
+
| 'layers2'
|
|
1011
|
+
| 'layers3'
|
|
1012
|
+
| 'layout'
|
|
1013
|
+
| 'layout-dashboard'
|
|
1014
|
+
| 'layout-grid'
|
|
1015
|
+
| 'layout-list'
|
|
1016
|
+
| 'layout-panel-left'
|
|
1017
|
+
| 'layout-panel-top'
|
|
1018
|
+
| 'layout-template'
|
|
1019
|
+
| 'leaf'
|
|
1020
|
+
| 'leafy-green'
|
|
1021
|
+
| 'lectern'
|
|
1022
|
+
| 'letter-text'
|
|
1023
|
+
| 'library'
|
|
1024
|
+
| 'library-big'
|
|
1025
|
+
| 'library-square'
|
|
1026
|
+
| 'life-buoy'
|
|
1027
|
+
| 'ligature'
|
|
1028
|
+
| 'lightbulb'
|
|
1029
|
+
| 'lightbulb-off'
|
|
1030
|
+
| 'line-chart'
|
|
1031
|
+
| 'line-squiggle'
|
|
1032
|
+
| 'link'
|
|
1033
|
+
| 'link2'
|
|
1034
|
+
| 'link2off'
|
|
1035
|
+
| 'linkedin'
|
|
1036
|
+
| 'list'
|
|
1037
|
+
| 'list-check'
|
|
1038
|
+
| 'list-checks'
|
|
1039
|
+
| 'list-chevrons-down-up'
|
|
1040
|
+
| 'list-chevrons-up-down'
|
|
1041
|
+
| 'list-collapse'
|
|
1042
|
+
| 'list-end'
|
|
1043
|
+
| 'list-filter'
|
|
1044
|
+
| 'list-filter-plus'
|
|
1045
|
+
| 'list-indent-decrease'
|
|
1046
|
+
| 'list-indent-increase'
|
|
1047
|
+
| 'list-minus'
|
|
1048
|
+
| 'list-music'
|
|
1049
|
+
| 'list-ordered'
|
|
1050
|
+
| 'list-plus'
|
|
1051
|
+
| 'list-restart'
|
|
1052
|
+
| 'list-start'
|
|
1053
|
+
| 'list-todo'
|
|
1054
|
+
| 'list-tree'
|
|
1055
|
+
| 'list-video'
|
|
1056
|
+
| 'list-x'
|
|
1057
|
+
| 'loader'
|
|
1058
|
+
| 'loader-circle'
|
|
1059
|
+
| 'loader-pinwheel'
|
|
1060
|
+
| 'loader2'
|
|
1061
|
+
| 'locate'
|
|
1062
|
+
| 'locate-fixed'
|
|
1063
|
+
| 'locate-off'
|
|
1064
|
+
| 'location-edit'
|
|
1065
|
+
| 'lock'
|
|
1066
|
+
| 'lock-keyhole'
|
|
1067
|
+
| 'lock-keyhole-open'
|
|
1068
|
+
| 'lock-open'
|
|
1069
|
+
| 'log-in'
|
|
1070
|
+
| 'log-out'
|
|
1071
|
+
| 'logs'
|
|
1072
|
+
| 'lollipop'
|
|
1073
|
+
| 'luggage'
|
|
1074
|
+
| 'm-square'
|
|
1075
|
+
| 'magnet'
|
|
1076
|
+
| 'mail'
|
|
1077
|
+
| 'mail-check'
|
|
1078
|
+
| 'mail-minus'
|
|
1079
|
+
| 'mail-open'
|
|
1080
|
+
| 'mail-plus'
|
|
1081
|
+
| 'mail-question'
|
|
1082
|
+
| 'mail-question-mark'
|
|
1083
|
+
| 'mail-search'
|
|
1084
|
+
| 'mail-warning'
|
|
1085
|
+
| 'mail-x'
|
|
1086
|
+
| 'mailbox'
|
|
1087
|
+
| 'mails'
|
|
1088
|
+
| 'map'
|
|
1089
|
+
| 'map-minus'
|
|
1090
|
+
| 'map-pin'
|
|
1091
|
+
| 'map-pin-check'
|
|
1092
|
+
| 'map-pin-check-inside'
|
|
1093
|
+
| 'map-pin-house'
|
|
1094
|
+
| 'map-pin-minus'
|
|
1095
|
+
| 'map-pin-minus-inside'
|
|
1096
|
+
| 'map-pin-off'
|
|
1097
|
+
| 'map-pin-pen'
|
|
1098
|
+
| 'map-pin-plus'
|
|
1099
|
+
| 'map-pin-plus-inside'
|
|
1100
|
+
| 'map-pin-x'
|
|
1101
|
+
| 'map-pin-x-inside'
|
|
1102
|
+
| 'map-pinned'
|
|
1103
|
+
| 'map-plus'
|
|
1104
|
+
| 'mars'
|
|
1105
|
+
| 'mars-stroke'
|
|
1106
|
+
| 'martini'
|
|
1107
|
+
| 'maximize'
|
|
1108
|
+
| 'maximize2'
|
|
1109
|
+
| 'medal'
|
|
1110
|
+
| 'megaphone'
|
|
1111
|
+
| 'megaphone-off'
|
|
1112
|
+
| 'meh'
|
|
1113
|
+
| 'memory-stick'
|
|
1114
|
+
| 'menu'
|
|
1115
|
+
| 'menu-square'
|
|
1116
|
+
| 'merge'
|
|
1117
|
+
| 'message-circle'
|
|
1118
|
+
| 'message-circle-code'
|
|
1119
|
+
| 'message-circle-dashed'
|
|
1120
|
+
| 'message-circle-heart'
|
|
1121
|
+
| 'message-circle-more'
|
|
1122
|
+
| 'message-circle-off'
|
|
1123
|
+
| 'message-circle-plus'
|
|
1124
|
+
| 'message-circle-question'
|
|
1125
|
+
| 'message-circle-question-mark'
|
|
1126
|
+
| 'message-circle-reply'
|
|
1127
|
+
| 'message-circle-warning'
|
|
1128
|
+
| 'message-circle-x'
|
|
1129
|
+
| 'message-square'
|
|
1130
|
+
| 'message-square-code'
|
|
1131
|
+
| 'message-square-dashed'
|
|
1132
|
+
| 'message-square-diff'
|
|
1133
|
+
| 'message-square-dot'
|
|
1134
|
+
| 'message-square-heart'
|
|
1135
|
+
| 'message-square-lock'
|
|
1136
|
+
| 'message-square-more'
|
|
1137
|
+
| 'message-square-off'
|
|
1138
|
+
| 'message-square-plus'
|
|
1139
|
+
| 'message-square-quote'
|
|
1140
|
+
| 'message-square-reply'
|
|
1141
|
+
| 'message-square-share'
|
|
1142
|
+
| 'message-square-text'
|
|
1143
|
+
| 'message-square-warning'
|
|
1144
|
+
| 'message-square-x'
|
|
1145
|
+
| 'messages-square'
|
|
1146
|
+
| 'mic'
|
|
1147
|
+
| 'mic-off'
|
|
1148
|
+
| 'mic-vocal'
|
|
1149
|
+
| 'mic2'
|
|
1150
|
+
| 'microchip'
|
|
1151
|
+
| 'microscope'
|
|
1152
|
+
| 'microwave'
|
|
1153
|
+
| 'milestone'
|
|
1154
|
+
| 'milk'
|
|
1155
|
+
| 'milk-off'
|
|
1156
|
+
| 'minimize'
|
|
1157
|
+
| 'minimize2'
|
|
1158
|
+
| 'minus'
|
|
1159
|
+
| 'minus-circle'
|
|
1160
|
+
| 'minus-square'
|
|
1161
|
+
| 'monitor'
|
|
1162
|
+
| 'monitor-check'
|
|
1163
|
+
| 'monitor-cloud'
|
|
1164
|
+
| 'monitor-cog'
|
|
1165
|
+
| 'monitor-dot'
|
|
1166
|
+
| 'monitor-down'
|
|
1167
|
+
| 'monitor-off'
|
|
1168
|
+
| 'monitor-pause'
|
|
1169
|
+
| 'monitor-play'
|
|
1170
|
+
| 'monitor-smartphone'
|
|
1171
|
+
| 'monitor-speaker'
|
|
1172
|
+
| 'monitor-stop'
|
|
1173
|
+
| 'monitor-up'
|
|
1174
|
+
| 'monitor-x'
|
|
1175
|
+
| 'moon'
|
|
1176
|
+
| 'moon-star'
|
|
1177
|
+
| 'more-horizontal'
|
|
1178
|
+
| 'more-vertical'
|
|
1179
|
+
| 'motorbike'
|
|
1180
|
+
| 'mountain'
|
|
1181
|
+
| 'mountain-snow'
|
|
1182
|
+
| 'mouse'
|
|
1183
|
+
| 'mouse-off'
|
|
1184
|
+
| 'mouse-pointer'
|
|
1185
|
+
| 'mouse-pointer-ban'
|
|
1186
|
+
| 'mouse-pointer-click'
|
|
1187
|
+
| 'mouse-pointer-square-dashed'
|
|
1188
|
+
| 'mouse-pointer2'
|
|
1189
|
+
| 'mouse-pointer2off'
|
|
1190
|
+
| 'move'
|
|
1191
|
+
| 'move-diagonal'
|
|
1192
|
+
| 'move-diagonal2'
|
|
1193
|
+
| 'move-down'
|
|
1194
|
+
| 'move-down-left'
|
|
1195
|
+
| 'move-down-right'
|
|
1196
|
+
| 'move-horizontal'
|
|
1197
|
+
| 'move-left'
|
|
1198
|
+
| 'move-right'
|
|
1199
|
+
| 'move-up'
|
|
1200
|
+
| 'move-up-left'
|
|
1201
|
+
| 'move-up-right'
|
|
1202
|
+
| 'move-vertical'
|
|
1203
|
+
| 'move3d'
|
|
1204
|
+
| 'move3d'
|
|
1205
|
+
| 'music'
|
|
1206
|
+
| 'music2'
|
|
1207
|
+
| 'music3'
|
|
1208
|
+
| 'music4'
|
|
1209
|
+
| 'navigation'
|
|
1210
|
+
| 'navigation-off'
|
|
1211
|
+
| 'navigation2'
|
|
1212
|
+
| 'navigation2off'
|
|
1213
|
+
| 'network'
|
|
1214
|
+
| 'newspaper'
|
|
1215
|
+
| 'nfc'
|
|
1216
|
+
| 'non-binary'
|
|
1217
|
+
| 'notebook'
|
|
1218
|
+
| 'notebook-pen'
|
|
1219
|
+
| 'notebook-tabs'
|
|
1220
|
+
| 'notebook-text'
|
|
1221
|
+
| 'notepad-text'
|
|
1222
|
+
| 'notepad-text-dashed'
|
|
1223
|
+
| 'nut'
|
|
1224
|
+
| 'nut-off'
|
|
1225
|
+
| 'octagon'
|
|
1226
|
+
| 'octagon-alert'
|
|
1227
|
+
| 'octagon-minus'
|
|
1228
|
+
| 'octagon-pause'
|
|
1229
|
+
| 'octagon-x'
|
|
1230
|
+
| 'omega'
|
|
1231
|
+
| 'option'
|
|
1232
|
+
| 'orbit'
|
|
1233
|
+
| 'origami'
|
|
1234
|
+
| 'outdent'
|
|
1235
|
+
| 'package'
|
|
1236
|
+
| 'package-check'
|
|
1237
|
+
| 'package-minus'
|
|
1238
|
+
| 'package-open'
|
|
1239
|
+
| 'package-plus'
|
|
1240
|
+
| 'package-search'
|
|
1241
|
+
| 'package-x'
|
|
1242
|
+
| 'package2'
|
|
1243
|
+
| 'paint-bucket'
|
|
1244
|
+
| 'paint-roller'
|
|
1245
|
+
| 'paintbrush'
|
|
1246
|
+
| 'paintbrush-vertical'
|
|
1247
|
+
| 'paintbrush2'
|
|
1248
|
+
| 'palette'
|
|
1249
|
+
| 'palmtree'
|
|
1250
|
+
| 'panda'
|
|
1251
|
+
| 'panel-bottom'
|
|
1252
|
+
| 'panel-bottom-close'
|
|
1253
|
+
| 'panel-bottom-dashed'
|
|
1254
|
+
| 'panel-bottom-inactive'
|
|
1255
|
+
| 'panel-bottom-open'
|
|
1256
|
+
| 'panel-left'
|
|
1257
|
+
| 'panel-left-close'
|
|
1258
|
+
| 'panel-left-dashed'
|
|
1259
|
+
| 'panel-left-inactive'
|
|
1260
|
+
| 'panel-left-open'
|
|
1261
|
+
| 'panel-left-right-dashed'
|
|
1262
|
+
| 'panel-right'
|
|
1263
|
+
| 'panel-right-close'
|
|
1264
|
+
| 'panel-right-dashed'
|
|
1265
|
+
| 'panel-right-inactive'
|
|
1266
|
+
| 'panel-right-open'
|
|
1267
|
+
| 'panel-top'
|
|
1268
|
+
| 'panel-top-bottom-dashed'
|
|
1269
|
+
| 'panel-top-close'
|
|
1270
|
+
| 'panel-top-dashed'
|
|
1271
|
+
| 'panel-top-inactive'
|
|
1272
|
+
| 'panel-top-open'
|
|
1273
|
+
| 'panels-left-bottom'
|
|
1274
|
+
| 'panels-left-right'
|
|
1275
|
+
| 'panels-right-bottom'
|
|
1276
|
+
| 'panels-top-bottom'
|
|
1277
|
+
| 'panels-top-left'
|
|
1278
|
+
| 'paperclip'
|
|
1279
|
+
| 'parentheses'
|
|
1280
|
+
| 'parking-circle'
|
|
1281
|
+
| 'parking-circle-off'
|
|
1282
|
+
| 'parking-meter'
|
|
1283
|
+
| 'parking-square'
|
|
1284
|
+
| 'parking-square-off'
|
|
1285
|
+
| 'party-popper'
|
|
1286
|
+
| 'pause'
|
|
1287
|
+
| 'pause-circle'
|
|
1288
|
+
| 'pause-octagon'
|
|
1289
|
+
| 'paw-print'
|
|
1290
|
+
| 'pc-case'
|
|
1291
|
+
| 'pen'
|
|
1292
|
+
| 'pen-box'
|
|
1293
|
+
| 'pen-line'
|
|
1294
|
+
| 'pen-off'
|
|
1295
|
+
| 'pen-square'
|
|
1296
|
+
| 'pen-tool'
|
|
1297
|
+
| 'pencil'
|
|
1298
|
+
| 'pencil-line'
|
|
1299
|
+
| 'pencil-off'
|
|
1300
|
+
| 'pencil-ruler'
|
|
1301
|
+
| 'pentagon'
|
|
1302
|
+
| 'percent'
|
|
1303
|
+
| 'percent-circle'
|
|
1304
|
+
| 'percent-diamond'
|
|
1305
|
+
| 'percent-square'
|
|
1306
|
+
| 'person-standing'
|
|
1307
|
+
| 'philippine-peso'
|
|
1308
|
+
| 'phone'
|
|
1309
|
+
| 'phone-call'
|
|
1310
|
+
| 'phone-forwarded'
|
|
1311
|
+
| 'phone-incoming'
|
|
1312
|
+
| 'phone-missed'
|
|
1313
|
+
| 'phone-off'
|
|
1314
|
+
| 'phone-outgoing'
|
|
1315
|
+
| 'pi'
|
|
1316
|
+
| 'pi-square'
|
|
1317
|
+
| 'piano'
|
|
1318
|
+
| 'pickaxe'
|
|
1319
|
+
| 'picture-in-picture'
|
|
1320
|
+
| 'picture-in-picture2'
|
|
1321
|
+
| 'pie-chart'
|
|
1322
|
+
| 'piggy-bank'
|
|
1323
|
+
| 'pilcrow'
|
|
1324
|
+
| 'pilcrow-left'
|
|
1325
|
+
| 'pilcrow-right'
|
|
1326
|
+
| 'pilcrow-square'
|
|
1327
|
+
| 'pill'
|
|
1328
|
+
| 'pill-bottle'
|
|
1329
|
+
| 'pin'
|
|
1330
|
+
| 'pin-off'
|
|
1331
|
+
| 'pipette'
|
|
1332
|
+
| 'pizza'
|
|
1333
|
+
| 'plane'
|
|
1334
|
+
| 'plane-landing'
|
|
1335
|
+
| 'plane-takeoff'
|
|
1336
|
+
| 'play'
|
|
1337
|
+
| 'play-circle'
|
|
1338
|
+
| 'play-square'
|
|
1339
|
+
| 'plug'
|
|
1340
|
+
| 'plug-zap'
|
|
1341
|
+
| 'plug-zap2'
|
|
1342
|
+
| 'plug2'
|
|
1343
|
+
| 'plus'
|
|
1344
|
+
| 'plus-circle'
|
|
1345
|
+
| 'plus-square'
|
|
1346
|
+
| 'pocket'
|
|
1347
|
+
| 'pocket-knife'
|
|
1348
|
+
| 'podcast'
|
|
1349
|
+
| 'pointer'
|
|
1350
|
+
| 'pointer-off'
|
|
1351
|
+
| 'popcorn'
|
|
1352
|
+
| 'popsicle'
|
|
1353
|
+
| 'pound-sterling'
|
|
1354
|
+
| 'power'
|
|
1355
|
+
| 'power-circle'
|
|
1356
|
+
| 'power-off'
|
|
1357
|
+
| 'power-square'
|
|
1358
|
+
| 'presentation'
|
|
1359
|
+
| 'printer'
|
|
1360
|
+
| 'printer-check'
|
|
1361
|
+
| 'printer-x'
|
|
1362
|
+
| 'projector'
|
|
1363
|
+
| 'proportions'
|
|
1364
|
+
| 'puzzle'
|
|
1365
|
+
| 'pyramid'
|
|
1366
|
+
| 'qr-code'
|
|
1367
|
+
| 'quote'
|
|
1368
|
+
| 'rabbit'
|
|
1369
|
+
| 'radar'
|
|
1370
|
+
| 'radiation'
|
|
1371
|
+
| 'radical'
|
|
1372
|
+
| 'radio'
|
|
1373
|
+
| 'radio-receiver'
|
|
1374
|
+
| 'radio-tower'
|
|
1375
|
+
| 'radius'
|
|
1376
|
+
| 'rail-symbol'
|
|
1377
|
+
| 'rainbow'
|
|
1378
|
+
| 'rat'
|
|
1379
|
+
| 'ratio'
|
|
1380
|
+
| 'receipt'
|
|
1381
|
+
| 'receipt-cent'
|
|
1382
|
+
| 'receipt-euro'
|
|
1383
|
+
| 'receipt-indian-rupee'
|
|
1384
|
+
| 'receipt-japanese-yen'
|
|
1385
|
+
| 'receipt-pound-sterling'
|
|
1386
|
+
| 'receipt-russian-ruble'
|
|
1387
|
+
| 'receipt-swiss-franc'
|
|
1388
|
+
| 'receipt-text'
|
|
1389
|
+
| 'receipt-turkish-lira'
|
|
1390
|
+
| 'rectangle-circle'
|
|
1391
|
+
| 'rectangle-ellipsis'
|
|
1392
|
+
| 'rectangle-goggles'
|
|
1393
|
+
| 'rectangle-horizontal'
|
|
1394
|
+
| 'rectangle-vertical'
|
|
1395
|
+
| 'recycle'
|
|
1396
|
+
| 'redo'
|
|
1397
|
+
| 'redo-dot'
|
|
1398
|
+
| 'redo2'
|
|
1399
|
+
| 'refresh-ccw'
|
|
1400
|
+
| 'refresh-ccw-dot'
|
|
1401
|
+
| 'refresh-cw'
|
|
1402
|
+
| 'refresh-cw-off'
|
|
1403
|
+
| 'refrigerator'
|
|
1404
|
+
| 'regex'
|
|
1405
|
+
| 'remove-formatting'
|
|
1406
|
+
| 'repeat'
|
|
1407
|
+
| 'repeat1'
|
|
1408
|
+
| 'repeat2'
|
|
1409
|
+
| 'replace'
|
|
1410
|
+
| 'replace-all'
|
|
1411
|
+
| 'reply'
|
|
1412
|
+
| 'reply-all'
|
|
1413
|
+
| 'rewind'
|
|
1414
|
+
| 'ribbon'
|
|
1415
|
+
| 'rocket'
|
|
1416
|
+
| 'rocking-chair'
|
|
1417
|
+
| 'roller-coaster'
|
|
1418
|
+
| 'rose'
|
|
1419
|
+
| 'rotate-ccw'
|
|
1420
|
+
| 'rotate-ccw-key'
|
|
1421
|
+
| 'rotate-ccw-square'
|
|
1422
|
+
| 'rotate-cw'
|
|
1423
|
+
| 'rotate-cw-square'
|
|
1424
|
+
| 'rotate3d'
|
|
1425
|
+
| 'rotate3d'
|
|
1426
|
+
| 'route'
|
|
1427
|
+
| 'route-off'
|
|
1428
|
+
| 'router'
|
|
1429
|
+
| 'rows'
|
|
1430
|
+
| 'rows2'
|
|
1431
|
+
| 'rows3'
|
|
1432
|
+
| 'rows4'
|
|
1433
|
+
| 'rss'
|
|
1434
|
+
| 'ruler'
|
|
1435
|
+
| 'ruler-dimension-line'
|
|
1436
|
+
| 'russian-ruble'
|
|
1437
|
+
| 'sailboat'
|
|
1438
|
+
| 'salad'
|
|
1439
|
+
| 'sandwich'
|
|
1440
|
+
| 'satellite'
|
|
1441
|
+
| 'satellite-dish'
|
|
1442
|
+
| 'saudi-riyal'
|
|
1443
|
+
| 'save'
|
|
1444
|
+
| 'save-all'
|
|
1445
|
+
| 'save-off'
|
|
1446
|
+
| 'scale'
|
|
1447
|
+
| 'scale3d'
|
|
1448
|
+
| 'scale3d'
|
|
1449
|
+
| 'scaling'
|
|
1450
|
+
| 'scan'
|
|
1451
|
+
| 'scan-barcode'
|
|
1452
|
+
| 'scan-eye'
|
|
1453
|
+
| 'scan-face'
|
|
1454
|
+
| 'scan-heart'
|
|
1455
|
+
| 'scan-line'
|
|
1456
|
+
| 'scan-qr-code'
|
|
1457
|
+
| 'scan-search'
|
|
1458
|
+
| 'scan-text'
|
|
1459
|
+
| 'scatter-chart'
|
|
1460
|
+
| 'school'
|
|
1461
|
+
| 'school2'
|
|
1462
|
+
| 'scissors'
|
|
1463
|
+
| 'scissors-line-dashed'
|
|
1464
|
+
| 'scissors-square'
|
|
1465
|
+
| 'scissors-square-dashed-bottom'
|
|
1466
|
+
| 'scooter'
|
|
1467
|
+
| 'screen-share'
|
|
1468
|
+
| 'screen-share-off'
|
|
1469
|
+
| 'scroll'
|
|
1470
|
+
| 'scroll-text'
|
|
1471
|
+
| 'search'
|
|
1472
|
+
| 'search-alert'
|
|
1473
|
+
| 'search-check'
|
|
1474
|
+
| 'search-code'
|
|
1475
|
+
| 'search-slash'
|
|
1476
|
+
| 'search-x'
|
|
1477
|
+
| 'section'
|
|
1478
|
+
| 'send'
|
|
1479
|
+
| 'send-horizonal'
|
|
1480
|
+
| 'send-horizontal'
|
|
1481
|
+
| 'send-to-back'
|
|
1482
|
+
| 'separator-horizontal'
|
|
1483
|
+
| 'separator-vertical'
|
|
1484
|
+
| 'server'
|
|
1485
|
+
| 'server-cog'
|
|
1486
|
+
| 'server-crash'
|
|
1487
|
+
| 'server-off'
|
|
1488
|
+
| 'settings'
|
|
1489
|
+
| 'settings2'
|
|
1490
|
+
| 'shapes'
|
|
1491
|
+
| 'share'
|
|
1492
|
+
| 'share2'
|
|
1493
|
+
| 'sheet'
|
|
1494
|
+
| 'shell'
|
|
1495
|
+
| 'shield'
|
|
1496
|
+
| 'shield-alert'
|
|
1497
|
+
| 'shield-ban'
|
|
1498
|
+
| 'shield-check'
|
|
1499
|
+
| 'shield-close'
|
|
1500
|
+
| 'shield-ellipsis'
|
|
1501
|
+
| 'shield-half'
|
|
1502
|
+
| 'shield-minus'
|
|
1503
|
+
| 'shield-off'
|
|
1504
|
+
| 'shield-plus'
|
|
1505
|
+
| 'shield-question'
|
|
1506
|
+
| 'shield-question-mark'
|
|
1507
|
+
| 'shield-user'
|
|
1508
|
+
| 'shield-x'
|
|
1509
|
+
| 'ship'
|
|
1510
|
+
| 'ship-wheel'
|
|
1511
|
+
| 'shirt'
|
|
1512
|
+
| 'shopping-bag'
|
|
1513
|
+
| 'shopping-basket'
|
|
1514
|
+
| 'shopping-cart'
|
|
1515
|
+
| 'shovel'
|
|
1516
|
+
| 'shower-head'
|
|
1517
|
+
| 'shredder'
|
|
1518
|
+
| 'shrimp'
|
|
1519
|
+
| 'shrink'
|
|
1520
|
+
| 'shrub'
|
|
1521
|
+
| 'shuffle'
|
|
1522
|
+
| 'sidebar'
|
|
1523
|
+
| 'sidebar-close'
|
|
1524
|
+
| 'sidebar-open'
|
|
1525
|
+
| 'sigma'
|
|
1526
|
+
| 'sigma-square'
|
|
1527
|
+
| 'signal'
|
|
1528
|
+
| 'signal-high'
|
|
1529
|
+
| 'signal-low'
|
|
1530
|
+
| 'signal-medium'
|
|
1531
|
+
| 'signal-zero'
|
|
1532
|
+
| 'signature'
|
|
1533
|
+
| 'signpost'
|
|
1534
|
+
| 'signpost-big'
|
|
1535
|
+
| 'siren'
|
|
1536
|
+
| 'skip-back'
|
|
1537
|
+
| 'skip-forward'
|
|
1538
|
+
| 'skull'
|
|
1539
|
+
| 'slack'
|
|
1540
|
+
| 'slash'
|
|
1541
|
+
| 'slash-square'
|
|
1542
|
+
| 'slice'
|
|
1543
|
+
| 'sliders'
|
|
1544
|
+
| 'sliders-horizontal'
|
|
1545
|
+
| 'sliders-vertical'
|
|
1546
|
+
| 'smartphone'
|
|
1547
|
+
| 'smartphone-charging'
|
|
1548
|
+
| 'smartphone-nfc'
|
|
1549
|
+
| 'smile'
|
|
1550
|
+
| 'smile-plus'
|
|
1551
|
+
| 'snail'
|
|
1552
|
+
| 'snowflake'
|
|
1553
|
+
| 'soap-dispenser-droplet'
|
|
1554
|
+
| 'sofa'
|
|
1555
|
+
| 'solar-panel'
|
|
1556
|
+
| 'sort-asc'
|
|
1557
|
+
| 'sort-desc'
|
|
1558
|
+
| 'soup'
|
|
1559
|
+
| 'space'
|
|
1560
|
+
| 'spade'
|
|
1561
|
+
| 'sparkle'
|
|
1562
|
+
| 'sparkles'
|
|
1563
|
+
| 'speaker'
|
|
1564
|
+
| 'speech'
|
|
1565
|
+
| 'spell-check'
|
|
1566
|
+
| 'spell-check2'
|
|
1567
|
+
| 'spline'
|
|
1568
|
+
| 'spline-pointer'
|
|
1569
|
+
| 'split'
|
|
1570
|
+
| 'split-square-horizontal'
|
|
1571
|
+
| 'split-square-vertical'
|
|
1572
|
+
| 'spool'
|
|
1573
|
+
| 'spotlight'
|
|
1574
|
+
| 'spray-can'
|
|
1575
|
+
| 'sprout'
|
|
1576
|
+
| 'square'
|
|
1577
|
+
| 'square-activity'
|
|
1578
|
+
| 'square-arrow-down'
|
|
1579
|
+
| 'square-arrow-down-left'
|
|
1580
|
+
| 'square-arrow-down-right'
|
|
1581
|
+
| 'square-arrow-left'
|
|
1582
|
+
| 'square-arrow-out-down-left'
|
|
1583
|
+
| 'square-arrow-out-down-right'
|
|
1584
|
+
| 'square-arrow-out-up-left'
|
|
1585
|
+
| 'square-arrow-out-up-right'
|
|
1586
|
+
| 'square-arrow-right'
|
|
1587
|
+
| 'square-arrow-up'
|
|
1588
|
+
| 'square-arrow-up-left'
|
|
1589
|
+
| 'square-arrow-up-right'
|
|
1590
|
+
| 'square-asterisk'
|
|
1591
|
+
| 'square-bottom-dashed-scissors'
|
|
1592
|
+
| 'square-chart-gantt'
|
|
1593
|
+
| 'square-check'
|
|
1594
|
+
| 'square-check-big'
|
|
1595
|
+
| 'square-chevron-down'
|
|
1596
|
+
| 'square-chevron-left'
|
|
1597
|
+
| 'square-chevron-right'
|
|
1598
|
+
| 'square-chevron-up'
|
|
1599
|
+
| 'square-code'
|
|
1600
|
+
| 'square-dashed'
|
|
1601
|
+
| 'square-dashed-bottom'
|
|
1602
|
+
| 'square-dashed-bottom-code'
|
|
1603
|
+
| 'square-dashed-kanban'
|
|
1604
|
+
| 'square-dashed-mouse-pointer'
|
|
1605
|
+
| 'square-dashed-top-solid'
|
|
1606
|
+
| 'square-divide'
|
|
1607
|
+
| 'square-dot'
|
|
1608
|
+
| 'square-equal'
|
|
1609
|
+
| 'square-function'
|
|
1610
|
+
| 'square-gantt-chart'
|
|
1611
|
+
| 'square-kanban'
|
|
1612
|
+
| 'square-library'
|
|
1613
|
+
| 'square-m'
|
|
1614
|
+
| 'square-menu'
|
|
1615
|
+
| 'square-minus'
|
|
1616
|
+
| 'square-mouse-pointer'
|
|
1617
|
+
| 'square-parking'
|
|
1618
|
+
| 'square-parking-off'
|
|
1619
|
+
| 'square-pause'
|
|
1620
|
+
| 'square-pen'
|
|
1621
|
+
| 'square-percent'
|
|
1622
|
+
| 'square-pi'
|
|
1623
|
+
| 'square-pilcrow'
|
|
1624
|
+
| 'square-play'
|
|
1625
|
+
| 'square-plus'
|
|
1626
|
+
| 'square-power'
|
|
1627
|
+
| 'square-radical'
|
|
1628
|
+
| 'square-round-corner'
|
|
1629
|
+
| 'square-scissors'
|
|
1630
|
+
| 'square-sigma'
|
|
1631
|
+
| 'square-slash'
|
|
1632
|
+
| 'square-split-horizontal'
|
|
1633
|
+
| 'square-split-vertical'
|
|
1634
|
+
| 'square-square'
|
|
1635
|
+
| 'square-stack'
|
|
1636
|
+
| 'square-star'
|
|
1637
|
+
| 'square-stop'
|
|
1638
|
+
| 'square-terminal'
|
|
1639
|
+
| 'square-user'
|
|
1640
|
+
| 'square-user-round'
|
|
1641
|
+
| 'square-x'
|
|
1642
|
+
| 'squares-exclude'
|
|
1643
|
+
| 'squares-intersect'
|
|
1644
|
+
| 'squares-subtract'
|
|
1645
|
+
| 'squares-unite'
|
|
1646
|
+
| 'squircle'
|
|
1647
|
+
| 'squircle-dashed'
|
|
1648
|
+
| 'squirrel'
|
|
1649
|
+
| 'stamp'
|
|
1650
|
+
| 'star'
|
|
1651
|
+
| 'star-half'
|
|
1652
|
+
| 'star-off'
|
|
1653
|
+
| 'stars'
|
|
1654
|
+
| 'step-back'
|
|
1655
|
+
| 'step-forward'
|
|
1656
|
+
| 'stethoscope'
|
|
1657
|
+
| 'sticker'
|
|
1658
|
+
| 'sticky-note'
|
|
1659
|
+
| 'stone'
|
|
1660
|
+
| 'stop-circle'
|
|
1661
|
+
| 'store'
|
|
1662
|
+
| 'stretch-horizontal'
|
|
1663
|
+
| 'stretch-vertical'
|
|
1664
|
+
| 'strikethrough'
|
|
1665
|
+
| 'subscript'
|
|
1666
|
+
| 'subtitles'
|
|
1667
|
+
| 'sun'
|
|
1668
|
+
| 'sun-dim'
|
|
1669
|
+
| 'sun-medium'
|
|
1670
|
+
| 'sun-moon'
|
|
1671
|
+
| 'sun-snow'
|
|
1672
|
+
| 'sunrise'
|
|
1673
|
+
| 'sunset'
|
|
1674
|
+
| 'superscript'
|
|
1675
|
+
| 'swatch-book'
|
|
1676
|
+
| 'swiss-franc'
|
|
1677
|
+
| 'switch-camera'
|
|
1678
|
+
| 'sword'
|
|
1679
|
+
| 'swords'
|
|
1680
|
+
| 'syringe'
|
|
1681
|
+
| 'table'
|
|
1682
|
+
| 'table-cells-merge'
|
|
1683
|
+
| 'table-cells-split'
|
|
1684
|
+
| 'table-columns-split'
|
|
1685
|
+
| 'table-config'
|
|
1686
|
+
| 'table-of-contents'
|
|
1687
|
+
| 'table-properties'
|
|
1688
|
+
| 'table-rows-split'
|
|
1689
|
+
| 'table2'
|
|
1690
|
+
| 'tablet'
|
|
1691
|
+
| 'tablet-smartphone'
|
|
1692
|
+
| 'tablets'
|
|
1693
|
+
| 'tag'
|
|
1694
|
+
| 'tags'
|
|
1695
|
+
| 'tally1'
|
|
1696
|
+
| 'tally2'
|
|
1697
|
+
| 'tally3'
|
|
1698
|
+
| 'tally4'
|
|
1699
|
+
| 'tally5'
|
|
1700
|
+
| 'tangent'
|
|
1701
|
+
| 'target'
|
|
1702
|
+
| 'telescope'
|
|
1703
|
+
| 'tent'
|
|
1704
|
+
| 'tent-tree'
|
|
1705
|
+
| 'terminal'
|
|
1706
|
+
| 'terminal-square'
|
|
1707
|
+
| 'test-tube'
|
|
1708
|
+
| 'test-tube-diagonal'
|
|
1709
|
+
| 'test-tube2'
|
|
1710
|
+
| 'test-tubes'
|
|
1711
|
+
| 'text'
|
|
1712
|
+
| 'text-align-center'
|
|
1713
|
+
| 'text-align-end'
|
|
1714
|
+
| 'text-align-justify'
|
|
1715
|
+
| 'text-align-start'
|
|
1716
|
+
| 'text-cursor'
|
|
1717
|
+
| 'text-cursor-input'
|
|
1718
|
+
| 'text-initial'
|
|
1719
|
+
| 'text-quote'
|
|
1720
|
+
| 'text-search'
|
|
1721
|
+
| 'text-select'
|
|
1722
|
+
| 'text-selection'
|
|
1723
|
+
| 'text-wrap'
|
|
1724
|
+
| 'theater'
|
|
1725
|
+
| 'thermometer'
|
|
1726
|
+
| 'thermometer-snowflake'
|
|
1727
|
+
| 'thermometer-sun'
|
|
1728
|
+
| 'thumbs-down'
|
|
1729
|
+
| 'thumbs-up'
|
|
1730
|
+
| 'ticket'
|
|
1731
|
+
| 'ticket-check'
|
|
1732
|
+
| 'ticket-minus'
|
|
1733
|
+
| 'ticket-percent'
|
|
1734
|
+
| 'ticket-plus'
|
|
1735
|
+
| 'ticket-slash'
|
|
1736
|
+
| 'ticket-x'
|
|
1737
|
+
| 'tickets'
|
|
1738
|
+
| 'tickets-plane'
|
|
1739
|
+
| 'timer'
|
|
1740
|
+
| 'timer-off'
|
|
1741
|
+
| 'timer-reset'
|
|
1742
|
+
| 'toggle-left'
|
|
1743
|
+
| 'toggle-right'
|
|
1744
|
+
| 'toilet'
|
|
1745
|
+
| 'tool-case'
|
|
1746
|
+
| 'toolbox'
|
|
1747
|
+
| 'tornado'
|
|
1748
|
+
| 'torus'
|
|
1749
|
+
| 'touchpad'
|
|
1750
|
+
| 'touchpad-off'
|
|
1751
|
+
| 'tower-control'
|
|
1752
|
+
| 'toy-brick'
|
|
1753
|
+
| 'tractor'
|
|
1754
|
+
| 'traffic-cone'
|
|
1755
|
+
| 'train'
|
|
1756
|
+
| 'train-front'
|
|
1757
|
+
| 'train-front-tunnel'
|
|
1758
|
+
| 'train-track'
|
|
1759
|
+
| 'tram-front'
|
|
1760
|
+
| 'transgender'
|
|
1761
|
+
| 'trash'
|
|
1762
|
+
| 'trash2'
|
|
1763
|
+
| 'tree-deciduous'
|
|
1764
|
+
| 'tree-palm'
|
|
1765
|
+
| 'tree-pine'
|
|
1766
|
+
| 'trees'
|
|
1767
|
+
| 'trello'
|
|
1768
|
+
| 'trending-down'
|
|
1769
|
+
| 'trending-up'
|
|
1770
|
+
| 'trending-up-down'
|
|
1771
|
+
| 'triangle'
|
|
1772
|
+
| 'triangle-alert'
|
|
1773
|
+
| 'triangle-dashed'
|
|
1774
|
+
| 'triangle-right'
|
|
1775
|
+
| 'trophy'
|
|
1776
|
+
| 'truck'
|
|
1777
|
+
| 'truck-electric'
|
|
1778
|
+
| 'turkish-lira'
|
|
1779
|
+
| 'turntable'
|
|
1780
|
+
| 'turtle'
|
|
1781
|
+
| 'tv'
|
|
1782
|
+
| 'tv-minimal'
|
|
1783
|
+
| 'tv-minimal-play'
|
|
1784
|
+
| 'tv2'
|
|
1785
|
+
| 'twitch'
|
|
1786
|
+
| 'twitter'
|
|
1787
|
+
| 'type'
|
|
1788
|
+
| 'type-outline'
|
|
1789
|
+
| 'umbrella'
|
|
1790
|
+
| 'umbrella-off'
|
|
1791
|
+
| 'underline'
|
|
1792
|
+
| 'undo'
|
|
1793
|
+
| 'undo-dot'
|
|
1794
|
+
| 'undo2'
|
|
1795
|
+
| 'unfold-horizontal'
|
|
1796
|
+
| 'unfold-vertical'
|
|
1797
|
+
| 'ungroup'
|
|
1798
|
+
| 'university'
|
|
1799
|
+
| 'unlink'
|
|
1800
|
+
| 'unlink2'
|
|
1801
|
+
| 'unlock'
|
|
1802
|
+
| 'unlock-keyhole'
|
|
1803
|
+
| 'unplug'
|
|
1804
|
+
| 'upload'
|
|
1805
|
+
| 'upload-cloud'
|
|
1806
|
+
| 'usb'
|
|
1807
|
+
| 'user'
|
|
1808
|
+
| 'user-check'
|
|
1809
|
+
| 'user-check2'
|
|
1810
|
+
| 'user-circle'
|
|
1811
|
+
| 'user-circle2'
|
|
1812
|
+
| 'user-cog'
|
|
1813
|
+
| 'user-cog2'
|
|
1814
|
+
| 'user-lock'
|
|
1815
|
+
| 'user-minus'
|
|
1816
|
+
| 'user-minus2'
|
|
1817
|
+
| 'user-pen'
|
|
1818
|
+
| 'user-plus'
|
|
1819
|
+
| 'user-plus2'
|
|
1820
|
+
| 'user-round'
|
|
1821
|
+
| 'user-round-check'
|
|
1822
|
+
| 'user-round-cog'
|
|
1823
|
+
| 'user-round-minus'
|
|
1824
|
+
| 'user-round-pen'
|
|
1825
|
+
| 'user-round-plus'
|
|
1826
|
+
| 'user-round-search'
|
|
1827
|
+
| 'user-round-x'
|
|
1828
|
+
| 'user-search'
|
|
1829
|
+
| 'user-square'
|
|
1830
|
+
| 'user-square2'
|
|
1831
|
+
| 'user-star'
|
|
1832
|
+
| 'user-x'
|
|
1833
|
+
| 'user-x2'
|
|
1834
|
+
| 'user2'
|
|
1835
|
+
| 'users'
|
|
1836
|
+
| 'users-round'
|
|
1837
|
+
| 'users2'
|
|
1838
|
+
| 'utensils'
|
|
1839
|
+
| 'utensils-crossed'
|
|
1840
|
+
| 'utility-pole'
|
|
1841
|
+
| 'van'
|
|
1842
|
+
| 'variable'
|
|
1843
|
+
| 'vault'
|
|
1844
|
+
| 'vector-square'
|
|
1845
|
+
| 'vegan'
|
|
1846
|
+
| 'venetian-mask'
|
|
1847
|
+
| 'venus'
|
|
1848
|
+
| 'venus-and-mars'
|
|
1849
|
+
| 'verified'
|
|
1850
|
+
| 'vibrate'
|
|
1851
|
+
| 'vibrate-off'
|
|
1852
|
+
| 'video'
|
|
1853
|
+
| 'video-off'
|
|
1854
|
+
| 'videotape'
|
|
1855
|
+
| 'view'
|
|
1856
|
+
| 'voicemail'
|
|
1857
|
+
| 'volleyball'
|
|
1858
|
+
| 'volume'
|
|
1859
|
+
| 'volume-off'
|
|
1860
|
+
| 'volume-x'
|
|
1861
|
+
| 'volume1'
|
|
1862
|
+
| 'volume2'
|
|
1863
|
+
| 'vote'
|
|
1864
|
+
| 'wallet'
|
|
1865
|
+
| 'wallet-cards'
|
|
1866
|
+
| 'wallet-minimal'
|
|
1867
|
+
| 'wallet2'
|
|
1868
|
+
| 'wallpaper'
|
|
1869
|
+
| 'wand'
|
|
1870
|
+
| 'wand-sparkles'
|
|
1871
|
+
| 'wand2'
|
|
1872
|
+
| 'warehouse'
|
|
1873
|
+
| 'washing-machine'
|
|
1874
|
+
| 'watch'
|
|
1875
|
+
| 'waves'
|
|
1876
|
+
| 'waves-arrow-down'
|
|
1877
|
+
| 'waves-arrow-up'
|
|
1878
|
+
| 'waves-ladder'
|
|
1879
|
+
| 'waypoints'
|
|
1880
|
+
| 'webcam'
|
|
1881
|
+
| 'webhook'
|
|
1882
|
+
| 'webhook-off'
|
|
1883
|
+
| 'weight'
|
|
1884
|
+
| 'weight-tilde'
|
|
1885
|
+
| 'wheat'
|
|
1886
|
+
| 'wheat-off'
|
|
1887
|
+
| 'whole-word'
|
|
1888
|
+
| 'wifi'
|
|
1889
|
+
| 'wifi-cog'
|
|
1890
|
+
| 'wifi-high'
|
|
1891
|
+
| 'wifi-low'
|
|
1892
|
+
| 'wifi-off'
|
|
1893
|
+
| 'wifi-pen'
|
|
1894
|
+
| 'wifi-sync'
|
|
1895
|
+
| 'wifi-zero'
|
|
1896
|
+
| 'wind'
|
|
1897
|
+
| 'wind-arrow-down'
|
|
1898
|
+
| 'wine'
|
|
1899
|
+
| 'wine-off'
|
|
1900
|
+
| 'workflow'
|
|
1901
|
+
| 'worm'
|
|
1902
|
+
| 'wrap-text'
|
|
1903
|
+
| 'wrench'
|
|
1904
|
+
| 'x'
|
|
1905
|
+
| 'x-circle'
|
|
1906
|
+
| 'x-octagon'
|
|
1907
|
+
| 'x-square'
|
|
1908
|
+
| 'youtube'
|
|
1909
|
+
| 'zap'
|
|
1910
|
+
| 'zap-off'
|
|
1911
|
+
| 'zoom-in'
|
|
1912
|
+
| 'zoom-out';
|
|
1913
|
+
|
|
1914
|
+
declare const icons: Record<LucideIconName, string>;
|
|
1915
|
+
export default icons;
|