@jis3r/icons 1.0.0 → 1.1.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/README.md +23 -7
- package/dist/components/ui/tooltip/index.d.ts +6 -0
- package/dist/components/ui/tooltip/index.js +18 -0
- package/dist/components/ui/tooltip/tooltip-content.svelte +16 -0
- package/dist/components/ui/tooltip/tooltip-content.svelte.d.ts +23 -0
- package/dist/icons/index.js +858 -789
- package/dist/icons/list-restart.svelte +77 -0
- package/dist/icons/list-restart.svelte.d.ts +23 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +9 -5
package/dist/icons/index.js
CHANGED
|
@@ -1,53 +1,55 @@
|
|
|
1
1
|
import activity from './activity.svelte';
|
|
2
|
+
import alarmClock from './alarm-clock.svelte';
|
|
2
3
|
import alarmClockCheck from './alarm-clock-check.svelte';
|
|
3
4
|
import alarmClockOff from './alarm-clock-off.svelte';
|
|
4
|
-
import alarmClock from './alarm-clock.svelte';
|
|
5
5
|
import alignCenter from './align-center.svelte';
|
|
6
6
|
import alignHorizontalSpaceAround from './align-horizontal-space-around.svelte';
|
|
7
7
|
import alignVerticalSpaceAround from './align-vertical-space-around.svelte';
|
|
8
8
|
import anvil from './anvil.svelte';
|
|
9
9
|
import archive from './archive.svelte';
|
|
10
|
-
import arrowBigDownDash from './arrow-big-down-dash.svelte';
|
|
11
10
|
import arrowBigDown from './arrow-big-down.svelte';
|
|
12
|
-
import
|
|
11
|
+
import arrowBigDownDash from './arrow-big-down-dash.svelte';
|
|
13
12
|
import arrowBigLeft from './arrow-big-left.svelte';
|
|
14
|
-
import
|
|
13
|
+
import arrowBigLeftDash from './arrow-big-left-dash.svelte';
|
|
15
14
|
import arrowBigRight from './arrow-big-right.svelte';
|
|
16
|
-
import
|
|
15
|
+
import arrowBigRightDash from './arrow-big-right-dash.svelte';
|
|
17
16
|
import arrowBigUp from './arrow-big-up.svelte';
|
|
17
|
+
import arrowBigUpDash from './arrow-big-up-dash.svelte';
|
|
18
|
+
import arrowDown from './arrow-down.svelte';
|
|
18
19
|
import arrowDown01 from './arrow-down-0-1.svelte';
|
|
19
20
|
import arrowDown10 from './arrow-down-1-0.svelte';
|
|
20
21
|
import arrowDownAZ from './arrow-down-a-z.svelte';
|
|
21
22
|
import arrowDownLeft from './arrow-down-left.svelte';
|
|
22
23
|
import arrowDownRight from './arrow-down-right.svelte';
|
|
23
24
|
import arrowDownZA from './arrow-down-z-a.svelte';
|
|
24
|
-
import arrowDown from './arrow-down.svelte';
|
|
25
|
-
import arrowLeftRight from './arrow-left-right.svelte';
|
|
26
25
|
import arrowLeft from './arrow-left.svelte';
|
|
27
|
-
import
|
|
26
|
+
import arrowLeftRight from './arrow-left-right.svelte';
|
|
28
27
|
import arrowRight from './arrow-right.svelte';
|
|
28
|
+
import arrowRightLeft from './arrow-right-left.svelte';
|
|
29
|
+
import arrowUp from './arrow-up.svelte';
|
|
29
30
|
import arrowUp01 from './arrow-up-0-1.svelte';
|
|
30
31
|
import arrowUp10 from './arrow-up-1-0.svelte';
|
|
31
32
|
import arrowUpAZ from './arrow-up-a-z.svelte';
|
|
32
33
|
import arrowUpLeft from './arrow-up-left.svelte';
|
|
33
34
|
import arrowUpRight from './arrow-up-right.svelte';
|
|
34
35
|
import arrowUpZA from './arrow-up-z-a.svelte';
|
|
35
|
-
import arrowUp from './arrow-up.svelte';
|
|
36
36
|
import audioLines from './audio-lines.svelte';
|
|
37
37
|
import award from './award.svelte';
|
|
38
38
|
import axe from './axe.svelte';
|
|
39
39
|
import badgeAlert from './badge-alert.svelte';
|
|
40
40
|
import badgeCheck from './badge-check.svelte';
|
|
41
|
+
import badgeQuestionMark from './badge-question-mark.svelte';
|
|
42
|
+
import battery from './battery.svelte';
|
|
41
43
|
import batteryCharging from './battery-charging.svelte';
|
|
42
44
|
import batteryFull from './battery-full.svelte';
|
|
43
45
|
import batteryLow from './battery-low.svelte';
|
|
44
46
|
import batteryMedium from './battery-medium.svelte';
|
|
45
47
|
import batteryWarning from './battery-warning.svelte';
|
|
46
|
-
import battery from './battery.svelte';
|
|
47
48
|
import beanOff from './bean-off.svelte';
|
|
48
49
|
import beerOff from './beer-off.svelte';
|
|
49
|
-
import bellOff from './bell-off.svelte';
|
|
50
50
|
import bell from './bell.svelte';
|
|
51
|
+
import bellOff from './bell-off.svelte';
|
|
52
|
+
import bellRing from './bell-ring.svelte';
|
|
51
53
|
import betweenHorizontalEnd from './between-horizontal-end.svelte';
|
|
52
54
|
import betweenHorizontalStart from './between-horizontal-start.svelte';
|
|
53
55
|
import betweenVerticalEnd from './between-vertical-end.svelte';
|
|
@@ -57,6 +59,7 @@ import blocks from './blocks.svelte';
|
|
|
57
59
|
import bluetoothOff from './bluetooth-off.svelte';
|
|
58
60
|
import bolt from './bolt.svelte';
|
|
59
61
|
import bone from './bone.svelte';
|
|
62
|
+
import book from './book.svelte';
|
|
60
63
|
import bookA from './book-a.svelte';
|
|
61
64
|
import bookAudio from './book-audio.svelte';
|
|
62
65
|
import bookCheck from './book-check.svelte';
|
|
@@ -67,24 +70,29 @@ import bookHeart from './book-heart.svelte';
|
|
|
67
70
|
import bookImage from './book-image.svelte';
|
|
68
71
|
import bookKey from './book-key.svelte';
|
|
69
72
|
import bookLock from './book-lock.svelte';
|
|
73
|
+
import bookmarkCheck from './bookmark-check.svelte';
|
|
70
74
|
import bookMarked from './book-marked.svelte';
|
|
71
75
|
import bookMinus from './book-minus.svelte';
|
|
72
76
|
import bookOpenCheck from './book-open-check.svelte';
|
|
73
77
|
import bookPlus from './book-plus.svelte';
|
|
74
78
|
import bookText from './book-text.svelte';
|
|
75
79
|
import bookType from './book-type.svelte';
|
|
76
|
-
import bookUp2 from './book-up-2.svelte';
|
|
77
80
|
import bookUp from './book-up.svelte';
|
|
81
|
+
import bookUp2 from './book-up-2.svelte';
|
|
78
82
|
import bookUser from './book-user.svelte';
|
|
79
83
|
import bookX from './book-x.svelte';
|
|
80
|
-
import book from './book.svelte';
|
|
81
|
-
import bookmarkCheck from './bookmark-check.svelte';
|
|
82
84
|
import botOff from './bot-off.svelte';
|
|
83
85
|
import boxes from './boxes.svelte';
|
|
84
86
|
import brainCog from './brain-cog.svelte';
|
|
87
|
+
import briefcase from './briefcase.svelte';
|
|
88
|
+
import briefcaseBusiness from './briefcase-business.svelte';
|
|
89
|
+
import briefcaseConveyorBelt from './briefcase-conveyor-belt.svelte';
|
|
90
|
+
import briefcaseMedical from './briefcase-medical.svelte';
|
|
91
|
+
import brush from './brush.svelte';
|
|
92
|
+
import brushCleaning from './brush-cleaning.svelte';
|
|
85
93
|
import bugOff from './bug-off.svelte';
|
|
86
|
-
import calendarCheck2 from './calendar-check-2.svelte';
|
|
87
94
|
import calendarCheck from './calendar-check.svelte';
|
|
95
|
+
import calendarCheck2 from './calendar-check-2.svelte';
|
|
88
96
|
import calendarCog from './calendar-cog.svelte';
|
|
89
97
|
import calendarDays from './calendar-days.svelte';
|
|
90
98
|
import calendarOff from './calendar-off.svelte';
|
|
@@ -94,36 +102,37 @@ import candyOff from './candy-off.svelte';
|
|
|
94
102
|
import captionsOff from './captions-off.svelte';
|
|
95
103
|
import cast from './cast.svelte';
|
|
96
104
|
import cctv from './cctv.svelte';
|
|
105
|
+
import chartBar from './chart-bar.svelte';
|
|
97
106
|
import chartBarDecreasing from './chart-bar-decreasing.svelte';
|
|
98
107
|
import chartBarIncreasing from './chart-bar-increasing.svelte';
|
|
99
|
-
import
|
|
108
|
+
import chartColumn from './chart-column.svelte';
|
|
100
109
|
import chartColumnDecreasing from './chart-column-decreasing.svelte';
|
|
101
110
|
import chartColumnIncreasing from './chart-column-increasing.svelte';
|
|
102
|
-
import chartColumn from './chart-column.svelte';
|
|
103
111
|
import chartGantt from './chart-gantt.svelte';
|
|
104
112
|
import chartLine from './chart-line.svelte';
|
|
113
|
+
import chartNoAxesColumn from './chart-no-axes-column.svelte';
|
|
105
114
|
import chartNoAxesColumnDecreasing from './chart-no-axes-column-decreasing.svelte';
|
|
106
115
|
import chartNoAxesColumnIncreasing from './chart-no-axes-column-increasing.svelte';
|
|
107
|
-
import chartNoAxesColumn from './chart-no-axes-column.svelte';
|
|
108
116
|
import chartNoAxesCombined from './chart-no-axes-combined.svelte';
|
|
109
117
|
import chartNoAxesGantt from './chart-no-axes-gantt.svelte';
|
|
110
118
|
import chartPie from './chart-pie.svelte';
|
|
111
119
|
import chartScatter from './chart-scatter.svelte';
|
|
112
120
|
import chartSpline from './chart-spline.svelte';
|
|
113
|
-
import checkCheck from './check-check.svelte';
|
|
114
121
|
import check from './check.svelte';
|
|
122
|
+
import checkCheck from './check-check.svelte';
|
|
123
|
+
import cherry from './cherry.svelte';
|
|
115
124
|
import chevronDown from './chevron-down.svelte';
|
|
116
125
|
import chevronLeft from './chevron-left.svelte';
|
|
117
126
|
import chevronRight from './chevron-right.svelte';
|
|
118
|
-
import chevronUp from './chevron-up.svelte';
|
|
119
|
-
import chevronsDownUp from './chevrons-down-up.svelte';
|
|
120
127
|
import chevronsDown from './chevrons-down.svelte';
|
|
121
|
-
import
|
|
128
|
+
import chevronsDownUp from './chevrons-down-up.svelte';
|
|
122
129
|
import chevronsLeft from './chevrons-left.svelte';
|
|
123
|
-
import
|
|
130
|
+
import chevronsLeftRight from './chevrons-left-right.svelte';
|
|
124
131
|
import chevronsRight from './chevrons-right.svelte';
|
|
125
|
-
import
|
|
132
|
+
import chevronsRightLeft from './chevrons-right-left.svelte';
|
|
126
133
|
import chevronsUp from './chevrons-up.svelte';
|
|
134
|
+
import chevronsUpDown from './chevrons-up-down.svelte';
|
|
135
|
+
import chevronUp from './chevron-up.svelte';
|
|
127
136
|
import cigaretteOff from './cigarette-off.svelte';
|
|
128
137
|
import circleAlert from './circle-alert.svelte';
|
|
129
138
|
import circleArrowDown from './circle-arrow-down.svelte';
|
|
@@ -134,8 +143,8 @@ import circleArrowOutUpLeft from './circle-arrow-out-up-left.svelte';
|
|
|
134
143
|
import circleArrowOutUpRight from './circle-arrow-out-up-right.svelte';
|
|
135
144
|
import circleArrowRight from './circle-arrow-right.svelte';
|
|
136
145
|
import circleArrowUp from './circle-arrow-up.svelte';
|
|
137
|
-
import circleCheckBig from './circle-check-big.svelte';
|
|
138
146
|
import circleCheck from './circle-check.svelte';
|
|
147
|
+
import circleCheckBig from './circle-check-big.svelte';
|
|
139
148
|
import circleChevronDown from './circle-chevron-down.svelte';
|
|
140
149
|
import circleChevronLeft from './circle-chevron-left.svelte';
|
|
141
150
|
import circleChevronRight from './circle-chevron-right.svelte';
|
|
@@ -143,10 +152,12 @@ import circleChevronUp from './circle-chevron-up.svelte';
|
|
|
143
152
|
import circleOff from './circle-off.svelte';
|
|
144
153
|
import circleParkingOff from './circle-parking-off.svelte';
|
|
145
154
|
import circlePlus from './circle-plus.svelte';
|
|
155
|
+
import circleQuestionMark from './circle-question-mark.svelte';
|
|
146
156
|
import clapperboard from './clapperboard.svelte';
|
|
147
157
|
import clipboardCheck from './clipboard-check.svelte';
|
|
148
|
-
import clipboardPenLine from './clipboard-pen-line.svelte';
|
|
149
158
|
import clipboardPen from './clipboard-pen.svelte';
|
|
159
|
+
import clipboardPenLine from './clipboard-pen-line.svelte';
|
|
160
|
+
import clock from './clock.svelte';
|
|
150
161
|
import clock1 from './clock-1.svelte';
|
|
151
162
|
import clock10 from './clock-10.svelte';
|
|
152
163
|
import clock11 from './clock-11.svelte';
|
|
@@ -159,7 +170,6 @@ import clock6 from './clock-6.svelte';
|
|
|
159
170
|
import clock7 from './clock-7.svelte';
|
|
160
171
|
import clock8 from './clock-8.svelte';
|
|
161
172
|
import clock9 from './clock-9.svelte';
|
|
162
|
-
import clock from './clock.svelte';
|
|
163
173
|
import cloudCog from './cloud-cog.svelte';
|
|
164
174
|
import cloudDownload from './cloud-download.svelte';
|
|
165
175
|
import cloudOff from './cloud-off.svelte';
|
|
@@ -167,8 +177,8 @@ import cloudUpload from './cloud-upload.svelte';
|
|
|
167
177
|
import cog from './cog.svelte';
|
|
168
178
|
import compass from './compass.svelte';
|
|
169
179
|
import contrast from './contrast.svelte';
|
|
170
|
-
import copyCheck from './copy-check.svelte';
|
|
171
180
|
import copy from './copy.svelte';
|
|
181
|
+
import copyCheck from './copy-check.svelte';
|
|
172
182
|
import cpu from './cpu.svelte';
|
|
173
183
|
import crop from './crop.svelte';
|
|
174
184
|
import diamondPlus from './diamond-plus.svelte';
|
|
@@ -182,24 +192,25 @@ import diff from './diff.svelte';
|
|
|
182
192
|
import disc3 from './disc-3.svelte';
|
|
183
193
|
import dnaOff from './dna-off.svelte';
|
|
184
194
|
import download from './download.svelte';
|
|
195
|
+
import dropletOff from './droplet-off.svelte';
|
|
185
196
|
import drum from './drum.svelte';
|
|
186
197
|
import earOff from './ear-off.svelte';
|
|
187
198
|
import eclipse from './eclipse.svelte';
|
|
188
199
|
import eggOff from './egg-off.svelte';
|
|
189
200
|
import expand from './expand.svelte';
|
|
190
201
|
import eyeOff from './eye-off.svelte';
|
|
191
|
-
import fileChartColumnIncreasing from './file-chart-column-increasing.svelte';
|
|
192
202
|
import fileChartColumn from './file-chart-column.svelte';
|
|
203
|
+
import fileChartColumnIncreasing from './file-chart-column-increasing.svelte';
|
|
193
204
|
import fileChartLine from './file-chart-line.svelte';
|
|
194
|
-
import fileCheck2 from './file-check-2.svelte';
|
|
195
205
|
import fileCheck from './file-check.svelte';
|
|
206
|
+
import fileCheck2 from './file-check-2.svelte';
|
|
196
207
|
import fileCog from './file-cog.svelte';
|
|
197
208
|
import fileDown from './file-down.svelte';
|
|
198
209
|
import fileMinus from './file-minus.svelte';
|
|
199
|
-
import filePenLine from './file-pen-line.svelte';
|
|
200
210
|
import filePen from './file-pen.svelte';
|
|
211
|
+
import filePenLine from './file-pen-line.svelte';
|
|
201
212
|
import filePlus from './file-plus.svelte';
|
|
202
|
-
import
|
|
213
|
+
import fileQuestionMark from './file-question-mark.svelte';
|
|
203
214
|
import fileStack from './file-stack.svelte';
|
|
204
215
|
import fileTerminal from './file-terminal.svelte';
|
|
205
216
|
import fileUp from './file-up.svelte';
|
|
@@ -223,29 +234,32 @@ import galleryVerticalEnd from './gallery-vertical-end.svelte';
|
|
|
223
234
|
import gauge from './gauge.svelte';
|
|
224
235
|
import gavel from './gavel.svelte';
|
|
225
236
|
import grid2x2Check from './grid-2x2-check.svelte';
|
|
237
|
+
import grip from './grip.svelte';
|
|
226
238
|
import gripHorizontal from './grip-horizontal.svelte';
|
|
227
239
|
import gripVertical from './grip-vertical.svelte';
|
|
228
|
-
import grip from './grip.svelte';
|
|
229
240
|
import hammer from './hammer.svelte';
|
|
230
241
|
import handCoins from './hand-coins.svelte';
|
|
231
242
|
import handHeart from './hand-heart.svelte';
|
|
232
243
|
import hardDriveDownload from './hard-drive-download.svelte';
|
|
233
244
|
import hardDriveUpload from './hard-drive-upload.svelte';
|
|
234
245
|
import headphoneOff from './headphone-off.svelte';
|
|
246
|
+
import heart from './heart.svelte';
|
|
235
247
|
import heartOff from './heart-off.svelte';
|
|
236
248
|
import history from './history.svelte';
|
|
237
249
|
import hopOff from './hop-off.svelte';
|
|
238
250
|
import house from './house.svelte';
|
|
251
|
+
import houseWifi from './house-wifi.svelte';
|
|
239
252
|
import imageDown from './image-down.svelte';
|
|
240
253
|
import imageOff from './image-off.svelte';
|
|
241
254
|
import imageUp from './image-up.svelte';
|
|
242
255
|
import infinity from './infinity.svelte';
|
|
243
256
|
import kanban from './kanban.svelte';
|
|
244
|
-
import keyRound from './key-round.svelte';
|
|
245
|
-
import keySquare from './key-square.svelte';
|
|
246
257
|
import key from './key.svelte';
|
|
247
|
-
import keyboardOff from './keyboard-off.svelte';
|
|
248
258
|
import keyboard from './keyboard.svelte';
|
|
259
|
+
import keyboardOff from './keyboard-off.svelte';
|
|
260
|
+
import keyRound from './key-round.svelte';
|
|
261
|
+
import keySquare from './key-square.svelte';
|
|
262
|
+
import landmark from './landmark.svelte';
|
|
249
263
|
import layers from './layers.svelte';
|
|
250
264
|
import layoutDashboard from './layout-dashboard.svelte';
|
|
251
265
|
import layoutGrid from './layout-grid.svelte';
|
|
@@ -256,29 +270,31 @@ import lightbulbOff from './lightbulb-off.svelte';
|
|
|
256
270
|
import link2Off from './link-2-off.svelte';
|
|
257
271
|
import listCheck from './list-check.svelte';
|
|
258
272
|
import listChecks from './list-checks.svelte';
|
|
273
|
+
import listRestart from './list-restart.svelte';
|
|
259
274
|
import listTodo from './list-todo.svelte';
|
|
260
275
|
import loaderPinwheel from './loader-pinwheel.svelte';
|
|
261
276
|
import locateOff from './locate-off.svelte';
|
|
262
277
|
import logOut from './log-out.svelte';
|
|
263
278
|
import mailCheck from './mail-check.svelte';
|
|
264
|
-
import mapPinCheckInside from './map-pin-check-inside.svelte';
|
|
265
279
|
import mapPinCheck from './map-pin-check.svelte';
|
|
280
|
+
import mapPinCheckInside from './map-pin-check-inside.svelte';
|
|
266
281
|
import mapPinOff from './map-pin-off.svelte';
|
|
267
|
-
import maximize2 from './maximize-2.svelte';
|
|
268
282
|
import maximize from './maximize.svelte';
|
|
283
|
+
import maximize2 from './maximize-2.svelte';
|
|
269
284
|
import megaphoneOff from './megaphone-off.svelte';
|
|
285
|
+
import messageCircle from './message-circle.svelte';
|
|
270
286
|
import messageCircleMore from './message-circle-more.svelte';
|
|
271
287
|
import messageCircleOff from './message-circle-off.svelte';
|
|
288
|
+
import messageCircleQuestionMark from './message-circle-question-mark.svelte';
|
|
272
289
|
import messageCircleWarning from './message-circle-warning.svelte';
|
|
273
|
-
import
|
|
290
|
+
import messageSquare from './message-square.svelte';
|
|
274
291
|
import messageSquareMore from './message-square-more.svelte';
|
|
275
292
|
import messageSquareOff from './message-square-off.svelte';
|
|
276
293
|
import messageSquareWarning from './message-square-warning.svelte';
|
|
277
|
-
import messageSquare from './message-square.svelte';
|
|
278
294
|
import micOff from './mic-off.svelte';
|
|
279
295
|
import milkOff from './milk-off.svelte';
|
|
280
|
-
import minimize2 from './minimize-2.svelte';
|
|
281
296
|
import minimize from './minimize.svelte';
|
|
297
|
+
import minimize2 from './minimize-2.svelte';
|
|
282
298
|
import minus from './minus.svelte';
|
|
283
299
|
import monitorCheck from './monitor-check.svelte';
|
|
284
300
|
import monitorCog from './monitor-cog.svelte';
|
|
@@ -286,19 +302,19 @@ import monitorDown from './monitor-down.svelte';
|
|
|
286
302
|
import monitorOff from './monitor-off.svelte';
|
|
287
303
|
import monitorUp from './monitor-up.svelte';
|
|
288
304
|
import mouseOff from './mouse-off.svelte';
|
|
289
|
-
import mousePointer2 from './mouse-pointer-2.svelte';
|
|
290
305
|
import mousePointer from './mouse-pointer.svelte';
|
|
291
|
-
import
|
|
306
|
+
import mousePointer2 from './mouse-pointer-2.svelte';
|
|
292
307
|
import moveDiagonal from './move-diagonal.svelte';
|
|
308
|
+
import moveDiagonal2 from './move-diagonal-2.svelte';
|
|
309
|
+
import moveDown from './move-down.svelte';
|
|
293
310
|
import moveDownLeft from './move-down-left.svelte';
|
|
294
311
|
import moveDownRight from './move-down-right.svelte';
|
|
295
|
-
import moveDown from './move-down.svelte';
|
|
296
312
|
import moveHorizontal from './move-horizontal.svelte';
|
|
297
313
|
import moveLeft from './move-left.svelte';
|
|
298
314
|
import moveRight from './move-right.svelte';
|
|
315
|
+
import moveUp from './move-up.svelte';
|
|
299
316
|
import moveUpLeft from './move-up-left.svelte';
|
|
300
317
|
import moveUpRight from './move-up-right.svelte';
|
|
301
|
-
import moveUp from './move-up.svelte';
|
|
302
318
|
import moveVertical from './move-vertical.svelte';
|
|
303
319
|
import navigation2Off from './navigation-2-off.svelte';
|
|
304
320
|
import navigationOff from './navigation-off.svelte';
|
|
@@ -308,12 +324,21 @@ import nutOff from './nut-off.svelte';
|
|
|
308
324
|
import octagonAlert from './octagon-alert.svelte';
|
|
309
325
|
import orbit from './orbit.svelte';
|
|
310
326
|
import packageCheck from './package-check.svelte';
|
|
311
|
-
import
|
|
312
|
-
import
|
|
327
|
+
import paintbrush from './paintbrush.svelte';
|
|
328
|
+
import panelBottomClose from './panel-bottom-close.svelte';
|
|
329
|
+
import panelBottomOpen from './panel-bottom-open.svelte';
|
|
330
|
+
import panelLeftClose from './panel-left-close.svelte';
|
|
331
|
+
import panelLeftOpen from './panel-left-open.svelte';
|
|
332
|
+
import panelRightClose from './panel-right-close.svelte';
|
|
333
|
+
import panelRightOpen from './panel-right-open.svelte';
|
|
334
|
+
import panelTopClose from './panel-top-close.svelte';
|
|
335
|
+
import panelTopOpen from './panel-top-open.svelte';
|
|
313
336
|
import pen from './pen.svelte';
|
|
337
|
+
import pencil from './pencil.svelte';
|
|
314
338
|
import pencilLine from './pencil-line.svelte';
|
|
315
339
|
import pencilOff from './pencil-off.svelte';
|
|
316
|
-
import
|
|
340
|
+
import penLine from './pen-line.svelte';
|
|
341
|
+
import penOff from './pen-off.svelte';
|
|
317
342
|
import phoneOff from './phone-off.svelte';
|
|
318
343
|
import pickaxe from './pickaxe.svelte';
|
|
319
344
|
import pinOff from './pin-off.svelte';
|
|
@@ -324,64 +349,70 @@ import powerOff from './power-off.svelte';
|
|
|
324
349
|
import printerCheck from './printer-check.svelte';
|
|
325
350
|
import rabbit from './rabbit.svelte';
|
|
326
351
|
import radar from './radar.svelte';
|
|
327
|
-
import radioTower from './radio-tower.svelte';
|
|
328
352
|
import radio from './radio.svelte';
|
|
353
|
+
import radioTower from './radio-tower.svelte';
|
|
329
354
|
import rainbow from './rainbow.svelte';
|
|
330
|
-
import redoDot from './redo-dot.svelte';
|
|
331
355
|
import redo from './redo.svelte';
|
|
332
|
-
import
|
|
356
|
+
import redoDot from './redo-dot.svelte';
|
|
333
357
|
import refreshCcw from './refresh-ccw.svelte';
|
|
334
|
-
import
|
|
358
|
+
import refreshCcwDot from './refresh-ccw-dot.svelte';
|
|
335
359
|
import refreshCw from './refresh-cw.svelte';
|
|
360
|
+
import refreshCwOff from './refresh-cw-off.svelte';
|
|
336
361
|
import rocket from './rocket.svelte';
|
|
337
362
|
import rockingChair from './rocking-chair.svelte';
|
|
338
363
|
import rotateCcw from './rotate-ccw.svelte';
|
|
364
|
+
import rotateCcwKey from './rotate-ccw-key.svelte';
|
|
339
365
|
import rotateCw from './rotate-cw.svelte';
|
|
340
|
-
import routeOff from './route-off.svelte';
|
|
341
366
|
import route from './route.svelte';
|
|
367
|
+
import routeOff from './route-off.svelte';
|
|
342
368
|
import rss from './rss.svelte';
|
|
343
369
|
import satelliteDish from './satellite-dish.svelte';
|
|
344
370
|
import saveOff from './save-off.svelte';
|
|
345
371
|
import scanText from './scan-text.svelte';
|
|
346
372
|
import scissors from './scissors.svelte';
|
|
347
|
-
import searchCheck from './search-check.svelte';
|
|
348
373
|
import search from './search.svelte';
|
|
374
|
+
import searchCheck from './search-check.svelte';
|
|
375
|
+
import send from './send.svelte';
|
|
376
|
+
import sendHorizontal from './send-horizontal.svelte';
|
|
349
377
|
import serverCog from './server-cog.svelte';
|
|
378
|
+
import serverOff from './server-off.svelte';
|
|
350
379
|
import settings from './settings.svelte';
|
|
351
380
|
import shieldAlert from './shield-alert.svelte';
|
|
352
381
|
import shieldCheck from './shield-check.svelte';
|
|
353
382
|
import shieldOff from './shield-off.svelte';
|
|
354
383
|
import shieldPlus from './shield-plus.svelte';
|
|
355
|
-
import
|
|
384
|
+
import shieldQuestionMark from './shield-question-mark.svelte';
|
|
356
385
|
import ship from './ship.svelte';
|
|
386
|
+
import shipWheel from './ship-wheel.svelte';
|
|
357
387
|
import shoppingCart from './shopping-cart.svelte';
|
|
358
388
|
import shovel from './shovel.svelte';
|
|
359
389
|
import showerHead from './shower-head.svelte';
|
|
360
390
|
import shrink from './shrink.svelte';
|
|
391
|
+
import signal from './signal.svelte';
|
|
361
392
|
import signalHigh from './signal-high.svelte';
|
|
362
393
|
import signalLow from './signal-low.svelte';
|
|
363
394
|
import signalMedium from './signal-medium.svelte';
|
|
364
395
|
import signalZero from './signal-zero.svelte';
|
|
365
|
-
import signal from './signal.svelte';
|
|
366
396
|
import signature from './signature.svelte';
|
|
367
397
|
import smartphoneNfc from './smartphone-nfc.svelte';
|
|
398
|
+
import snowflake from './snowflake.svelte';
|
|
368
399
|
import speech from './speech.svelte';
|
|
369
400
|
import spellCheck from './spell-check.svelte';
|
|
401
|
+
import squareArrowDown from './square-arrow-down.svelte';
|
|
370
402
|
import squareArrowDownLeft from './square-arrow-down-left.svelte';
|
|
371
403
|
import squareArrowDownRight from './square-arrow-down-right.svelte';
|
|
372
|
-
import squareArrowDown from './square-arrow-down.svelte';
|
|
373
404
|
import squareArrowLeft from './square-arrow-left.svelte';
|
|
374
405
|
import squareArrowOutDownLeft from './square-arrow-out-down-left.svelte';
|
|
375
406
|
import squareArrowOutDownRight from './square-arrow-out-down-right.svelte';
|
|
376
407
|
import squareArrowOutUpLeft from './square-arrow-out-up-left.svelte';
|
|
377
408
|
import squareArrowOutUpRight from './square-arrow-out-up-right.svelte';
|
|
378
409
|
import squareArrowRight from './square-arrow-right.svelte';
|
|
410
|
+
import squareArrowUp from './square-arrow-up.svelte';
|
|
379
411
|
import squareArrowUpLeft from './square-arrow-up-left.svelte';
|
|
380
412
|
import squareArrowUpRight from './square-arrow-up-right.svelte';
|
|
381
|
-
import squareArrowUp from './square-arrow-up.svelte';
|
|
382
413
|
import squareChartGantt from './square-chart-gantt.svelte';
|
|
383
|
-
import squareCheckBig from './square-check-big.svelte';
|
|
384
414
|
import squareCheck from './square-check.svelte';
|
|
415
|
+
import squareCheckBig from './square-check-big.svelte';
|
|
385
416
|
import squareChevronDown from './square-chevron-down.svelte';
|
|
386
417
|
import squareChevronLeft from './square-chevron-left.svelte';
|
|
387
418
|
import squareChevronRight from './square-chevron-right.svelte';
|
|
@@ -394,27 +425,31 @@ import squarePlus from './square-plus.svelte';
|
|
|
394
425
|
import squareScissors from './square-scissors.svelte';
|
|
395
426
|
import squareStack from './square-stack.svelte';
|
|
396
427
|
import squareTerminal from './square-terminal.svelte';
|
|
428
|
+
import star from './star.svelte';
|
|
397
429
|
import starOff from './star-off.svelte';
|
|
398
430
|
import sun from './sun.svelte';
|
|
399
431
|
import sword from './sword.svelte';
|
|
400
432
|
import tag from './tag.svelte';
|
|
401
433
|
import telescope from './telescope.svelte';
|
|
402
434
|
import terminal from './terminal.svelte';
|
|
403
|
-
import textCursorInput from './text-cursor-input.svelte';
|
|
404
435
|
import textCursor from './text-cursor.svelte';
|
|
436
|
+
import textCursorInput from './text-cursor-input.svelte';
|
|
437
|
+
import thermometer from './thermometer.svelte';
|
|
405
438
|
import thumbsDown from './thumbs-down.svelte';
|
|
406
439
|
import thumbsUp from './thumbs-up.svelte';
|
|
407
440
|
import ticketCheck from './ticket-check.svelte';
|
|
408
|
-
import timerOff from './timer-off.svelte';
|
|
409
441
|
import timer from './timer.svelte';
|
|
442
|
+
import timerOff from './timer-off.svelte';
|
|
443
|
+
import toggleLeft from './toggle-left.svelte';
|
|
444
|
+
import toggleRight from './toggle-right.svelte';
|
|
410
445
|
import tornado from './tornado.svelte';
|
|
411
446
|
import touchpadOff from './touchpad-off.svelte';
|
|
412
|
-
import trash2 from './trash-2.svelte';
|
|
413
447
|
import trash from './trash.svelte';
|
|
448
|
+
import trash2 from './trash-2.svelte';
|
|
414
449
|
import triangleAlert from './triangle-alert.svelte';
|
|
415
450
|
import umbrellaOff from './umbrella-off.svelte';
|
|
416
|
-
import undoDot from './undo-dot.svelte';
|
|
417
451
|
import undo from './undo.svelte';
|
|
452
|
+
import undoDot from './undo-dot.svelte';
|
|
418
453
|
import unfoldHorizontal from './unfold-horizontal.svelte';
|
|
419
454
|
import unfoldVertical from './unfold-vertical.svelte';
|
|
420
455
|
import unplug from './unplug.svelte';
|
|
@@ -425,11 +460,11 @@ import userPen from './user-pen.svelte';
|
|
|
425
460
|
import userRoundCheck from './user-round-check.svelte';
|
|
426
461
|
import userRoundCog from './user-round-cog.svelte';
|
|
427
462
|
import userRoundPen from './user-round-pen.svelte';
|
|
428
|
-
import usersRound from './users-round.svelte';
|
|
429
463
|
import users from './users.svelte';
|
|
464
|
+
import usersRound from './users-round.svelte';
|
|
430
465
|
import vault from './vault.svelte';
|
|
431
|
-
import vibrateOff from './vibrate-off.svelte';
|
|
432
466
|
import vibrate from './vibrate.svelte';
|
|
467
|
+
import vibrateOff from './vibrate-off.svelte';
|
|
433
468
|
import videoOff from './video-off.svelte';
|
|
434
469
|
import volumeOff from './volume-off.svelte';
|
|
435
470
|
import vote from './vote.svelte';
|
|
@@ -437,50 +472,15 @@ import washingMachine from './washing-machine.svelte';
|
|
|
437
472
|
import waves from './waves.svelte';
|
|
438
473
|
import webhookOff from './webhook-off.svelte';
|
|
439
474
|
import wheatOff from './wheat-off.svelte';
|
|
475
|
+
import wifi from './wifi.svelte';
|
|
440
476
|
import wifiHigh from './wifi-high.svelte';
|
|
441
477
|
import wifiLow from './wifi-low.svelte';
|
|
442
478
|
import wifiOff from './wifi-off.svelte';
|
|
479
|
+
import wifiPen from './wifi-pen.svelte';
|
|
443
480
|
import wifiZero from './wifi-zero.svelte';
|
|
444
|
-
import wifi from './wifi.svelte';
|
|
445
481
|
import wineOff from './wine-off.svelte';
|
|
446
482
|
import x from './x.svelte';
|
|
447
483
|
import zapOff from './zap-off.svelte';
|
|
448
|
-
import wifiPen from './wifi-pen.svelte';
|
|
449
|
-
import houseWifi from './house-wifi.svelte';
|
|
450
|
-
import briefcase from './briefcase.svelte';
|
|
451
|
-
import briefcaseBusiness from './briefcase-business.svelte';
|
|
452
|
-
import briefcaseConveyorBelt from './briefcase-conveyor-belt.svelte';
|
|
453
|
-
import briefcaseMedical from './briefcase-medical.svelte';
|
|
454
|
-
import landmark from './landmark.svelte';
|
|
455
|
-
import rotateCcwKey from './rotate-ccw-key.svelte';
|
|
456
|
-
import heart from './heart.svelte';
|
|
457
|
-
import snowflake from './snowflake.svelte';
|
|
458
|
-
import bellRing from './bell-ring.svelte';
|
|
459
|
-
import star from './star.svelte';
|
|
460
|
-
import brushCleaning from './brush-cleaning.svelte';
|
|
461
|
-
import brush from './brush.svelte';
|
|
462
|
-
import paintbrush from './paintbrush.svelte';
|
|
463
|
-
import cherry from './cherry.svelte';
|
|
464
|
-
import badgeQuestionMark from './badge-question-mark.svelte';
|
|
465
|
-
import fileQuestionMark from './file-question-mark.svelte';
|
|
466
|
-
import circleQuestionMark from './circle-question-mark.svelte';
|
|
467
|
-
import messageCircleQuestionMark from './message-circle-question-mark.svelte';
|
|
468
|
-
import shieldQuestionMark from './shield-question-mark.svelte';
|
|
469
|
-
import dropletOff from './droplet-off.svelte';
|
|
470
|
-
import serverOff from './server-off.svelte';
|
|
471
|
-
import thermometer from './thermometer.svelte';
|
|
472
|
-
import toggleLeft from './toggle-left.svelte';
|
|
473
|
-
import toggleRight from './toggle-right.svelte';
|
|
474
|
-
import send from './send.svelte';
|
|
475
|
-
import sendHorizontal from './send-horizontal.svelte';
|
|
476
|
-
import panelLeftOpen from './panel-left-open.svelte';
|
|
477
|
-
import panelBottomClose from './panel-bottom-close.svelte';
|
|
478
|
-
import panelBottomOpen from './panel-bottom-open.svelte';
|
|
479
|
-
import panelLeftClose from './panel-left-close.svelte';
|
|
480
|
-
import panelRightClose from './panel-right-close.svelte';
|
|
481
|
-
import panelRightOpen from './panel-right-open.svelte';
|
|
482
|
-
import panelTopClose from './panel-top-close.svelte';
|
|
483
|
-
import panelTopOpen from './panel-top-open.svelte';
|
|
484
484
|
|
|
485
485
|
let ICONS_LIST = [
|
|
486
486
|
{
|
|
@@ -517,6 +517,12 @@ let ICONS_LIST = [
|
|
|
517
517
|
],
|
|
518
518
|
categories: ['medical', 'account', 'social', 'science', 'multimedia']
|
|
519
519
|
},
|
|
520
|
+
{
|
|
521
|
+
name: 'alarm-clock',
|
|
522
|
+
icon: alarmClock,
|
|
523
|
+
tags: ['morning'],
|
|
524
|
+
categories: ['devices', 'notifications', 'time']
|
|
525
|
+
},
|
|
520
526
|
{
|
|
521
527
|
name: 'alarm-clock-check',
|
|
522
528
|
icon: alarmClockCheck,
|
|
@@ -529,12 +535,6 @@ let ICONS_LIST = [
|
|
|
529
535
|
tags: ['morning', 'turn-off'],
|
|
530
536
|
categories: ['devices', 'notifications', 'time']
|
|
531
537
|
},
|
|
532
|
-
{
|
|
533
|
-
name: 'alarm-clock',
|
|
534
|
-
icon: alarmClock,
|
|
535
|
-
tags: ['morning'],
|
|
536
|
-
categories: ['devices', 'notifications', 'time']
|
|
537
|
-
},
|
|
538
538
|
{
|
|
539
539
|
name: 'align-center',
|
|
540
540
|
icon: alignCenter,
|
|
@@ -565,6 +565,12 @@ let ICONS_LIST = [
|
|
|
565
565
|
tags: ['index', 'backup', 'box', 'storage', 'records'],
|
|
566
566
|
categories: ['files', 'mail']
|
|
567
567
|
},
|
|
568
|
+
{
|
|
569
|
+
name: 'arrow-big-down',
|
|
570
|
+
icon: arrowBigDown,
|
|
571
|
+
tags: ['backwards', 'reverse', 'direction', 'south'],
|
|
572
|
+
categories: ['arrows', 'navigation', 'gaming']
|
|
573
|
+
},
|
|
568
574
|
{
|
|
569
575
|
name: 'arrow-big-down-dash',
|
|
570
576
|
icon: arrowBigDownDash,
|
|
@@ -572,9 +578,9 @@ let ICONS_LIST = [
|
|
|
572
578
|
categories: ['arrows', 'navigation', 'gaming', 'files']
|
|
573
579
|
},
|
|
574
580
|
{
|
|
575
|
-
name: 'arrow-big-
|
|
576
|
-
icon:
|
|
577
|
-
tags: ['
|
|
581
|
+
name: 'arrow-big-left',
|
|
582
|
+
icon: arrowBigLeft,
|
|
583
|
+
tags: ['previous', 'back', 'direction', 'west', 'indicate turn'],
|
|
578
584
|
categories: ['arrows', 'navigation', 'gaming']
|
|
579
585
|
},
|
|
580
586
|
{
|
|
@@ -584,9 +590,9 @@ let ICONS_LIST = [
|
|
|
584
590
|
categories: ['arrows', 'navigation', 'gaming']
|
|
585
591
|
},
|
|
586
592
|
{
|
|
587
|
-
name: 'arrow-big-
|
|
588
|
-
icon:
|
|
589
|
-
tags: ['
|
|
593
|
+
name: 'arrow-big-right',
|
|
594
|
+
icon: arrowBigRight,
|
|
595
|
+
tags: ['next', 'forward', 'direction', 'east', 'indicate turn'],
|
|
590
596
|
categories: ['arrows', 'navigation', 'gaming']
|
|
591
597
|
},
|
|
592
598
|
{
|
|
@@ -596,10 +602,20 @@ let ICONS_LIST = [
|
|
|
596
602
|
categories: ['arrows', 'navigation', 'gaming']
|
|
597
603
|
},
|
|
598
604
|
{
|
|
599
|
-
name: 'arrow-big-
|
|
600
|
-
icon:
|
|
601
|
-
tags: [
|
|
602
|
-
|
|
605
|
+
name: 'arrow-big-up',
|
|
606
|
+
icon: arrowBigUp,
|
|
607
|
+
tags: [
|
|
608
|
+
'shift',
|
|
609
|
+
'keyboard',
|
|
610
|
+
'button',
|
|
611
|
+
'mac',
|
|
612
|
+
'capitalize',
|
|
613
|
+
'capitalise',
|
|
614
|
+
'forward',
|
|
615
|
+
'direction',
|
|
616
|
+
'north'
|
|
617
|
+
],
|
|
618
|
+
categories: ['arrows', 'navigation', 'text', 'development', 'gaming']
|
|
603
619
|
},
|
|
604
620
|
{
|
|
605
621
|
name: 'arrow-big-up-dash',
|
|
@@ -620,20 +636,10 @@ let ICONS_LIST = [
|
|
|
620
636
|
categories: ['arrows', 'navigation', 'text', 'development', 'gaming']
|
|
621
637
|
},
|
|
622
638
|
{
|
|
623
|
-
name: 'arrow-
|
|
624
|
-
icon:
|
|
625
|
-
tags: [
|
|
626
|
-
|
|
627
|
-
'keyboard',
|
|
628
|
-
'button',
|
|
629
|
-
'mac',
|
|
630
|
-
'capitalize',
|
|
631
|
-
'capitalise',
|
|
632
|
-
'forward',
|
|
633
|
-
'direction',
|
|
634
|
-
'north'
|
|
635
|
-
],
|
|
636
|
-
categories: ['arrows', 'navigation', 'text', 'development', 'gaming']
|
|
639
|
+
name: 'arrow-down',
|
|
640
|
+
icon: arrowDown,
|
|
641
|
+
tags: ['backwards', 'reverse', 'direction', 'south'],
|
|
642
|
+
categories: ['arrows', 'navigation']
|
|
637
643
|
},
|
|
638
644
|
{
|
|
639
645
|
name: 'arrow-down-0-1',
|
|
@@ -713,9 +719,9 @@ let ICONS_LIST = [
|
|
|
713
719
|
categories: ['text', 'layout', 'arrows']
|
|
714
720
|
},
|
|
715
721
|
{
|
|
716
|
-
name: 'arrow-
|
|
717
|
-
icon:
|
|
718
|
-
tags: ['
|
|
722
|
+
name: 'arrow-left',
|
|
723
|
+
icon: arrowLeft,
|
|
724
|
+
tags: ['previous', 'back', 'direction', 'west', '<-'],
|
|
719
725
|
categories: ['arrows', 'navigation']
|
|
720
726
|
},
|
|
721
727
|
{
|
|
@@ -736,9 +742,9 @@ let ICONS_LIST = [
|
|
|
736
742
|
categories: ['arrows', 'navigation']
|
|
737
743
|
},
|
|
738
744
|
{
|
|
739
|
-
name: 'arrow-
|
|
740
|
-
icon:
|
|
741
|
-
tags: ['
|
|
745
|
+
name: 'arrow-right',
|
|
746
|
+
icon: arrowRight,
|
|
747
|
+
tags: ['forward', 'next', 'direction', 'east', '->'],
|
|
742
748
|
categories: ['arrows', 'navigation']
|
|
743
749
|
},
|
|
744
750
|
{
|
|
@@ -759,9 +765,9 @@ let ICONS_LIST = [
|
|
|
759
765
|
categories: ['arrows', 'navigation']
|
|
760
766
|
},
|
|
761
767
|
{
|
|
762
|
-
name: 'arrow-
|
|
763
|
-
icon:
|
|
764
|
-
tags: ['forward', '
|
|
768
|
+
name: 'arrow-up',
|
|
769
|
+
icon: arrowUp,
|
|
770
|
+
tags: ['forward', 'direction', 'north'],
|
|
765
771
|
categories: ['arrows', 'navigation']
|
|
766
772
|
},
|
|
767
773
|
{
|
|
@@ -841,12 +847,6 @@ let ICONS_LIST = [
|
|
|
841
847
|
],
|
|
842
848
|
categories: ['text', 'layout', 'arrows']
|
|
843
849
|
},
|
|
844
|
-
{
|
|
845
|
-
name: 'arrow-up',
|
|
846
|
-
icon: arrowUp,
|
|
847
|
-
tags: ['forward', 'direction', 'north'],
|
|
848
|
-
categories: ['arrows', 'navigation']
|
|
849
|
-
},
|
|
850
850
|
{
|
|
851
851
|
name: 'audio-lines',
|
|
852
852
|
icon: audioLines,
|
|
@@ -914,6 +914,18 @@ let ICONS_LIST = [
|
|
|
914
914
|
tags: ['verified', 'check'],
|
|
915
915
|
categories: ['social']
|
|
916
916
|
},
|
|
917
|
+
{
|
|
918
|
+
name: 'badge-question-mark',
|
|
919
|
+
icon: badgeQuestionMark,
|
|
920
|
+
tags: ['verified', 'unverified', 'help'],
|
|
921
|
+
categories: ['accessibility', 'social', 'shapes']
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
name: 'battery',
|
|
925
|
+
icon: battery,
|
|
926
|
+
tags: ['power', 'electricity', 'energy', 'accumulator', 'charge'],
|
|
927
|
+
categories: ['connectivity', 'devices']
|
|
928
|
+
},
|
|
917
929
|
{
|
|
918
930
|
name: 'battery-charging',
|
|
919
931
|
icon: batteryCharging,
|
|
@@ -944,12 +956,6 @@ let ICONS_LIST = [
|
|
|
944
956
|
tags: ['power', 'electricity', 'energy', 'accumulator', 'charge', 'exclamation mark'],
|
|
945
957
|
categories: ['connectivity', 'devices']
|
|
946
958
|
},
|
|
947
|
-
{
|
|
948
|
-
name: 'battery',
|
|
949
|
-
icon: battery,
|
|
950
|
-
tags: ['power', 'electricity', 'energy', 'accumulator', 'charge'],
|
|
951
|
-
categories: ['connectivity', 'devices']
|
|
952
|
-
},
|
|
953
959
|
{
|
|
954
960
|
name: 'bean-off',
|
|
955
961
|
icon: beanOff,
|
|
@@ -962,6 +968,12 @@ let ICONS_LIST = [
|
|
|
962
968
|
tags: ['alcohol', 'bar', 'beverage', 'brewery', 'drink'],
|
|
963
969
|
categories: ['food-beverage']
|
|
964
970
|
},
|
|
971
|
+
{
|
|
972
|
+
name: 'bell',
|
|
973
|
+
icon: bell,
|
|
974
|
+
tags: ['alarm', 'notification', 'sound', 'reminder'],
|
|
975
|
+
categories: ['account', 'notifications']
|
|
976
|
+
},
|
|
965
977
|
{
|
|
966
978
|
name: 'bell-off',
|
|
967
979
|
icon: bellOff,
|
|
@@ -969,10 +981,10 @@ let ICONS_LIST = [
|
|
|
969
981
|
categories: ['notifications']
|
|
970
982
|
},
|
|
971
983
|
{
|
|
972
|
-
name: 'bell',
|
|
973
|
-
icon:
|
|
984
|
+
name: 'bell-ring',
|
|
985
|
+
icon: bellRing,
|
|
974
986
|
tags: ['alarm', 'notification', 'sound', 'reminder'],
|
|
975
|
-
categories: ['
|
|
987
|
+
categories: ['notifications']
|
|
976
988
|
},
|
|
977
989
|
{
|
|
978
990
|
name: 'between-horizontal-end',
|
|
@@ -1119,9 +1131,11 @@ let ICONS_LIST = [
|
|
|
1119
1131
|
'toys',
|
|
1120
1132
|
'kids',
|
|
1121
1133
|
'children',
|
|
1122
|
-
'learning'
|
|
1134
|
+
'learning',
|
|
1135
|
+
'squares',
|
|
1136
|
+
'corner'
|
|
1123
1137
|
],
|
|
1124
|
-
categories: ['development', 'shapes']
|
|
1138
|
+
categories: ['development', 'layout', 'shapes']
|
|
1125
1139
|
},
|
|
1126
1140
|
{
|
|
1127
1141
|
name: 'bluetooth-off',
|
|
@@ -1154,6 +1168,42 @@ let ICONS_LIST = [
|
|
|
1154
1168
|
tags: ['health', 'skeleton', 'skull', 'death', 'pets', 'dog'],
|
|
1155
1169
|
categories: ['animals', 'medical', 'gaming']
|
|
1156
1170
|
},
|
|
1171
|
+
{
|
|
1172
|
+
name: 'book',
|
|
1173
|
+
icon: book,
|
|
1174
|
+
tags: [
|
|
1175
|
+
'reading',
|
|
1176
|
+
'paperback',
|
|
1177
|
+
'booklet',
|
|
1178
|
+
'magazine',
|
|
1179
|
+
'leaflet',
|
|
1180
|
+
'pamphlet',
|
|
1181
|
+
'tome',
|
|
1182
|
+
'library',
|
|
1183
|
+
'writing',
|
|
1184
|
+
'written',
|
|
1185
|
+
'writer',
|
|
1186
|
+
'author',
|
|
1187
|
+
'story',
|
|
1188
|
+
'script',
|
|
1189
|
+
'fiction',
|
|
1190
|
+
'novel',
|
|
1191
|
+
'information',
|
|
1192
|
+
'knowledge',
|
|
1193
|
+
'education',
|
|
1194
|
+
'high school',
|
|
1195
|
+
'university',
|
|
1196
|
+
'college',
|
|
1197
|
+
'academy',
|
|
1198
|
+
'student',
|
|
1199
|
+
'study',
|
|
1200
|
+
'learning',
|
|
1201
|
+
'homework',
|
|
1202
|
+
'research',
|
|
1203
|
+
'documentation'
|
|
1204
|
+
],
|
|
1205
|
+
categories: ['text', 'development', 'gaming']
|
|
1206
|
+
},
|
|
1157
1207
|
{
|
|
1158
1208
|
name: 'book-a',
|
|
1159
1209
|
icon: bookA,
|
|
@@ -1626,18 +1676,18 @@ let ICONS_LIST = [
|
|
|
1626
1676
|
],
|
|
1627
1677
|
categories: ['text', 'design', 'gaming']
|
|
1628
1678
|
},
|
|
1629
|
-
{
|
|
1630
|
-
name: 'book-up-2',
|
|
1631
|
-
icon: bookUp2,
|
|
1632
|
-
tags: ['code', 'coding', 'version control', 'git', 'repository', 'push', 'force'],
|
|
1633
|
-
categories: ['development']
|
|
1634
|
-
},
|
|
1635
1679
|
{
|
|
1636
1680
|
name: 'book-up',
|
|
1637
1681
|
icon: bookUp,
|
|
1638
1682
|
tags: ['code', 'coding', 'version control', 'git', 'repository', 'push'],
|
|
1639
1683
|
categories: ['development']
|
|
1640
1684
|
},
|
|
1685
|
+
{
|
|
1686
|
+
name: 'book-up-2',
|
|
1687
|
+
icon: bookUp2,
|
|
1688
|
+
tags: ['code', 'coding', 'version control', 'git', 'repository', 'push', 'force'],
|
|
1689
|
+
categories: ['development']
|
|
1690
|
+
},
|
|
1641
1691
|
{
|
|
1642
1692
|
name: 'book-user',
|
|
1643
1693
|
icon: bookUser,
|
|
@@ -1689,42 +1739,6 @@ let ICONS_LIST = [
|
|
|
1689
1739
|
],
|
|
1690
1740
|
categories: ['text', 'gaming']
|
|
1691
1741
|
},
|
|
1692
|
-
{
|
|
1693
|
-
name: 'book',
|
|
1694
|
-
icon: book,
|
|
1695
|
-
tags: [
|
|
1696
|
-
'reading',
|
|
1697
|
-
'paperback',
|
|
1698
|
-
'booklet',
|
|
1699
|
-
'magazine',
|
|
1700
|
-
'leaflet',
|
|
1701
|
-
'pamphlet',
|
|
1702
|
-
'tome',
|
|
1703
|
-
'library',
|
|
1704
|
-
'writing',
|
|
1705
|
-
'written',
|
|
1706
|
-
'writer',
|
|
1707
|
-
'author',
|
|
1708
|
-
'story',
|
|
1709
|
-
'script',
|
|
1710
|
-
'fiction',
|
|
1711
|
-
'novel',
|
|
1712
|
-
'information',
|
|
1713
|
-
'knowledge',
|
|
1714
|
-
'education',
|
|
1715
|
-
'high school',
|
|
1716
|
-
'university',
|
|
1717
|
-
'college',
|
|
1718
|
-
'academy',
|
|
1719
|
-
'student',
|
|
1720
|
-
'study',
|
|
1721
|
-
'learning',
|
|
1722
|
-
'homework',
|
|
1723
|
-
'research',
|
|
1724
|
-
'documentation'
|
|
1725
|
-
],
|
|
1726
|
-
categories: ['text', 'development', 'gaming']
|
|
1727
|
-
},
|
|
1728
1742
|
{
|
|
1729
1743
|
name: 'bookmark-check',
|
|
1730
1744
|
icon: bookmarkCheck,
|
|
@@ -1757,6 +1771,74 @@ let ICONS_LIST = [
|
|
|
1757
1771
|
],
|
|
1758
1772
|
categories: ['science', 'development']
|
|
1759
1773
|
},
|
|
1774
|
+
{
|
|
1775
|
+
name: 'briefcase',
|
|
1776
|
+
icon: briefcase,
|
|
1777
|
+
tags: ['work', 'bag', 'baggage', 'folder'],
|
|
1778
|
+
categories: ['transportation']
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
name: 'briefcase-business',
|
|
1782
|
+
icon: briefcaseBusiness,
|
|
1783
|
+
tags: ['work', 'bag', 'baggage', 'folder', 'portfolio'],
|
|
1784
|
+
categories: ['transportation']
|
|
1785
|
+
},
|
|
1786
|
+
{
|
|
1787
|
+
name: 'briefcase-conveyor-belt',
|
|
1788
|
+
icon: briefcaseConveyorBelt,
|
|
1789
|
+
tags: ['baggage', 'luggage', 'travel', 'suitcase', 'conveyor', 'carousel'],
|
|
1790
|
+
categories: ['travel', 'transportation']
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
name: 'briefcase-medical',
|
|
1794
|
+
icon: briefcaseMedical,
|
|
1795
|
+
tags: ['doctor', 'medicine', 'first aid'],
|
|
1796
|
+
categories: ['medical', 'transportation']
|
|
1797
|
+
},
|
|
1798
|
+
{
|
|
1799
|
+
name: 'brush',
|
|
1800
|
+
icon: brush,
|
|
1801
|
+
tags: ['clean', 'sweep', 'refactor', 'remove', 'draw', 'paint', 'color', 'artist'],
|
|
1802
|
+
categories: ['text', 'design', 'tools']
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
name: 'brush-cleaning',
|
|
1806
|
+
icon: brushCleaning,
|
|
1807
|
+
tags: [
|
|
1808
|
+
'cleaning',
|
|
1809
|
+
'utensil',
|
|
1810
|
+
'housekeeping',
|
|
1811
|
+
'tool',
|
|
1812
|
+
'sweeping',
|
|
1813
|
+
'scrubbing',
|
|
1814
|
+
'hygiene',
|
|
1815
|
+
'maintenance',
|
|
1816
|
+
'household',
|
|
1817
|
+
'cleaner',
|
|
1818
|
+
'chores',
|
|
1819
|
+
'equipment',
|
|
1820
|
+
'sanitation',
|
|
1821
|
+
'bristles',
|
|
1822
|
+
'handle',
|
|
1823
|
+
'home care',
|
|
1824
|
+
'sanitize',
|
|
1825
|
+
'purify',
|
|
1826
|
+
'wash',
|
|
1827
|
+
'disinfect',
|
|
1828
|
+
'sterilize',
|
|
1829
|
+
'scrub',
|
|
1830
|
+
'polish',
|
|
1831
|
+
'decontaminate',
|
|
1832
|
+
'wipe',
|
|
1833
|
+
'spotless',
|
|
1834
|
+
'remove',
|
|
1835
|
+
'empty',
|
|
1836
|
+
'erase',
|
|
1837
|
+
'purge',
|
|
1838
|
+
'eliminate'
|
|
1839
|
+
],
|
|
1840
|
+
categories: ['home', 'tools', 'design']
|
|
1841
|
+
},
|
|
1760
1842
|
{
|
|
1761
1843
|
name: 'bug-off',
|
|
1762
1844
|
icon: bugOff,
|
|
@@ -1764,8 +1846,8 @@ let ICONS_LIST = [
|
|
|
1764
1846
|
categories: ['development', 'animals']
|
|
1765
1847
|
},
|
|
1766
1848
|
{
|
|
1767
|
-
name: 'calendar-check
|
|
1768
|
-
icon:
|
|
1849
|
+
name: 'calendar-check',
|
|
1850
|
+
icon: calendarCheck,
|
|
1769
1851
|
tags: [
|
|
1770
1852
|
'date',
|
|
1771
1853
|
'day',
|
|
@@ -1784,8 +1866,8 @@ let ICONS_LIST = [
|
|
|
1784
1866
|
categories: ['time']
|
|
1785
1867
|
},
|
|
1786
1868
|
{
|
|
1787
|
-
name: 'calendar-check',
|
|
1788
|
-
icon:
|
|
1869
|
+
name: 'calendar-check-2',
|
|
1870
|
+
icon: calendarCheck2,
|
|
1789
1871
|
tags: [
|
|
1790
1872
|
'date',
|
|
1791
1873
|
'day',
|
|
@@ -1881,6 +1963,12 @@ let ICONS_LIST = [
|
|
|
1881
1963
|
tags: ['camera', 'surveillance', 'recording', 'film', 'videotape', 'crime', 'watching'],
|
|
1882
1964
|
categories: ['security', 'devices', 'communication', 'connectivity', 'photography']
|
|
1883
1965
|
},
|
|
1966
|
+
{
|
|
1967
|
+
name: 'chart-bar',
|
|
1968
|
+
icon: chartBar,
|
|
1969
|
+
tags: ['statistics', 'analytics', 'diagram', 'graph'],
|
|
1970
|
+
categories: ['charts']
|
|
1971
|
+
},
|
|
1884
1972
|
{
|
|
1885
1973
|
name: 'chart-bar-decreasing',
|
|
1886
1974
|
icon: chartBarDecreasing,
|
|
@@ -1894,8 +1982,8 @@ let ICONS_LIST = [
|
|
|
1894
1982
|
categories: ['charts']
|
|
1895
1983
|
},
|
|
1896
1984
|
{
|
|
1897
|
-
name: 'chart-
|
|
1898
|
-
icon:
|
|
1985
|
+
name: 'chart-column',
|
|
1986
|
+
icon: chartColumn,
|
|
1899
1987
|
tags: ['statistics', 'analytics', 'diagram', 'graph'],
|
|
1900
1988
|
categories: ['charts']
|
|
1901
1989
|
},
|
|
@@ -1911,12 +1999,6 @@ let ICONS_LIST = [
|
|
|
1911
1999
|
tags: ['statistics', 'analytics', 'diagram', 'graph', 'trending up'],
|
|
1912
2000
|
categories: ['charts']
|
|
1913
2001
|
},
|
|
1914
|
-
{
|
|
1915
|
-
name: 'chart-column',
|
|
1916
|
-
icon: chartColumn,
|
|
1917
|
-
tags: ['statistics', 'analytics', 'diagram', 'graph'],
|
|
1918
|
-
categories: ['charts']
|
|
1919
|
-
},
|
|
1920
2002
|
{
|
|
1921
2003
|
name: 'chart-gantt',
|
|
1922
2004
|
icon: chartGantt,
|
|
@@ -1929,6 +2011,12 @@ let ICONS_LIST = [
|
|
|
1929
2011
|
tags: ['statistics', 'analytics', 'diagram', 'graph'],
|
|
1930
2012
|
categories: ['charts']
|
|
1931
2013
|
},
|
|
2014
|
+
{
|
|
2015
|
+
name: 'chart-no-axes-column',
|
|
2016
|
+
icon: chartNoAxesColumn,
|
|
2017
|
+
tags: ['statistics', 'analytics', 'diagram', 'graph'],
|
|
2018
|
+
categories: ['charts']
|
|
2019
|
+
},
|
|
1932
2020
|
{
|
|
1933
2021
|
name: 'chart-no-axes-column-decreasing',
|
|
1934
2022
|
icon: chartNoAxesColumnDecreasing,
|
|
@@ -1941,12 +2029,6 @@ let ICONS_LIST = [
|
|
|
1941
2029
|
tags: ['statistics', 'analytics', 'diagram', 'graph', 'trending up'],
|
|
1942
2030
|
categories: ['charts']
|
|
1943
2031
|
},
|
|
1944
|
-
{
|
|
1945
|
-
name: 'chart-no-axes-column',
|
|
1946
|
-
icon: chartNoAxesColumn,
|
|
1947
|
-
tags: ['statistics', 'analytics', 'diagram', 'graph'],
|
|
1948
|
-
categories: ['charts']
|
|
1949
|
-
},
|
|
1950
2032
|
{
|
|
1951
2033
|
name: 'chart-no-axes-combined',
|
|
1952
2034
|
icon: chartNoAxesCombined,
|
|
@@ -2007,6 +2089,12 @@ let ICONS_LIST = [
|
|
|
2007
2089
|
],
|
|
2008
2090
|
categories: ['charts']
|
|
2009
2091
|
},
|
|
2092
|
+
{
|
|
2093
|
+
name: 'check',
|
|
2094
|
+
icon: check,
|
|
2095
|
+
tags: ['done', 'todo', 'tick', 'complete', 'task'],
|
|
2096
|
+
categories: ['notifications']
|
|
2097
|
+
},
|
|
2010
2098
|
{
|
|
2011
2099
|
name: 'check-check',
|
|
2012
2100
|
icon: checkCheck,
|
|
@@ -2014,10 +2102,10 @@ let ICONS_LIST = [
|
|
|
2014
2102
|
categories: ['notifications']
|
|
2015
2103
|
},
|
|
2016
2104
|
{
|
|
2017
|
-
name: '
|
|
2018
|
-
icon:
|
|
2019
|
-
tags: ['
|
|
2020
|
-
categories: ['
|
|
2105
|
+
name: 'cherry',
|
|
2106
|
+
icon: cherry,
|
|
2107
|
+
tags: ['fruit', 'food'],
|
|
2108
|
+
categories: ['food-beverage']
|
|
2021
2109
|
},
|
|
2022
2110
|
{
|
|
2023
2111
|
name: 'chevron-down',
|
|
@@ -2069,6 +2157,12 @@ let ICONS_LIST = [
|
|
|
2069
2157
|
],
|
|
2070
2158
|
categories: ['arrows', 'navigation', 'math', 'gaming']
|
|
2071
2159
|
},
|
|
2160
|
+
{
|
|
2161
|
+
name: 'chevrons-down',
|
|
2162
|
+
icon: chevronsDown,
|
|
2163
|
+
tags: ['backwards', 'reverse', 'slower'],
|
|
2164
|
+
categories: ['arrows', 'navigation', 'gaming']
|
|
2165
|
+
},
|
|
2072
2166
|
{
|
|
2073
2167
|
name: 'chevrons-down-up',
|
|
2074
2168
|
icon: chevronsDownUp,
|
|
@@ -2076,9 +2170,9 @@ let ICONS_LIST = [
|
|
|
2076
2170
|
categories: ['arrows']
|
|
2077
2171
|
},
|
|
2078
2172
|
{
|
|
2079
|
-
name: 'chevrons-
|
|
2080
|
-
icon:
|
|
2081
|
-
tags: ['
|
|
2173
|
+
name: 'chevrons-left',
|
|
2174
|
+
icon: chevronsLeft,
|
|
2175
|
+
tags: ['turn', 'corner'],
|
|
2082
2176
|
categories: ['arrows', 'navigation', 'gaming']
|
|
2083
2177
|
},
|
|
2084
2178
|
{
|
|
@@ -2088,8 +2182,8 @@ let ICONS_LIST = [
|
|
|
2088
2182
|
categories: ['arrows']
|
|
2089
2183
|
},
|
|
2090
2184
|
{
|
|
2091
|
-
name: 'chevrons-
|
|
2092
|
-
icon:
|
|
2185
|
+
name: 'chevrons-right',
|
|
2186
|
+
icon: chevronsRight,
|
|
2093
2187
|
tags: ['turn', 'corner'],
|
|
2094
2188
|
categories: ['arrows', 'navigation', 'gaming']
|
|
2095
2189
|
},
|
|
@@ -2100,9 +2194,9 @@ let ICONS_LIST = [
|
|
|
2100
2194
|
categories: ['arrows']
|
|
2101
2195
|
},
|
|
2102
2196
|
{
|
|
2103
|
-
name: 'chevrons-
|
|
2104
|
-
icon:
|
|
2105
|
-
tags: ['
|
|
2197
|
+
name: 'chevrons-up',
|
|
2198
|
+
icon: chevronsUp,
|
|
2199
|
+
tags: ['forward', 'ahead', 'faster', 'speed', 'boost'],
|
|
2106
2200
|
categories: ['arrows', 'navigation', 'gaming']
|
|
2107
2201
|
},
|
|
2108
2202
|
{
|
|
@@ -2111,12 +2205,6 @@ let ICONS_LIST = [
|
|
|
2111
2205
|
tags: ['expand', 'unfold', 'vertical'],
|
|
2112
2206
|
categories: ['arrows']
|
|
2113
2207
|
},
|
|
2114
|
-
{
|
|
2115
|
-
name: 'chevrons-up',
|
|
2116
|
-
icon: chevronsUp,
|
|
2117
|
-
tags: ['forward', 'ahead', 'faster', 'speed', 'boost'],
|
|
2118
|
-
categories: ['arrows', 'navigation', 'gaming']
|
|
2119
|
-
},
|
|
2120
2208
|
{
|
|
2121
2209
|
name: 'cigarette-off',
|
|
2122
2210
|
icon: cigaretteOff,
|
|
@@ -2178,14 +2266,14 @@ let ICONS_LIST = [
|
|
|
2178
2266
|
categories: ['arrows', 'navigation', 'gaming']
|
|
2179
2267
|
},
|
|
2180
2268
|
{
|
|
2181
|
-
name: 'circle-check
|
|
2182
|
-
icon:
|
|
2269
|
+
name: 'circle-check',
|
|
2270
|
+
icon: circleCheck,
|
|
2183
2271
|
tags: ['done', 'todo', 'tick', 'complete', 'task'],
|
|
2184
2272
|
categories: ['notifications']
|
|
2185
2273
|
},
|
|
2186
2274
|
{
|
|
2187
|
-
name: 'circle-check',
|
|
2188
|
-
icon:
|
|
2275
|
+
name: 'circle-check-big',
|
|
2276
|
+
icon: circleCheckBig,
|
|
2189
2277
|
tags: ['done', 'todo', 'tick', 'complete', 'task'],
|
|
2190
2278
|
categories: ['notifications']
|
|
2191
2279
|
},
|
|
@@ -2271,6 +2359,12 @@ let ICONS_LIST = [
|
|
|
2271
2359
|
],
|
|
2272
2360
|
categories: ['math', 'development', 'cursors', 'gaming']
|
|
2273
2361
|
},
|
|
2362
|
+
{
|
|
2363
|
+
name: 'circle-question-mark',
|
|
2364
|
+
icon: circleQuestionMark,
|
|
2365
|
+
tags: ['question mark'],
|
|
2366
|
+
categories: ['accessibility', 'text', 'notifications']
|
|
2367
|
+
},
|
|
2274
2368
|
{
|
|
2275
2369
|
name: 'clapperboard',
|
|
2276
2370
|
icon: clapperboard,
|
|
@@ -2295,6 +2389,12 @@ let ICONS_LIST = [
|
|
|
2295
2389
|
tags: ['copied', 'pasted', 'done', 'todo', 'tick', 'complete', 'task'],
|
|
2296
2390
|
categories: ['text']
|
|
2297
2391
|
},
|
|
2392
|
+
{
|
|
2393
|
+
name: 'clipboard-pen',
|
|
2394
|
+
icon: clipboardPen,
|
|
2395
|
+
tags: ['paste', 'signature'],
|
|
2396
|
+
categories: ['text']
|
|
2397
|
+
},
|
|
2298
2398
|
{
|
|
2299
2399
|
name: 'clipboard-pen-line',
|
|
2300
2400
|
icon: clipboardPenLine,
|
|
@@ -2302,10 +2402,10 @@ let ICONS_LIST = [
|
|
|
2302
2402
|
categories: ['text']
|
|
2303
2403
|
},
|
|
2304
2404
|
{
|
|
2305
|
-
name: '
|
|
2306
|
-
icon:
|
|
2307
|
-
tags: ['
|
|
2308
|
-
categories: ['
|
|
2405
|
+
name: 'clock',
|
|
2406
|
+
icon: clock,
|
|
2407
|
+
tags: ['time', 'watch', 'alarm'],
|
|
2408
|
+
categories: ['time']
|
|
2309
2409
|
},
|
|
2310
2410
|
{
|
|
2311
2411
|
name: 'clock-1',
|
|
@@ -2379,12 +2479,6 @@ let ICONS_LIST = [
|
|
|
2379
2479
|
tags: ['time', 'watch', 'alarm'],
|
|
2380
2480
|
categories: ['time']
|
|
2381
2481
|
},
|
|
2382
|
-
{
|
|
2383
|
-
name: 'clock',
|
|
2384
|
-
icon: clock,
|
|
2385
|
-
tags: ['time', 'watch', 'alarm'],
|
|
2386
|
-
categories: ['time']
|
|
2387
|
-
},
|
|
2388
2482
|
{
|
|
2389
2483
|
name: 'cloud-cog',
|
|
2390
2484
|
icon: cloudCog,
|
|
@@ -2440,18 +2534,18 @@ let ICONS_LIST = [
|
|
|
2440
2534
|
tags: ['display', 'accessibility'],
|
|
2441
2535
|
categories: ['photography', 'accessibility', 'design']
|
|
2442
2536
|
},
|
|
2443
|
-
{
|
|
2444
|
-
name: 'copy-check',
|
|
2445
|
-
icon: copyCheck,
|
|
2446
|
-
tags: ['clone', 'duplicate', 'done', 'multiple'],
|
|
2447
|
-
categories: ['text', 'notifications']
|
|
2448
|
-
},
|
|
2449
2537
|
{
|
|
2450
2538
|
name: 'copy',
|
|
2451
2539
|
icon: copy,
|
|
2452
2540
|
tags: ['clone', 'duplicate', 'multiple'],
|
|
2453
2541
|
categories: ['text']
|
|
2454
2542
|
},
|
|
2543
|
+
{
|
|
2544
|
+
name: 'copy-check',
|
|
2545
|
+
icon: copyCheck,
|
|
2546
|
+
tags: ['clone', 'duplicate', 'done', 'multiple'],
|
|
2547
|
+
categories: ['text', 'notifications']
|
|
2548
|
+
},
|
|
2455
2549
|
{
|
|
2456
2550
|
name: 'cpu',
|
|
2457
2551
|
icon: cpu,
|
|
@@ -2573,6 +2667,12 @@ let ICONS_LIST = [
|
|
|
2573
2667
|
tags: ['import', 'export', 'save'],
|
|
2574
2668
|
categories: ['arrows', 'files']
|
|
2575
2669
|
},
|
|
2670
|
+
{
|
|
2671
|
+
name: 'droplet-off',
|
|
2672
|
+
icon: dropletOff,
|
|
2673
|
+
tags: ['water', 'weather', 'liquid', 'fluid', 'wet', 'moisture', 'damp', 'bead', 'globule'],
|
|
2674
|
+
categories: ['weather', 'gaming']
|
|
2675
|
+
},
|
|
2576
2676
|
{
|
|
2577
2677
|
name: 'drum',
|
|
2578
2678
|
icon: drum,
|
|
@@ -2661,18 +2761,18 @@ let ICONS_LIST = [
|
|
|
2661
2761
|
tags: ['view', 'watch', 'see', 'hide', 'conceal', 'mask', 'hidden', 'visibility', 'vision'],
|
|
2662
2762
|
categories: ['accessibility', 'photography', 'design', 'security']
|
|
2663
2763
|
},
|
|
2664
|
-
{
|
|
2665
|
-
name: 'file-chart-column-increasing',
|
|
2666
|
-
icon: fileChartColumnIncreasing,
|
|
2667
|
-
tags: ['statistics', 'analytics', 'diagram', 'graph', 'presentation', 'trending up'],
|
|
2668
|
-
categories: ['files']
|
|
2669
|
-
},
|
|
2670
2764
|
{
|
|
2671
2765
|
name: 'file-chart-column',
|
|
2672
2766
|
icon: fileChartColumn,
|
|
2673
2767
|
tags: ['statistics', 'analytics', 'diagram', 'graph', 'presentation'],
|
|
2674
2768
|
categories: ['files']
|
|
2675
2769
|
},
|
|
2770
|
+
{
|
|
2771
|
+
name: 'file-chart-column-increasing',
|
|
2772
|
+
icon: fileChartColumnIncreasing,
|
|
2773
|
+
tags: ['statistics', 'analytics', 'diagram', 'graph', 'presentation', 'trending up'],
|
|
2774
|
+
categories: ['files']
|
|
2775
|
+
},
|
|
2676
2776
|
{
|
|
2677
2777
|
name: 'file-chart-line',
|
|
2678
2778
|
icon: fileChartLine,
|
|
@@ -2680,14 +2780,14 @@ let ICONS_LIST = [
|
|
|
2680
2780
|
categories: ['files']
|
|
2681
2781
|
},
|
|
2682
2782
|
{
|
|
2683
|
-
name: 'file-check
|
|
2684
|
-
icon:
|
|
2783
|
+
name: 'file-check',
|
|
2784
|
+
icon: fileCheck,
|
|
2685
2785
|
tags: ['done', 'document', 'todo', 'tick', 'complete', 'task'],
|
|
2686
2786
|
categories: ['files']
|
|
2687
2787
|
},
|
|
2688
2788
|
{
|
|
2689
|
-
name: 'file-check',
|
|
2690
|
-
icon:
|
|
2789
|
+
name: 'file-check-2',
|
|
2790
|
+
icon: fileCheck2,
|
|
2691
2791
|
tags: ['done', 'document', 'todo', 'tick', 'complete', 'task'],
|
|
2692
2792
|
categories: ['files']
|
|
2693
2793
|
},
|
|
@@ -2709,18 +2809,18 @@ let ICONS_LIST = [
|
|
|
2709
2809
|
tags: ['delete', 'remove', 'erase', 'document'],
|
|
2710
2810
|
categories: ['files']
|
|
2711
2811
|
},
|
|
2712
|
-
{
|
|
2713
|
-
name: 'file-pen-line',
|
|
2714
|
-
icon: filePenLine,
|
|
2715
|
-
tags: ['edit'],
|
|
2716
|
-
categories: ['files']
|
|
2717
|
-
},
|
|
2718
2812
|
{
|
|
2719
2813
|
name: 'file-pen',
|
|
2720
2814
|
icon: filePen,
|
|
2721
2815
|
tags: ['signature'],
|
|
2722
2816
|
categories: ['files']
|
|
2723
2817
|
},
|
|
2818
|
+
{
|
|
2819
|
+
name: 'file-pen-line',
|
|
2820
|
+
icon: filePenLine,
|
|
2821
|
+
tags: ['edit'],
|
|
2822
|
+
categories: ['files']
|
|
2823
|
+
},
|
|
2724
2824
|
{
|
|
2725
2825
|
name: 'file-plus',
|
|
2726
2826
|
icon: filePlus,
|
|
@@ -2728,8 +2828,8 @@ let ICONS_LIST = [
|
|
|
2728
2828
|
categories: ['files']
|
|
2729
2829
|
},
|
|
2730
2830
|
{
|
|
2731
|
-
name: 'file-question',
|
|
2732
|
-
icon:
|
|
2831
|
+
name: 'file-question-mark',
|
|
2832
|
+
icon: fileQuestionMark,
|
|
2733
2833
|
tags: ['readme', 'help', 'question'],
|
|
2734
2834
|
categories: ['files']
|
|
2735
2835
|
},
|
|
@@ -2780,7 +2880,20 @@ let ICONS_LIST = [
|
|
|
2780
2880
|
{
|
|
2781
2881
|
name: 'flag-off',
|
|
2782
2882
|
icon: flagOff,
|
|
2783
|
-
tags: [
|
|
2883
|
+
tags: [
|
|
2884
|
+
'unflag',
|
|
2885
|
+
'unmark',
|
|
2886
|
+
'report',
|
|
2887
|
+
'marker',
|
|
2888
|
+
'notification',
|
|
2889
|
+
'warning',
|
|
2890
|
+
'milestone',
|
|
2891
|
+
'goal',
|
|
2892
|
+
'notice',
|
|
2893
|
+
'signal',
|
|
2894
|
+
'attention',
|
|
2895
|
+
'banner'
|
|
2896
|
+
],
|
|
2784
2897
|
categories: ['account', 'social']
|
|
2785
2898
|
},
|
|
2786
2899
|
{
|
|
@@ -2945,20 +3058,20 @@ let ICONS_LIST = [
|
|
|
2945
3058
|
categories: ['text', 'layout', 'math']
|
|
2946
3059
|
},
|
|
2947
3060
|
{
|
|
2948
|
-
name: 'grip
|
|
2949
|
-
icon:
|
|
3061
|
+
name: 'grip',
|
|
3062
|
+
icon: grip,
|
|
2950
3063
|
tags: ['grab', 'dots', 'handle', 'move', 'drag'],
|
|
2951
3064
|
categories: ['layout']
|
|
2952
3065
|
},
|
|
2953
3066
|
{
|
|
2954
|
-
name: 'grip-
|
|
2955
|
-
icon:
|
|
3067
|
+
name: 'grip-horizontal',
|
|
3068
|
+
icon: gripHorizontal,
|
|
2956
3069
|
tags: ['grab', 'dots', 'handle', 'move', 'drag'],
|
|
2957
3070
|
categories: ['layout']
|
|
2958
3071
|
},
|
|
2959
3072
|
{
|
|
2960
|
-
name: 'grip',
|
|
2961
|
-
icon:
|
|
3073
|
+
name: 'grip-vertical',
|
|
3074
|
+
icon: gripVertical,
|
|
2962
3075
|
tags: ['grab', 'dots', 'handle', 'move', 'drag'],
|
|
2963
3076
|
categories: ['layout']
|
|
2964
3077
|
},
|
|
@@ -3013,6 +3126,12 @@ let ICONS_LIST = [
|
|
|
3013
3126
|
tags: ['music', 'audio', 'sound', 'mute', 'off'],
|
|
3014
3127
|
categories: ['multimedia', 'connectivity', 'communication', 'devices', 'gaming']
|
|
3015
3128
|
},
|
|
3129
|
+
{
|
|
3130
|
+
name: 'heart',
|
|
3131
|
+
icon: heart,
|
|
3132
|
+
tags: ['like', 'love', 'emotion', 'suit', 'playing', 'cards'],
|
|
3133
|
+
categories: ['medical', 'social', 'multimedia', 'emoji', 'gaming', 'shapes']
|
|
3134
|
+
},
|
|
3016
3135
|
{
|
|
3017
3136
|
name: 'heart-off',
|
|
3018
3137
|
icon: heartOff,
|
|
@@ -3048,6 +3167,12 @@ let ICONS_LIST = [
|
|
|
3048
3167
|
tags: ['home', 'living', 'building', 'residence', 'architecture'],
|
|
3049
3168
|
categories: ['buildings', 'home']
|
|
3050
3169
|
},
|
|
3170
|
+
{
|
|
3171
|
+
name: 'house-wifi',
|
|
3172
|
+
icon: houseWifi,
|
|
3173
|
+
tags: ['home', 'living', 'building', 'wifi', 'connectivity'],
|
|
3174
|
+
categories: ['home', 'buildings', 'connectivity']
|
|
3175
|
+
},
|
|
3051
3176
|
{
|
|
3052
3177
|
name: 'image-down',
|
|
3053
3178
|
icon: imageDown,
|
|
@@ -3093,18 +3218,6 @@ let ICONS_LIST = [
|
|
|
3093
3218
|
],
|
|
3094
3219
|
categories: ['charts', 'development', 'design']
|
|
3095
3220
|
},
|
|
3096
|
-
{
|
|
3097
|
-
name: 'key-round',
|
|
3098
|
-
icon: keyRound,
|
|
3099
|
-
tags: ['password', 'login', 'authentication', 'secure', 'unlock'],
|
|
3100
|
-
categories: ['security', 'account']
|
|
3101
|
-
},
|
|
3102
|
-
{
|
|
3103
|
-
name: 'key-square',
|
|
3104
|
-
icon: keySquare,
|
|
3105
|
-
tags: ['password', 'login', 'authentication', 'secure', 'unlock', 'car key'],
|
|
3106
|
-
categories: ['security', 'account']
|
|
3107
|
-
},
|
|
3108
3221
|
{
|
|
3109
3222
|
name: 'key',
|
|
3110
3223
|
icon: key,
|
|
@@ -3121,10 +3234,16 @@ let ICONS_LIST = [
|
|
|
3121
3234
|
categories: ['security', 'account']
|
|
3122
3235
|
},
|
|
3123
3236
|
{
|
|
3124
|
-
name: '
|
|
3125
|
-
icon:
|
|
3126
|
-
tags: ['
|
|
3127
|
-
categories: ['
|
|
3237
|
+
name: 'key-round',
|
|
3238
|
+
icon: keyRound,
|
|
3239
|
+
tags: ['password', 'login', 'authentication', 'secure', 'unlock'],
|
|
3240
|
+
categories: ['security', 'account']
|
|
3241
|
+
},
|
|
3242
|
+
{
|
|
3243
|
+
name: 'key-square',
|
|
3244
|
+
icon: keySquare,
|
|
3245
|
+
tags: ['password', 'login', 'authentication', 'secure', 'unlock', 'car key'],
|
|
3246
|
+
categories: ['security', 'account']
|
|
3128
3247
|
},
|
|
3129
3248
|
{
|
|
3130
3249
|
name: 'keyboard',
|
|
@@ -3132,6 +3251,36 @@ let ICONS_LIST = [
|
|
|
3132
3251
|
tags: ['layout', 'spell', 'settings', 'mouse'],
|
|
3133
3252
|
categories: ['text', 'devices', 'development']
|
|
3134
3253
|
},
|
|
3254
|
+
{
|
|
3255
|
+
name: 'keyboard-off',
|
|
3256
|
+
icon: keyboardOff,
|
|
3257
|
+
tags: ['unkeys', 'layout', 'spell', 'settings', 'mouse'],
|
|
3258
|
+
categories: ['devices', 'text', 'development']
|
|
3259
|
+
},
|
|
3260
|
+
{
|
|
3261
|
+
name: 'landmark',
|
|
3262
|
+
icon: landmark,
|
|
3263
|
+
tags: [
|
|
3264
|
+
'bank',
|
|
3265
|
+
'building',
|
|
3266
|
+
'capitol',
|
|
3267
|
+
'finance',
|
|
3268
|
+
'money',
|
|
3269
|
+
'museum',
|
|
3270
|
+
'art gallery',
|
|
3271
|
+
'hall',
|
|
3272
|
+
'institute',
|
|
3273
|
+
'pediment',
|
|
3274
|
+
'portico',
|
|
3275
|
+
'columns',
|
|
3276
|
+
'pillars',
|
|
3277
|
+
'classical',
|
|
3278
|
+
'architecture',
|
|
3279
|
+
'government',
|
|
3280
|
+
'institution'
|
|
3281
|
+
],
|
|
3282
|
+
categories: ['finance', 'navigation', 'buildings']
|
|
3283
|
+
},
|
|
3135
3284
|
{
|
|
3136
3285
|
name: 'layers',
|
|
3137
3286
|
icon: layers,
|
|
@@ -3192,6 +3341,12 @@ let ICONS_LIST = [
|
|
|
3192
3341
|
tags: ['todo', 'done', 'check', 'tick', 'complete', 'tasks', 'items', 'pending'],
|
|
3193
3342
|
categories: ['text']
|
|
3194
3343
|
},
|
|
3344
|
+
{
|
|
3345
|
+
name: 'list-restart',
|
|
3346
|
+
icon: listRestart,
|
|
3347
|
+
tags: ['reset', 'refresh', 'reload', 'playlist', 'replay'],
|
|
3348
|
+
categories: ['multimedia', 'text']
|
|
3349
|
+
},
|
|
3195
3350
|
{
|
|
3196
3351
|
name: 'list-todo',
|
|
3197
3352
|
icon: listTodo,
|
|
@@ -3247,14 +3402,14 @@ let ICONS_LIST = [
|
|
|
3247
3402
|
categories: ['mail']
|
|
3248
3403
|
},
|
|
3249
3404
|
{
|
|
3250
|
-
name: 'map-pin-check
|
|
3251
|
-
icon:
|
|
3405
|
+
name: 'map-pin-check',
|
|
3406
|
+
icon: mapPinCheck,
|
|
3252
3407
|
tags: ['location', 'waypoint', 'marker', 'drop', 'done', 'tick', 'complete', 'task', 'added'],
|
|
3253
3408
|
categories: ['navigation', 'travel', 'account']
|
|
3254
3409
|
},
|
|
3255
3410
|
{
|
|
3256
|
-
name: 'map-pin-check',
|
|
3257
|
-
icon:
|
|
3411
|
+
name: 'map-pin-check-inside',
|
|
3412
|
+
icon: mapPinCheckInside,
|
|
3258
3413
|
tags: ['location', 'waypoint', 'marker', 'drop', 'done', 'tick', 'complete', 'task', 'added'],
|
|
3259
3414
|
categories: ['navigation', 'travel', 'account']
|
|
3260
3415
|
},
|
|
@@ -3264,24 +3419,40 @@ let ICONS_LIST = [
|
|
|
3264
3419
|
tags: ['location', 'waypoint', 'marker', 'remove'],
|
|
3265
3420
|
categories: ['navigation', 'travel']
|
|
3266
3421
|
},
|
|
3267
|
-
{
|
|
3268
|
-
name: 'maximize-2',
|
|
3269
|
-
icon: maximize2,
|
|
3270
|
-
tags: ['fullscreen', 'arrows', 'expand'],
|
|
3271
|
-
categories: ['arrows', 'layout', 'design']
|
|
3272
|
-
},
|
|
3273
3422
|
{
|
|
3274
3423
|
name: 'maximize',
|
|
3275
3424
|
icon: maximize,
|
|
3276
3425
|
tags: ['fullscreen', 'expand', 'dashed'],
|
|
3277
3426
|
categories: ['layout', 'design']
|
|
3278
3427
|
},
|
|
3428
|
+
{
|
|
3429
|
+
name: 'maximize-2',
|
|
3430
|
+
icon: maximize2,
|
|
3431
|
+
tags: ['fullscreen', 'arrows', 'expand'],
|
|
3432
|
+
categories: ['arrows', 'layout', 'design']
|
|
3433
|
+
},
|
|
3279
3434
|
{
|
|
3280
3435
|
name: 'megaphone-off',
|
|
3281
3436
|
icon: megaphoneOff,
|
|
3282
|
-
tags: [
|
|
3437
|
+
tags: [
|
|
3438
|
+
'advertisement',
|
|
3439
|
+
'announcement',
|
|
3440
|
+
'attention',
|
|
3441
|
+
'alert',
|
|
3442
|
+
'loudspeaker',
|
|
3443
|
+
'megaphone',
|
|
3444
|
+
'notification',
|
|
3445
|
+
'disable',
|
|
3446
|
+
'silent'
|
|
3447
|
+
],
|
|
3283
3448
|
categories: ['multimedia', 'notifications']
|
|
3284
3449
|
},
|
|
3450
|
+
{
|
|
3451
|
+
name: 'message-circle',
|
|
3452
|
+
icon: messageCircle,
|
|
3453
|
+
tags: ['comment', 'chat', 'conversation', 'dialog', 'feedback', 'speech bubble'],
|
|
3454
|
+
categories: ['social']
|
|
3455
|
+
},
|
|
3285
3456
|
{
|
|
3286
3457
|
name: 'message-circle-more',
|
|
3287
3458
|
icon: messageCircleMore,
|
|
@@ -3324,6 +3495,12 @@ let ICONS_LIST = [
|
|
|
3324
3495
|
],
|
|
3325
3496
|
categories: ['social']
|
|
3326
3497
|
},
|
|
3498
|
+
{
|
|
3499
|
+
name: 'message-circle-question-mark',
|
|
3500
|
+
icon: messageCircleQuestionMark,
|
|
3501
|
+
tags: ['comment', 'chat', 'conversation', 'dialog', 'feedback', 'speech bubble', 'help'],
|
|
3502
|
+
categories: ['social']
|
|
3503
|
+
},
|
|
3327
3504
|
{
|
|
3328
3505
|
name: 'message-circle-warning',
|
|
3329
3506
|
icon: messageCircleWarning,
|
|
@@ -3346,8 +3523,8 @@ let ICONS_LIST = [
|
|
|
3346
3523
|
categories: ['social', 'notifications']
|
|
3347
3524
|
},
|
|
3348
3525
|
{
|
|
3349
|
-
name: 'message-
|
|
3350
|
-
icon:
|
|
3526
|
+
name: 'message-square',
|
|
3527
|
+
icon: messageSquare,
|
|
3351
3528
|
tags: ['comment', 'chat', 'conversation', 'dialog', 'feedback', 'speech bubble'],
|
|
3352
3529
|
categories: ['social']
|
|
3353
3530
|
},
|
|
@@ -3414,12 +3591,6 @@ let ICONS_LIST = [
|
|
|
3414
3591
|
],
|
|
3415
3592
|
categories: ['social', 'notifications']
|
|
3416
3593
|
},
|
|
3417
|
-
{
|
|
3418
|
-
name: 'message-square',
|
|
3419
|
-
icon: messageSquare,
|
|
3420
|
-
tags: ['comment', 'chat', 'conversation', 'dialog', 'feedback', 'speech bubble'],
|
|
3421
|
-
categories: ['social']
|
|
3422
|
-
},
|
|
3423
3594
|
{
|
|
3424
3595
|
name: 'mic-off',
|
|
3425
3596
|
icon: micOff,
|
|
@@ -3441,18 +3612,18 @@ let ICONS_LIST = [
|
|
|
3441
3612
|
],
|
|
3442
3613
|
categories: ['food-beverage']
|
|
3443
3614
|
},
|
|
3444
|
-
{
|
|
3445
|
-
name: 'minimize-2',
|
|
3446
|
-
icon: minimize2,
|
|
3447
|
-
tags: ['exit fullscreen', 'arrows', 'close', 'shrink'],
|
|
3448
|
-
categories: ['arrows', 'layout', 'design']
|
|
3449
|
-
},
|
|
3450
3615
|
{
|
|
3451
3616
|
name: 'minimize',
|
|
3452
3617
|
icon: minimize,
|
|
3453
3618
|
tags: ['exit fullscreen', 'close', 'shrink'],
|
|
3454
3619
|
categories: ['layout', 'design']
|
|
3455
3620
|
},
|
|
3621
|
+
{
|
|
3622
|
+
name: 'minimize-2',
|
|
3623
|
+
icon: minimize2,
|
|
3624
|
+
tags: ['exit fullscreen', 'arrows', 'close', 'shrink'],
|
|
3625
|
+
categories: ['arrows', 'layout', 'design']
|
|
3626
|
+
},
|
|
3456
3627
|
{
|
|
3457
3628
|
name: 'minus',
|
|
3458
3629
|
icon: minus,
|
|
@@ -3535,6 +3706,12 @@ let ICONS_LIST = [
|
|
|
3535
3706
|
tags: ['device', 'scroll', 'click', 'disabled'],
|
|
3536
3707
|
categories: ['devices']
|
|
3537
3708
|
},
|
|
3709
|
+
{
|
|
3710
|
+
name: 'mouse-pointer',
|
|
3711
|
+
icon: mousePointer,
|
|
3712
|
+
tags: ['click', 'select'],
|
|
3713
|
+
categories: ['arrows', 'cursors']
|
|
3714
|
+
},
|
|
3538
3715
|
{
|
|
3539
3716
|
name: 'mouse-pointer-2',
|
|
3540
3717
|
icon: mousePointer2,
|
|
@@ -3542,9 +3719,9 @@ let ICONS_LIST = [
|
|
|
3542
3719
|
categories: ['arrows', 'cursors']
|
|
3543
3720
|
},
|
|
3544
3721
|
{
|
|
3545
|
-
name: '
|
|
3546
|
-
icon:
|
|
3547
|
-
tags: ['
|
|
3722
|
+
name: 'move-diagonal',
|
|
3723
|
+
icon: moveDiagonal,
|
|
3724
|
+
tags: ['double', 'arrow'],
|
|
3548
3725
|
categories: ['arrows', 'cursors']
|
|
3549
3726
|
},
|
|
3550
3727
|
{
|
|
@@ -3554,10 +3731,10 @@ let ICONS_LIST = [
|
|
|
3554
3731
|
categories: ['arrows', 'cursors']
|
|
3555
3732
|
},
|
|
3556
3733
|
{
|
|
3557
|
-
name: 'move-
|
|
3558
|
-
icon:
|
|
3559
|
-
tags: ['
|
|
3560
|
-
categories: ['arrows'
|
|
3734
|
+
name: 'move-down',
|
|
3735
|
+
icon: moveDown,
|
|
3736
|
+
tags: ['arrow', 'direction', 'downwards', 'south'],
|
|
3737
|
+
categories: ['arrows']
|
|
3561
3738
|
},
|
|
3562
3739
|
{
|
|
3563
3740
|
name: 'move-down-left',
|
|
@@ -3571,12 +3748,6 @@ let ICONS_LIST = [
|
|
|
3571
3748
|
tags: ['arrow', 'direction'],
|
|
3572
3749
|
categories: ['arrows']
|
|
3573
3750
|
},
|
|
3574
|
-
{
|
|
3575
|
-
name: 'move-down',
|
|
3576
|
-
icon: moveDown,
|
|
3577
|
-
tags: ['arrow', 'direction', 'downwards', 'south'],
|
|
3578
|
-
categories: ['arrows']
|
|
3579
|
-
},
|
|
3580
3751
|
{
|
|
3581
3752
|
name: 'move-horizontal',
|
|
3582
3753
|
icon: moveHorizontal,
|
|
@@ -3595,6 +3766,12 @@ let ICONS_LIST = [
|
|
|
3595
3766
|
tags: ['arrow', 'direction', 'trend flat', 'east'],
|
|
3596
3767
|
categories: ['arrows']
|
|
3597
3768
|
},
|
|
3769
|
+
{
|
|
3770
|
+
name: 'move-up',
|
|
3771
|
+
icon: moveUp,
|
|
3772
|
+
tags: ['arrow', 'direction', 'upwards', 'north'],
|
|
3773
|
+
categories: ['arrows']
|
|
3774
|
+
},
|
|
3598
3775
|
{
|
|
3599
3776
|
name: 'move-up-left',
|
|
3600
3777
|
icon: moveUpLeft,
|
|
@@ -3607,12 +3784,6 @@ let ICONS_LIST = [
|
|
|
3607
3784
|
tags: ['arrow', 'direction'],
|
|
3608
3785
|
categories: ['arrows']
|
|
3609
3786
|
},
|
|
3610
|
-
{
|
|
3611
|
-
name: 'move-up',
|
|
3612
|
-
icon: moveUp,
|
|
3613
|
-
tags: ['arrow', 'direction', 'upwards', 'north'],
|
|
3614
|
-
categories: ['arrows']
|
|
3615
|
-
},
|
|
3616
3787
|
{
|
|
3617
3788
|
name: 'move-vertical',
|
|
3618
3789
|
icon: moveVertical,
|
|
@@ -3693,6 +3864,79 @@ let ICONS_LIST = [
|
|
|
3693
3864
|
tags: ['confirm', 'verified', 'done', 'todo', 'tick', 'complete', 'task', 'delivered'],
|
|
3694
3865
|
categories: ['development']
|
|
3695
3866
|
},
|
|
3867
|
+
{
|
|
3868
|
+
name: 'paintbrush',
|
|
3869
|
+
icon: paintbrush,
|
|
3870
|
+
tags: ['brush', 'paintbrush', 'design', 'color', 'colour', 'decoration', 'diy'],
|
|
3871
|
+
categories: ['text', 'design', 'photography', 'home', 'tools']
|
|
3872
|
+
},
|
|
3873
|
+
{
|
|
3874
|
+
name: 'panel-bottom-close',
|
|
3875
|
+
icon: panelBottomClose,
|
|
3876
|
+
tags: ['drawer', 'dock', 'hide', 'chevron', 'down'],
|
|
3877
|
+
categories: ['layout', 'arrows']
|
|
3878
|
+
},
|
|
3879
|
+
{
|
|
3880
|
+
name: 'panel-bottom-open',
|
|
3881
|
+
icon: panelBottomOpen,
|
|
3882
|
+
tags: ['drawer', 'dock', 'show', 'reveal', 'chevron', 'up'],
|
|
3883
|
+
categories: ['layout', 'arrows']
|
|
3884
|
+
},
|
|
3885
|
+
{
|
|
3886
|
+
name: 'panel-left-close',
|
|
3887
|
+
icon: panelLeftClose,
|
|
3888
|
+
tags: ['primary', 'drawer', 'hide', 'chevron', '<'],
|
|
3889
|
+
categories: ['layout', 'arrows']
|
|
3890
|
+
},
|
|
3891
|
+
{
|
|
3892
|
+
name: 'panel-left-open',
|
|
3893
|
+
icon: panelLeftOpen,
|
|
3894
|
+
tags: ['primary', 'drawer', 'show', 'reveal', 'chevron', 'right', '>'],
|
|
3895
|
+
categories: ['layout', 'arrows']
|
|
3896
|
+
},
|
|
3897
|
+
{
|
|
3898
|
+
name: 'panel-right-close',
|
|
3899
|
+
icon: panelRightClose,
|
|
3900
|
+
tags: ['sidebar', 'secondary', 'drawer', 'hide', 'chevron', '>'],
|
|
3901
|
+
categories: ['layout', 'arrows']
|
|
3902
|
+
},
|
|
3903
|
+
{
|
|
3904
|
+
name: 'panel-right-open',
|
|
3905
|
+
icon: panelRightOpen,
|
|
3906
|
+
tags: ['sidebar', 'secondary', 'drawer', 'show', 'reveal', 'chevron', 'left', '<'],
|
|
3907
|
+
categories: ['layout', 'arrows']
|
|
3908
|
+
},
|
|
3909
|
+
{
|
|
3910
|
+
name: 'panel-top-close',
|
|
3911
|
+
icon: panelTopClose,
|
|
3912
|
+
tags: ['menu bar', 'drawer', 'hide', 'chevron', 'up'],
|
|
3913
|
+
categories: ['layout', 'arrows']
|
|
3914
|
+
},
|
|
3915
|
+
{
|
|
3916
|
+
name: 'panel-top-open',
|
|
3917
|
+
icon: panelTopOpen,
|
|
3918
|
+
tags: ['menu bar', 'drawer', 'show', 'reveal', 'chevron', 'down'],
|
|
3919
|
+
categories: ['layout', 'arrows']
|
|
3920
|
+
},
|
|
3921
|
+
{
|
|
3922
|
+
name: 'pen',
|
|
3923
|
+
icon: pen,
|
|
3924
|
+
tags: [
|
|
3925
|
+
'pencil',
|
|
3926
|
+
'change',
|
|
3927
|
+
'create',
|
|
3928
|
+
'draw',
|
|
3929
|
+
'writer',
|
|
3930
|
+
'writing',
|
|
3931
|
+
'biro',
|
|
3932
|
+
'ink',
|
|
3933
|
+
'marker',
|
|
3934
|
+
'felt tip',
|
|
3935
|
+
'stationery',
|
|
3936
|
+
'artist'
|
|
3937
|
+
],
|
|
3938
|
+
categories: ['text', 'design', 'tools']
|
|
3939
|
+
},
|
|
3696
3940
|
{
|
|
3697
3941
|
name: 'pen-line',
|
|
3698
3942
|
icon: penLine,
|
|
@@ -3740,23 +3984,21 @@ let ICONS_LIST = [
|
|
|
3740
3984
|
categories: ['text', 'design', 'tools']
|
|
3741
3985
|
},
|
|
3742
3986
|
{
|
|
3743
|
-
name: '
|
|
3744
|
-
icon:
|
|
3987
|
+
name: 'pencil',
|
|
3988
|
+
icon: pencil,
|
|
3745
3989
|
tags: [
|
|
3746
|
-
'
|
|
3747
|
-
'
|
|
3990
|
+
'rubber',
|
|
3991
|
+
'edit',
|
|
3748
3992
|
'create',
|
|
3749
3993
|
'draw',
|
|
3994
|
+
'sketch',
|
|
3995
|
+
'draft',
|
|
3750
3996
|
'writer',
|
|
3751
3997
|
'writing',
|
|
3752
|
-
'biro',
|
|
3753
|
-
'ink',
|
|
3754
|
-
'marker',
|
|
3755
|
-
'felt tip',
|
|
3756
3998
|
'stationery',
|
|
3757
3999
|
'artist'
|
|
3758
4000
|
],
|
|
3759
|
-
categories: ['
|
|
4001
|
+
categories: ['design', 'cursors', 'tools', 'text']
|
|
3760
4002
|
},
|
|
3761
4003
|
{
|
|
3762
4004
|
name: 'pencil-line',
|
|
@@ -3804,23 +4046,6 @@ let ICONS_LIST = [
|
|
|
3804
4046
|
],
|
|
3805
4047
|
categories: ['design', 'cursors', 'tools', 'text']
|
|
3806
4048
|
},
|
|
3807
|
-
{
|
|
3808
|
-
name: 'pencil',
|
|
3809
|
-
icon: pencil,
|
|
3810
|
-
tags: [
|
|
3811
|
-
'rubber',
|
|
3812
|
-
'edit',
|
|
3813
|
-
'create',
|
|
3814
|
-
'draw',
|
|
3815
|
-
'sketch',
|
|
3816
|
-
'draft',
|
|
3817
|
-
'writer',
|
|
3818
|
-
'writing',
|
|
3819
|
-
'stationery',
|
|
3820
|
-
'artist'
|
|
3821
|
-
],
|
|
3822
|
-
categories: ['design', 'cursors', 'tools', 'text']
|
|
3823
|
-
},
|
|
3824
4049
|
{
|
|
3825
4050
|
name: 'phone-off',
|
|
3826
4051
|
icon: phoneOff,
|
|
@@ -3912,14 +4137,14 @@ let ICONS_LIST = [
|
|
|
3912
4137
|
categories: ['navigation', 'security', 'communication']
|
|
3913
4138
|
},
|
|
3914
4139
|
{
|
|
3915
|
-
name: 'radio
|
|
3916
|
-
icon:
|
|
4140
|
+
name: 'radio',
|
|
4141
|
+
icon: radio,
|
|
3917
4142
|
tags: ['signal', 'broadcast', 'connectivity', 'live', 'frequency'],
|
|
3918
4143
|
categories: ['devices', 'multimedia', 'social']
|
|
3919
4144
|
},
|
|
3920
4145
|
{
|
|
3921
|
-
name: 'radio',
|
|
3922
|
-
icon:
|
|
4146
|
+
name: 'radio-tower',
|
|
4147
|
+
icon: radioTower,
|
|
3923
4148
|
tags: ['signal', 'broadcast', 'connectivity', 'live', 'frequency'],
|
|
3924
4149
|
categories: ['devices', 'multimedia', 'social']
|
|
3925
4150
|
},
|
|
@@ -3929,6 +4154,12 @@ let ICONS_LIST = [
|
|
|
3929
4154
|
tags: ['colors', 'colours', 'spectrum', 'light', 'prism', 'arc', 'clear', 'sunshine'],
|
|
3930
4155
|
categories: ['weather']
|
|
3931
4156
|
},
|
|
4157
|
+
{
|
|
4158
|
+
name: 'redo',
|
|
4159
|
+
icon: redo,
|
|
4160
|
+
tags: ['undo', 'rerun', 'history'],
|
|
4161
|
+
categories: ['text', 'arrows']
|
|
4162
|
+
},
|
|
3932
4163
|
{
|
|
3933
4164
|
name: 'redo-dot',
|
|
3934
4165
|
icon: redoDot,
|
|
@@ -3936,10 +4167,19 @@ let ICONS_LIST = [
|
|
|
3936
4167
|
categories: ['text', 'arrows']
|
|
3937
4168
|
},
|
|
3938
4169
|
{
|
|
3939
|
-
name: '
|
|
3940
|
-
icon:
|
|
3941
|
-
tags: [
|
|
3942
|
-
|
|
4170
|
+
name: 'refresh-ccw',
|
|
4171
|
+
icon: refreshCcw,
|
|
4172
|
+
tags: [
|
|
4173
|
+
'arrows',
|
|
4174
|
+
'rotate',
|
|
4175
|
+
'reload',
|
|
4176
|
+
'rerun',
|
|
4177
|
+
'synchronise',
|
|
4178
|
+
'synchronize',
|
|
4179
|
+
'circular',
|
|
4180
|
+
'cycle'
|
|
4181
|
+
],
|
|
4182
|
+
categories: ['arrows']
|
|
3943
4183
|
},
|
|
3944
4184
|
{
|
|
3945
4185
|
name: 'refresh-ccw-dot',
|
|
@@ -3960,15 +4200,15 @@ let ICONS_LIST = [
|
|
|
3960
4200
|
categories: ['arrows', 'development']
|
|
3961
4201
|
},
|
|
3962
4202
|
{
|
|
3963
|
-
name: 'refresh-
|
|
3964
|
-
icon:
|
|
4203
|
+
name: 'refresh-cw',
|
|
4204
|
+
icon: refreshCw,
|
|
3965
4205
|
tags: [
|
|
3966
|
-
'arrows',
|
|
3967
4206
|
'rotate',
|
|
3968
4207
|
'reload',
|
|
3969
4208
|
'rerun',
|
|
3970
4209
|
'synchronise',
|
|
3971
4210
|
'synchronize',
|
|
4211
|
+
'arrows',
|
|
3972
4212
|
'circular',
|
|
3973
4213
|
'cycle'
|
|
3974
4214
|
],
|
|
@@ -3995,21 +4235,6 @@ let ICONS_LIST = [
|
|
|
3995
4235
|
],
|
|
3996
4236
|
categories: ['arrows']
|
|
3997
4237
|
},
|
|
3998
|
-
{
|
|
3999
|
-
name: 'refresh-cw',
|
|
4000
|
-
icon: refreshCw,
|
|
4001
|
-
tags: [
|
|
4002
|
-
'rotate',
|
|
4003
|
-
'reload',
|
|
4004
|
-
'rerun',
|
|
4005
|
-
'synchronise',
|
|
4006
|
-
'synchronize',
|
|
4007
|
-
'arrows',
|
|
4008
|
-
'circular',
|
|
4009
|
-
'cycle'
|
|
4010
|
-
],
|
|
4011
|
-
categories: ['arrows']
|
|
4012
|
-
},
|
|
4013
4238
|
{
|
|
4014
4239
|
name: 'rocket',
|
|
4015
4240
|
icon: rocket,
|
|
@@ -4043,12 +4268,24 @@ let ICONS_LIST = [
|
|
|
4043
4268
|
],
|
|
4044
4269
|
categories: ['arrows', 'design', 'photography']
|
|
4045
4270
|
},
|
|
4271
|
+
{
|
|
4272
|
+
name: 'rotate-ccw-key',
|
|
4273
|
+
icon: rotateCcwKey,
|
|
4274
|
+
tags: ['password', 'key', 'refresh', 'change'],
|
|
4275
|
+
categories: ['security', 'account']
|
|
4276
|
+
},
|
|
4046
4277
|
{
|
|
4047
4278
|
name: 'rotate-cw',
|
|
4048
4279
|
icon: rotateCw,
|
|
4049
4280
|
tags: ['arrow', 'right', 'clockwise', 'refresh', 'reload', 'rerun', 'redo'],
|
|
4050
4281
|
categories: ['arrows', 'design', 'photography']
|
|
4051
4282
|
},
|
|
4283
|
+
{
|
|
4284
|
+
name: 'route',
|
|
4285
|
+
icon: route,
|
|
4286
|
+
tags: ['path', 'journey', 'planner', 'points', 'stops', 'stations'],
|
|
4287
|
+
categories: ['navigation']
|
|
4288
|
+
},
|
|
4052
4289
|
{
|
|
4053
4290
|
name: 'route-off',
|
|
4054
4291
|
icon: routeOff,
|
|
@@ -4067,12 +4304,6 @@ let ICONS_LIST = [
|
|
|
4067
4304
|
],
|
|
4068
4305
|
categories: ['navigation']
|
|
4069
4306
|
},
|
|
4070
|
-
{
|
|
4071
|
-
name: 'route',
|
|
4072
|
-
icon: route,
|
|
4073
|
-
tags: ['path', 'journey', 'planner', 'points', 'stops', 'stations'],
|
|
4074
|
-
categories: ['navigation']
|
|
4075
|
-
},
|
|
4076
4307
|
{
|
|
4077
4308
|
name: 'rss',
|
|
4078
4309
|
icon: rss,
|
|
@@ -4125,17 +4356,39 @@ let ICONS_LIST = [
|
|
|
4125
4356
|
tags: ['cut', 'snip', 'chop', 'stationery', 'crafts'],
|
|
4126
4357
|
categories: ['text', 'design', 'tools']
|
|
4127
4358
|
},
|
|
4359
|
+
{
|
|
4360
|
+
name: 'search',
|
|
4361
|
+
icon: search,
|
|
4362
|
+
tags: ['find', 'scan', 'magnifier', 'magnifying glass', 'lens'],
|
|
4363
|
+
categories: ['text', 'social']
|
|
4364
|
+
},
|
|
4128
4365
|
{
|
|
4129
4366
|
name: 'search-check',
|
|
4130
4367
|
icon: searchCheck,
|
|
4131
|
-
tags: [
|
|
4368
|
+
tags: [
|
|
4369
|
+
'find',
|
|
4370
|
+
'scan',
|
|
4371
|
+
'magnifier',
|
|
4372
|
+
'magnifying glass',
|
|
4373
|
+
'found',
|
|
4374
|
+
'correct',
|
|
4375
|
+
'complete',
|
|
4376
|
+
'tick',
|
|
4377
|
+
'lens'
|
|
4378
|
+
],
|
|
4132
4379
|
categories: ['text', 'social']
|
|
4133
4380
|
},
|
|
4134
4381
|
{
|
|
4135
|
-
name: '
|
|
4136
|
-
icon:
|
|
4137
|
-
tags: ['
|
|
4138
|
-
categories: ['
|
|
4382
|
+
name: 'send',
|
|
4383
|
+
icon: send,
|
|
4384
|
+
tags: ['email', 'message', 'mail', 'paper airplane', 'paper aeroplane', 'submit'],
|
|
4385
|
+
categories: ['mail', 'communication', 'connectivity']
|
|
4386
|
+
},
|
|
4387
|
+
{
|
|
4388
|
+
name: 'send-horizontal',
|
|
4389
|
+
icon: sendHorizontal,
|
|
4390
|
+
tags: ['email', 'message', 'mail', 'paper airplane', 'paper aeroplane', 'submit'],
|
|
4391
|
+
categories: ['mail', 'communication', 'connectivity']
|
|
4139
4392
|
},
|
|
4140
4393
|
{
|
|
4141
4394
|
name: 'server-cog',
|
|
@@ -4143,6 +4396,12 @@ let ICONS_LIST = [
|
|
|
4143
4396
|
tags: ['cloud', 'storage', 'computing', 'cog', 'gear'],
|
|
4144
4397
|
categories: ['development', 'devices']
|
|
4145
4398
|
},
|
|
4399
|
+
{
|
|
4400
|
+
name: 'server-off',
|
|
4401
|
+
icon: serverOff,
|
|
4402
|
+
tags: ['cloud', 'storage'],
|
|
4403
|
+
categories: ['development', 'devices']
|
|
4404
|
+
},
|
|
4146
4405
|
{
|
|
4147
4406
|
name: 'settings',
|
|
4148
4407
|
icon: settings,
|
|
@@ -4381,42 +4640,93 @@ let ICONS_LIST = [
|
|
|
4381
4640
|
categories: ['account', 'security', 'development', 'gaming', 'medical']
|
|
4382
4641
|
},
|
|
4383
4642
|
{
|
|
4384
|
-
name: '
|
|
4385
|
-
icon:
|
|
4386
|
-
tags: [
|
|
4387
|
-
'steering',
|
|
4388
|
-
'rudder',
|
|
4389
|
-
'boat',
|
|
4390
|
-
'knots',
|
|
4391
|
-
'nautical mile',
|
|
4392
|
-
'maritime',
|
|
4393
|
-
'sailing',
|
|
4394
|
-
'yacht',
|
|
4395
|
-
'cruise',
|
|
4396
|
-
'ocean liner',
|
|
4397
|
-
'tanker',
|
|
4398
|
-
'vessel',
|
|
4399
|
-
'navy',
|
|
4400
|
-
'trip'
|
|
4401
|
-
],
|
|
4402
|
-
categories: ['transportation', 'navigation', 'travel']
|
|
4403
|
-
},
|
|
4404
|
-
{
|
|
4405
|
-
name: 'ship',
|
|
4406
|
-
icon: ship,
|
|
4643
|
+
name: 'shield-question-mark',
|
|
4644
|
+
icon: shieldQuestionMark,
|
|
4407
4645
|
tags: [
|
|
4408
|
-
'
|
|
4409
|
-
'
|
|
4410
|
-
'
|
|
4411
|
-
'
|
|
4412
|
-
'
|
|
4413
|
-
'
|
|
4414
|
-
'
|
|
4415
|
-
'
|
|
4416
|
-
'
|
|
4417
|
-
'
|
|
4418
|
-
'
|
|
4419
|
-
'
|
|
4646
|
+
'unshielded',
|
|
4647
|
+
'cybersecurity',
|
|
4648
|
+
'insecure',
|
|
4649
|
+
'unsecured',
|
|
4650
|
+
'safety',
|
|
4651
|
+
'unsafe',
|
|
4652
|
+
'protection',
|
|
4653
|
+
'unprotected',
|
|
4654
|
+
'guardian',
|
|
4655
|
+
'unguarded',
|
|
4656
|
+
'unarmored',
|
|
4657
|
+
'unarmoured',
|
|
4658
|
+
'defenseless',
|
|
4659
|
+
'defenceless',
|
|
4660
|
+
'undefended',
|
|
4661
|
+
'defender',
|
|
4662
|
+
'threat',
|
|
4663
|
+
'prevention',
|
|
4664
|
+
'unprevented',
|
|
4665
|
+
'antivirus',
|
|
4666
|
+
'vigilance',
|
|
4667
|
+
'vigilant',
|
|
4668
|
+
'detection',
|
|
4669
|
+
'undetected',
|
|
4670
|
+
'scan',
|
|
4671
|
+
'find',
|
|
4672
|
+
'exploit',
|
|
4673
|
+
'vulnerability',
|
|
4674
|
+
'vulnerable',
|
|
4675
|
+
'weakness',
|
|
4676
|
+
'infection',
|
|
4677
|
+
'comprimised',
|
|
4678
|
+
'data leak',
|
|
4679
|
+
'audit',
|
|
4680
|
+
'admin',
|
|
4681
|
+
'verification',
|
|
4682
|
+
'unverified',
|
|
4683
|
+
'uncertified',
|
|
4684
|
+
'uncertain',
|
|
4685
|
+
'unknown',
|
|
4686
|
+
'inactive',
|
|
4687
|
+
'crest',
|
|
4688
|
+
'question mark',
|
|
4689
|
+
'?'
|
|
4690
|
+
],
|
|
4691
|
+
categories: ['account', 'security', 'development', 'gaming']
|
|
4692
|
+
},
|
|
4693
|
+
{
|
|
4694
|
+
name: 'ship',
|
|
4695
|
+
icon: ship,
|
|
4696
|
+
tags: [
|
|
4697
|
+
'boat',
|
|
4698
|
+
'knots',
|
|
4699
|
+
'nautical mile',
|
|
4700
|
+
'maritime',
|
|
4701
|
+
'sailing',
|
|
4702
|
+
'yacht',
|
|
4703
|
+
'cruise',
|
|
4704
|
+
'ocean liner',
|
|
4705
|
+
'tanker',
|
|
4706
|
+
'vessel',
|
|
4707
|
+
'navy',
|
|
4708
|
+
'trip'
|
|
4709
|
+
],
|
|
4710
|
+
categories: ['transportation', 'navigation', 'travel']
|
|
4711
|
+
},
|
|
4712
|
+
{
|
|
4713
|
+
name: 'ship-wheel',
|
|
4714
|
+
icon: shipWheel,
|
|
4715
|
+
tags: [
|
|
4716
|
+
'steering',
|
|
4717
|
+
'rudder',
|
|
4718
|
+
'boat',
|
|
4719
|
+
'knots',
|
|
4720
|
+
'nautical mile',
|
|
4721
|
+
'maritime',
|
|
4722
|
+
'sailing',
|
|
4723
|
+
'yacht',
|
|
4724
|
+
'cruise',
|
|
4725
|
+
'ocean liner',
|
|
4726
|
+
'tanker',
|
|
4727
|
+
'vessel',
|
|
4728
|
+
'navy',
|
|
4729
|
+
'trip'
|
|
4420
4730
|
],
|
|
4421
4731
|
categories: ['transportation', 'navigation', 'travel']
|
|
4422
4732
|
},
|
|
@@ -4454,6 +4764,12 @@ let ICONS_LIST = [
|
|
|
4454
4764
|
tags: ['scale', 'fullscreen'],
|
|
4455
4765
|
categories: ['layout', 'arrows']
|
|
4456
4766
|
},
|
|
4767
|
+
{
|
|
4768
|
+
name: 'signal',
|
|
4769
|
+
icon: signal,
|
|
4770
|
+
tags: ['connection', 'wireless', 'gsm', 'phone', '2g', '3g', '4g', '5g'],
|
|
4771
|
+
categories: ['connectivity']
|
|
4772
|
+
},
|
|
4457
4773
|
{
|
|
4458
4774
|
name: 'signal-high',
|
|
4459
4775
|
icon: signalHigh,
|
|
@@ -4478,12 +4794,6 @@ let ICONS_LIST = [
|
|
|
4478
4794
|
tags: ['connection', 'wireless', 'gsm', 'phone', '2g', '3g', '4g', '5g', 'lost'],
|
|
4479
4795
|
categories: ['connectivity']
|
|
4480
4796
|
},
|
|
4481
|
-
{
|
|
4482
|
-
name: 'signal',
|
|
4483
|
-
icon: signal,
|
|
4484
|
-
tags: ['connection', 'wireless', 'gsm', 'phone', '2g', '3g', '4g', '5g'],
|
|
4485
|
-
categories: ['connectivity']
|
|
4486
|
-
},
|
|
4487
4797
|
{
|
|
4488
4798
|
name: 'signature',
|
|
4489
4799
|
icon: signature,
|
|
@@ -4517,6 +4827,12 @@ let ICONS_LIST = [
|
|
|
4517
4827
|
tags: ['contactless', 'payment', 'near-field communication', 'screen'],
|
|
4518
4828
|
categories: ['communication', 'finance', 'devices']
|
|
4519
4829
|
},
|
|
4830
|
+
{
|
|
4831
|
+
name: 'snowflake',
|
|
4832
|
+
icon: snowflake,
|
|
4833
|
+
tags: ['cold', 'weather', 'freeze', 'snow', 'winter'],
|
|
4834
|
+
categories: ['weather', 'seasons']
|
|
4835
|
+
},
|
|
4520
4836
|
{
|
|
4521
4837
|
name: 'speech',
|
|
4522
4838
|
icon: speech,
|
|
@@ -4539,6 +4855,12 @@ let ICONS_LIST = [
|
|
|
4539
4855
|
],
|
|
4540
4856
|
categories: ['text', 'development']
|
|
4541
4857
|
},
|
|
4858
|
+
{
|
|
4859
|
+
name: 'square-arrow-down',
|
|
4860
|
+
icon: squareArrowDown,
|
|
4861
|
+
tags: ['backwards', 'reverse', 'direction', 'south', 'sign', 'keyboard', 'button'],
|
|
4862
|
+
categories: ['arrows', 'navigation', 'gaming']
|
|
4863
|
+
},
|
|
4542
4864
|
{
|
|
4543
4865
|
name: 'square-arrow-down-left',
|
|
4544
4866
|
icon: squareArrowDownLeft,
|
|
@@ -4551,12 +4873,6 @@ let ICONS_LIST = [
|
|
|
4551
4873
|
tags: ['direction', 'south-east', 'diagonal', 'sign', 'turn', 'keyboard', 'button'],
|
|
4552
4874
|
categories: ['arrows', 'navigation', 'gaming']
|
|
4553
4875
|
},
|
|
4554
|
-
{
|
|
4555
|
-
name: 'square-arrow-down',
|
|
4556
|
-
icon: squareArrowDown,
|
|
4557
|
-
tags: ['backwards', 'reverse', 'direction', 'south', 'sign', 'keyboard', 'button'],
|
|
4558
|
-
categories: ['arrows', 'navigation', 'gaming']
|
|
4559
|
-
},
|
|
4560
4876
|
{
|
|
4561
4877
|
name: 'square-arrow-left',
|
|
4562
4878
|
icon: squareArrowLeft,
|
|
@@ -4593,6 +4909,12 @@ let ICONS_LIST = [
|
|
|
4593
4909
|
tags: ['next', 'forward', 'direction', 'west', 'sign', 'keyboard', 'button', '->'],
|
|
4594
4910
|
categories: ['arrows', 'navigation']
|
|
4595
4911
|
},
|
|
4912
|
+
{
|
|
4913
|
+
name: 'square-arrow-up',
|
|
4914
|
+
icon: squareArrowUp,
|
|
4915
|
+
tags: ['forward', 'direction', 'north', 'sign', 'keyboard', 'button'],
|
|
4916
|
+
categories: ['arrows', 'navigation']
|
|
4917
|
+
},
|
|
4596
4918
|
{
|
|
4597
4919
|
name: 'square-arrow-up-left',
|
|
4598
4920
|
icon: squareArrowUpLeft,
|
|
@@ -4605,12 +4927,6 @@ let ICONS_LIST = [
|
|
|
4605
4927
|
tags: ['direction', 'north-east', 'diagonal', 'sign', 'keyboard', 'button', 'share'],
|
|
4606
4928
|
categories: ['arrows', 'navigation', 'social']
|
|
4607
4929
|
},
|
|
4608
|
-
{
|
|
4609
|
-
name: 'square-arrow-up',
|
|
4610
|
-
icon: squareArrowUp,
|
|
4611
|
-
tags: ['forward', 'direction', 'north', 'sign', 'keyboard', 'button'],
|
|
4612
|
-
categories: ['arrows', 'navigation']
|
|
4613
|
-
},
|
|
4614
4930
|
{
|
|
4615
4931
|
name: 'square-chart-gantt',
|
|
4616
4932
|
icon: squareChartGantt,
|
|
@@ -4638,14 +4954,14 @@ let ICONS_LIST = [
|
|
|
4638
4954
|
categories: ['charts', 'time', 'development', 'design']
|
|
4639
4955
|
},
|
|
4640
4956
|
{
|
|
4641
|
-
name: 'square-check
|
|
4642
|
-
icon:
|
|
4957
|
+
name: 'square-check',
|
|
4958
|
+
icon: squareCheck,
|
|
4643
4959
|
tags: ['done', 'todo', 'tick', 'complete', 'task'],
|
|
4644
4960
|
categories: ['notifications']
|
|
4645
4961
|
},
|
|
4646
4962
|
{
|
|
4647
|
-
name: 'square-check',
|
|
4648
|
-
icon:
|
|
4963
|
+
name: 'square-check-big',
|
|
4964
|
+
icon: squareCheckBig,
|
|
4649
4965
|
tags: ['done', 'todo', 'tick', 'complete', 'task'],
|
|
4650
4966
|
categories: ['notifications']
|
|
4651
4967
|
},
|
|
@@ -4760,6 +5076,7 @@ let ICONS_LIST = [
|
|
|
4760
5076
|
icon: squarePen,
|
|
4761
5077
|
tags: [
|
|
4762
5078
|
'pencil',
|
|
5079
|
+
'edit',
|
|
4763
5080
|
'change',
|
|
4764
5081
|
'create',
|
|
4765
5082
|
'draw',
|
|
@@ -4830,6 +5147,12 @@ let ICONS_LIST = [
|
|
|
4830
5147
|
tags: ['code', 'command line', 'prompt', 'shell'],
|
|
4831
5148
|
categories: ['development']
|
|
4832
5149
|
},
|
|
5150
|
+
{
|
|
5151
|
+
name: 'star',
|
|
5152
|
+
icon: star,
|
|
5153
|
+
tags: ['bookmark', 'favorite', 'like', 'review', 'rating'],
|
|
5154
|
+
categories: ['account', 'social', 'shapes', 'multimedia', 'weather', 'emoji', 'gaming']
|
|
5155
|
+
},
|
|
4833
5156
|
{
|
|
4834
5157
|
name: 'star-off',
|
|
4835
5158
|
icon: starOff,
|
|
@@ -4878,6 +5201,12 @@ let ICONS_LIST = [
|
|
|
4878
5201
|
tags: ['code', 'command line', 'prompt', 'shell'],
|
|
4879
5202
|
categories: ['development']
|
|
4880
5203
|
},
|
|
5204
|
+
{
|
|
5205
|
+
name: 'text-cursor',
|
|
5206
|
+
icon: textCursor,
|
|
5207
|
+
tags: ['select'],
|
|
5208
|
+
categories: ['text', 'cursors']
|
|
5209
|
+
},
|
|
4881
5210
|
{
|
|
4882
5211
|
name: 'text-cursor-input',
|
|
4883
5212
|
icon: textCursorInput,
|
|
@@ -4885,10 +5214,10 @@ let ICONS_LIST = [
|
|
|
4885
5214
|
categories: ['text', 'layout']
|
|
4886
5215
|
},
|
|
4887
5216
|
{
|
|
4888
|
-
name: '
|
|
4889
|
-
icon:
|
|
4890
|
-
tags: ['
|
|
4891
|
-
categories: ['
|
|
5217
|
+
name: 'thermometer',
|
|
5218
|
+
icon: thermometer,
|
|
5219
|
+
tags: ['temperature', 'celsius', 'fahrenheit', 'weather'],
|
|
5220
|
+
categories: ['weather']
|
|
4892
5221
|
},
|
|
4893
5222
|
{
|
|
4894
5223
|
name: 'thumbs-down',
|
|
@@ -4925,17 +5254,29 @@ let ICONS_LIST = [
|
|
|
4925
5254
|
categories: ['transportation']
|
|
4926
5255
|
},
|
|
4927
5256
|
{
|
|
4928
|
-
name: 'timer
|
|
4929
|
-
icon:
|
|
5257
|
+
name: 'timer',
|
|
5258
|
+
icon: timer,
|
|
4930
5259
|
tags: ['time', 'timer', 'stopwatch'],
|
|
4931
5260
|
categories: ['time']
|
|
4932
5261
|
},
|
|
4933
5262
|
{
|
|
4934
|
-
name: 'timer',
|
|
4935
|
-
icon:
|
|
5263
|
+
name: 'timer-off',
|
|
5264
|
+
icon: timerOff,
|
|
4936
5265
|
tags: ['time', 'timer', 'stopwatch'],
|
|
4937
5266
|
categories: ['time']
|
|
4938
5267
|
},
|
|
5268
|
+
{
|
|
5269
|
+
name: 'toggle-left',
|
|
5270
|
+
icon: toggleLeft,
|
|
5271
|
+
tags: ['on', 'off', 'switch', 'boolean'],
|
|
5272
|
+
categories: ['layout', 'account', 'development']
|
|
5273
|
+
},
|
|
5274
|
+
{
|
|
5275
|
+
name: 'toggle-right',
|
|
5276
|
+
icon: toggleRight,
|
|
5277
|
+
tags: ['on', 'off', 'switch', 'boolean'],
|
|
5278
|
+
categories: ['layout', 'account', 'development']
|
|
5279
|
+
},
|
|
4939
5280
|
{
|
|
4940
5281
|
name: 'tornado',
|
|
4941
5282
|
icon: tornado,
|
|
@@ -4949,14 +5290,29 @@ let ICONS_LIST = [
|
|
|
4949
5290
|
categories: ['devices']
|
|
4950
5291
|
},
|
|
4951
5292
|
{
|
|
4952
|
-
name: 'trash
|
|
4953
|
-
icon:
|
|
4954
|
-
tags: [
|
|
5293
|
+
name: 'trash',
|
|
5294
|
+
icon: trash,
|
|
5295
|
+
tags: [
|
|
5296
|
+
'empty',
|
|
5297
|
+
'deletion',
|
|
5298
|
+
'cleanup',
|
|
5299
|
+
'junk',
|
|
5300
|
+
'clear',
|
|
5301
|
+
'garbage',
|
|
5302
|
+
'delete',
|
|
5303
|
+
'remove',
|
|
5304
|
+
'bin',
|
|
5305
|
+
'waste',
|
|
5306
|
+
'recycle',
|
|
5307
|
+
'discard',
|
|
5308
|
+
'binoculars',
|
|
5309
|
+
'rubbish'
|
|
5310
|
+
],
|
|
4955
5311
|
categories: ['files', 'mail']
|
|
4956
5312
|
},
|
|
4957
5313
|
{
|
|
4958
|
-
name: 'trash',
|
|
4959
|
-
icon:
|
|
5314
|
+
name: 'trash-2',
|
|
5315
|
+
icon: trash2,
|
|
4960
5316
|
tags: ['garbage', 'delete', 'remove', 'bin'],
|
|
4961
5317
|
categories: ['files', 'mail']
|
|
4962
5318
|
},
|
|
@@ -4972,18 +5328,18 @@ let ICONS_LIST = [
|
|
|
4972
5328
|
tags: ['rain', 'weather', 'uncovered', 'uninsured', 'antivirus', 'unprotected', 'risky'],
|
|
4973
5329
|
categories: ['weather']
|
|
4974
5330
|
},
|
|
4975
|
-
{
|
|
4976
|
-
name: 'undo-dot',
|
|
4977
|
-
icon: undoDot,
|
|
4978
|
-
tags: ['redo', 'history', 'step', 'back'],
|
|
4979
|
-
categories: ['text', 'arrows']
|
|
4980
|
-
},
|
|
4981
5331
|
{
|
|
4982
5332
|
name: 'undo',
|
|
4983
5333
|
icon: undo,
|
|
4984
5334
|
tags: ['redo', 'rerun', 'history'],
|
|
4985
5335
|
categories: ['text', 'arrows']
|
|
4986
5336
|
},
|
|
5337
|
+
{
|
|
5338
|
+
name: 'undo-dot',
|
|
5339
|
+
icon: undoDot,
|
|
5340
|
+
tags: ['redo', 'history', 'step', 'back'],
|
|
5341
|
+
categories: ['text', 'arrows']
|
|
5342
|
+
},
|
|
4987
5343
|
{
|
|
4988
5344
|
name: 'unfold-horizontal',
|
|
4989
5345
|
icon: unfoldHorizontal,
|
|
@@ -5045,14 +5401,14 @@ let ICONS_LIST = [
|
|
|
5045
5401
|
categories: ['account']
|
|
5046
5402
|
},
|
|
5047
5403
|
{
|
|
5048
|
-
name: 'users
|
|
5049
|
-
icon:
|
|
5404
|
+
name: 'users',
|
|
5405
|
+
icon: users,
|
|
5050
5406
|
tags: ['group', 'people'],
|
|
5051
5407
|
categories: ['account']
|
|
5052
5408
|
},
|
|
5053
5409
|
{
|
|
5054
|
-
name: 'users',
|
|
5055
|
-
icon:
|
|
5410
|
+
name: 'users-round',
|
|
5411
|
+
icon: usersRound,
|
|
5056
5412
|
tags: ['group', 'people'],
|
|
5057
5413
|
categories: ['account']
|
|
5058
5414
|
},
|
|
@@ -5074,18 +5430,18 @@ let ICONS_LIST = [
|
|
|
5074
5430
|
],
|
|
5075
5431
|
categories: ['security', 'travel', 'home']
|
|
5076
5432
|
},
|
|
5077
|
-
{
|
|
5078
|
-
name: 'vibrate-off',
|
|
5079
|
-
icon: vibrateOff,
|
|
5080
|
-
tags: ['smartphone', 'notification', 'rumble', 'haptic feedback', 'notifications', 'screen'],
|
|
5081
|
-
categories: ['devices', 'connectivity', 'account']
|
|
5082
|
-
},
|
|
5083
5433
|
{
|
|
5084
5434
|
name: 'vibrate',
|
|
5085
5435
|
icon: vibrate,
|
|
5086
5436
|
tags: ['smartphone', 'notification', 'rumble', 'haptic feedback', 'screen'],
|
|
5087
5437
|
categories: ['devices', 'connectivity', 'account', 'notifications']
|
|
5088
5438
|
},
|
|
5439
|
+
{
|
|
5440
|
+
name: 'vibrate-off',
|
|
5441
|
+
icon: vibrateOff,
|
|
5442
|
+
tags: ['smartphone', 'notification', 'rumble', 'haptic feedback', 'notifications', 'screen'],
|
|
5443
|
+
categories: ['devices', 'connectivity', 'account']
|
|
5444
|
+
},
|
|
5089
5445
|
{
|
|
5090
5446
|
name: 'video-off',
|
|
5091
5447
|
icon: videoOff,
|
|
@@ -5128,6 +5484,12 @@ let ICONS_LIST = [
|
|
|
5128
5484
|
tags: ['corn', 'cereal', 'grain', 'gluten free', 'allergy', 'intolerance', 'diet'],
|
|
5129
5485
|
categories: ['food-beverage']
|
|
5130
5486
|
},
|
|
5487
|
+
{
|
|
5488
|
+
name: 'wifi',
|
|
5489
|
+
icon: wifi,
|
|
5490
|
+
tags: ['connection', 'signal', 'wireless'],
|
|
5491
|
+
categories: ['connectivity', 'devices']
|
|
5492
|
+
},
|
|
5131
5493
|
{
|
|
5132
5494
|
name: 'wifi-high',
|
|
5133
5495
|
icon: wifiHigh,
|
|
@@ -5147,14 +5509,14 @@ let ICONS_LIST = [
|
|
|
5147
5509
|
categories: ['connectivity', 'devices']
|
|
5148
5510
|
},
|
|
5149
5511
|
{
|
|
5150
|
-
name: 'wifi-
|
|
5151
|
-
icon:
|
|
5152
|
-
tags: ['
|
|
5512
|
+
name: 'wifi-pen',
|
|
5513
|
+
icon: wifiPen,
|
|
5514
|
+
tags: ['edit', 'wifi', 'pen', 'change', 'network'],
|
|
5153
5515
|
categories: ['connectivity', 'devices']
|
|
5154
5516
|
},
|
|
5155
5517
|
{
|
|
5156
|
-
name: 'wifi',
|
|
5157
|
-
icon:
|
|
5518
|
+
name: 'wifi-zero',
|
|
5519
|
+
icon: wifiZero,
|
|
5158
5520
|
tags: ['connection', 'signal', 'wireless'],
|
|
5159
5521
|
categories: ['connectivity', 'devices']
|
|
5160
5522
|
},
|
|
@@ -5196,300 +5558,7 @@ let ICONS_LIST = [
|
|
|
5196
5558
|
icon: zapOff,
|
|
5197
5559
|
tags: ['flash', 'camera', 'lightning', 'electricity', 'energy'],
|
|
5198
5560
|
categories: ['connectivity', 'devices', 'photography', 'weather']
|
|
5199
|
-
}
|
|
5200
|
-
{
|
|
5201
|
-
name: 'wifi-pen',
|
|
5202
|
-
icon: wifiPen,
|
|
5203
|
-
tags: ['edit', 'wifi', 'pen', 'change', 'network'],
|
|
5204
|
-
categories: ['connectivity', 'devices']
|
|
5205
|
-
},
|
|
5206
|
-
{
|
|
5207
|
-
name: 'house-wifi',
|
|
5208
|
-
icon: houseWifi,
|
|
5209
|
-
tags: ['home', 'living', 'building', 'wifi', 'connectivity'],
|
|
5210
|
-
categories: ['home', 'buildings', 'connectivity']
|
|
5211
|
-
},
|
|
5212
|
-
{
|
|
5213
|
-
name: 'briefcase',
|
|
5214
|
-
icon: briefcase,
|
|
5215
|
-
tags: ['work', 'bag', 'baggage', 'folder'],
|
|
5216
|
-
categories: ['transportation']
|
|
5217
|
-
},
|
|
5218
|
-
{
|
|
5219
|
-
name: 'briefcase-business',
|
|
5220
|
-
icon: briefcaseBusiness,
|
|
5221
|
-
tags: ['work', 'bag', 'baggage', 'folder', 'portfolio'],
|
|
5222
|
-
categories: ['transportation']
|
|
5223
|
-
},
|
|
5224
|
-
{
|
|
5225
|
-
name: 'briefcase-conveyor-belt',
|
|
5226
|
-
icon: briefcaseConveyorBelt,
|
|
5227
|
-
tags: ['baggage', 'luggage', 'travel', 'suitcase', 'conveyor', 'carousel'],
|
|
5228
|
-
categories: ['travel', 'transportation']
|
|
5229
|
-
},
|
|
5230
|
-
{
|
|
5231
|
-
name: 'briefcase-medical',
|
|
5232
|
-
icon: briefcaseMedical,
|
|
5233
|
-
tags: ['doctor', 'medicine', 'first aid'],
|
|
5234
|
-
categories: ['medical', 'transportation']
|
|
5235
|
-
},
|
|
5236
|
-
{
|
|
5237
|
-
name: 'landmark',
|
|
5238
|
-
icon: landmark,
|
|
5239
|
-
tags: ['bank', 'building', 'capitol', 'finance', 'money', 'government', 'institution'],
|
|
5240
|
-
categories: ['finance', 'navigation', 'buildings']
|
|
5241
|
-
},
|
|
5242
|
-
{
|
|
5243
|
-
name: 'rotate-ccw-key',
|
|
5244
|
-
icon: rotateCcwKey,
|
|
5245
|
-
tags: ['password', 'key', 'refresh', 'change'],
|
|
5246
|
-
categories: ['security', 'account']
|
|
5247
|
-
},
|
|
5248
|
-
{
|
|
5249
|
-
name: 'heart',
|
|
5250
|
-
icon: heart,
|
|
5251
|
-
tags: ['like', 'love', 'emotion', 'suit', 'playing', 'cards'],
|
|
5252
|
-
categories: ['medical', 'social', 'multimedia', 'emoji', 'gaming', 'shapes']
|
|
5253
|
-
},
|
|
5254
|
-
{
|
|
5255
|
-
name: 'snowflake',
|
|
5256
|
-
icon: snowflake,
|
|
5257
|
-
tags: ['cold', 'weather', 'freeze', 'snow', 'winter'],
|
|
5258
|
-
categories: ['weather', 'seasons']
|
|
5259
|
-
},
|
|
5260
|
-
{
|
|
5261
|
-
name: 'bell-ring',
|
|
5262
|
-
icon: bellRing,
|
|
5263
|
-
tags: ['alarm', 'notification', 'sound', 'reminder'],
|
|
5264
|
-
categories: ['notifications']
|
|
5265
|
-
},
|
|
5266
|
-
{
|
|
5267
|
-
name: 'star',
|
|
5268
|
-
icon: star,
|
|
5269
|
-
tags: ['bookmark', 'favorite', 'like', 'review', 'rating'],
|
|
5270
|
-
categories: ['account', 'social', 'shapes', 'multimedia', 'weather', 'emoji', 'gaming']
|
|
5271
|
-
},
|
|
5272
|
-
{
|
|
5273
|
-
name: 'brush-cleaning',
|
|
5274
|
-
icon: brushCleaning,
|
|
5275
|
-
tags: [
|
|
5276
|
-
'cleaning',
|
|
5277
|
-
'utensil',
|
|
5278
|
-
'housekeeping',
|
|
5279
|
-
'tool',
|
|
5280
|
-
'sweeping',
|
|
5281
|
-
'scrubbing',
|
|
5282
|
-
'hygiene',
|
|
5283
|
-
'maintenance',
|
|
5284
|
-
'household',
|
|
5285
|
-
'cleaner',
|
|
5286
|
-
'chores',
|
|
5287
|
-
'equipment',
|
|
5288
|
-
'sanitation',
|
|
5289
|
-
'bristles',
|
|
5290
|
-
'handle',
|
|
5291
|
-
'home care',
|
|
5292
|
-
'sanitize',
|
|
5293
|
-
'purify',
|
|
5294
|
-
'wash',
|
|
5295
|
-
'disinfect',
|
|
5296
|
-
'sterilize',
|
|
5297
|
-
'scrub',
|
|
5298
|
-
'polish',
|
|
5299
|
-
'decontaminate',
|
|
5300
|
-
'wipe',
|
|
5301
|
-
'spotless',
|
|
5302
|
-
'remove',
|
|
5303
|
-
'empty',
|
|
5304
|
-
'erase',
|
|
5305
|
-
'purge',
|
|
5306
|
-
'eliminate'
|
|
5307
|
-
],
|
|
5308
|
-
categories: ['home', 'tools', 'design']
|
|
5309
|
-
},
|
|
5310
|
-
{
|
|
5311
|
-
name: 'brush',
|
|
5312
|
-
icon: brush,
|
|
5313
|
-
tags: ['clean', 'sweep', 'refactor', 'remove', 'draw', 'paint', 'color', 'artist'],
|
|
5314
|
-
categories: ['text', 'design', 'tools']
|
|
5315
|
-
},
|
|
5316
|
-
{
|
|
5317
|
-
name: 'paintbrush',
|
|
5318
|
-
icon: paintbrush,
|
|
5319
|
-
tags: ['brush', 'paintbrush', 'design', 'color', 'colour', 'decoration', 'diy'],
|
|
5320
|
-
categories: ['text', 'design', 'photography', 'home', 'tools']
|
|
5321
|
-
},
|
|
5322
|
-
{
|
|
5323
|
-
name: 'cherry',
|
|
5324
|
-
icon: cherry,
|
|
5325
|
-
tags: ['fruit', 'food'],
|
|
5326
|
-
categories: ['food-beverage']
|
|
5327
|
-
},
|
|
5328
|
-
{
|
|
5329
|
-
name: 'badge-question-mark',
|
|
5330
|
-
icon: badgeQuestionMark,
|
|
5331
|
-
tags: ['verified', 'unverified', 'help'],
|
|
5332
|
-
categories: ['accessibility', 'social', 'shapes']
|
|
5333
|
-
},
|
|
5334
|
-
{
|
|
5335
|
-
name: 'file-question-mark',
|
|
5336
|
-
icon: fileQuestionMark,
|
|
5337
|
-
tags: ['readme', 'help', 'question'],
|
|
5338
|
-
categories: ['files']
|
|
5339
|
-
},
|
|
5340
|
-
{
|
|
5341
|
-
name: 'circle-question-mark',
|
|
5342
|
-
icon: circleQuestionMark,
|
|
5343
|
-
tags: ['question mark'],
|
|
5344
|
-
categories: ['accessibility', 'text', 'notifications']
|
|
5345
|
-
},
|
|
5346
|
-
{
|
|
5347
|
-
name: 'message-circle-question-mark',
|
|
5348
|
-
icon: messageCircleQuestionMark,
|
|
5349
|
-
tags: ['comment', 'chat', 'conversation', 'dialog', 'feedback', 'speech bubble', 'help'],
|
|
5350
|
-
categories: ['social']
|
|
5351
|
-
},
|
|
5352
|
-
{
|
|
5353
|
-
name: 'shield-question-mark',
|
|
5354
|
-
icon: shieldQuestionMark,
|
|
5355
|
-
tags: [
|
|
5356
|
-
'unshielded',
|
|
5357
|
-
'cybersecurity',
|
|
5358
|
-
'insecure',
|
|
5359
|
-
'unsecured',
|
|
5360
|
-
'safety',
|
|
5361
|
-
'unsafe',
|
|
5362
|
-
'protection',
|
|
5363
|
-
'unprotected',
|
|
5364
|
-
'guardian',
|
|
5365
|
-
'unguarded',
|
|
5366
|
-
'unarmored',
|
|
5367
|
-
'unarmoured',
|
|
5368
|
-
'defenseless',
|
|
5369
|
-
'defenceless',
|
|
5370
|
-
'undefended',
|
|
5371
|
-
'defender',
|
|
5372
|
-
'threat',
|
|
5373
|
-
'prevention',
|
|
5374
|
-
'unprevented',
|
|
5375
|
-
'antivirus',
|
|
5376
|
-
'vigilance',
|
|
5377
|
-
'vigilant',
|
|
5378
|
-
'detection',
|
|
5379
|
-
'undetected',
|
|
5380
|
-
'scan',
|
|
5381
|
-
'find',
|
|
5382
|
-
'exploit',
|
|
5383
|
-
'vulnerability',
|
|
5384
|
-
'vulnerable',
|
|
5385
|
-
'weakness',
|
|
5386
|
-
'infection',
|
|
5387
|
-
'comprimised',
|
|
5388
|
-
'data leak',
|
|
5389
|
-
'audit',
|
|
5390
|
-
'admin',
|
|
5391
|
-
'verification',
|
|
5392
|
-
'unverified',
|
|
5393
|
-
'uncertified',
|
|
5394
|
-
'uncertain',
|
|
5395
|
-
'unknown',
|
|
5396
|
-
'inactive',
|
|
5397
|
-
'crest',
|
|
5398
|
-
'question mark',
|
|
5399
|
-
'?'
|
|
5400
|
-
],
|
|
5401
|
-
categories: ['account', 'security', 'development', 'gaming']
|
|
5402
|
-
},
|
|
5403
|
-
{
|
|
5404
|
-
name: 'droplet-off',
|
|
5405
|
-
icon: dropletOff,
|
|
5406
|
-
tags: ['water', 'weather', 'liquid', 'fluid', 'wet', 'moisture', 'damp', 'bead', 'globule'],
|
|
5407
|
-
categories: ['weather', 'gaming']
|
|
5408
|
-
},
|
|
5409
|
-
{
|
|
5410
|
-
name: 'server-off',
|
|
5411
|
-
icon: serverOff,
|
|
5412
|
-
tags: ['cloud', 'storage'],
|
|
5413
|
-
categories: ['development', 'devices']
|
|
5414
|
-
},
|
|
5415
|
-
{
|
|
5416
|
-
name: 'thermometer',
|
|
5417
|
-
icon: thermometer,
|
|
5418
|
-
tags: ['temperature', 'celsius', 'fahrenheit', 'weather'],
|
|
5419
|
-
categories: ['weather']
|
|
5420
|
-
},
|
|
5421
|
-
{
|
|
5422
|
-
name: 'toggle-left',
|
|
5423
|
-
icon: toggleLeft,
|
|
5424
|
-
tags: ['on', 'off', 'switch', 'boolean'],
|
|
5425
|
-
categories: ['layout', 'account', 'development']
|
|
5426
|
-
},
|
|
5427
|
-
{
|
|
5428
|
-
name: 'toggle-right',
|
|
5429
|
-
icon: toggleRight,
|
|
5430
|
-
tags: ['on', 'off', 'switch', 'boolean'],
|
|
5431
|
-
categories: ['layout', 'account', 'development']
|
|
5432
|
-
},
|
|
5433
|
-
{
|
|
5434
|
-
name: "send",
|
|
5435
|
-
icon: send,
|
|
5436
|
-
tags: ["email","message","mail","paper airplane","paper aeroplane","submit"],
|
|
5437
|
-
categories: ["mail","communication","connectivity"]
|
|
5438
|
-
},
|
|
5439
|
-
{
|
|
5440
|
-
name: "send-horizontal",
|
|
5441
|
-
icon: sendHorizontal,
|
|
5442
|
-
tags: ["email","message","mail","paper airplane","paper aeroplane","submit"],
|
|
5443
|
-
categories: ["mail","communication","connectivity"]
|
|
5444
|
-
},
|
|
5445
|
-
{
|
|
5446
|
-
name: "panel-left-open",
|
|
5447
|
-
icon: panelLeftOpen,
|
|
5448
|
-
tags: ["primary","drawer","show","reveal","chevron","right",">"],
|
|
5449
|
-
categories: ["layout","arrows"]
|
|
5450
|
-
},
|
|
5451
|
-
{
|
|
5452
|
-
name: "panel-bottom-close",
|
|
5453
|
-
icon: panelBottomClose,
|
|
5454
|
-
tags: ["drawer","dock","hide","chevron","down"],
|
|
5455
|
-
categories: ["layout","arrows"]
|
|
5456
|
-
},
|
|
5457
|
-
{
|
|
5458
|
-
name: "panel-bottom-open",
|
|
5459
|
-
icon: panelBottomOpen,
|
|
5460
|
-
tags: ["drawer","dock","show","reveal","chevron","up"],
|
|
5461
|
-
categories: ["layout","arrows"]
|
|
5462
|
-
},
|
|
5463
|
-
{
|
|
5464
|
-
name: "panel-left-close",
|
|
5465
|
-
icon: panelLeftClose,
|
|
5466
|
-
tags: ["primary","drawer","hide","chevron","<"],
|
|
5467
|
-
categories: ["layout","arrows"]
|
|
5468
|
-
},
|
|
5469
|
-
{
|
|
5470
|
-
name: "panel-right-close",
|
|
5471
|
-
icon: panelRightClose,
|
|
5472
|
-
tags: ["sidebar","secondary","drawer","hide","chevron",">"],
|
|
5473
|
-
categories: ["layout","arrows"]
|
|
5474
|
-
},
|
|
5475
|
-
{
|
|
5476
|
-
name: "panel-right-open",
|
|
5477
|
-
icon: panelRightOpen,
|
|
5478
|
-
tags: ["sidebar","secondary","drawer","show","reveal","chevron","left","<"],
|
|
5479
|
-
categories: ["layout","arrows"]
|
|
5480
|
-
},
|
|
5481
|
-
{
|
|
5482
|
-
name: "panel-top-close",
|
|
5483
|
-
icon: panelTopClose,
|
|
5484
|
-
tags: ["menu bar","drawer","hide","chevron","up"],
|
|
5485
|
-
categories: ["layout","arrows"]
|
|
5486
|
-
},
|
|
5487
|
-
{
|
|
5488
|
-
name: "panel-top-open",
|
|
5489
|
-
icon: panelTopOpen,
|
|
5490
|
-
tags: ["menu bar","drawer","show","reveal","chevron","down"],
|
|
5491
|
-
categories: ["layout","arrows"]
|
|
5492
|
-
}
|
|
5561
|
+
}
|
|
5493
5562
|
];
|
|
5494
5563
|
|
|
5495
5564
|
export default ICONS_LIST;
|