@tekkare/auriga 0.1.9 → 0.1.11
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/dist/module.json +1 -1
- package/dist/runtime/components/allIcons.vue +1112 -0
- package/dist/runtime/components/allIcons.vue.d.ts +6 -0
- package/dist/runtime/components/argActions.vue +47 -12
- package/dist/runtime/components/argActions.vue.d.ts +27 -4
- package/dist/runtime/components/argAdvancedSearchBar.vue.d.ts +2 -2
- package/dist/runtime/components/argChart.vue +109 -167
- package/dist/runtime/components/argChart.vue.d.ts +1 -1
- package/dist/runtime/components/argCheckbox.vue +35 -28
- package/dist/runtime/components/argCheckbox.vue.d.ts +9 -1
- package/dist/runtime/components/argCircleAmount.vue +37 -0
- package/dist/runtime/components/argCircleAmount.vue.d.ts +12 -0
- package/dist/runtime/components/argDate.vue +77 -0
- package/dist/runtime/components/argDate.vue.d.ts +34 -0
- package/dist/runtime/components/argDropdownSelect.vue +5 -19
- package/dist/runtime/components/argEmoji.vue +34 -0
- package/dist/runtime/components/argEmoji.vue.d.ts +29 -0
- package/dist/runtime/components/argErrors.vue +167 -0
- package/dist/runtime/components/argErrors.vue.d.ts +54 -0
- package/dist/runtime/components/argFileBtn.vue +10 -2
- package/dist/runtime/components/argFileBtn.vue.d.ts +9 -0
- package/dist/runtime/components/argFilterCard.vue +1 -1
- package/dist/runtime/components/argHeader.vue +15 -7
- package/dist/runtime/components/argHeader.vue.d.ts +9 -0
- package/dist/runtime/components/argHybridChart.vue +277 -0
- package/dist/runtime/components/argHybridChart.vue.d.ts +48 -0
- package/dist/runtime/components/argMainLayout.vue +1 -0
- package/dist/runtime/components/argMenuLink.vue +46 -17
- package/dist/runtime/components/argMenuLink.vue.d.ts +15 -4
- package/dist/runtime/components/argMultipleChoice.vue +1 -1
- package/dist/runtime/components/argMultipleSelect.vue +29 -17
- package/dist/runtime/components/argMultipleSelect.vue.d.ts +8 -0
- package/dist/runtime/components/argNumberInput.vue +223 -0
- package/dist/runtime/components/argNumberInput.vue.d.ts +57 -0
- package/dist/runtime/components/argRadioButtons.vue +2 -1
- package/dist/runtime/components/argScopeCriteria.vue +91 -0
- package/dist/runtime/components/argScopeCriteria.vue.d.ts +35 -0
- package/dist/runtime/components/argScopeHeader.vue +90 -0
- package/dist/runtime/components/argScopeHeader.vue.d.ts +33 -0
- package/dist/runtime/components/argScopeLayout.vue +61 -0
- package/dist/runtime/components/argScopeLayout.vue.d.ts +14 -0
- package/dist/runtime/components/argSidebar.vue +10 -7
- package/dist/runtime/components/argSidebar.vue.d.ts +9 -0
- package/dist/runtime/components/argSimpleChart.vue +123 -0
- package/dist/runtime/components/argSimpleChart.vue.d.ts +32 -0
- package/dist/runtime/components/argSimpleInput.vue +94 -0
- package/dist/runtime/components/argSimpleInput.vue.d.ts +40 -0
- package/dist/runtime/components/argSimpleLabel.vue +1 -1
- package/dist/runtime/components/argSmallAreaChart.vue +138 -0
- package/dist/runtime/components/argSmallAreaChart.vue.d.ts +122 -0
- package/dist/runtime/components/argStyle.vue +90 -65
- package/dist/runtime/components/argTags.vue +7 -5
- package/dist/runtime/components/argTipsBox.vue +153 -0
- package/dist/runtime/components/argTipsBox.vue.d.ts +37 -0
- package/dist/runtime/components/argTrendIndicator.vue +82 -0
- package/dist/runtime/components/argTrendIndicator.vue.d.ts +23 -0
- package/dist/runtime/components/argTutoModal.vue +185 -0
- package/dist/runtime/components/argTutoModal.vue.d.ts +41 -0
- package/package.json +2 -1
|
@@ -0,0 +1,1112 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<div style="margin: 16px">
|
|
4
|
+
<arg-search-input
|
|
5
|
+
v-model:Value="searchIcon"
|
|
6
|
+
:value="searchIcon"
|
|
7
|
+
place-holder-value="Search an icon..."
|
|
8
|
+
/>
|
|
9
|
+
</div>
|
|
10
|
+
<div style="display: flex; flex-wrap: wrap">
|
|
11
|
+
<div
|
|
12
|
+
v-for="(icon, index) in filteredIcon"
|
|
13
|
+
:key="index"
|
|
14
|
+
style="margin: 10px; width: 200px"
|
|
15
|
+
>
|
|
16
|
+
<center>
|
|
17
|
+
<arg-icon :name="icon" size="48"></arg-icon>
|
|
18
|
+
<p>{{ icon }}</p>
|
|
19
|
+
</center>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
24
|
+
|
|
25
|
+
<script>
|
|
26
|
+
import {
|
|
27
|
+
ref,
|
|
28
|
+
computed,
|
|
29
|
+
defineComponent
|
|
30
|
+
} from "vue";
|
|
31
|
+
import argIcon from "./argIcon.vue";
|
|
32
|
+
import argSearchInput from "./argSearchInput.vue";
|
|
33
|
+
export default defineComponent({
|
|
34
|
+
name: "allIcons",
|
|
35
|
+
components: { argIcon, argSearchInput },
|
|
36
|
+
setup() {
|
|
37
|
+
const searchIcon = ref("");
|
|
38
|
+
const iconNames = [
|
|
39
|
+
"Activity",
|
|
40
|
+
"AddressBook",
|
|
41
|
+
"AirplaneInFlight",
|
|
42
|
+
"AirplaneLanding",
|
|
43
|
+
"AirplaneTakeoff",
|
|
44
|
+
"AirplaneTilt",
|
|
45
|
+
"Airplane",
|
|
46
|
+
"Airplay",
|
|
47
|
+
"Alarm",
|
|
48
|
+
"Alien",
|
|
49
|
+
"AlignBottomSimple",
|
|
50
|
+
"AlignBottom",
|
|
51
|
+
"AlignCenterHorizontalSimple",
|
|
52
|
+
"AlignCenterHorizontal",
|
|
53
|
+
"AlignCenterVerticalSimple",
|
|
54
|
+
"AlignCenterVertical",
|
|
55
|
+
"AlignLeftSimple",
|
|
56
|
+
"AlignLeft",
|
|
57
|
+
"AlignRightSimple",
|
|
58
|
+
"AlignRight",
|
|
59
|
+
"AlignTopSimple",
|
|
60
|
+
"AlignTop",
|
|
61
|
+
"AnchorSimple",
|
|
62
|
+
"Anchor",
|
|
63
|
+
"AndroidLogo",
|
|
64
|
+
"AngularLogo",
|
|
65
|
+
"Aperture",
|
|
66
|
+
"AppStoreLogo",
|
|
67
|
+
"AppWindow",
|
|
68
|
+
"AppleLogo",
|
|
69
|
+
"ApplePodcastsLogo",
|
|
70
|
+
"ArchiveBox",
|
|
71
|
+
"ArchiveTray",
|
|
72
|
+
"Archive",
|
|
73
|
+
"Armchair",
|
|
74
|
+
"ArrowArcLeft",
|
|
75
|
+
"ArrowArcRight",
|
|
76
|
+
"ArrowBendDoubleUpLeft",
|
|
77
|
+
"ArrowBendDoubleUpRight",
|
|
78
|
+
"ArrowBendDownLeft",
|
|
79
|
+
"ArrowBendDownRight",
|
|
80
|
+
"ArrowBendLeftDown",
|
|
81
|
+
"ArrowBendLeftUp",
|
|
82
|
+
"ArrowBendRightDown",
|
|
83
|
+
"ArrowBendRightUp",
|
|
84
|
+
"ArrowBendUpLeft",
|
|
85
|
+
"ArrowBendUpRight",
|
|
86
|
+
"ArrowCircleDownLeft",
|
|
87
|
+
"ArrowCircleDownRight",
|
|
88
|
+
"ArrowCircleDown",
|
|
89
|
+
"ArrowCircleLeft",
|
|
90
|
+
"ArrowCircleRight",
|
|
91
|
+
"ArrowCircleUpLeft",
|
|
92
|
+
"ArrowCircleUpRight",
|
|
93
|
+
"ArrowCircleUp",
|
|
94
|
+
"ArrowClockwise",
|
|
95
|
+
"ArrowCounterClockwise",
|
|
96
|
+
"ArrowDownLeft",
|
|
97
|
+
"ArrowDownRight",
|
|
98
|
+
"ArrowDown",
|
|
99
|
+
"ArrowElbowDownLeft",
|
|
100
|
+
"ArrowElbowDownRight",
|
|
101
|
+
"ArrowElbowLeftDown",
|
|
102
|
+
"ArrowElbowLeftUp",
|
|
103
|
+
"ArrowElbowLeft",
|
|
104
|
+
"ArrowElbowRightDown",
|
|
105
|
+
"ArrowElbowRightUp",
|
|
106
|
+
"ArrowElbowRight",
|
|
107
|
+
"ArrowElbowUpLeft",
|
|
108
|
+
"ArrowElbowUpRight",
|
|
109
|
+
"ArrowFatDown",
|
|
110
|
+
"ArrowFatLeft",
|
|
111
|
+
"ArrowFatLineDown",
|
|
112
|
+
"ArrowFatLineLeft",
|
|
113
|
+
"ArrowFatLineRight",
|
|
114
|
+
"ArrowFatLineUp",
|
|
115
|
+
"ArrowFatLinesDown",
|
|
116
|
+
"ArrowFatLinesLeft",
|
|
117
|
+
"ArrowFatLinesRight",
|
|
118
|
+
"ArrowFatLinesUp",
|
|
119
|
+
"ArrowFatRight",
|
|
120
|
+
"ArrowFatUp",
|
|
121
|
+
"ArrowLeft",
|
|
122
|
+
"ArrowLineDownLeft",
|
|
123
|
+
"ArrowLineDownRight",
|
|
124
|
+
"ArrowLineDown",
|
|
125
|
+
"ArrowLineLeft",
|
|
126
|
+
"ArrowLineRight",
|
|
127
|
+
"ArrowLineUpLeft",
|
|
128
|
+
"ArrowLineUpRight",
|
|
129
|
+
"ArrowLineUp",
|
|
130
|
+
"ArrowRight",
|
|
131
|
+
"ArrowSquareDownLeft",
|
|
132
|
+
"ArrowSquareDownRight",
|
|
133
|
+
"ArrowSquareDown",
|
|
134
|
+
"ArrowSquareIn",
|
|
135
|
+
"ArrowSquareLeft",
|
|
136
|
+
"ArrowSquareOut",
|
|
137
|
+
"ArrowSquareRight",
|
|
138
|
+
"ArrowSquareUpLeft",
|
|
139
|
+
"ArrowSquareUpRight",
|
|
140
|
+
"ArrowSquareUp",
|
|
141
|
+
"ArrowUDownLeft",
|
|
142
|
+
"ArrowUDownRight",
|
|
143
|
+
"ArrowULeftDown",
|
|
144
|
+
"ArrowULeftUp",
|
|
145
|
+
"ArrowURightDown",
|
|
146
|
+
"ArrowURightUp",
|
|
147
|
+
"ArrowUUpLeft",
|
|
148
|
+
"ArrowUUpRight",
|
|
149
|
+
"ArrowUpLeft",
|
|
150
|
+
"ArrowUpRight",
|
|
151
|
+
"ArrowUp",
|
|
152
|
+
"ArrowsClockwise",
|
|
153
|
+
"ArrowsCounterClockwise",
|
|
154
|
+
"ArrowsDownUp",
|
|
155
|
+
"ArrowsHorizontal",
|
|
156
|
+
"ArrowsInCardinal",
|
|
157
|
+
"ArrowsInLineHorizontal",
|
|
158
|
+
"ArrowsInLineVertical",
|
|
159
|
+
"ArrowsInSimple",
|
|
160
|
+
"ArrowsIn",
|
|
161
|
+
"ArrowsLeftRight",
|
|
162
|
+
"ArrowsOutCardinal",
|
|
163
|
+
"ArrowsOutLineHorizontal",
|
|
164
|
+
"ArrowsOutLineVertical",
|
|
165
|
+
"ArrowsOutSimple",
|
|
166
|
+
"ArrowsOut",
|
|
167
|
+
"ArrowsVertical",
|
|
168
|
+
"ArticleMedium",
|
|
169
|
+
"ArticleNyTimes",
|
|
170
|
+
"Article",
|
|
171
|
+
"AsteriskSimple",
|
|
172
|
+
"Asterisk",
|
|
173
|
+
"At",
|
|
174
|
+
"Atom",
|
|
175
|
+
"Baby",
|
|
176
|
+
"Backpack",
|
|
177
|
+
"Backspace",
|
|
178
|
+
"BagSimple",
|
|
179
|
+
"Bag",
|
|
180
|
+
"Balloon",
|
|
181
|
+
"Bandaids",
|
|
182
|
+
"Bank",
|
|
183
|
+
"Barbell",
|
|
184
|
+
"Barcode",
|
|
185
|
+
"Barricade",
|
|
186
|
+
"Baseball",
|
|
187
|
+
"Basketball",
|
|
188
|
+
"Bathtub",
|
|
189
|
+
"BatteryChargingVertical",
|
|
190
|
+
"BatteryCharging",
|
|
191
|
+
"BatteryEmpty",
|
|
192
|
+
"BatteryFull",
|
|
193
|
+
"BatteryHigh",
|
|
194
|
+
"BatteryLow",
|
|
195
|
+
"BatteryMedium",
|
|
196
|
+
"BatteryPlus",
|
|
197
|
+
"BatteryWarningVertical",
|
|
198
|
+
"BatteryWarning",
|
|
199
|
+
"Bed",
|
|
200
|
+
"BeerBottle",
|
|
201
|
+
"BehanceLogo",
|
|
202
|
+
"BellRinging",
|
|
203
|
+
"BellSimpleRinging",
|
|
204
|
+
"BellSimpleSlash",
|
|
205
|
+
"BellSimpleZ",
|
|
206
|
+
"BellSimple",
|
|
207
|
+
"BellSlash",
|
|
208
|
+
"BellZ",
|
|
209
|
+
"Bell",
|
|
210
|
+
"BezierCurve",
|
|
211
|
+
"Bicycle",
|
|
212
|
+
"Binoculars",
|
|
213
|
+
"Bird",
|
|
214
|
+
"BluetoothConnected",
|
|
215
|
+
"BluetoothSlash",
|
|
216
|
+
"BluetoothX",
|
|
217
|
+
"Bluetooth",
|
|
218
|
+
"Boat",
|
|
219
|
+
"BookBookmark",
|
|
220
|
+
"BookOpen",
|
|
221
|
+
"Book",
|
|
222
|
+
"BookmarkSimple",
|
|
223
|
+
"Bookmark",
|
|
224
|
+
"BookmarksSimple",
|
|
225
|
+
"Bookmarks",
|
|
226
|
+
"Books",
|
|
227
|
+
"BoundingBox",
|
|
228
|
+
"BracketsAngle",
|
|
229
|
+
"BracketsCurly",
|
|
230
|
+
"BracketsRound",
|
|
231
|
+
"BracketsSquare",
|
|
232
|
+
"Brain",
|
|
233
|
+
"Brandy",
|
|
234
|
+
"BriefcaseMetal",
|
|
235
|
+
"Briefcase",
|
|
236
|
+
"Broadcast",
|
|
237
|
+
"Browser",
|
|
238
|
+
"Browsers",
|
|
239
|
+
"BugBeetle",
|
|
240
|
+
"BugDroid",
|
|
241
|
+
"Bug",
|
|
242
|
+
"Buildings",
|
|
243
|
+
"Bus",
|
|
244
|
+
"Butterfly",
|
|
245
|
+
"Cactus",
|
|
246
|
+
"Cake",
|
|
247
|
+
"Calculator",
|
|
248
|
+
"CalendarBlank",
|
|
249
|
+
"CalendarCheck",
|
|
250
|
+
"CalendarPlus",
|
|
251
|
+
"CalendarX",
|
|
252
|
+
"Calendar",
|
|
253
|
+
"CameraRotate",
|
|
254
|
+
"CameraSlash",
|
|
255
|
+
"Camera",
|
|
256
|
+
"Campfire",
|
|
257
|
+
"CarSimple",
|
|
258
|
+
"Car",
|
|
259
|
+
"Cardholder",
|
|
260
|
+
"Cards",
|
|
261
|
+
"CaretCircleDoubleDown",
|
|
262
|
+
"CaretCircleDoubleLeft",
|
|
263
|
+
"CaretCircleDoubleRight",
|
|
264
|
+
"CaretCircleDoubleUp",
|
|
265
|
+
"CaretCircleDown",
|
|
266
|
+
"CaretCircleLeft",
|
|
267
|
+
"CaretCircleRight",
|
|
268
|
+
"CaretCircleUp",
|
|
269
|
+
"CaretDoubleDown",
|
|
270
|
+
"CaretDoubleLeft",
|
|
271
|
+
"CaretDoubleRight",
|
|
272
|
+
"CaretDoubleUp",
|
|
273
|
+
"CaretDown",
|
|
274
|
+
"CaretLeft",
|
|
275
|
+
"CaretRight",
|
|
276
|
+
"CaretUp",
|
|
277
|
+
"Cat",
|
|
278
|
+
"CellSignalFull",
|
|
279
|
+
"CellSignalHigh",
|
|
280
|
+
"CellSignalLow",
|
|
281
|
+
"CellSignalMedium",
|
|
282
|
+
"CellSignalNone",
|
|
283
|
+
"CellSignalSlash",
|
|
284
|
+
"CellSignalX",
|
|
285
|
+
"ChalkboardSimple",
|
|
286
|
+
"ChalkboardTeacher",
|
|
287
|
+
"Chalkboard",
|
|
288
|
+
"ChartBarHorizontal",
|
|
289
|
+
"ChartBar",
|
|
290
|
+
"ChartLineUp",
|
|
291
|
+
"ChartLine",
|
|
292
|
+
"ChartPieSlice",
|
|
293
|
+
"ChartPie",
|
|
294
|
+
"ChatCenteredDots",
|
|
295
|
+
"ChatCenteredText",
|
|
296
|
+
"ChatCentered",
|
|
297
|
+
"ChatCircleDots",
|
|
298
|
+
"ChatCircleText",
|
|
299
|
+
"ChatCircle",
|
|
300
|
+
"ChatDots",
|
|
301
|
+
"ChatTeardropDots",
|
|
302
|
+
"ChatTeardropText",
|
|
303
|
+
"ChatTeardrop",
|
|
304
|
+
"ChatText",
|
|
305
|
+
"Chat",
|
|
306
|
+
"ChatsCircle",
|
|
307
|
+
"ChatsTeardrop",
|
|
308
|
+
"Chats",
|
|
309
|
+
"CheckCircle",
|
|
310
|
+
"CheckCircleFill",
|
|
311
|
+
"CheckSquareOffset",
|
|
312
|
+
"CheckSquare",
|
|
313
|
+
"CheckSquareFill",
|
|
314
|
+
"Check",
|
|
315
|
+
"Checks",
|
|
316
|
+
"CircleDashed",
|
|
317
|
+
"CircleHalfTilt",
|
|
318
|
+
"CircleHalf",
|
|
319
|
+
"CircleNotch",
|
|
320
|
+
"CircelSelectFill",
|
|
321
|
+
"CircleWavyCheck",
|
|
322
|
+
"CircleWavyQuestion",
|
|
323
|
+
"CircleWavyWarning",
|
|
324
|
+
"CircleWavy",
|
|
325
|
+
"Circle",
|
|
326
|
+
"CirclesFour",
|
|
327
|
+
"CirclesThreePlus",
|
|
328
|
+
"CirclesThree",
|
|
329
|
+
"ClipboardText",
|
|
330
|
+
"Clipboard",
|
|
331
|
+
"ClockAfternoon",
|
|
332
|
+
"ClockClockwise",
|
|
333
|
+
"ClockCounterClockwise",
|
|
334
|
+
"Clock",
|
|
335
|
+
"ClosedCaptioning",
|
|
336
|
+
"CloudArrowDown",
|
|
337
|
+
"CloudArrowUp",
|
|
338
|
+
"CloudCheck",
|
|
339
|
+
"CloudFog",
|
|
340
|
+
"CloudLightning",
|
|
341
|
+
"CloudMoon",
|
|
342
|
+
"CloudRain",
|
|
343
|
+
"CloudSlash",
|
|
344
|
+
"CloudSnow",
|
|
345
|
+
"CloudSun",
|
|
346
|
+
"Cloud",
|
|
347
|
+
"Club",
|
|
348
|
+
"CoatHanger",
|
|
349
|
+
"CodeSimple",
|
|
350
|
+
"Code",
|
|
351
|
+
"CodepenLogo",
|
|
352
|
+
"CodesandboxLogo",
|
|
353
|
+
"Coffee",
|
|
354
|
+
"CoinVertical",
|
|
355
|
+
"Coin",
|
|
356
|
+
"Coins",
|
|
357
|
+
"Columns",
|
|
358
|
+
"Command",
|
|
359
|
+
"Compass",
|
|
360
|
+
"ComputerTower",
|
|
361
|
+
"Confetti",
|
|
362
|
+
"Cookie",
|
|
363
|
+
"CookingPot",
|
|
364
|
+
"CopySimple",
|
|
365
|
+
"Copy",
|
|
366
|
+
"Copyleft",
|
|
367
|
+
"Copyright",
|
|
368
|
+
"CornersIn",
|
|
369
|
+
"CornersOut",
|
|
370
|
+
"Cpu",
|
|
371
|
+
"CreditCard",
|
|
372
|
+
"Crop",
|
|
373
|
+
"CrosshairSimple",
|
|
374
|
+
"Crosshair",
|
|
375
|
+
"CrownSimple",
|
|
376
|
+
"Crown",
|
|
377
|
+
"Cube",
|
|
378
|
+
"CurrencyBtc",
|
|
379
|
+
"CurrencyCircleDollar",
|
|
380
|
+
"CurrencyCny",
|
|
381
|
+
"CurrencyDollarSimple",
|
|
382
|
+
"CurrencyDollar",
|
|
383
|
+
"CurrencyEth",
|
|
384
|
+
"CurrencyEur",
|
|
385
|
+
"CurrencyGbp",
|
|
386
|
+
"CurrencyInr",
|
|
387
|
+
"CurrencyJpy",
|
|
388
|
+
"CurrencyKrw",
|
|
389
|
+
"CurrencyKzt",
|
|
390
|
+
"CurrencyNgn",
|
|
391
|
+
"CurrencyRub",
|
|
392
|
+
"CursorText",
|
|
393
|
+
"Cursor",
|
|
394
|
+
"Cylinder",
|
|
395
|
+
"Database",
|
|
396
|
+
"DesktopTower",
|
|
397
|
+
"Desktop",
|
|
398
|
+
"Detective",
|
|
399
|
+
"DeviceMobileCamera",
|
|
400
|
+
"DeviceMobileSpeaker",
|
|
401
|
+
"DeviceMobile",
|
|
402
|
+
"DeviceTabletCamera",
|
|
403
|
+
"DeviceTabletSpeaker",
|
|
404
|
+
"DeviceTablet",
|
|
405
|
+
"Diamond",
|
|
406
|
+
"DiamondsFour",
|
|
407
|
+
"DiceFive",
|
|
408
|
+
"DiceFour",
|
|
409
|
+
"DiceOne",
|
|
410
|
+
"DiceSix",
|
|
411
|
+
"DiceThree",
|
|
412
|
+
"DiceTwo",
|
|
413
|
+
"Disc",
|
|
414
|
+
"DiscordLogo",
|
|
415
|
+
"Divide",
|
|
416
|
+
"Dog",
|
|
417
|
+
"Door",
|
|
418
|
+
"DotsNine",
|
|
419
|
+
"DotsSixVertical",
|
|
420
|
+
"DotsSix",
|
|
421
|
+
"DotsThreeCircleVertical",
|
|
422
|
+
"DotsThreeCircle",
|
|
423
|
+
"DotsThreeOutlineVertical",
|
|
424
|
+
"DotsThreeOutline",
|
|
425
|
+
"DotsThreeVertical",
|
|
426
|
+
"DotsThree",
|
|
427
|
+
"DownloadSimple",
|
|
428
|
+
"Download",
|
|
429
|
+
"DribbbleLogo",
|
|
430
|
+
"DropHalfBottom",
|
|
431
|
+
"DropHalf",
|
|
432
|
+
"Drop",
|
|
433
|
+
"EarSlash",
|
|
434
|
+
"Ear",
|
|
435
|
+
"EggCrack",
|
|
436
|
+
"Egg",
|
|
437
|
+
"EjectSimple",
|
|
438
|
+
"Eject",
|
|
439
|
+
"EnvelopeOpen",
|
|
440
|
+
"EnvelopeSimpleOpen",
|
|
441
|
+
"EnvelopeSimple",
|
|
442
|
+
"Envelope",
|
|
443
|
+
"Equalizer",
|
|
444
|
+
"Equals",
|
|
445
|
+
"Eraser",
|
|
446
|
+
"Exam",
|
|
447
|
+
"Export",
|
|
448
|
+
"EyeClosed",
|
|
449
|
+
"EyeSlash",
|
|
450
|
+
"Eye",
|
|
451
|
+
"EyedropperSample",
|
|
452
|
+
"Eyedropper",
|
|
453
|
+
"Eyeglasses",
|
|
454
|
+
"FaceMask",
|
|
455
|
+
"FacebookLogo",
|
|
456
|
+
"Factory",
|
|
457
|
+
"FadersHorizontal",
|
|
458
|
+
"Faders",
|
|
459
|
+
"FastForwardCircle",
|
|
460
|
+
"FastForward",
|
|
461
|
+
"FigmaLogo",
|
|
462
|
+
"FileArrowDown",
|
|
463
|
+
"FileArrowUp",
|
|
464
|
+
"FileAudio",
|
|
465
|
+
"FileCloud",
|
|
466
|
+
"FileCode",
|
|
467
|
+
"FileCss",
|
|
468
|
+
"FileCsv",
|
|
469
|
+
"FileDoc",
|
|
470
|
+
"FileDotted",
|
|
471
|
+
"FileHtml",
|
|
472
|
+
"FileImage",
|
|
473
|
+
"FileJpg",
|
|
474
|
+
"FileJs",
|
|
475
|
+
"FileJsx",
|
|
476
|
+
"FileLock",
|
|
477
|
+
"FileMinus",
|
|
478
|
+
"FilePdf",
|
|
479
|
+
"FilePlus",
|
|
480
|
+
"FilePng",
|
|
481
|
+
"FilePpt",
|
|
482
|
+
"FileRs",
|
|
483
|
+
"FileSearch",
|
|
484
|
+
"FileText",
|
|
485
|
+
"FileTs",
|
|
486
|
+
"FileTsx",
|
|
487
|
+
"FileVideo",
|
|
488
|
+
"FileVue",
|
|
489
|
+
"FileX",
|
|
490
|
+
"FileXls",
|
|
491
|
+
"FileZip",
|
|
492
|
+
"File",
|
|
493
|
+
"Files",
|
|
494
|
+
"FilmScript",
|
|
495
|
+
"FilmSlate",
|
|
496
|
+
"FilmStrip",
|
|
497
|
+
"FingerprintSimple",
|
|
498
|
+
"Fingerprint",
|
|
499
|
+
"FinnTheHuman",
|
|
500
|
+
"FireSimple",
|
|
501
|
+
"Fire",
|
|
502
|
+
"FirstAidKit",
|
|
503
|
+
"FirstAid",
|
|
504
|
+
"FishSimple",
|
|
505
|
+
"Fish",
|
|
506
|
+
"FlagBanner",
|
|
507
|
+
"FlagCheckered",
|
|
508
|
+
"Flag",
|
|
509
|
+
"Flame",
|
|
510
|
+
"Flashlight",
|
|
511
|
+
"Flask",
|
|
512
|
+
"FloppyDiskBack",
|
|
513
|
+
"FloppyDisk",
|
|
514
|
+
"FlowArrow",
|
|
515
|
+
"FlowerLotus",
|
|
516
|
+
"Flower",
|
|
517
|
+
"FlyingSaucer",
|
|
518
|
+
"FolderDotted",
|
|
519
|
+
"FolderLock",
|
|
520
|
+
"FolderMinus",
|
|
521
|
+
"FolderNotchMinus",
|
|
522
|
+
"FolderNotchOpen",
|
|
523
|
+
"FolderNotchPlus",
|
|
524
|
+
"FolderNotch",
|
|
525
|
+
"FolderOpen",
|
|
526
|
+
"FolderPlus",
|
|
527
|
+
"FolderSimpleDotted",
|
|
528
|
+
"FolderSimpleLock",
|
|
529
|
+
"FolderSimpleMinus",
|
|
530
|
+
"FolderSimplePlus",
|
|
531
|
+
"FolderSimpleStar",
|
|
532
|
+
"FolderSimpleUser",
|
|
533
|
+
"FolderSimple",
|
|
534
|
+
"FolderStar",
|
|
535
|
+
"FolderUser",
|
|
536
|
+
"Folder",
|
|
537
|
+
"Folders",
|
|
538
|
+
"Football",
|
|
539
|
+
"ForkKnife",
|
|
540
|
+
"FrameCorners",
|
|
541
|
+
"FramerLogo",
|
|
542
|
+
"Function",
|
|
543
|
+
"FunnelSimple",
|
|
544
|
+
"Funnel",
|
|
545
|
+
"GameController",
|
|
546
|
+
"GasPump",
|
|
547
|
+
"Gauge",
|
|
548
|
+
"GearSix",
|
|
549
|
+
"Gear",
|
|
550
|
+
"GenderFemale",
|
|
551
|
+
"GenderIntersex",
|
|
552
|
+
"GenderMale",
|
|
553
|
+
"GenderNeuter",
|
|
554
|
+
"GenderNonbinary",
|
|
555
|
+
"GenderTransgender",
|
|
556
|
+
"Ghost",
|
|
557
|
+
"Gif",
|
|
558
|
+
"Gift",
|
|
559
|
+
"GitBranch",
|
|
560
|
+
"GitCommit",
|
|
561
|
+
"GitDiff",
|
|
562
|
+
"GitFork",
|
|
563
|
+
"GitMerge",
|
|
564
|
+
"GitPullRequest",
|
|
565
|
+
"GithubLogo",
|
|
566
|
+
"GitlabLogoSimple",
|
|
567
|
+
"GitlabLogo",
|
|
568
|
+
"GlobeHemisphereEast",
|
|
569
|
+
"GlobeHemisphereWest",
|
|
570
|
+
"GlobeSimple",
|
|
571
|
+
"GlobeStand",
|
|
572
|
+
"Globe",
|
|
573
|
+
"GoogleChromeLogo",
|
|
574
|
+
"GoogleLogo",
|
|
575
|
+
"GooglePhotosLogo",
|
|
576
|
+
"GooglePlayLogo",
|
|
577
|
+
"GooglePodcastsLogo",
|
|
578
|
+
"Gradient",
|
|
579
|
+
"GraduationCap",
|
|
580
|
+
"Graph",
|
|
581
|
+
"GridFour",
|
|
582
|
+
"Hamburger",
|
|
583
|
+
"HandEye",
|
|
584
|
+
"HandFist",
|
|
585
|
+
"HandGrabbing",
|
|
586
|
+
"HandPalm",
|
|
587
|
+
"HandPointing",
|
|
588
|
+
"HandSoap",
|
|
589
|
+
"HandWaving",
|
|
590
|
+
"Hand",
|
|
591
|
+
"HandbagSimple",
|
|
592
|
+
"Handbag",
|
|
593
|
+
"HandsClapping",
|
|
594
|
+
"Handshake",
|
|
595
|
+
"HardDrive",
|
|
596
|
+
"HardDrives",
|
|
597
|
+
"HashStraight",
|
|
598
|
+
"Hash",
|
|
599
|
+
"Headlights",
|
|
600
|
+
"Headphones",
|
|
601
|
+
"Headset",
|
|
602
|
+
"HeartBreak",
|
|
603
|
+
"HeartStraightBreak",
|
|
604
|
+
"HeartStraight",
|
|
605
|
+
"Heart",
|
|
606
|
+
"Heartbeat",
|
|
607
|
+
"Hexagon",
|
|
608
|
+
"HighlighterCircle",
|
|
609
|
+
"Horse",
|
|
610
|
+
"HourglassHigh",
|
|
611
|
+
"HourglassLow",
|
|
612
|
+
"HourglassMedium",
|
|
613
|
+
"HourglassSimpleHigh",
|
|
614
|
+
"HourglassSimpleLow",
|
|
615
|
+
"HourglassSimpleMedium",
|
|
616
|
+
"HourglassSimple",
|
|
617
|
+
"Hourglass",
|
|
618
|
+
"HouseLine",
|
|
619
|
+
"HouseSimple",
|
|
620
|
+
"House",
|
|
621
|
+
"IdentificationBadge",
|
|
622
|
+
"IdentificationCard",
|
|
623
|
+
"ImageSquare",
|
|
624
|
+
"Image",
|
|
625
|
+
"Infinity",
|
|
626
|
+
"Info",
|
|
627
|
+
"InstagramLogo",
|
|
628
|
+
"Intersect",
|
|
629
|
+
"Jeep",
|
|
630
|
+
"Kanban",
|
|
631
|
+
"KeyReturn",
|
|
632
|
+
"Key",
|
|
633
|
+
"Keyboard",
|
|
634
|
+
"Keyhole",
|
|
635
|
+
"Knife",
|
|
636
|
+
"LadderSimple",
|
|
637
|
+
"Ladder",
|
|
638
|
+
"Lamp",
|
|
639
|
+
"Laptop",
|
|
640
|
+
"Layout",
|
|
641
|
+
"Leaf",
|
|
642
|
+
"Lifebuoy",
|
|
643
|
+
"LightbulbFilament",
|
|
644
|
+
"Lightbulb",
|
|
645
|
+
"LightningSlash",
|
|
646
|
+
"Lightning",
|
|
647
|
+
"LineSegment",
|
|
648
|
+
"LineSegments",
|
|
649
|
+
"LinkBreak",
|
|
650
|
+
"LinkSimpleBreak",
|
|
651
|
+
"LinkSimpleHorizontalBreak",
|
|
652
|
+
"LinkSimpleHorizontal",
|
|
653
|
+
"LinkSimple",
|
|
654
|
+
"Link",
|
|
655
|
+
"LinkedinLogo",
|
|
656
|
+
"LinuxLogo",
|
|
657
|
+
"ListBullets",
|
|
658
|
+
"ListChecks",
|
|
659
|
+
"ListDashes",
|
|
660
|
+
"ListNumbers",
|
|
661
|
+
"ListPlus",
|
|
662
|
+
"List",
|
|
663
|
+
"LockKeyOpen",
|
|
664
|
+
"LockKey",
|
|
665
|
+
"LockLaminatedOpen",
|
|
666
|
+
"LockLaminated",
|
|
667
|
+
"LockOpen",
|
|
668
|
+
"LockSimpleOpen",
|
|
669
|
+
"LockSimple",
|
|
670
|
+
"Lock",
|
|
671
|
+
"MagicWand",
|
|
672
|
+
"MagnetStraight",
|
|
673
|
+
"Magnet",
|
|
674
|
+
"MagnifyingGlassMinus",
|
|
675
|
+
"MagnifyingGlassPlus",
|
|
676
|
+
"MagnifyingGlass",
|
|
677
|
+
"MapPinLine",
|
|
678
|
+
"MapPin",
|
|
679
|
+
"MapTrifold",
|
|
680
|
+
"MarkerCircle",
|
|
681
|
+
"Martini",
|
|
682
|
+
"MaskHappy",
|
|
683
|
+
"MaskSad",
|
|
684
|
+
"MathOperations",
|
|
685
|
+
"Medal",
|
|
686
|
+
"MediumLogo",
|
|
687
|
+
"MegaphoneSimple",
|
|
688
|
+
"Megaphone",
|
|
689
|
+
"MessengerLogo",
|
|
690
|
+
"MicrophoneSlash",
|
|
691
|
+
"MicrophoneStage",
|
|
692
|
+
"Microphone",
|
|
693
|
+
"MicrosoftExcelLogo",
|
|
694
|
+
"MicrosoftPowerpointLogo",
|
|
695
|
+
"MicrosoftTeamsLogo",
|
|
696
|
+
"MicrosoftWordLogo",
|
|
697
|
+
"MinusCircle",
|
|
698
|
+
"MinusCircleFill",
|
|
699
|
+
"MinusCircleDisable",
|
|
700
|
+
"MinusSquare",
|
|
701
|
+
"MinusSquareFill",
|
|
702
|
+
"MinusSquareDisable",
|
|
703
|
+
"Minus",
|
|
704
|
+
"Money",
|
|
705
|
+
"MonitorPlay",
|
|
706
|
+
"Monitor",
|
|
707
|
+
"MoonStars",
|
|
708
|
+
"Moon",
|
|
709
|
+
"Mountains",
|
|
710
|
+
"MouseSimple",
|
|
711
|
+
"Mouse",
|
|
712
|
+
"MusicNoteSimple",
|
|
713
|
+
"MusicNote",
|
|
714
|
+
"MusicNotesPlus",
|
|
715
|
+
"MusicNotesSimple",
|
|
716
|
+
"MusicNotes",
|
|
717
|
+
"NavigationArrow",
|
|
718
|
+
"Needle",
|
|
719
|
+
"NewspaperClipping",
|
|
720
|
+
"Newspaper",
|
|
721
|
+
"NoteBlank",
|
|
722
|
+
"NotePencil",
|
|
723
|
+
"Note",
|
|
724
|
+
"Notebook",
|
|
725
|
+
"Notepad",
|
|
726
|
+
"Notification",
|
|
727
|
+
"NumberCircleEight",
|
|
728
|
+
"NumberCircleFive",
|
|
729
|
+
"NumberCircleFour",
|
|
730
|
+
"NumberCircleNine",
|
|
731
|
+
"NumberCircleOne",
|
|
732
|
+
"NumberCircleSeven",
|
|
733
|
+
"NumberCircleSix",
|
|
734
|
+
"NumberCircleThree",
|
|
735
|
+
"NumberCircleTwo",
|
|
736
|
+
"NumberCircleZero",
|
|
737
|
+
"NumberEight",
|
|
738
|
+
"NumberFive",
|
|
739
|
+
"NumberFour",
|
|
740
|
+
"NumberNine",
|
|
741
|
+
"NumberOne",
|
|
742
|
+
"NumberSeven",
|
|
743
|
+
"NumberSix",
|
|
744
|
+
"NumberSquareEight",
|
|
745
|
+
"NumberSquareFive",
|
|
746
|
+
"NumberSquareFour",
|
|
747
|
+
"NumberSquareNine",
|
|
748
|
+
"NumberSquareOne",
|
|
749
|
+
"NumberSquareSeven",
|
|
750
|
+
"NumberSquareSix",
|
|
751
|
+
"NumberSquareThree",
|
|
752
|
+
"NumberSquareTwo",
|
|
753
|
+
"NumberSquareZero",
|
|
754
|
+
"NumberThree",
|
|
755
|
+
"NumberTwo",
|
|
756
|
+
"NumberZero",
|
|
757
|
+
"Nut",
|
|
758
|
+
"NyTimesLogo",
|
|
759
|
+
"Octagon",
|
|
760
|
+
"Option",
|
|
761
|
+
"Package",
|
|
762
|
+
"PaintBrushBroad",
|
|
763
|
+
"PaintBrushHousehold",
|
|
764
|
+
"PaintBrush",
|
|
765
|
+
"PaintBucket",
|
|
766
|
+
"PaintRoller",
|
|
767
|
+
"Palette",
|
|
768
|
+
"PaperPlaneRight",
|
|
769
|
+
"PaperPlaneTilt",
|
|
770
|
+
"PaperPlane",
|
|
771
|
+
"PaperclipHorizontal",
|
|
772
|
+
"Paperclip",
|
|
773
|
+
"Parachute",
|
|
774
|
+
"Password",
|
|
775
|
+
"Path",
|
|
776
|
+
"PauseCircle",
|
|
777
|
+
"Pause",
|
|
778
|
+
"PawPrint",
|
|
779
|
+
"Peace",
|
|
780
|
+
"PenNibStraight",
|
|
781
|
+
"PenNib",
|
|
782
|
+
"Pen",
|
|
783
|
+
"PencilCircle",
|
|
784
|
+
"PencilLine",
|
|
785
|
+
"PencilSimpleLine",
|
|
786
|
+
"PencilSimple",
|
|
787
|
+
"Pencil",
|
|
788
|
+
"Percent",
|
|
789
|
+
"PersonSimpleRun",
|
|
790
|
+
"PersonSimpleWalk",
|
|
791
|
+
"PersonSimple",
|
|
792
|
+
"Person",
|
|
793
|
+
"Perspective",
|
|
794
|
+
"PhoneCall",
|
|
795
|
+
"PhoneDisconnect",
|
|
796
|
+
"PhoneIncoming",
|
|
797
|
+
"PhoneOutgoing",
|
|
798
|
+
"PhoneSlash",
|
|
799
|
+
"PhoneX",
|
|
800
|
+
"Phone",
|
|
801
|
+
"PhosphorLogo",
|
|
802
|
+
"PianoKeys",
|
|
803
|
+
"PictureInPicture",
|
|
804
|
+
"Pill",
|
|
805
|
+
"PinterestLogo",
|
|
806
|
+
"Pinwheel",
|
|
807
|
+
"Pizza",
|
|
808
|
+
"Placeholder",
|
|
809
|
+
"Planet",
|
|
810
|
+
"PlayCircle",
|
|
811
|
+
"Play",
|
|
812
|
+
"Playlist",
|
|
813
|
+
"Plug",
|
|
814
|
+
"PlugsConnected",
|
|
815
|
+
"Plugs",
|
|
816
|
+
"PlusCircle",
|
|
817
|
+
"PlusCircleFill",
|
|
818
|
+
"PlusMinus",
|
|
819
|
+
"Plus",
|
|
820
|
+
"PokerChip",
|
|
821
|
+
"PoliceCar",
|
|
822
|
+
"Polygon",
|
|
823
|
+
"Popcorn",
|
|
824
|
+
"Power",
|
|
825
|
+
"Prescription",
|
|
826
|
+
"PresentationChart",
|
|
827
|
+
"Presentation",
|
|
828
|
+
"Printer",
|
|
829
|
+
"ProhibitInset",
|
|
830
|
+
"Prohibit",
|
|
831
|
+
"ProjectorScreenChart",
|
|
832
|
+
"ProjectorScreen",
|
|
833
|
+
"PushPinSimpleSlash",
|
|
834
|
+
"PushPinSimple",
|
|
835
|
+
"PushPinSlash",
|
|
836
|
+
"PushPin",
|
|
837
|
+
"PuzzlePiece",
|
|
838
|
+
"QrCode",
|
|
839
|
+
"Question",
|
|
840
|
+
"QuestionFill",
|
|
841
|
+
"Queue",
|
|
842
|
+
"Quotes",
|
|
843
|
+
"Radical",
|
|
844
|
+
"RadioButton",
|
|
845
|
+
"Radio",
|
|
846
|
+
"RainbowCloud",
|
|
847
|
+
"Rainbow",
|
|
848
|
+
"Receipt",
|
|
849
|
+
"Record",
|
|
850
|
+
"Rectangle",
|
|
851
|
+
"Recycle",
|
|
852
|
+
"RedditLogo",
|
|
853
|
+
"RepeatOnce",
|
|
854
|
+
"Repeat",
|
|
855
|
+
"RewindCircle",
|
|
856
|
+
"Rewind",
|
|
857
|
+
"Robot",
|
|
858
|
+
"RocketLaunch",
|
|
859
|
+
"Rocket",
|
|
860
|
+
"Rows",
|
|
861
|
+
"RssSimple",
|
|
862
|
+
"Rss",
|
|
863
|
+
"Rug",
|
|
864
|
+
"Ruler",
|
|
865
|
+
"Scales",
|
|
866
|
+
"Scan",
|
|
867
|
+
"Scissors",
|
|
868
|
+
"Screencast",
|
|
869
|
+
"ScribbleLoop",
|
|
870
|
+
"Scroll",
|
|
871
|
+
"SelectionAll",
|
|
872
|
+
"SelectionBackground",
|
|
873
|
+
"SelectionForeground",
|
|
874
|
+
"SelectionInverse",
|
|
875
|
+
"SelectionPlus",
|
|
876
|
+
"SelectionSlash",
|
|
877
|
+
"Selection",
|
|
878
|
+
"ShareNetwork",
|
|
879
|
+
"Share",
|
|
880
|
+
"ShieldCheck",
|
|
881
|
+
"ShieldCheckered",
|
|
882
|
+
"ShieldChevron",
|
|
883
|
+
"ShieldPlus",
|
|
884
|
+
"ShieldSlash",
|
|
885
|
+
"ShieldStar",
|
|
886
|
+
"ShieldWarning",
|
|
887
|
+
"Shield",
|
|
888
|
+
"ShoppingBagOpen",
|
|
889
|
+
"ShoppingBag",
|
|
890
|
+
"ShoppingCartSimple",
|
|
891
|
+
"ShoppingCart",
|
|
892
|
+
"Shower",
|
|
893
|
+
"ShuffleAngular",
|
|
894
|
+
"ShuffleSimple",
|
|
895
|
+
"Shuffle",
|
|
896
|
+
"SidebarSimple",
|
|
897
|
+
"Sidebar",
|
|
898
|
+
"SignIn",
|
|
899
|
+
"SignOut",
|
|
900
|
+
"Signpost",
|
|
901
|
+
"SimCard",
|
|
902
|
+
"SketchLogo",
|
|
903
|
+
"SkipBackCircle",
|
|
904
|
+
"SkipBack",
|
|
905
|
+
"SkipForwardCircle",
|
|
906
|
+
"SkipForward",
|
|
907
|
+
"Skull",
|
|
908
|
+
"SlackLogo",
|
|
909
|
+
"SlidersHorizontal",
|
|
910
|
+
"Sliders",
|
|
911
|
+
"SmileyBlank",
|
|
912
|
+
"SmileyMeh",
|
|
913
|
+
"SmileyNervous",
|
|
914
|
+
"SmileySad",
|
|
915
|
+
"SmileySticker",
|
|
916
|
+
"SmileyWink",
|
|
917
|
+
"SmileyXEyes",
|
|
918
|
+
"Smiley",
|
|
919
|
+
"SnapchatLogo",
|
|
920
|
+
"Snowflake",
|
|
921
|
+
"SoccerBall",
|
|
922
|
+
"SortAscending",
|
|
923
|
+
"SortDescending",
|
|
924
|
+
"Spade",
|
|
925
|
+
"Sparkle",
|
|
926
|
+
"SpeakerHigh",
|
|
927
|
+
"SpeakerLow",
|
|
928
|
+
"SpeakerNone",
|
|
929
|
+
"SpeakerSimpleHigh",
|
|
930
|
+
"SpeakerSimpleLow",
|
|
931
|
+
"SpeakerSimpleNone",
|
|
932
|
+
"SpeakerSimpleSlash",
|
|
933
|
+
"SpeakerSimpleX",
|
|
934
|
+
"SpeakerSlash",
|
|
935
|
+
"SpeakerX",
|
|
936
|
+
"SpinnerGap",
|
|
937
|
+
"Spinner",
|
|
938
|
+
"Spiral",
|
|
939
|
+
"SpotifyLogo",
|
|
940
|
+
"SquareHalfBottom",
|
|
941
|
+
"SquareHalf",
|
|
942
|
+
"SquareLogo",
|
|
943
|
+
"Square",
|
|
944
|
+
"SquareFill",
|
|
945
|
+
"SquaresFour",
|
|
946
|
+
"StackOverflowLogo",
|
|
947
|
+
"StackSimple",
|
|
948
|
+
"Stack",
|
|
949
|
+
"Stamp",
|
|
950
|
+
"StarFour",
|
|
951
|
+
"StarHalf",
|
|
952
|
+
"Star",
|
|
953
|
+
"Sticker",
|
|
954
|
+
"StopCircle",
|
|
955
|
+
"Stop",
|
|
956
|
+
"Storefront",
|
|
957
|
+
"Strategy",
|
|
958
|
+
"StripeLogo",
|
|
959
|
+
"Student",
|
|
960
|
+
"SuitcaseSimple",
|
|
961
|
+
"Suitcase",
|
|
962
|
+
"SunDim",
|
|
963
|
+
"SunHorizon",
|
|
964
|
+
"Sun",
|
|
965
|
+
"Sunglasses",
|
|
966
|
+
"Swap",
|
|
967
|
+
"Swatches",
|
|
968
|
+
"Sword",
|
|
969
|
+
"Syringe",
|
|
970
|
+
"TShirt",
|
|
971
|
+
"Table",
|
|
972
|
+
"Tabs",
|
|
973
|
+
"TagChevron",
|
|
974
|
+
"TagSimple",
|
|
975
|
+
"Tag",
|
|
976
|
+
"Target",
|
|
977
|
+
"Taxi",
|
|
978
|
+
"TelegramLogo",
|
|
979
|
+
"TelevisionSimple",
|
|
980
|
+
"Television",
|
|
981
|
+
"TennisBall",
|
|
982
|
+
"TerminalWindow",
|
|
983
|
+
"Terminal",
|
|
984
|
+
"TestTube",
|
|
985
|
+
"TextAa",
|
|
986
|
+
"TextAlignCenter",
|
|
987
|
+
"TextAlignJustify",
|
|
988
|
+
"TextAlignLeft",
|
|
989
|
+
"TextAlignRight",
|
|
990
|
+
"TextBolder",
|
|
991
|
+
"TextHFive",
|
|
992
|
+
"TextHFour",
|
|
993
|
+
"TextHOne",
|
|
994
|
+
"TextHSix",
|
|
995
|
+
"TextHThree",
|
|
996
|
+
"TextHTwo",
|
|
997
|
+
"TextH",
|
|
998
|
+
"TextIndent",
|
|
999
|
+
"TextItalic",
|
|
1000
|
+
"TextOutdent",
|
|
1001
|
+
"TextStrikethrough",
|
|
1002
|
+
"TextT",
|
|
1003
|
+
"TextUnderline",
|
|
1004
|
+
"Textbox",
|
|
1005
|
+
"ThermometerCold",
|
|
1006
|
+
"ThermometerHot",
|
|
1007
|
+
"ThermometerSimple",
|
|
1008
|
+
"Thermometer",
|
|
1009
|
+
"ThumbsDown",
|
|
1010
|
+
"ThumbsUp",
|
|
1011
|
+
"Ticket",
|
|
1012
|
+
"TiktokLogo",
|
|
1013
|
+
"Timer",
|
|
1014
|
+
"ToggleLeft",
|
|
1015
|
+
"ToggleRight",
|
|
1016
|
+
"ToiletPaper",
|
|
1017
|
+
"Toilet",
|
|
1018
|
+
"ToteSimple",
|
|
1019
|
+
"Tote",
|
|
1020
|
+
"TrademarkRegistered",
|
|
1021
|
+
"TrafficCone",
|
|
1022
|
+
"TrafficSign",
|
|
1023
|
+
"TrafficSignal",
|
|
1024
|
+
"TrainRegional",
|
|
1025
|
+
"TrainSimple",
|
|
1026
|
+
"Train",
|
|
1027
|
+
"Translate",
|
|
1028
|
+
"TrashSimple",
|
|
1029
|
+
"Trash",
|
|
1030
|
+
"Tray",
|
|
1031
|
+
"TreeEvergreen",
|
|
1032
|
+
"TreeStructure",
|
|
1033
|
+
"Tree",
|
|
1034
|
+
"TrendDown",
|
|
1035
|
+
"TrendUp",
|
|
1036
|
+
"Triangle",
|
|
1037
|
+
"Trophy",
|
|
1038
|
+
"Truck",
|
|
1039
|
+
"TwitchLogo",
|
|
1040
|
+
"TwitterLogo",
|
|
1041
|
+
"UmbrellaSimple",
|
|
1042
|
+
"Umbrella",
|
|
1043
|
+
"UploadSimple",
|
|
1044
|
+
"Upload",
|
|
1045
|
+
"UserCircleGear",
|
|
1046
|
+
"UserCircleMinus",
|
|
1047
|
+
"UserCirclePlus",
|
|
1048
|
+
"UserCircle",
|
|
1049
|
+
"UserFocus",
|
|
1050
|
+
"UserGear",
|
|
1051
|
+
"UserList",
|
|
1052
|
+
"UserMinus",
|
|
1053
|
+
"UserPlus",
|
|
1054
|
+
"UserRectangle",
|
|
1055
|
+
"UserSquare",
|
|
1056
|
+
"UserSwitch",
|
|
1057
|
+
"User",
|
|
1058
|
+
"UsersFour",
|
|
1059
|
+
"UsersThree",
|
|
1060
|
+
"Users",
|
|
1061
|
+
"Vault",
|
|
1062
|
+
"Vibrate",
|
|
1063
|
+
"VideoCameraSlash",
|
|
1064
|
+
"VideoCamera",
|
|
1065
|
+
"Vignette",
|
|
1066
|
+
"Virus",
|
|
1067
|
+
"Voicemail",
|
|
1068
|
+
"Volleyball",
|
|
1069
|
+
"Wall",
|
|
1070
|
+
"Wallet",
|
|
1071
|
+
"WarningCircle",
|
|
1072
|
+
"WarningOctagon",
|
|
1073
|
+
"Warning",
|
|
1074
|
+
"Watch",
|
|
1075
|
+
"WaveSawtooth",
|
|
1076
|
+
"WaveSine",
|
|
1077
|
+
"WaveSquare",
|
|
1078
|
+
"WaveTriangle",
|
|
1079
|
+
"Waves",
|
|
1080
|
+
"Webcam",
|
|
1081
|
+
"WhatsappLogo",
|
|
1082
|
+
"Wheelchair",
|
|
1083
|
+
"WifiHigh",
|
|
1084
|
+
"WifiLow",
|
|
1085
|
+
"WifiMedium",
|
|
1086
|
+
"WifiNone",
|
|
1087
|
+
"WifiSlash",
|
|
1088
|
+
"WifiX",
|
|
1089
|
+
"Wind",
|
|
1090
|
+
"WindowsLogo",
|
|
1091
|
+
"Wine",
|
|
1092
|
+
"Wrench",
|
|
1093
|
+
"XCircle",
|
|
1094
|
+
"XCircleFill",
|
|
1095
|
+
"XSquare",
|
|
1096
|
+
"X",
|
|
1097
|
+
"YinYang",
|
|
1098
|
+
"YoutubeLogo"
|
|
1099
|
+
];
|
|
1100
|
+
const filteredIcon = computed(() => {
|
|
1101
|
+
return iconNames.filter((a) => a.includes(searchIcon.value));
|
|
1102
|
+
});
|
|
1103
|
+
return {
|
|
1104
|
+
iconNames,
|
|
1105
|
+
searchIcon,
|
|
1106
|
+
filteredIcon
|
|
1107
|
+
};
|
|
1108
|
+
}
|
|
1109
|
+
});
|
|
1110
|
+
</script>
|
|
1111
|
+
|
|
1112
|
+
<style></style>
|