@livenetworks/ashlar 1.3.2
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 +177 -0
- package/js/COMPONENTS.md +1102 -0
- package/js/index.js +41 -0
- package/js/ln-accordion/README.md +137 -0
- package/js/ln-accordion/ln-accordion.js +1 -0
- package/js/ln-accordion/src/ln-accordion.js +41 -0
- package/js/ln-ajax/README.md +91 -0
- package/js/ln-ajax/ln-ajax.js +1 -0
- package/js/ln-ajax/src/ln-ajax.js +277 -0
- package/js/ln-api-connector/README.md +150 -0
- package/js/ln-api-connector/ln-api-connector.js +1 -0
- package/js/ln-api-connector/src/ln-api-connector.js +265 -0
- package/js/ln-autoresize/README.md +80 -0
- package/js/ln-autoresize/ln-autoresize.js +1 -0
- package/js/ln-autoresize/src/ln-autoresize.js +47 -0
- package/js/ln-autosave/README.md +92 -0
- package/js/ln-autosave/ln-autosave.js +1 -0
- package/js/ln-autosave/src/ln-autosave.js +147 -0
- package/js/ln-circular-progress/README.md +161 -0
- package/js/ln-circular-progress/ln-circular-progress.js +1 -0
- package/js/ln-circular-progress/src/ln-circular-progress.js +133 -0
- package/js/ln-confirm/README.md +86 -0
- package/js/ln-confirm/_ln-confirm.scss +13 -0
- package/js/ln-confirm/ln-confirm.js +1 -0
- package/js/ln-confirm/src/ln-confirm.js +131 -0
- package/js/ln-core/crypto.js +83 -0
- package/js/ln-core/helpers.js +411 -0
- package/js/ln-core/index.js +5 -0
- package/js/ln-core/persist.js +71 -0
- package/js/ln-core/positioning.js +207 -0
- package/js/ln-core/reactive.js +74 -0
- package/js/ln-couchdb-connector/README.md +156 -0
- package/js/ln-couchdb-connector/ln-couchdb-connector.js +1 -0
- package/js/ln-couchdb-connector/src/ln-couchdb-connector.js +348 -0
- package/js/ln-data-coordinator/README.md +165 -0
- package/js/ln-data-coordinator/ln-data-coordinator.js +1 -0
- package/js/ln-data-coordinator/src/ln-data-coordinator.js +249 -0
- package/js/ln-data-store/README.md +94 -0
- package/js/ln-data-store/ln-data-store.js +1 -0
- package/js/ln-data-store/src/ln-data-store.js +699 -0
- package/js/ln-data-table/README.md +110 -0
- package/js/ln-data-table/ln-data-table.js +1 -0
- package/js/ln-data-table/ln-data-table.scss +10 -0
- package/js/ln-data-table/src/ln-data-table.js +1103 -0
- package/js/ln-date/README.md +151 -0
- package/js/ln-date/ln-date.js +1 -0
- package/js/ln-date/src/ln-date.js +442 -0
- package/js/ln-dropdown/README.md +117 -0
- package/js/ln-dropdown/ln-dropdown.js +1 -0
- package/js/ln-dropdown/ln-dropdown.scss +15 -0
- package/js/ln-dropdown/src/ln-dropdown.js +174 -0
- package/js/ln-external-links/README.md +341 -0
- package/js/ln-external-links/ln-external-links.js +1 -0
- package/js/ln-external-links/src/ln-external-links.js +116 -0
- package/js/ln-filter/README.md +99 -0
- package/js/ln-filter/ln-filter.js +1 -0
- package/js/ln-filter/ln-filter.scss +7 -0
- package/js/ln-filter/src/ln-filter.js +404 -0
- package/js/ln-form/README.md +101 -0
- package/js/ln-form/ln-form.js +1 -0
- package/js/ln-form/src/ln-form.js +199 -0
- package/js/ln-http/README.md +89 -0
- package/js/ln-http/ln-http.js +1 -0
- package/js/ln-http/src/ln-http.js +219 -0
- package/js/ln-icons/README.md +88 -0
- package/js/ln-icons/ln-icons.js +1 -0
- package/js/ln-icons/src/ln-icons.js +169 -0
- package/js/ln-link/README.md +303 -0
- package/js/ln-link/ln-link.js +1 -0
- package/js/ln-link/src/ln-link.js +196 -0
- package/js/ln-modal/README.md +154 -0
- package/js/ln-modal/ln-modal.js +1 -0
- package/js/ln-modal/ln-modal.scss +11 -0
- package/js/ln-modal/src/ln-modal.js +201 -0
- package/js/ln-nav/README.md +70 -0
- package/js/ln-nav/ln-nav.js +1 -0
- package/js/ln-nav/src/ln-nav.js +177 -0
- package/js/ln-number/README.md +122 -0
- package/js/ln-number/ln-number.js +1 -0
- package/js/ln-number/src/ln-number.js +302 -0
- package/js/ln-popover/README.md +127 -0
- package/js/ln-popover/ln-popover.js +1 -0
- package/js/ln-popover/src/ln-popover.js +288 -0
- package/js/ln-progress/README.md +442 -0
- package/js/ln-progress/ln-progress.js +1 -0
- package/js/ln-progress/src/ln-progress.js +150 -0
- package/js/ln-search/README.md +83 -0
- package/js/ln-search/ln-search.js +1 -0
- package/js/ln-search/ln-search.scss +7 -0
- package/js/ln-search/src/ln-search.js +114 -0
- package/js/ln-sortable/README.md +95 -0
- package/js/ln-sortable/ln-sortable.js +1 -0
- package/js/ln-sortable/src/ln-sortable.js +203 -0
- package/js/ln-table/README.md +101 -0
- package/js/ln-table/ln-table-sort.js +1 -0
- package/js/ln-table/ln-table.js +1 -0
- package/js/ln-table/ln-table.scss +11 -0
- package/js/ln-table/src/ln-table-sort.js +168 -0
- package/js/ln-table/src/ln-table.js +473 -0
- package/js/ln-tabs/README.md +137 -0
- package/js/ln-tabs/ln-tabs.js +1 -0
- package/js/ln-tabs/src/ln-tabs.js +171 -0
- package/js/ln-time/README.md +81 -0
- package/js/ln-time/ln-time.js +1 -0
- package/js/ln-time/src/ln-time.js +192 -0
- package/js/ln-toast/README.md +122 -0
- package/js/ln-toast/ln-toast.js +15 -0
- package/js/ln-toast/src/ln-toast.js +210 -0
- package/js/ln-toast/template.html +14 -0
- package/js/ln-toggle/README.md +137 -0
- package/js/ln-toggle/ln-toggle.js +1 -0
- package/js/ln-toggle/src/ln-toggle.js +139 -0
- package/js/ln-tooltip/README.md +58 -0
- package/js/ln-tooltip/ln-tooltip.js +1 -0
- package/js/ln-tooltip/ln-tooltip.scss +9 -0
- package/js/ln-tooltip/src/ln-tooltip.js +169 -0
- package/js/ln-translations/README.md +96 -0
- package/js/ln-translations/ln-translations.js +1 -0
- package/js/ln-translations/src/ln-translations.js +275 -0
- package/js/ln-upload/README.md +180 -0
- package/js/ln-upload/ln-upload.js +1 -0
- package/js/ln-upload/ln-upload.scss +20 -0
- package/js/ln-upload/src/ln-upload.js +407 -0
- package/js/ln-validate/README.md +108 -0
- package/js/ln-validate/ln-validate.js +1 -0
- package/js/ln-validate/src/ln-validate.js +160 -0
- package/package.json +55 -0
- package/scss/base/_global.scss +83 -0
- package/scss/base/_reset.scss +17 -0
- package/scss/base/_typography.scss +125 -0
- package/scss/components/_accordion.scss +34 -0
- package/scss/components/_ajax.scss +15 -0
- package/scss/components/_alert.scss +5 -0
- package/scss/components/_app-shell.scss +15 -0
- package/scss/components/_avatar.scss +6 -0
- package/scss/components/_breadcrumbs.scss +33 -0
- package/scss/components/_button.scss +20 -0
- package/scss/components/_card.scss +10 -0
- package/scss/components/_chip.scss +5 -0
- package/scss/components/_circular-progress.scss +29 -0
- package/scss/components/_confirm.scss +5 -0
- package/scss/components/_data-table.scss +83 -0
- package/scss/components/_dropdown.scss +25 -0
- package/scss/components/_empty-state.scss +22 -0
- package/scss/components/_form.scss +100 -0
- package/scss/components/_layout.scss +8 -0
- package/scss/components/_link.scss +11 -0
- package/scss/components/_ln-table.scss +60 -0
- package/scss/components/_loader.scss +6 -0
- package/scss/components/_modal.scss +20 -0
- package/scss/components/_nav.scss +9 -0
- package/scss/components/_page-header.scss +10 -0
- package/scss/components/_popover.scss +10 -0
- package/scss/components/_progress.scss +17 -0
- package/scss/components/_prose.scss +5 -0
- package/scss/components/_scrollbar.scss +32 -0
- package/scss/components/_sections.scss +12 -0
- package/scss/components/_sidebar.scss +5 -0
- package/scss/components/_stat-card.scss +5 -0
- package/scss/components/_status-badge.scss +4 -0
- package/scss/components/_stepper.scss +5 -0
- package/scss/components/_table.scss +19 -0
- package/scss/components/_tabs.scss +21 -0
- package/scss/components/_timeline.scss +14 -0
- package/scss/components/_toast.scss +41 -0
- package/scss/components/_toggle.scss +81 -0
- package/scss/components/_tooltip.scss +18 -0
- package/scss/components/_translations.scss +111 -0
- package/scss/components/_upload.scss +51 -0
- package/scss/config/_breakpoints.scss +72 -0
- package/scss/config/_density.scss +117 -0
- package/scss/config/_icons.scss +37 -0
- package/scss/config/_mixins.scss +13 -0
- package/scss/config/_theme.scss +216 -0
- package/scss/config/_tokens.scss +419 -0
- package/scss/config/mixins/_accordion.scss +52 -0
- package/scss/config/mixins/_ajax.scss +39 -0
- package/scss/config/mixins/_alert.scss +82 -0
- package/scss/config/mixins/_app-shell.scss +312 -0
- package/scss/config/mixins/_avatar.scss +109 -0
- package/scss/config/mixins/_borders.scss +36 -0
- package/scss/config/mixins/_breadcrumbs.scss +72 -0
- package/scss/config/mixins/_breakpoints.scss +62 -0
- package/scss/config/mixins/_btn.scss +179 -0
- package/scss/config/mixins/_card.scss +338 -0
- package/scss/config/mixins/_chip.scss +66 -0
- package/scss/config/mixins/_circular-progress.scss +71 -0
- package/scss/config/mixins/_collapsible.scss +24 -0
- package/scss/config/mixins/_colors.scss +46 -0
- package/scss/config/mixins/_confirm.scss +31 -0
- package/scss/config/mixins/_data-table.scss +346 -0
- package/scss/config/mixins/_display.scss +32 -0
- package/scss/config/mixins/_dropdown.scss +143 -0
- package/scss/config/mixins/_empty-state.scss +30 -0
- package/scss/config/mixins/_focus.scss +55 -0
- package/scss/config/mixins/_footer.scss +42 -0
- package/scss/config/mixins/_form.scss +601 -0
- package/scss/config/mixins/_index.scss +58 -0
- package/scss/config/mixins/_interaction.scss +15 -0
- package/scss/config/mixins/_kbd.scss +22 -0
- package/scss/config/mixins/_layout.scss +117 -0
- package/scss/config/mixins/_link.scss +55 -0
- package/scss/config/mixins/_ln-table.scss +420 -0
- package/scss/config/mixins/_loader.scss +26 -0
- package/scss/config/mixins/_modal.scss +66 -0
- package/scss/config/mixins/_motion.scss +19 -0
- package/scss/config/mixins/_nav.scss +273 -0
- package/scss/config/mixins/_page-header.scss +69 -0
- package/scss/config/mixins/_popover.scss +25 -0
- package/scss/config/mixins/_position.scss +32 -0
- package/scss/config/mixins/_progress.scss +56 -0
- package/scss/config/mixins/_prose.scss +127 -0
- package/scss/config/mixins/_shadows.scss +8 -0
- package/scss/config/mixins/_sidebar.scss +95 -0
- package/scss/config/mixins/_sizing.scss +6 -0
- package/scss/config/mixins/_spacing.scss +19 -0
- package/scss/config/mixins/_stat-card.scss +68 -0
- package/scss/config/mixins/_status-badge.scss +83 -0
- package/scss/config/mixins/_stepper.scss +78 -0
- package/scss/config/mixins/_table.scss +215 -0
- package/scss/config/mixins/_tabs.scss +64 -0
- package/scss/config/mixins/_timeline.scss +69 -0
- package/scss/config/mixins/_toast.scss +148 -0
- package/scss/config/mixins/_tooltip.scss +111 -0
- package/scss/config/mixins/_transitions.scss +10 -0
- package/scss/config/mixins/_translations.scss +124 -0
- package/scss/config/mixins/_typography.scss +57 -0
- package/scss/config/mixins/_upload.scss +168 -0
- package/scss/ln-ashlar.scss +62 -0
- package/scss/tabler-icons.txt +5039 -0
- package/scss/utilities/_animations.scss +83 -0
- package/scss/utilities/_utilities.scss +49 -0
|
@@ -0,0 +1,5039 @@
|
|
|
1
|
+
a-b
|
|
2
|
+
a-b-2
|
|
3
|
+
a-b-off
|
|
4
|
+
abacus
|
|
5
|
+
abacus-off
|
|
6
|
+
abc
|
|
7
|
+
access-point
|
|
8
|
+
access-point-off
|
|
9
|
+
accessible
|
|
10
|
+
accessible-off
|
|
11
|
+
activity
|
|
12
|
+
activity-heartbeat
|
|
13
|
+
ad
|
|
14
|
+
ad-2
|
|
15
|
+
ad-circle
|
|
16
|
+
ad-circle-off
|
|
17
|
+
ad-off
|
|
18
|
+
address-book
|
|
19
|
+
address-book-off
|
|
20
|
+
adjustments
|
|
21
|
+
adjustments-alt
|
|
22
|
+
adjustments-bolt
|
|
23
|
+
adjustments-cancel
|
|
24
|
+
adjustments-check
|
|
25
|
+
adjustments-code
|
|
26
|
+
adjustments-cog
|
|
27
|
+
adjustments-dollar
|
|
28
|
+
adjustments-down
|
|
29
|
+
adjustments-exclamation
|
|
30
|
+
adjustments-heart
|
|
31
|
+
adjustments-horizontal
|
|
32
|
+
adjustments-minus
|
|
33
|
+
adjustments-off
|
|
34
|
+
adjustments-pause
|
|
35
|
+
adjustments-pin
|
|
36
|
+
adjustments-plus
|
|
37
|
+
adjustments-question
|
|
38
|
+
adjustments-search
|
|
39
|
+
adjustments-share
|
|
40
|
+
adjustments-spark
|
|
41
|
+
adjustments-star
|
|
42
|
+
adjustments-up
|
|
43
|
+
adjustments-x
|
|
44
|
+
aerial-lift
|
|
45
|
+
affiliate
|
|
46
|
+
ai
|
|
47
|
+
ai-agent
|
|
48
|
+
ai-agents
|
|
49
|
+
ai-gateway
|
|
50
|
+
air-balloon
|
|
51
|
+
air-conditioning
|
|
52
|
+
air-conditioning-disabled
|
|
53
|
+
air-traffic-control
|
|
54
|
+
alarm
|
|
55
|
+
alarm-average
|
|
56
|
+
alarm-minus
|
|
57
|
+
alarm-off
|
|
58
|
+
alarm-plus
|
|
59
|
+
alarm-smoke
|
|
60
|
+
alarm-snooze
|
|
61
|
+
album
|
|
62
|
+
album-off
|
|
63
|
+
alert-circle
|
|
64
|
+
alert-circle-off
|
|
65
|
+
alert-hexagon
|
|
66
|
+
alert-hexagon-off
|
|
67
|
+
alert-octagon
|
|
68
|
+
alert-small
|
|
69
|
+
alert-small-off
|
|
70
|
+
alert-square
|
|
71
|
+
alert-square-rounded
|
|
72
|
+
alert-square-rounded-off
|
|
73
|
+
alert-triangle
|
|
74
|
+
alert-triangle-off
|
|
75
|
+
alien
|
|
76
|
+
align-box-bottom-center
|
|
77
|
+
align-box-bottom-left
|
|
78
|
+
align-box-bottom-right
|
|
79
|
+
align-box-center-bottom
|
|
80
|
+
align-box-center-middle
|
|
81
|
+
align-box-center-stretch
|
|
82
|
+
align-box-center-top
|
|
83
|
+
align-box-left-bottom
|
|
84
|
+
align-box-left-middle
|
|
85
|
+
align-box-left-stretch
|
|
86
|
+
align-box-left-top
|
|
87
|
+
align-box-right-bottom
|
|
88
|
+
align-box-right-middle
|
|
89
|
+
align-box-right-stretch
|
|
90
|
+
align-box-right-top
|
|
91
|
+
align-box-top-center
|
|
92
|
+
align-box-top-left
|
|
93
|
+
align-box-top-right
|
|
94
|
+
align-center
|
|
95
|
+
align-justified
|
|
96
|
+
align-left
|
|
97
|
+
align-left-2
|
|
98
|
+
align-right
|
|
99
|
+
align-right-2
|
|
100
|
+
alpha
|
|
101
|
+
alphabet-arabic
|
|
102
|
+
alphabet-bangla
|
|
103
|
+
alphabet-cyrillic
|
|
104
|
+
alphabet-greek
|
|
105
|
+
alphabet-hebrew
|
|
106
|
+
alphabet-korean
|
|
107
|
+
alphabet-latin
|
|
108
|
+
alphabet-polish
|
|
109
|
+
alphabet-runes
|
|
110
|
+
alphabet-thai
|
|
111
|
+
alt
|
|
112
|
+
ambulance
|
|
113
|
+
ampersand
|
|
114
|
+
analyze
|
|
115
|
+
analyze-off
|
|
116
|
+
anchor
|
|
117
|
+
anchor-off
|
|
118
|
+
angle
|
|
119
|
+
ankh
|
|
120
|
+
antenna
|
|
121
|
+
antenna-bars-1
|
|
122
|
+
antenna-bars-2
|
|
123
|
+
antenna-bars-3
|
|
124
|
+
antenna-bars-4
|
|
125
|
+
antenna-bars-5
|
|
126
|
+
antenna-bars-off
|
|
127
|
+
antenna-off
|
|
128
|
+
aperture
|
|
129
|
+
aperture-off
|
|
130
|
+
api
|
|
131
|
+
api-app
|
|
132
|
+
api-app-off
|
|
133
|
+
api-book
|
|
134
|
+
api-off
|
|
135
|
+
app-window
|
|
136
|
+
apple
|
|
137
|
+
apps
|
|
138
|
+
apps-off
|
|
139
|
+
archery-arrow
|
|
140
|
+
archive
|
|
141
|
+
archive-off
|
|
142
|
+
armchair
|
|
143
|
+
armchair-2
|
|
144
|
+
armchair-2-off
|
|
145
|
+
armchair-off
|
|
146
|
+
arrow-autofit-content
|
|
147
|
+
arrow-autofit-down
|
|
148
|
+
arrow-autofit-height
|
|
149
|
+
arrow-autofit-left
|
|
150
|
+
arrow-autofit-right
|
|
151
|
+
arrow-autofit-up
|
|
152
|
+
arrow-autofit-width
|
|
153
|
+
arrow-back
|
|
154
|
+
arrow-back-up
|
|
155
|
+
arrow-back-up-double
|
|
156
|
+
arrow-badge-down
|
|
157
|
+
arrow-badge-left
|
|
158
|
+
arrow-badge-right
|
|
159
|
+
arrow-badge-up
|
|
160
|
+
arrow-bar-both
|
|
161
|
+
arrow-bar-down
|
|
162
|
+
arrow-bar-left
|
|
163
|
+
arrow-bar-right
|
|
164
|
+
arrow-bar-to-down
|
|
165
|
+
arrow-bar-to-down-dashed
|
|
166
|
+
arrow-bar-to-left
|
|
167
|
+
arrow-bar-to-left-dashed
|
|
168
|
+
arrow-bar-to-right
|
|
169
|
+
arrow-bar-to-right-dashed
|
|
170
|
+
arrow-bar-to-up
|
|
171
|
+
arrow-bar-to-up-dashed
|
|
172
|
+
arrow-bar-up
|
|
173
|
+
arrow-bear-left
|
|
174
|
+
arrow-bear-left-2
|
|
175
|
+
arrow-bear-right
|
|
176
|
+
arrow-bear-right-2
|
|
177
|
+
arrow-big-down
|
|
178
|
+
arrow-big-down-line
|
|
179
|
+
arrow-big-down-lines
|
|
180
|
+
arrow-big-left
|
|
181
|
+
arrow-big-left-line
|
|
182
|
+
arrow-big-left-lines
|
|
183
|
+
arrow-big-right
|
|
184
|
+
arrow-big-right-line
|
|
185
|
+
arrow-big-right-lines
|
|
186
|
+
arrow-big-up
|
|
187
|
+
arrow-big-up-line
|
|
188
|
+
arrow-big-up-lines
|
|
189
|
+
arrow-bounce
|
|
190
|
+
arrow-capsule
|
|
191
|
+
arrow-curve-left
|
|
192
|
+
arrow-curve-right
|
|
193
|
+
arrow-down
|
|
194
|
+
arrow-down-bar
|
|
195
|
+
arrow-down-circle
|
|
196
|
+
arrow-down-dashed
|
|
197
|
+
arrow-down-from-arc
|
|
198
|
+
arrow-down-left
|
|
199
|
+
arrow-down-left-circle
|
|
200
|
+
arrow-down-rhombus
|
|
201
|
+
arrow-down-right
|
|
202
|
+
arrow-down-right-circle
|
|
203
|
+
arrow-down-square
|
|
204
|
+
arrow-down-tail
|
|
205
|
+
arrow-down-to-arc
|
|
206
|
+
arrow-elbow-left
|
|
207
|
+
arrow-elbow-right
|
|
208
|
+
arrow-fork
|
|
209
|
+
arrow-forward
|
|
210
|
+
arrow-forward-up
|
|
211
|
+
arrow-forward-up-double
|
|
212
|
+
arrow-guide
|
|
213
|
+
arrow-iteration
|
|
214
|
+
arrow-left
|
|
215
|
+
arrow-left-bar
|
|
216
|
+
arrow-left-circle
|
|
217
|
+
arrow-left-dashed
|
|
218
|
+
arrow-left-from-arc
|
|
219
|
+
arrow-left-rhombus
|
|
220
|
+
arrow-left-right
|
|
221
|
+
arrow-left-square
|
|
222
|
+
arrow-left-tail
|
|
223
|
+
arrow-left-to-arc
|
|
224
|
+
arrow-loop-left
|
|
225
|
+
arrow-loop-left-2
|
|
226
|
+
arrow-loop-right
|
|
227
|
+
arrow-loop-right-2
|
|
228
|
+
arrow-merge
|
|
229
|
+
arrow-merge-alt-left
|
|
230
|
+
arrow-merge-alt-right
|
|
231
|
+
arrow-merge-both
|
|
232
|
+
arrow-merge-left
|
|
233
|
+
arrow-merge-right
|
|
234
|
+
arrow-move-down
|
|
235
|
+
arrow-move-left
|
|
236
|
+
arrow-move-right
|
|
237
|
+
arrow-move-up
|
|
238
|
+
arrow-narrow-down
|
|
239
|
+
arrow-narrow-down-dashed
|
|
240
|
+
arrow-narrow-left
|
|
241
|
+
arrow-narrow-left-dashed
|
|
242
|
+
arrow-narrow-right
|
|
243
|
+
arrow-narrow-right-dashed
|
|
244
|
+
arrow-narrow-up
|
|
245
|
+
arrow-narrow-up-dashed
|
|
246
|
+
arrow-ramp-left
|
|
247
|
+
arrow-ramp-left-2
|
|
248
|
+
arrow-ramp-left-3
|
|
249
|
+
arrow-ramp-right
|
|
250
|
+
arrow-ramp-right-2
|
|
251
|
+
arrow-ramp-right-3
|
|
252
|
+
arrow-right
|
|
253
|
+
arrow-right-bar
|
|
254
|
+
arrow-right-circle
|
|
255
|
+
arrow-right-dashed
|
|
256
|
+
arrow-right-from-arc
|
|
257
|
+
arrow-right-rhombus
|
|
258
|
+
arrow-right-square
|
|
259
|
+
arrow-right-tail
|
|
260
|
+
arrow-right-to-arc
|
|
261
|
+
arrow-rotary-first-left
|
|
262
|
+
arrow-rotary-first-right
|
|
263
|
+
arrow-rotary-last-left
|
|
264
|
+
arrow-rotary-last-right
|
|
265
|
+
arrow-rotary-left
|
|
266
|
+
arrow-rotary-right
|
|
267
|
+
arrow-rotary-straight
|
|
268
|
+
arrow-roundabout-left
|
|
269
|
+
arrow-roundabout-right
|
|
270
|
+
arrow-sharp-turn-left
|
|
271
|
+
arrow-sharp-turn-right
|
|
272
|
+
arrow-up
|
|
273
|
+
arrow-up-bar
|
|
274
|
+
arrow-up-circle
|
|
275
|
+
arrow-up-dashed
|
|
276
|
+
arrow-up-from-arc
|
|
277
|
+
arrow-up-left
|
|
278
|
+
arrow-up-left-circle
|
|
279
|
+
arrow-up-rhombus
|
|
280
|
+
arrow-up-right
|
|
281
|
+
arrow-up-right-circle
|
|
282
|
+
arrow-up-square
|
|
283
|
+
arrow-up-tail
|
|
284
|
+
arrow-up-to-arc
|
|
285
|
+
arrow-wave-left-down
|
|
286
|
+
arrow-wave-left-up
|
|
287
|
+
arrow-wave-right-down
|
|
288
|
+
arrow-wave-right-up
|
|
289
|
+
arrow-zig-zag
|
|
290
|
+
arrows-cross
|
|
291
|
+
arrows-diagonal
|
|
292
|
+
arrows-diagonal-2
|
|
293
|
+
arrows-diagonal-minimize
|
|
294
|
+
arrows-diagonal-minimize-2
|
|
295
|
+
arrows-diff
|
|
296
|
+
arrows-double-ne-sw
|
|
297
|
+
arrows-double-nw-se
|
|
298
|
+
arrows-double-se-nw
|
|
299
|
+
arrows-double-sw-ne
|
|
300
|
+
arrows-down
|
|
301
|
+
arrows-down-up
|
|
302
|
+
arrows-exchange
|
|
303
|
+
arrows-exchange-2
|
|
304
|
+
arrows-horizontal
|
|
305
|
+
arrows-join
|
|
306
|
+
arrows-join-2
|
|
307
|
+
arrows-left
|
|
308
|
+
arrows-left-down
|
|
309
|
+
arrows-left-right
|
|
310
|
+
arrows-maximize
|
|
311
|
+
arrows-minimize
|
|
312
|
+
arrows-move
|
|
313
|
+
arrows-move-horizontal
|
|
314
|
+
arrows-move-vertical
|
|
315
|
+
arrows-random
|
|
316
|
+
arrows-right
|
|
317
|
+
arrows-right-down
|
|
318
|
+
arrows-right-left
|
|
319
|
+
arrows-shuffle
|
|
320
|
+
arrows-shuffle-2
|
|
321
|
+
arrows-sort
|
|
322
|
+
arrows-split
|
|
323
|
+
arrows-split-2
|
|
324
|
+
arrows-transfer-down
|
|
325
|
+
arrows-transfer-up
|
|
326
|
+
arrows-transfer-up-down
|
|
327
|
+
arrows-up
|
|
328
|
+
arrows-up-down
|
|
329
|
+
arrows-up-left
|
|
330
|
+
arrows-up-right
|
|
331
|
+
arrows-vertical
|
|
332
|
+
artboard
|
|
333
|
+
artboard-off
|
|
334
|
+
article
|
|
335
|
+
article-off
|
|
336
|
+
aspect-ratio
|
|
337
|
+
aspect-ratio-off
|
|
338
|
+
assembly
|
|
339
|
+
assembly-off
|
|
340
|
+
asset
|
|
341
|
+
asterisk
|
|
342
|
+
asterisk-simple
|
|
343
|
+
at
|
|
344
|
+
at-off
|
|
345
|
+
atom
|
|
346
|
+
atom-2
|
|
347
|
+
atom-off
|
|
348
|
+
augmented-reality
|
|
349
|
+
augmented-reality-2
|
|
350
|
+
augmented-reality-off
|
|
351
|
+
auth-2fa
|
|
352
|
+
automatic-gearbox
|
|
353
|
+
automation
|
|
354
|
+
avocado
|
|
355
|
+
award
|
|
356
|
+
award-off
|
|
357
|
+
axe
|
|
358
|
+
axis-x
|
|
359
|
+
axis-y
|
|
360
|
+
baby-bottle
|
|
361
|
+
baby-carriage
|
|
362
|
+
background
|
|
363
|
+
backhoe
|
|
364
|
+
backpack
|
|
365
|
+
backpack-off
|
|
366
|
+
backslash
|
|
367
|
+
backspace
|
|
368
|
+
badge
|
|
369
|
+
badge-2k
|
|
370
|
+
badge-3d
|
|
371
|
+
badge-3k
|
|
372
|
+
badge-4k
|
|
373
|
+
badge-5k
|
|
374
|
+
badge-8k
|
|
375
|
+
badge-ad
|
|
376
|
+
badge-ad-off
|
|
377
|
+
badge-ar
|
|
378
|
+
badge-cc
|
|
379
|
+
badge-hd
|
|
380
|
+
badge-off
|
|
381
|
+
badge-sd
|
|
382
|
+
badge-tm
|
|
383
|
+
badge-vo
|
|
384
|
+
badge-vr
|
|
385
|
+
badge-wc
|
|
386
|
+
badges
|
|
387
|
+
badges-off
|
|
388
|
+
baguette
|
|
389
|
+
ball-american-football
|
|
390
|
+
ball-american-football-off
|
|
391
|
+
ball-baseball
|
|
392
|
+
ball-basketball
|
|
393
|
+
ball-bowling
|
|
394
|
+
ball-football
|
|
395
|
+
ball-football-off
|
|
396
|
+
ball-tennis
|
|
397
|
+
ball-volleyball
|
|
398
|
+
balloon
|
|
399
|
+
balloon-off
|
|
400
|
+
ballpen
|
|
401
|
+
ballpen-off
|
|
402
|
+
ban
|
|
403
|
+
bandage
|
|
404
|
+
bandage-off
|
|
405
|
+
barbell
|
|
406
|
+
barbell-off
|
|
407
|
+
barcode
|
|
408
|
+
barcode-off
|
|
409
|
+
barrel
|
|
410
|
+
barrel-off
|
|
411
|
+
barrier-block
|
|
412
|
+
barrier-block-off
|
|
413
|
+
baseline
|
|
414
|
+
baseline-density-large
|
|
415
|
+
baseline-density-medium
|
|
416
|
+
baseline-density-small
|
|
417
|
+
basket
|
|
418
|
+
basket-bolt
|
|
419
|
+
basket-cancel
|
|
420
|
+
basket-check
|
|
421
|
+
basket-code
|
|
422
|
+
basket-cog
|
|
423
|
+
basket-discount
|
|
424
|
+
basket-dollar
|
|
425
|
+
basket-down
|
|
426
|
+
basket-exclamation
|
|
427
|
+
basket-heart
|
|
428
|
+
basket-minus
|
|
429
|
+
basket-off
|
|
430
|
+
basket-pause
|
|
431
|
+
basket-pin
|
|
432
|
+
basket-plus
|
|
433
|
+
basket-question
|
|
434
|
+
basket-search
|
|
435
|
+
basket-share
|
|
436
|
+
basket-star
|
|
437
|
+
basket-up
|
|
438
|
+
basket-x
|
|
439
|
+
bat
|
|
440
|
+
bath
|
|
441
|
+
bath-off
|
|
442
|
+
battery
|
|
443
|
+
battery-1
|
|
444
|
+
battery-2
|
|
445
|
+
battery-3
|
|
446
|
+
battery-4
|
|
447
|
+
battery-automotive
|
|
448
|
+
battery-charging
|
|
449
|
+
battery-charging-2
|
|
450
|
+
battery-eco
|
|
451
|
+
battery-exclamation
|
|
452
|
+
battery-off
|
|
453
|
+
battery-spark
|
|
454
|
+
battery-vertical
|
|
455
|
+
battery-vertical-1
|
|
456
|
+
battery-vertical-2
|
|
457
|
+
battery-vertical-3
|
|
458
|
+
battery-vertical-4
|
|
459
|
+
battery-vertical-charging
|
|
460
|
+
battery-vertical-charging-2
|
|
461
|
+
battery-vertical-eco
|
|
462
|
+
battery-vertical-exclamation
|
|
463
|
+
battery-vertical-off
|
|
464
|
+
beach
|
|
465
|
+
beach-off
|
|
466
|
+
bed
|
|
467
|
+
bed-flat
|
|
468
|
+
bed-off
|
|
469
|
+
beer
|
|
470
|
+
beer-off
|
|
471
|
+
bell
|
|
472
|
+
bell-bolt
|
|
473
|
+
bell-cancel
|
|
474
|
+
bell-check
|
|
475
|
+
bell-code
|
|
476
|
+
bell-cog
|
|
477
|
+
bell-dollar
|
|
478
|
+
bell-down
|
|
479
|
+
bell-exclamation
|
|
480
|
+
bell-heart
|
|
481
|
+
bell-minus
|
|
482
|
+
bell-off
|
|
483
|
+
bell-pause
|
|
484
|
+
bell-pin
|
|
485
|
+
bell-plus
|
|
486
|
+
bell-question
|
|
487
|
+
bell-ringing
|
|
488
|
+
bell-ringing-2
|
|
489
|
+
bell-school
|
|
490
|
+
bell-search
|
|
491
|
+
bell-share
|
|
492
|
+
bell-star
|
|
493
|
+
bell-up
|
|
494
|
+
bell-x
|
|
495
|
+
bell-z
|
|
496
|
+
beta
|
|
497
|
+
bible
|
|
498
|
+
bike
|
|
499
|
+
bike-off
|
|
500
|
+
binary
|
|
501
|
+
binary-off
|
|
502
|
+
binary-tree
|
|
503
|
+
binary-tree-2
|
|
504
|
+
binoculars
|
|
505
|
+
biohazard
|
|
506
|
+
biohazard-off
|
|
507
|
+
blade
|
|
508
|
+
bleach
|
|
509
|
+
bleach-chlorine
|
|
510
|
+
bleach-no-chlorine
|
|
511
|
+
bleach-off
|
|
512
|
+
blend-mode
|
|
513
|
+
blender
|
|
514
|
+
blind
|
|
515
|
+
blob
|
|
516
|
+
blockquote
|
|
517
|
+
blocks
|
|
518
|
+
bluetooth
|
|
519
|
+
bluetooth-connected
|
|
520
|
+
bluetooth-off
|
|
521
|
+
bluetooth-x
|
|
522
|
+
blur
|
|
523
|
+
blur-off
|
|
524
|
+
bmp
|
|
525
|
+
body-scan
|
|
526
|
+
bold
|
|
527
|
+
bold-off
|
|
528
|
+
bolt
|
|
529
|
+
bolt-off
|
|
530
|
+
bomb
|
|
531
|
+
bone
|
|
532
|
+
bone-off
|
|
533
|
+
bong
|
|
534
|
+
bong-off
|
|
535
|
+
book
|
|
536
|
+
book-2
|
|
537
|
+
book-download
|
|
538
|
+
book-off
|
|
539
|
+
book-upload
|
|
540
|
+
bookmark
|
|
541
|
+
bookmark-ai
|
|
542
|
+
bookmark-edit
|
|
543
|
+
bookmark-minus
|
|
544
|
+
bookmark-off
|
|
545
|
+
bookmark-plus
|
|
546
|
+
bookmark-question
|
|
547
|
+
bookmarks
|
|
548
|
+
bookmarks-off
|
|
549
|
+
books
|
|
550
|
+
books-off
|
|
551
|
+
boom
|
|
552
|
+
border-all
|
|
553
|
+
border-bottom
|
|
554
|
+
border-bottom-plus
|
|
555
|
+
border-corner-ios
|
|
556
|
+
border-corner-pill
|
|
557
|
+
border-corner-rounded
|
|
558
|
+
border-corner-square
|
|
559
|
+
border-corners
|
|
560
|
+
border-horizontal
|
|
561
|
+
border-inner
|
|
562
|
+
border-left
|
|
563
|
+
border-left-plus
|
|
564
|
+
border-none
|
|
565
|
+
border-outer
|
|
566
|
+
border-radius
|
|
567
|
+
border-right
|
|
568
|
+
border-right-plus
|
|
569
|
+
border-sides
|
|
570
|
+
border-style
|
|
571
|
+
border-style-2
|
|
572
|
+
border-top
|
|
573
|
+
border-top-plus
|
|
574
|
+
border-vertical
|
|
575
|
+
bot-id
|
|
576
|
+
bottle
|
|
577
|
+
bottle-off
|
|
578
|
+
bounce-left
|
|
579
|
+
bounce-right
|
|
580
|
+
bow
|
|
581
|
+
bowl
|
|
582
|
+
bowl-chopsticks
|
|
583
|
+
bowl-spoon
|
|
584
|
+
bowling
|
|
585
|
+
box
|
|
586
|
+
box-align-bottom
|
|
587
|
+
box-align-bottom-left
|
|
588
|
+
box-align-bottom-right
|
|
589
|
+
box-align-left
|
|
590
|
+
box-align-right
|
|
591
|
+
box-align-top
|
|
592
|
+
box-align-top-left
|
|
593
|
+
box-align-top-right
|
|
594
|
+
box-margin
|
|
595
|
+
box-model
|
|
596
|
+
box-model-2
|
|
597
|
+
box-model-2-off
|
|
598
|
+
box-model-off
|
|
599
|
+
box-multiple
|
|
600
|
+
box-multiple-0
|
|
601
|
+
box-multiple-1
|
|
602
|
+
box-multiple-2
|
|
603
|
+
box-multiple-3
|
|
604
|
+
box-multiple-4
|
|
605
|
+
box-multiple-5
|
|
606
|
+
box-multiple-6
|
|
607
|
+
box-multiple-7
|
|
608
|
+
box-multiple-8
|
|
609
|
+
box-multiple-9
|
|
610
|
+
box-off
|
|
611
|
+
box-padding
|
|
612
|
+
braces
|
|
613
|
+
braces-off
|
|
614
|
+
brackets
|
|
615
|
+
brackets-angle
|
|
616
|
+
brackets-angle-off
|
|
617
|
+
brackets-contain
|
|
618
|
+
brackets-contain-end
|
|
619
|
+
brackets-contain-start
|
|
620
|
+
brackets-off
|
|
621
|
+
braille
|
|
622
|
+
brain
|
|
623
|
+
brand-4chan
|
|
624
|
+
brand-abstract
|
|
625
|
+
brand-adobe
|
|
626
|
+
brand-adobe-after-effect
|
|
627
|
+
brand-adobe-illustrator
|
|
628
|
+
brand-adobe-indesign
|
|
629
|
+
brand-adobe-photoshop
|
|
630
|
+
brand-adobe-premiere
|
|
631
|
+
brand-adobe-xd
|
|
632
|
+
brand-adonis-js
|
|
633
|
+
brand-airbnb
|
|
634
|
+
brand-airtable
|
|
635
|
+
brand-algolia
|
|
636
|
+
brand-alipay
|
|
637
|
+
brand-alpine-js
|
|
638
|
+
brand-amazon
|
|
639
|
+
brand-amd
|
|
640
|
+
brand-amie
|
|
641
|
+
brand-amigo
|
|
642
|
+
brand-among-us
|
|
643
|
+
brand-android
|
|
644
|
+
brand-angular
|
|
645
|
+
brand-ansible
|
|
646
|
+
brand-ao3
|
|
647
|
+
brand-appgallery
|
|
648
|
+
brand-apple
|
|
649
|
+
brand-apple-arcade
|
|
650
|
+
brand-apple-news
|
|
651
|
+
brand-apple-podcast
|
|
652
|
+
brand-appstore
|
|
653
|
+
brand-arc
|
|
654
|
+
brand-asana
|
|
655
|
+
brand-astro
|
|
656
|
+
brand-auth0
|
|
657
|
+
brand-aws
|
|
658
|
+
brand-azure
|
|
659
|
+
brand-backbone
|
|
660
|
+
brand-badoo
|
|
661
|
+
brand-baidu
|
|
662
|
+
brand-bandcamp
|
|
663
|
+
brand-bandlab
|
|
664
|
+
brand-beats
|
|
665
|
+
brand-bebo
|
|
666
|
+
brand-behance
|
|
667
|
+
brand-bilibili
|
|
668
|
+
brand-binance
|
|
669
|
+
brand-bing
|
|
670
|
+
brand-bitbucket
|
|
671
|
+
brand-blackberry
|
|
672
|
+
brand-blender
|
|
673
|
+
brand-blogger
|
|
674
|
+
brand-bluesky
|
|
675
|
+
brand-booking
|
|
676
|
+
brand-bootstrap
|
|
677
|
+
brand-bulma
|
|
678
|
+
brand-bumble
|
|
679
|
+
brand-bunpo
|
|
680
|
+
brand-c-sharp
|
|
681
|
+
brand-cake
|
|
682
|
+
brand-cakephp
|
|
683
|
+
brand-campaignmonitor
|
|
684
|
+
brand-carbon
|
|
685
|
+
brand-cashapp
|
|
686
|
+
brand-chrome
|
|
687
|
+
brand-cinema-4d
|
|
688
|
+
brand-citymapper
|
|
689
|
+
brand-cloudflare
|
|
690
|
+
brand-codecov
|
|
691
|
+
brand-codepen
|
|
692
|
+
brand-codesandbox
|
|
693
|
+
brand-cohost
|
|
694
|
+
brand-coinbase
|
|
695
|
+
brand-comedy-central
|
|
696
|
+
brand-coreos
|
|
697
|
+
brand-couchdb
|
|
698
|
+
brand-couchsurfing
|
|
699
|
+
brand-cpp
|
|
700
|
+
brand-craft
|
|
701
|
+
brand-crunchbase
|
|
702
|
+
brand-css3
|
|
703
|
+
brand-ctemplar
|
|
704
|
+
brand-cucumber
|
|
705
|
+
brand-cupra
|
|
706
|
+
brand-cypress
|
|
707
|
+
brand-d3
|
|
708
|
+
brand-databricks
|
|
709
|
+
brand-days-counter
|
|
710
|
+
brand-dcos
|
|
711
|
+
brand-debian
|
|
712
|
+
brand-deezer
|
|
713
|
+
brand-deliveroo
|
|
714
|
+
brand-deno
|
|
715
|
+
brand-denodo
|
|
716
|
+
brand-deviantart
|
|
717
|
+
brand-digg
|
|
718
|
+
brand-dingtalk
|
|
719
|
+
brand-discord
|
|
720
|
+
brand-disney
|
|
721
|
+
brand-disqus
|
|
722
|
+
brand-django
|
|
723
|
+
brand-docker
|
|
724
|
+
brand-doctrine
|
|
725
|
+
brand-dolby-digital
|
|
726
|
+
brand-douban
|
|
727
|
+
brand-dribbble
|
|
728
|
+
brand-dropbox
|
|
729
|
+
brand-drops
|
|
730
|
+
brand-drupal
|
|
731
|
+
brand-edge
|
|
732
|
+
brand-elastic
|
|
733
|
+
brand-electronic-arts
|
|
734
|
+
brand-ember
|
|
735
|
+
brand-envato
|
|
736
|
+
brand-etsy
|
|
737
|
+
brand-evernote
|
|
738
|
+
brand-facebook
|
|
739
|
+
brand-feedly
|
|
740
|
+
brand-figma
|
|
741
|
+
brand-filezilla
|
|
742
|
+
brand-finder
|
|
743
|
+
brand-firebase
|
|
744
|
+
brand-firefox
|
|
745
|
+
brand-fiverr
|
|
746
|
+
brand-flickr
|
|
747
|
+
brand-flightradar24
|
|
748
|
+
brand-flipboard
|
|
749
|
+
brand-flutter
|
|
750
|
+
brand-fortnite
|
|
751
|
+
brand-foursquare
|
|
752
|
+
brand-framer
|
|
753
|
+
brand-framer-motion
|
|
754
|
+
brand-funimation
|
|
755
|
+
brand-gatsby
|
|
756
|
+
brand-git
|
|
757
|
+
brand-github
|
|
758
|
+
brand-github-copilot
|
|
759
|
+
brand-gitlab
|
|
760
|
+
brand-gmail
|
|
761
|
+
brand-golang
|
|
762
|
+
brand-google
|
|
763
|
+
brand-google-analytics
|
|
764
|
+
brand-google-big-query
|
|
765
|
+
brand-google-drive
|
|
766
|
+
brand-google-fit
|
|
767
|
+
brand-google-home
|
|
768
|
+
brand-google-maps
|
|
769
|
+
brand-google-one
|
|
770
|
+
brand-google-photos
|
|
771
|
+
brand-google-play
|
|
772
|
+
brand-google-podcasts
|
|
773
|
+
brand-grammarly
|
|
774
|
+
brand-graphql
|
|
775
|
+
brand-gravatar
|
|
776
|
+
brand-grindr
|
|
777
|
+
brand-guardian
|
|
778
|
+
brand-gumroad
|
|
779
|
+
brand-hackerrank
|
|
780
|
+
brand-hbo
|
|
781
|
+
brand-headlessui
|
|
782
|
+
brand-hexo
|
|
783
|
+
brand-hipchat
|
|
784
|
+
brand-html5
|
|
785
|
+
brand-inertia
|
|
786
|
+
brand-infakt
|
|
787
|
+
brand-instagram
|
|
788
|
+
brand-intercom
|
|
789
|
+
brand-itch
|
|
790
|
+
brand-javascript
|
|
791
|
+
brand-jira
|
|
792
|
+
brand-juejin
|
|
793
|
+
brand-kako-talk
|
|
794
|
+
brand-kbin
|
|
795
|
+
brand-kick
|
|
796
|
+
brand-kickstarter
|
|
797
|
+
brand-kotlin
|
|
798
|
+
brand-laravel
|
|
799
|
+
brand-lastfm
|
|
800
|
+
brand-leetcode
|
|
801
|
+
brand-letterboxd
|
|
802
|
+
brand-line
|
|
803
|
+
brand-linkedin
|
|
804
|
+
brand-linktree
|
|
805
|
+
brand-linqpad
|
|
806
|
+
brand-livewire
|
|
807
|
+
brand-loom
|
|
808
|
+
brand-mailgun
|
|
809
|
+
brand-mantine
|
|
810
|
+
brand-mastercard
|
|
811
|
+
brand-mastodon
|
|
812
|
+
brand-matrix
|
|
813
|
+
brand-mcdonalds
|
|
814
|
+
brand-medium
|
|
815
|
+
brand-meetup
|
|
816
|
+
brand-mercedes
|
|
817
|
+
brand-messenger
|
|
818
|
+
brand-meta
|
|
819
|
+
brand-metabrainz
|
|
820
|
+
brand-minecraft
|
|
821
|
+
brand-miniprogram
|
|
822
|
+
brand-mixpanel
|
|
823
|
+
brand-monday
|
|
824
|
+
brand-mongodb
|
|
825
|
+
brand-my-oppo
|
|
826
|
+
brand-mysql
|
|
827
|
+
brand-national-geographic
|
|
828
|
+
brand-nem
|
|
829
|
+
brand-netbeans
|
|
830
|
+
brand-netease-music
|
|
831
|
+
brand-netflix
|
|
832
|
+
brand-nexo
|
|
833
|
+
brand-nextcloud
|
|
834
|
+
brand-nextjs
|
|
835
|
+
brand-nodejs
|
|
836
|
+
brand-nord-vpn
|
|
837
|
+
brand-notion
|
|
838
|
+
brand-npm
|
|
839
|
+
brand-nuxt
|
|
840
|
+
brand-nytimes
|
|
841
|
+
brand-oauth
|
|
842
|
+
brand-office
|
|
843
|
+
brand-ok-ru
|
|
844
|
+
brand-onedrive
|
|
845
|
+
brand-onlyfans
|
|
846
|
+
brand-open-source
|
|
847
|
+
brand-openai
|
|
848
|
+
brand-openvpn
|
|
849
|
+
brand-opera
|
|
850
|
+
brand-pagekit
|
|
851
|
+
brand-parsinta
|
|
852
|
+
brand-patreon
|
|
853
|
+
brand-paypal
|
|
854
|
+
brand-paypay
|
|
855
|
+
brand-peanut
|
|
856
|
+
brand-pepsi
|
|
857
|
+
brand-php
|
|
858
|
+
brand-picsart
|
|
859
|
+
brand-pinterest
|
|
860
|
+
brand-planetscale
|
|
861
|
+
brand-pnpm
|
|
862
|
+
brand-pocket
|
|
863
|
+
brand-polymer
|
|
864
|
+
brand-powershell
|
|
865
|
+
brand-printables
|
|
866
|
+
brand-prisma
|
|
867
|
+
brand-producthunt
|
|
868
|
+
brand-pushbullet
|
|
869
|
+
brand-pushover
|
|
870
|
+
brand-python
|
|
871
|
+
brand-qq
|
|
872
|
+
brand-radix-ui
|
|
873
|
+
brand-react
|
|
874
|
+
brand-react-native
|
|
875
|
+
brand-reason
|
|
876
|
+
brand-reddit
|
|
877
|
+
brand-redhat
|
|
878
|
+
brand-redux
|
|
879
|
+
brand-revolut
|
|
880
|
+
brand-rumble
|
|
881
|
+
brand-rust
|
|
882
|
+
brand-safari
|
|
883
|
+
brand-samsungpass
|
|
884
|
+
brand-sass
|
|
885
|
+
brand-sentry
|
|
886
|
+
brand-sharik
|
|
887
|
+
brand-shazam
|
|
888
|
+
brand-shopee
|
|
889
|
+
brand-sketch
|
|
890
|
+
brand-skype
|
|
891
|
+
brand-slack
|
|
892
|
+
brand-snapchat
|
|
893
|
+
brand-snapseed
|
|
894
|
+
brand-snowflake
|
|
895
|
+
brand-socket-io
|
|
896
|
+
brand-solidjs
|
|
897
|
+
brand-soundcloud
|
|
898
|
+
brand-spacehey
|
|
899
|
+
brand-speedtest
|
|
900
|
+
brand-spotify
|
|
901
|
+
brand-stackoverflow
|
|
902
|
+
brand-stackshare
|
|
903
|
+
brand-steam
|
|
904
|
+
brand-stocktwits
|
|
905
|
+
brand-storj
|
|
906
|
+
brand-storybook
|
|
907
|
+
brand-storytel
|
|
908
|
+
brand-strava
|
|
909
|
+
brand-stripe
|
|
910
|
+
brand-sublime-text
|
|
911
|
+
brand-sugarizer
|
|
912
|
+
brand-supabase
|
|
913
|
+
brand-superhuman
|
|
914
|
+
brand-supernova
|
|
915
|
+
brand-surfshark
|
|
916
|
+
brand-svelte
|
|
917
|
+
brand-swift
|
|
918
|
+
brand-symfony
|
|
919
|
+
brand-tabler
|
|
920
|
+
brand-tabnine
|
|
921
|
+
brand-tailwind
|
|
922
|
+
brand-taobao
|
|
923
|
+
brand-teams
|
|
924
|
+
brand-ted
|
|
925
|
+
brand-telegram
|
|
926
|
+
brand-terraform
|
|
927
|
+
brand-tesla
|
|
928
|
+
brand-tether
|
|
929
|
+
brand-thingiverse
|
|
930
|
+
brand-threads
|
|
931
|
+
brand-threejs
|
|
932
|
+
brand-tidal
|
|
933
|
+
brand-tiktok
|
|
934
|
+
brand-tinder
|
|
935
|
+
brand-topbuzz
|
|
936
|
+
brand-torchain
|
|
937
|
+
brand-toyota
|
|
938
|
+
brand-trello
|
|
939
|
+
brand-tripadvisor
|
|
940
|
+
brand-tumblr
|
|
941
|
+
brand-twilio
|
|
942
|
+
brand-twitch
|
|
943
|
+
brand-twitter
|
|
944
|
+
brand-typescript
|
|
945
|
+
brand-uber
|
|
946
|
+
brand-ubuntu
|
|
947
|
+
brand-unity
|
|
948
|
+
brand-unsplash
|
|
949
|
+
brand-upwork
|
|
950
|
+
brand-valorant
|
|
951
|
+
brand-vercel
|
|
952
|
+
brand-vimeo
|
|
953
|
+
brand-vinted
|
|
954
|
+
brand-visa
|
|
955
|
+
brand-visual-studio
|
|
956
|
+
brand-vite
|
|
957
|
+
brand-vivaldi
|
|
958
|
+
brand-vk
|
|
959
|
+
brand-vlc
|
|
960
|
+
brand-volkswagen
|
|
961
|
+
brand-vsco
|
|
962
|
+
brand-vscode
|
|
963
|
+
brand-vue
|
|
964
|
+
brand-walmart
|
|
965
|
+
brand-waze
|
|
966
|
+
brand-webflow
|
|
967
|
+
brand-wechat
|
|
968
|
+
brand-weibo
|
|
969
|
+
brand-whatsapp
|
|
970
|
+
brand-wikipedia
|
|
971
|
+
brand-windows
|
|
972
|
+
brand-windy
|
|
973
|
+
brand-wish
|
|
974
|
+
brand-wix
|
|
975
|
+
brand-wordpress
|
|
976
|
+
brand-x
|
|
977
|
+
brand-xamarin
|
|
978
|
+
brand-xbox
|
|
979
|
+
brand-xdeep
|
|
980
|
+
brand-xing
|
|
981
|
+
brand-yahoo
|
|
982
|
+
brand-yandex
|
|
983
|
+
brand-yarn
|
|
984
|
+
brand-yatse
|
|
985
|
+
brand-ycombinator
|
|
986
|
+
brand-youtube
|
|
987
|
+
brand-youtube-kids
|
|
988
|
+
brand-zalando
|
|
989
|
+
brand-zapier
|
|
990
|
+
brand-zeit
|
|
991
|
+
brand-zhihu
|
|
992
|
+
brand-zoom
|
|
993
|
+
brand-zulip
|
|
994
|
+
brand-zwift
|
|
995
|
+
bread
|
|
996
|
+
bread-off
|
|
997
|
+
briefcase
|
|
998
|
+
briefcase-2
|
|
999
|
+
briefcase-off
|
|
1000
|
+
brightness
|
|
1001
|
+
brightness-2
|
|
1002
|
+
brightness-auto
|
|
1003
|
+
brightness-down
|
|
1004
|
+
brightness-half
|
|
1005
|
+
brightness-off
|
|
1006
|
+
brightness-up
|
|
1007
|
+
broadcast
|
|
1008
|
+
broadcast-off
|
|
1009
|
+
browser
|
|
1010
|
+
browser-check
|
|
1011
|
+
browser-maximize
|
|
1012
|
+
browser-minus
|
|
1013
|
+
browser-off
|
|
1014
|
+
browser-plus
|
|
1015
|
+
browser-share
|
|
1016
|
+
browser-x
|
|
1017
|
+
brush
|
|
1018
|
+
brush-off
|
|
1019
|
+
bubble
|
|
1020
|
+
bubble-minus
|
|
1021
|
+
bubble-plus
|
|
1022
|
+
bubble-tea
|
|
1023
|
+
bubble-tea-2
|
|
1024
|
+
bubble-text
|
|
1025
|
+
bubble-x
|
|
1026
|
+
bucket
|
|
1027
|
+
bucket-droplet
|
|
1028
|
+
bucket-off
|
|
1029
|
+
bug
|
|
1030
|
+
bug-off
|
|
1031
|
+
building
|
|
1032
|
+
building-airport
|
|
1033
|
+
building-arch
|
|
1034
|
+
building-bank
|
|
1035
|
+
building-bridge
|
|
1036
|
+
building-bridge-2
|
|
1037
|
+
building-broadcast-tower
|
|
1038
|
+
building-burj-al-arab
|
|
1039
|
+
building-carousel
|
|
1040
|
+
building-castle
|
|
1041
|
+
building-church
|
|
1042
|
+
building-circus
|
|
1043
|
+
building-cog
|
|
1044
|
+
building-community
|
|
1045
|
+
building-cottage
|
|
1046
|
+
building-estate
|
|
1047
|
+
building-factory
|
|
1048
|
+
building-factory-2
|
|
1049
|
+
building-fortress
|
|
1050
|
+
building-hospital
|
|
1051
|
+
building-lighthouse
|
|
1052
|
+
building-minus
|
|
1053
|
+
building-monument
|
|
1054
|
+
building-mosque
|
|
1055
|
+
building-off
|
|
1056
|
+
building-pavilion
|
|
1057
|
+
building-plus
|
|
1058
|
+
building-skyscraper
|
|
1059
|
+
building-stadium
|
|
1060
|
+
building-store
|
|
1061
|
+
building-tunnel
|
|
1062
|
+
building-warehouse
|
|
1063
|
+
building-wind-turbine
|
|
1064
|
+
buildings
|
|
1065
|
+
bulb
|
|
1066
|
+
bulb-off
|
|
1067
|
+
bulldozer
|
|
1068
|
+
burger
|
|
1069
|
+
bus
|
|
1070
|
+
bus-off
|
|
1071
|
+
bus-stop
|
|
1072
|
+
businessplan
|
|
1073
|
+
butterfly
|
|
1074
|
+
cactus
|
|
1075
|
+
cactus-off
|
|
1076
|
+
cake
|
|
1077
|
+
cake-off
|
|
1078
|
+
cake-roll
|
|
1079
|
+
calculator
|
|
1080
|
+
calculator-off
|
|
1081
|
+
calendar
|
|
1082
|
+
calendar-bolt
|
|
1083
|
+
calendar-cancel
|
|
1084
|
+
calendar-check
|
|
1085
|
+
calendar-clock
|
|
1086
|
+
calendar-code
|
|
1087
|
+
calendar-cog
|
|
1088
|
+
calendar-dollar
|
|
1089
|
+
calendar-dot
|
|
1090
|
+
calendar-down
|
|
1091
|
+
calendar-due
|
|
1092
|
+
calendar-event
|
|
1093
|
+
calendar-exclamation
|
|
1094
|
+
calendar-heart
|
|
1095
|
+
calendar-minus
|
|
1096
|
+
calendar-month
|
|
1097
|
+
calendar-off
|
|
1098
|
+
calendar-pause
|
|
1099
|
+
calendar-pin
|
|
1100
|
+
calendar-plus
|
|
1101
|
+
calendar-question
|
|
1102
|
+
calendar-repeat
|
|
1103
|
+
calendar-sad
|
|
1104
|
+
calendar-search
|
|
1105
|
+
calendar-share
|
|
1106
|
+
calendar-smile
|
|
1107
|
+
calendar-star
|
|
1108
|
+
calendar-stats
|
|
1109
|
+
calendar-time
|
|
1110
|
+
calendar-up
|
|
1111
|
+
calendar-user
|
|
1112
|
+
calendar-week
|
|
1113
|
+
calendar-x
|
|
1114
|
+
camera
|
|
1115
|
+
camera-ai
|
|
1116
|
+
camera-bitcoin
|
|
1117
|
+
camera-bolt
|
|
1118
|
+
camera-cancel
|
|
1119
|
+
camera-check
|
|
1120
|
+
camera-code
|
|
1121
|
+
camera-cog
|
|
1122
|
+
camera-dollar
|
|
1123
|
+
camera-down
|
|
1124
|
+
camera-exclamation
|
|
1125
|
+
camera-heart
|
|
1126
|
+
camera-minus
|
|
1127
|
+
camera-moon
|
|
1128
|
+
camera-off
|
|
1129
|
+
camera-pause
|
|
1130
|
+
camera-pin
|
|
1131
|
+
camera-plus
|
|
1132
|
+
camera-question
|
|
1133
|
+
camera-rotate
|
|
1134
|
+
camera-search
|
|
1135
|
+
camera-selfie
|
|
1136
|
+
camera-share
|
|
1137
|
+
camera-spark
|
|
1138
|
+
camera-star
|
|
1139
|
+
camera-up
|
|
1140
|
+
camera-x
|
|
1141
|
+
camper
|
|
1142
|
+
campfire
|
|
1143
|
+
canary
|
|
1144
|
+
cancel
|
|
1145
|
+
candle
|
|
1146
|
+
candy
|
|
1147
|
+
candy-off
|
|
1148
|
+
cane
|
|
1149
|
+
cannabis
|
|
1150
|
+
cap-projecting
|
|
1151
|
+
cap-rounded
|
|
1152
|
+
cap-straight
|
|
1153
|
+
capsule
|
|
1154
|
+
capsule-horizontal
|
|
1155
|
+
capture
|
|
1156
|
+
capture-off
|
|
1157
|
+
car
|
|
1158
|
+
car-4wd
|
|
1159
|
+
car-crane
|
|
1160
|
+
car-crash
|
|
1161
|
+
car-fan
|
|
1162
|
+
car-fan-1
|
|
1163
|
+
car-fan-2
|
|
1164
|
+
car-fan-3
|
|
1165
|
+
car-fan-auto
|
|
1166
|
+
car-garage
|
|
1167
|
+
car-off
|
|
1168
|
+
car-off-road
|
|
1169
|
+
car-suspension
|
|
1170
|
+
car-suv
|
|
1171
|
+
car-turbine
|
|
1172
|
+
carambola
|
|
1173
|
+
caravan
|
|
1174
|
+
cardboards
|
|
1175
|
+
cardboards-off
|
|
1176
|
+
cards
|
|
1177
|
+
caret-down
|
|
1178
|
+
caret-left
|
|
1179
|
+
caret-left-right
|
|
1180
|
+
caret-right
|
|
1181
|
+
caret-up
|
|
1182
|
+
caret-up-down
|
|
1183
|
+
carousel-horizontal
|
|
1184
|
+
carousel-vertical
|
|
1185
|
+
carrot
|
|
1186
|
+
carrot-off
|
|
1187
|
+
cash
|
|
1188
|
+
cash-banknote
|
|
1189
|
+
cash-banknote-edit
|
|
1190
|
+
cash-banknote-heart
|
|
1191
|
+
cash-banknote-minus
|
|
1192
|
+
cash-banknote-move
|
|
1193
|
+
cash-banknote-move-back
|
|
1194
|
+
cash-banknote-off
|
|
1195
|
+
cash-banknote-plus
|
|
1196
|
+
cash-edit
|
|
1197
|
+
cash-heart
|
|
1198
|
+
cash-minus
|
|
1199
|
+
cash-move
|
|
1200
|
+
cash-move-back
|
|
1201
|
+
cash-off
|
|
1202
|
+
cash-plus
|
|
1203
|
+
cash-register
|
|
1204
|
+
cast
|
|
1205
|
+
cast-off
|
|
1206
|
+
cat
|
|
1207
|
+
category
|
|
1208
|
+
category-2
|
|
1209
|
+
category-minus
|
|
1210
|
+
category-plus
|
|
1211
|
+
ce
|
|
1212
|
+
ce-off
|
|
1213
|
+
cell
|
|
1214
|
+
cell-signal-1
|
|
1215
|
+
cell-signal-2
|
|
1216
|
+
cell-signal-3
|
|
1217
|
+
cell-signal-4
|
|
1218
|
+
cell-signal-5
|
|
1219
|
+
cell-signal-off
|
|
1220
|
+
certificate
|
|
1221
|
+
certificate-2
|
|
1222
|
+
certificate-2-off
|
|
1223
|
+
certificate-off
|
|
1224
|
+
chair-director
|
|
1225
|
+
chalkboard
|
|
1226
|
+
chalkboard-off
|
|
1227
|
+
chalkboard-teacher
|
|
1228
|
+
charging-pile
|
|
1229
|
+
chart-arcs
|
|
1230
|
+
chart-arcs-3
|
|
1231
|
+
chart-area
|
|
1232
|
+
chart-area-line
|
|
1233
|
+
chart-arrows
|
|
1234
|
+
chart-arrows-vertical
|
|
1235
|
+
chart-bar
|
|
1236
|
+
chart-bar-off
|
|
1237
|
+
chart-bar-popular
|
|
1238
|
+
chart-bubble
|
|
1239
|
+
chart-candle
|
|
1240
|
+
chart-circles
|
|
1241
|
+
chart-cohort
|
|
1242
|
+
chart-column
|
|
1243
|
+
chart-covariate
|
|
1244
|
+
chart-donut
|
|
1245
|
+
chart-donut-2
|
|
1246
|
+
chart-donut-3
|
|
1247
|
+
chart-donut-4
|
|
1248
|
+
chart-dots
|
|
1249
|
+
chart-dots-2
|
|
1250
|
+
chart-dots-3
|
|
1251
|
+
chart-funnel
|
|
1252
|
+
chart-grid-dots
|
|
1253
|
+
chart-histogram
|
|
1254
|
+
chart-infographic
|
|
1255
|
+
chart-line
|
|
1256
|
+
chart-pie
|
|
1257
|
+
chart-pie-2
|
|
1258
|
+
chart-pie-3
|
|
1259
|
+
chart-pie-4
|
|
1260
|
+
chart-pie-off
|
|
1261
|
+
chart-ppf
|
|
1262
|
+
chart-radar
|
|
1263
|
+
chart-sankey
|
|
1264
|
+
chart-scatter
|
|
1265
|
+
chart-scatter-3d
|
|
1266
|
+
chart-treemap
|
|
1267
|
+
check
|
|
1268
|
+
checkbox
|
|
1269
|
+
checklist
|
|
1270
|
+
checks
|
|
1271
|
+
checkup-list
|
|
1272
|
+
cheese
|
|
1273
|
+
chef-hat
|
|
1274
|
+
chef-hat-off
|
|
1275
|
+
cherry
|
|
1276
|
+
chess
|
|
1277
|
+
chess-bishop
|
|
1278
|
+
chess-king
|
|
1279
|
+
chess-knight
|
|
1280
|
+
chess-queen
|
|
1281
|
+
chess-rook
|
|
1282
|
+
chevron-compact-down
|
|
1283
|
+
chevron-compact-left
|
|
1284
|
+
chevron-compact-right
|
|
1285
|
+
chevron-compact-up
|
|
1286
|
+
chevron-down
|
|
1287
|
+
chevron-down-left
|
|
1288
|
+
chevron-down-right
|
|
1289
|
+
chevron-left
|
|
1290
|
+
chevron-left-pipe
|
|
1291
|
+
chevron-right
|
|
1292
|
+
chevron-right-pipe
|
|
1293
|
+
chevron-up
|
|
1294
|
+
chevron-up-left
|
|
1295
|
+
chevron-up-right
|
|
1296
|
+
chevrons-down
|
|
1297
|
+
chevrons-down-left
|
|
1298
|
+
chevrons-down-right
|
|
1299
|
+
chevrons-left
|
|
1300
|
+
chevrons-right
|
|
1301
|
+
chevrons-up
|
|
1302
|
+
chevrons-up-left
|
|
1303
|
+
chevrons-up-right
|
|
1304
|
+
chisel
|
|
1305
|
+
christmas-ball
|
|
1306
|
+
christmas-tree
|
|
1307
|
+
christmas-tree-off
|
|
1308
|
+
circle
|
|
1309
|
+
circle-arrow-down
|
|
1310
|
+
circle-arrow-down-left
|
|
1311
|
+
circle-arrow-down-right
|
|
1312
|
+
circle-arrow-left
|
|
1313
|
+
circle-arrow-right
|
|
1314
|
+
circle-arrow-up
|
|
1315
|
+
circle-arrow-up-left
|
|
1316
|
+
circle-arrow-up-right
|
|
1317
|
+
circle-asterisk
|
|
1318
|
+
circle-caret-down
|
|
1319
|
+
circle-caret-left
|
|
1320
|
+
circle-caret-right
|
|
1321
|
+
circle-caret-up
|
|
1322
|
+
circle-check
|
|
1323
|
+
circle-chevron-down
|
|
1324
|
+
circle-chevron-left
|
|
1325
|
+
circle-chevron-right
|
|
1326
|
+
circle-chevron-up
|
|
1327
|
+
circle-chevrons-down
|
|
1328
|
+
circle-chevrons-left
|
|
1329
|
+
circle-chevrons-right
|
|
1330
|
+
circle-chevrons-up
|
|
1331
|
+
circle-dashed
|
|
1332
|
+
circle-dashed-check
|
|
1333
|
+
circle-dashed-letter-a
|
|
1334
|
+
circle-dashed-letter-b
|
|
1335
|
+
circle-dashed-letter-c
|
|
1336
|
+
circle-dashed-letter-d
|
|
1337
|
+
circle-dashed-letter-e
|
|
1338
|
+
circle-dashed-letter-f
|
|
1339
|
+
circle-dashed-letter-g
|
|
1340
|
+
circle-dashed-letter-h
|
|
1341
|
+
circle-dashed-letter-i
|
|
1342
|
+
circle-dashed-letter-j
|
|
1343
|
+
circle-dashed-letter-k
|
|
1344
|
+
circle-dashed-letter-l
|
|
1345
|
+
circle-dashed-letter-m
|
|
1346
|
+
circle-dashed-letter-n
|
|
1347
|
+
circle-dashed-letter-o
|
|
1348
|
+
circle-dashed-letter-p
|
|
1349
|
+
circle-dashed-letter-q
|
|
1350
|
+
circle-dashed-letter-r
|
|
1351
|
+
circle-dashed-letter-s
|
|
1352
|
+
circle-dashed-letter-t
|
|
1353
|
+
circle-dashed-letter-u
|
|
1354
|
+
circle-dashed-letter-v
|
|
1355
|
+
circle-dashed-letter-w
|
|
1356
|
+
circle-dashed-letter-x
|
|
1357
|
+
circle-dashed-letter-y
|
|
1358
|
+
circle-dashed-letter-z
|
|
1359
|
+
circle-dashed-minus
|
|
1360
|
+
circle-dashed-number-0
|
|
1361
|
+
circle-dashed-number-1
|
|
1362
|
+
circle-dashed-number-2
|
|
1363
|
+
circle-dashed-number-3
|
|
1364
|
+
circle-dashed-number-4
|
|
1365
|
+
circle-dashed-number-5
|
|
1366
|
+
circle-dashed-number-6
|
|
1367
|
+
circle-dashed-number-7
|
|
1368
|
+
circle-dashed-number-8
|
|
1369
|
+
circle-dashed-number-9
|
|
1370
|
+
circle-dashed-percentage
|
|
1371
|
+
circle-dashed-plus
|
|
1372
|
+
circle-dashed-x
|
|
1373
|
+
circle-dot
|
|
1374
|
+
circle-dotted
|
|
1375
|
+
circle-dotted-letter-a
|
|
1376
|
+
circle-dotted-letter-b
|
|
1377
|
+
circle-dotted-letter-c
|
|
1378
|
+
circle-dotted-letter-d
|
|
1379
|
+
circle-dotted-letter-e
|
|
1380
|
+
circle-dotted-letter-f
|
|
1381
|
+
circle-dotted-letter-g
|
|
1382
|
+
circle-dotted-letter-h
|
|
1383
|
+
circle-dotted-letter-i
|
|
1384
|
+
circle-dotted-letter-j
|
|
1385
|
+
circle-dotted-letter-k
|
|
1386
|
+
circle-dotted-letter-l
|
|
1387
|
+
circle-dotted-letter-m
|
|
1388
|
+
circle-dotted-letter-n
|
|
1389
|
+
circle-dotted-letter-o
|
|
1390
|
+
circle-dotted-letter-p
|
|
1391
|
+
circle-dotted-letter-q
|
|
1392
|
+
circle-dotted-letter-r
|
|
1393
|
+
circle-dotted-letter-s
|
|
1394
|
+
circle-dotted-letter-t
|
|
1395
|
+
circle-dotted-letter-u
|
|
1396
|
+
circle-dotted-letter-v
|
|
1397
|
+
circle-dotted-letter-w
|
|
1398
|
+
circle-dotted-letter-x
|
|
1399
|
+
circle-dotted-letter-y
|
|
1400
|
+
circle-dotted-letter-z
|
|
1401
|
+
circle-half
|
|
1402
|
+
circle-half-2
|
|
1403
|
+
circle-half-vertical
|
|
1404
|
+
circle-key
|
|
1405
|
+
circle-letter-a
|
|
1406
|
+
circle-letter-b
|
|
1407
|
+
circle-letter-c
|
|
1408
|
+
circle-letter-d
|
|
1409
|
+
circle-letter-e
|
|
1410
|
+
circle-letter-f
|
|
1411
|
+
circle-letter-g
|
|
1412
|
+
circle-letter-h
|
|
1413
|
+
circle-letter-i
|
|
1414
|
+
circle-letter-j
|
|
1415
|
+
circle-letter-k
|
|
1416
|
+
circle-letter-l
|
|
1417
|
+
circle-letter-m
|
|
1418
|
+
circle-letter-n
|
|
1419
|
+
circle-letter-o
|
|
1420
|
+
circle-letter-p
|
|
1421
|
+
circle-letter-q
|
|
1422
|
+
circle-letter-r
|
|
1423
|
+
circle-letter-s
|
|
1424
|
+
circle-letter-t
|
|
1425
|
+
circle-letter-u
|
|
1426
|
+
circle-letter-v
|
|
1427
|
+
circle-letter-w
|
|
1428
|
+
circle-letter-x
|
|
1429
|
+
circle-letter-y
|
|
1430
|
+
circle-letter-z
|
|
1431
|
+
circle-minus
|
|
1432
|
+
circle-minus-2
|
|
1433
|
+
circle-number-0
|
|
1434
|
+
circle-number-1
|
|
1435
|
+
circle-number-2
|
|
1436
|
+
circle-number-3
|
|
1437
|
+
circle-number-4
|
|
1438
|
+
circle-number-5
|
|
1439
|
+
circle-number-6
|
|
1440
|
+
circle-number-7
|
|
1441
|
+
circle-number-8
|
|
1442
|
+
circle-number-9
|
|
1443
|
+
circle-off
|
|
1444
|
+
circle-open-arrow-down
|
|
1445
|
+
circle-open-arrow-left
|
|
1446
|
+
circle-open-arrow-right
|
|
1447
|
+
circle-open-arrow-up
|
|
1448
|
+
circle-percentage
|
|
1449
|
+
circle-plus
|
|
1450
|
+
circle-plus-2
|
|
1451
|
+
circle-plus-minus
|
|
1452
|
+
circle-rectangle
|
|
1453
|
+
circle-rectangle-off
|
|
1454
|
+
circle-square
|
|
1455
|
+
circle-triangle
|
|
1456
|
+
circle-x
|
|
1457
|
+
circles
|
|
1458
|
+
circles-relation
|
|
1459
|
+
circuit-ammeter
|
|
1460
|
+
circuit-battery
|
|
1461
|
+
circuit-bulb
|
|
1462
|
+
circuit-capacitor
|
|
1463
|
+
circuit-capacitor-polarized
|
|
1464
|
+
circuit-cell
|
|
1465
|
+
circuit-cell-plus
|
|
1466
|
+
circuit-changeover
|
|
1467
|
+
circuit-diode
|
|
1468
|
+
circuit-diode-zener
|
|
1469
|
+
circuit-ground
|
|
1470
|
+
circuit-ground-digital
|
|
1471
|
+
circuit-inductor
|
|
1472
|
+
circuit-motor
|
|
1473
|
+
circuit-pushbutton
|
|
1474
|
+
circuit-resistor
|
|
1475
|
+
circuit-switch-closed
|
|
1476
|
+
circuit-switch-open
|
|
1477
|
+
circuit-voltmeter
|
|
1478
|
+
clear-all
|
|
1479
|
+
clear-formatting
|
|
1480
|
+
click
|
|
1481
|
+
cliff-jumping
|
|
1482
|
+
clipboard
|
|
1483
|
+
clipboard-check
|
|
1484
|
+
clipboard-copy
|
|
1485
|
+
clipboard-data
|
|
1486
|
+
clipboard-heart
|
|
1487
|
+
clipboard-list
|
|
1488
|
+
clipboard-off
|
|
1489
|
+
clipboard-plus
|
|
1490
|
+
clipboard-search
|
|
1491
|
+
clipboard-smile
|
|
1492
|
+
clipboard-text
|
|
1493
|
+
clipboard-typography
|
|
1494
|
+
clipboard-x
|
|
1495
|
+
clock
|
|
1496
|
+
clock-12
|
|
1497
|
+
clock-2
|
|
1498
|
+
clock-24
|
|
1499
|
+
clock-bitcoin
|
|
1500
|
+
clock-bolt
|
|
1501
|
+
clock-cancel
|
|
1502
|
+
clock-check
|
|
1503
|
+
clock-code
|
|
1504
|
+
clock-cog
|
|
1505
|
+
clock-dollar
|
|
1506
|
+
clock-down
|
|
1507
|
+
clock-edit
|
|
1508
|
+
clock-exclamation
|
|
1509
|
+
clock-heart
|
|
1510
|
+
clock-hour-1
|
|
1511
|
+
clock-hour-10
|
|
1512
|
+
clock-hour-11
|
|
1513
|
+
clock-hour-12
|
|
1514
|
+
clock-hour-2
|
|
1515
|
+
clock-hour-3
|
|
1516
|
+
clock-hour-4
|
|
1517
|
+
clock-hour-5
|
|
1518
|
+
clock-hour-6
|
|
1519
|
+
clock-hour-7
|
|
1520
|
+
clock-hour-8
|
|
1521
|
+
clock-hour-9
|
|
1522
|
+
clock-minus
|
|
1523
|
+
clock-off
|
|
1524
|
+
clock-pause
|
|
1525
|
+
clock-pin
|
|
1526
|
+
clock-play
|
|
1527
|
+
clock-plus
|
|
1528
|
+
clock-question
|
|
1529
|
+
clock-record
|
|
1530
|
+
clock-search
|
|
1531
|
+
clock-share
|
|
1532
|
+
clock-shield
|
|
1533
|
+
clock-star
|
|
1534
|
+
clock-stop
|
|
1535
|
+
clock-up
|
|
1536
|
+
clock-x
|
|
1537
|
+
clothes-rack
|
|
1538
|
+
clothes-rack-off
|
|
1539
|
+
cloud
|
|
1540
|
+
cloud-bitcoin
|
|
1541
|
+
cloud-bolt
|
|
1542
|
+
cloud-cancel
|
|
1543
|
+
cloud-check
|
|
1544
|
+
cloud-code
|
|
1545
|
+
cloud-cog
|
|
1546
|
+
cloud-computing
|
|
1547
|
+
cloud-data-connection
|
|
1548
|
+
cloud-dollar
|
|
1549
|
+
cloud-down
|
|
1550
|
+
cloud-download
|
|
1551
|
+
cloud-exclamation
|
|
1552
|
+
cloud-fog
|
|
1553
|
+
cloud-heart
|
|
1554
|
+
cloud-lock
|
|
1555
|
+
cloud-lock-open
|
|
1556
|
+
cloud-minus
|
|
1557
|
+
cloud-network
|
|
1558
|
+
cloud-off
|
|
1559
|
+
cloud-pause
|
|
1560
|
+
cloud-pin
|
|
1561
|
+
cloud-plus
|
|
1562
|
+
cloud-question
|
|
1563
|
+
cloud-rain
|
|
1564
|
+
cloud-search
|
|
1565
|
+
cloud-share
|
|
1566
|
+
cloud-snow
|
|
1567
|
+
cloud-star
|
|
1568
|
+
cloud-storm
|
|
1569
|
+
cloud-up
|
|
1570
|
+
cloud-upload
|
|
1571
|
+
cloud-x
|
|
1572
|
+
clover
|
|
1573
|
+
clover-2
|
|
1574
|
+
clubs
|
|
1575
|
+
code
|
|
1576
|
+
code-asterisk
|
|
1577
|
+
code-circle
|
|
1578
|
+
code-circle-2
|
|
1579
|
+
code-dots
|
|
1580
|
+
code-minus
|
|
1581
|
+
code-off
|
|
1582
|
+
code-plus
|
|
1583
|
+
code-variable
|
|
1584
|
+
code-variable-minus
|
|
1585
|
+
code-variable-plus
|
|
1586
|
+
codeblock
|
|
1587
|
+
coffee
|
|
1588
|
+
coffee-off
|
|
1589
|
+
coffin
|
|
1590
|
+
coin
|
|
1591
|
+
coin-bitcoin
|
|
1592
|
+
coin-euro
|
|
1593
|
+
coin-monero
|
|
1594
|
+
coin-off
|
|
1595
|
+
coin-pound
|
|
1596
|
+
coin-rupee
|
|
1597
|
+
coin-taka
|
|
1598
|
+
coin-yen
|
|
1599
|
+
coin-yuan
|
|
1600
|
+
coins
|
|
1601
|
+
color-filter
|
|
1602
|
+
color-picker
|
|
1603
|
+
color-picker-off
|
|
1604
|
+
color-swatch
|
|
1605
|
+
color-swatch-off
|
|
1606
|
+
column-insert-left
|
|
1607
|
+
column-insert-right
|
|
1608
|
+
column-remove
|
|
1609
|
+
columns
|
|
1610
|
+
columns-1
|
|
1611
|
+
columns-2
|
|
1612
|
+
columns-3
|
|
1613
|
+
columns-off
|
|
1614
|
+
comet
|
|
1615
|
+
command
|
|
1616
|
+
command-off
|
|
1617
|
+
compass
|
|
1618
|
+
compass-off
|
|
1619
|
+
components
|
|
1620
|
+
components-off
|
|
1621
|
+
cone
|
|
1622
|
+
cone-2
|
|
1623
|
+
cone-off
|
|
1624
|
+
cone-plus
|
|
1625
|
+
confetti
|
|
1626
|
+
confetti-off
|
|
1627
|
+
confucius
|
|
1628
|
+
congruent-to
|
|
1629
|
+
connection
|
|
1630
|
+
container
|
|
1631
|
+
container-off
|
|
1632
|
+
contract
|
|
1633
|
+
contrast
|
|
1634
|
+
contrast-2
|
|
1635
|
+
contrast-2-off
|
|
1636
|
+
contrast-off
|
|
1637
|
+
cooker
|
|
1638
|
+
cookie
|
|
1639
|
+
cookie-man
|
|
1640
|
+
cookie-off
|
|
1641
|
+
copy
|
|
1642
|
+
copy-check
|
|
1643
|
+
copy-minus
|
|
1644
|
+
copy-off
|
|
1645
|
+
copy-plus
|
|
1646
|
+
copy-x
|
|
1647
|
+
copyleft
|
|
1648
|
+
copyleft-off
|
|
1649
|
+
copyright
|
|
1650
|
+
copyright-off
|
|
1651
|
+
corner-down-left
|
|
1652
|
+
corner-down-left-double
|
|
1653
|
+
corner-down-right
|
|
1654
|
+
corner-down-right-double
|
|
1655
|
+
corner-left-down
|
|
1656
|
+
corner-left-down-double
|
|
1657
|
+
corner-left-up
|
|
1658
|
+
corner-left-up-double
|
|
1659
|
+
corner-right-down
|
|
1660
|
+
corner-right-down-double
|
|
1661
|
+
corner-right-up
|
|
1662
|
+
corner-right-up-double
|
|
1663
|
+
corner-up-left
|
|
1664
|
+
corner-up-left-double
|
|
1665
|
+
corner-up-right
|
|
1666
|
+
corner-up-right-double
|
|
1667
|
+
cpu
|
|
1668
|
+
cpu-2
|
|
1669
|
+
cpu-off
|
|
1670
|
+
crane
|
|
1671
|
+
crane-off
|
|
1672
|
+
creative-commons
|
|
1673
|
+
creative-commons-by
|
|
1674
|
+
creative-commons-nc
|
|
1675
|
+
creative-commons-nd
|
|
1676
|
+
creative-commons-off
|
|
1677
|
+
creative-commons-sa
|
|
1678
|
+
creative-commons-zero
|
|
1679
|
+
credit-card
|
|
1680
|
+
credit-card-hand
|
|
1681
|
+
credit-card-off
|
|
1682
|
+
credit-card-pay
|
|
1683
|
+
credit-card-refund
|
|
1684
|
+
credits
|
|
1685
|
+
cricket
|
|
1686
|
+
crop
|
|
1687
|
+
crop-1-1
|
|
1688
|
+
crop-16-9
|
|
1689
|
+
crop-3-2
|
|
1690
|
+
crop-5-4
|
|
1691
|
+
crop-7-5
|
|
1692
|
+
crop-landscape
|
|
1693
|
+
crop-portrait
|
|
1694
|
+
cross
|
|
1695
|
+
cross-off
|
|
1696
|
+
crosshair
|
|
1697
|
+
crown
|
|
1698
|
+
crown-off
|
|
1699
|
+
crutches
|
|
1700
|
+
crutches-off
|
|
1701
|
+
crystal-ball
|
|
1702
|
+
csv
|
|
1703
|
+
cube
|
|
1704
|
+
cube-3d-sphere
|
|
1705
|
+
cube-3d-sphere-off
|
|
1706
|
+
cube-off
|
|
1707
|
+
cube-plus
|
|
1708
|
+
cube-send
|
|
1709
|
+
cube-spark
|
|
1710
|
+
cube-unfolded
|
|
1711
|
+
cup
|
|
1712
|
+
cup-off
|
|
1713
|
+
curling
|
|
1714
|
+
curly-loop
|
|
1715
|
+
currency
|
|
1716
|
+
currency-afghani
|
|
1717
|
+
currency-bahraini
|
|
1718
|
+
currency-baht
|
|
1719
|
+
currency-bitcoin
|
|
1720
|
+
currency-cent
|
|
1721
|
+
currency-dinar
|
|
1722
|
+
currency-dirham
|
|
1723
|
+
currency-dogecoin
|
|
1724
|
+
currency-dollar
|
|
1725
|
+
currency-dollar-australian
|
|
1726
|
+
currency-dollar-brunei
|
|
1727
|
+
currency-dollar-canadian
|
|
1728
|
+
currency-dollar-guyanese
|
|
1729
|
+
currency-dollar-off
|
|
1730
|
+
currency-dollar-singapore
|
|
1731
|
+
currency-dollar-zimbabwean
|
|
1732
|
+
currency-dong
|
|
1733
|
+
currency-dram
|
|
1734
|
+
currency-ethereum
|
|
1735
|
+
currency-euro
|
|
1736
|
+
currency-euro-off
|
|
1737
|
+
currency-florin
|
|
1738
|
+
currency-forint
|
|
1739
|
+
currency-frank
|
|
1740
|
+
currency-guarani
|
|
1741
|
+
currency-hryvnia
|
|
1742
|
+
currency-iranian-rial
|
|
1743
|
+
currency-kip
|
|
1744
|
+
currency-krone-czech
|
|
1745
|
+
currency-krone-danish
|
|
1746
|
+
currency-krone-swedish
|
|
1747
|
+
currency-lari
|
|
1748
|
+
currency-leu
|
|
1749
|
+
currency-lira
|
|
1750
|
+
currency-litecoin
|
|
1751
|
+
currency-lyd
|
|
1752
|
+
currency-manat
|
|
1753
|
+
currency-monero
|
|
1754
|
+
currency-naira
|
|
1755
|
+
currency-nano
|
|
1756
|
+
currency-off
|
|
1757
|
+
currency-paanga
|
|
1758
|
+
currency-peso
|
|
1759
|
+
currency-pound
|
|
1760
|
+
currency-pound-off
|
|
1761
|
+
currency-quetzal
|
|
1762
|
+
currency-real
|
|
1763
|
+
currency-renminbi
|
|
1764
|
+
currency-ripple
|
|
1765
|
+
currency-riyal
|
|
1766
|
+
currency-rubel
|
|
1767
|
+
currency-rufiyaa
|
|
1768
|
+
currency-rupee
|
|
1769
|
+
currency-rupee-nepalese
|
|
1770
|
+
currency-shekel
|
|
1771
|
+
currency-solana
|
|
1772
|
+
currency-som
|
|
1773
|
+
currency-taka
|
|
1774
|
+
currency-tenge
|
|
1775
|
+
currency-tugrik
|
|
1776
|
+
currency-won
|
|
1777
|
+
currency-xrp
|
|
1778
|
+
currency-yen
|
|
1779
|
+
currency-yen-off
|
|
1780
|
+
currency-yuan
|
|
1781
|
+
currency-zloty
|
|
1782
|
+
current-location
|
|
1783
|
+
current-location-off
|
|
1784
|
+
cursor-off
|
|
1785
|
+
cursor-text
|
|
1786
|
+
cut
|
|
1787
|
+
cylinder
|
|
1788
|
+
cylinder-off
|
|
1789
|
+
cylinder-plus
|
|
1790
|
+
dashboard
|
|
1791
|
+
dashboard-off
|
|
1792
|
+
database
|
|
1793
|
+
database-cog
|
|
1794
|
+
database-dollar
|
|
1795
|
+
database-edit
|
|
1796
|
+
database-exclamation
|
|
1797
|
+
database-export
|
|
1798
|
+
database-heart
|
|
1799
|
+
database-import
|
|
1800
|
+
database-leak
|
|
1801
|
+
database-minus
|
|
1802
|
+
database-off
|
|
1803
|
+
database-plus
|
|
1804
|
+
database-search
|
|
1805
|
+
database-share
|
|
1806
|
+
database-smile
|
|
1807
|
+
database-star
|
|
1808
|
+
database-x
|
|
1809
|
+
deaf
|
|
1810
|
+
decimal
|
|
1811
|
+
deer
|
|
1812
|
+
delta
|
|
1813
|
+
dental
|
|
1814
|
+
dental-broken
|
|
1815
|
+
dental-off
|
|
1816
|
+
deselect
|
|
1817
|
+
desk
|
|
1818
|
+
details
|
|
1819
|
+
details-off
|
|
1820
|
+
device-3d-camera
|
|
1821
|
+
device-3d-lens
|
|
1822
|
+
device-airpods
|
|
1823
|
+
device-airpods-case
|
|
1824
|
+
device-airtag
|
|
1825
|
+
device-analytics
|
|
1826
|
+
device-audio-tape
|
|
1827
|
+
device-camera-phone
|
|
1828
|
+
device-cctv
|
|
1829
|
+
device-cctv-off
|
|
1830
|
+
device-computer-camera
|
|
1831
|
+
device-computer-camera-off
|
|
1832
|
+
device-desktop
|
|
1833
|
+
device-desktop-analytics
|
|
1834
|
+
device-desktop-bolt
|
|
1835
|
+
device-desktop-cancel
|
|
1836
|
+
device-desktop-check
|
|
1837
|
+
device-desktop-code
|
|
1838
|
+
device-desktop-cog
|
|
1839
|
+
device-desktop-dollar
|
|
1840
|
+
device-desktop-down
|
|
1841
|
+
device-desktop-exclamation
|
|
1842
|
+
device-desktop-heart
|
|
1843
|
+
device-desktop-minus
|
|
1844
|
+
device-desktop-off
|
|
1845
|
+
device-desktop-pause
|
|
1846
|
+
device-desktop-pin
|
|
1847
|
+
device-desktop-plus
|
|
1848
|
+
device-desktop-question
|
|
1849
|
+
device-desktop-search
|
|
1850
|
+
device-desktop-share
|
|
1851
|
+
device-desktop-star
|
|
1852
|
+
device-desktop-up
|
|
1853
|
+
device-desktop-x
|
|
1854
|
+
device-floppy
|
|
1855
|
+
device-gamepad
|
|
1856
|
+
device-gamepad-2
|
|
1857
|
+
device-gamepad-3
|
|
1858
|
+
device-heart-monitor
|
|
1859
|
+
device-imac
|
|
1860
|
+
device-imac-bolt
|
|
1861
|
+
device-imac-cancel
|
|
1862
|
+
device-imac-check
|
|
1863
|
+
device-imac-code
|
|
1864
|
+
device-imac-cog
|
|
1865
|
+
device-imac-dollar
|
|
1866
|
+
device-imac-down
|
|
1867
|
+
device-imac-exclamation
|
|
1868
|
+
device-imac-heart
|
|
1869
|
+
device-imac-minus
|
|
1870
|
+
device-imac-off
|
|
1871
|
+
device-imac-pause
|
|
1872
|
+
device-imac-pin
|
|
1873
|
+
device-imac-plus
|
|
1874
|
+
device-imac-question
|
|
1875
|
+
device-imac-search
|
|
1876
|
+
device-imac-share
|
|
1877
|
+
device-imac-star
|
|
1878
|
+
device-imac-up
|
|
1879
|
+
device-imac-x
|
|
1880
|
+
device-ipad
|
|
1881
|
+
device-ipad-bolt
|
|
1882
|
+
device-ipad-cancel
|
|
1883
|
+
device-ipad-check
|
|
1884
|
+
device-ipad-code
|
|
1885
|
+
device-ipad-cog
|
|
1886
|
+
device-ipad-dollar
|
|
1887
|
+
device-ipad-down
|
|
1888
|
+
device-ipad-exclamation
|
|
1889
|
+
device-ipad-heart
|
|
1890
|
+
device-ipad-horizontal
|
|
1891
|
+
device-ipad-horizontal-bolt
|
|
1892
|
+
device-ipad-horizontal-cancel
|
|
1893
|
+
device-ipad-horizontal-check
|
|
1894
|
+
device-ipad-horizontal-code
|
|
1895
|
+
device-ipad-horizontal-cog
|
|
1896
|
+
device-ipad-horizontal-dollar
|
|
1897
|
+
device-ipad-horizontal-down
|
|
1898
|
+
device-ipad-horizontal-exclamation
|
|
1899
|
+
device-ipad-horizontal-heart
|
|
1900
|
+
device-ipad-horizontal-minus
|
|
1901
|
+
device-ipad-horizontal-off
|
|
1902
|
+
device-ipad-horizontal-pause
|
|
1903
|
+
device-ipad-horizontal-pin
|
|
1904
|
+
device-ipad-horizontal-plus
|
|
1905
|
+
device-ipad-horizontal-question
|
|
1906
|
+
device-ipad-horizontal-search
|
|
1907
|
+
device-ipad-horizontal-share
|
|
1908
|
+
device-ipad-horizontal-star
|
|
1909
|
+
device-ipad-horizontal-up
|
|
1910
|
+
device-ipad-horizontal-x
|
|
1911
|
+
device-ipad-minus
|
|
1912
|
+
device-ipad-off
|
|
1913
|
+
device-ipad-pause
|
|
1914
|
+
device-ipad-pin
|
|
1915
|
+
device-ipad-plus
|
|
1916
|
+
device-ipad-question
|
|
1917
|
+
device-ipad-search
|
|
1918
|
+
device-ipad-share
|
|
1919
|
+
device-ipad-star
|
|
1920
|
+
device-ipad-up
|
|
1921
|
+
device-ipad-x
|
|
1922
|
+
device-landline-phone
|
|
1923
|
+
device-laptop
|
|
1924
|
+
device-laptop-off
|
|
1925
|
+
device-mobile
|
|
1926
|
+
device-mobile-bolt
|
|
1927
|
+
device-mobile-cancel
|
|
1928
|
+
device-mobile-charging
|
|
1929
|
+
device-mobile-check
|
|
1930
|
+
device-mobile-code
|
|
1931
|
+
device-mobile-cog
|
|
1932
|
+
device-mobile-dollar
|
|
1933
|
+
device-mobile-down
|
|
1934
|
+
device-mobile-exclamation
|
|
1935
|
+
device-mobile-heart
|
|
1936
|
+
device-mobile-message
|
|
1937
|
+
device-mobile-minus
|
|
1938
|
+
device-mobile-off
|
|
1939
|
+
device-mobile-pause
|
|
1940
|
+
device-mobile-pin
|
|
1941
|
+
device-mobile-plus
|
|
1942
|
+
device-mobile-question
|
|
1943
|
+
device-mobile-rotated
|
|
1944
|
+
device-mobile-search
|
|
1945
|
+
device-mobile-share
|
|
1946
|
+
device-mobile-star
|
|
1947
|
+
device-mobile-up
|
|
1948
|
+
device-mobile-vibration
|
|
1949
|
+
device-mobile-x
|
|
1950
|
+
device-nintendo
|
|
1951
|
+
device-nintendo-off
|
|
1952
|
+
device-projector
|
|
1953
|
+
device-remote
|
|
1954
|
+
device-screen
|
|
1955
|
+
device-sd-card
|
|
1956
|
+
device-sim
|
|
1957
|
+
device-sim-1
|
|
1958
|
+
device-sim-2
|
|
1959
|
+
device-sim-3
|
|
1960
|
+
device-speaker
|
|
1961
|
+
device-speaker-off
|
|
1962
|
+
device-tablet
|
|
1963
|
+
device-tablet-bolt
|
|
1964
|
+
device-tablet-cancel
|
|
1965
|
+
device-tablet-check
|
|
1966
|
+
device-tablet-code
|
|
1967
|
+
device-tablet-cog
|
|
1968
|
+
device-tablet-dollar
|
|
1969
|
+
device-tablet-down
|
|
1970
|
+
device-tablet-exclamation
|
|
1971
|
+
device-tablet-heart
|
|
1972
|
+
device-tablet-minus
|
|
1973
|
+
device-tablet-off
|
|
1974
|
+
device-tablet-pause
|
|
1975
|
+
device-tablet-pin
|
|
1976
|
+
device-tablet-plus
|
|
1977
|
+
device-tablet-question
|
|
1978
|
+
device-tablet-search
|
|
1979
|
+
device-tablet-share
|
|
1980
|
+
device-tablet-star
|
|
1981
|
+
device-tablet-up
|
|
1982
|
+
device-tablet-x
|
|
1983
|
+
device-tv
|
|
1984
|
+
device-tv-off
|
|
1985
|
+
device-tv-old
|
|
1986
|
+
device-unknown
|
|
1987
|
+
device-usb
|
|
1988
|
+
device-vision-pro
|
|
1989
|
+
device-watch
|
|
1990
|
+
device-watch-bolt
|
|
1991
|
+
device-watch-cancel
|
|
1992
|
+
device-watch-check
|
|
1993
|
+
device-watch-code
|
|
1994
|
+
device-watch-cog
|
|
1995
|
+
device-watch-dollar
|
|
1996
|
+
device-watch-down
|
|
1997
|
+
device-watch-exclamation
|
|
1998
|
+
device-watch-heart
|
|
1999
|
+
device-watch-minus
|
|
2000
|
+
device-watch-off
|
|
2001
|
+
device-watch-pause
|
|
2002
|
+
device-watch-pin
|
|
2003
|
+
device-watch-plus
|
|
2004
|
+
device-watch-question
|
|
2005
|
+
device-watch-search
|
|
2006
|
+
device-watch-share
|
|
2007
|
+
device-watch-star
|
|
2008
|
+
device-watch-stats
|
|
2009
|
+
device-watch-stats-2
|
|
2010
|
+
device-watch-up
|
|
2011
|
+
device-watch-x
|
|
2012
|
+
devices
|
|
2013
|
+
devices-2
|
|
2014
|
+
devices-bolt
|
|
2015
|
+
devices-cancel
|
|
2016
|
+
devices-check
|
|
2017
|
+
devices-code
|
|
2018
|
+
devices-cog
|
|
2019
|
+
devices-dollar
|
|
2020
|
+
devices-down
|
|
2021
|
+
devices-exclamation
|
|
2022
|
+
devices-heart
|
|
2023
|
+
devices-minus
|
|
2024
|
+
devices-off
|
|
2025
|
+
devices-pause
|
|
2026
|
+
devices-pc
|
|
2027
|
+
devices-pc-off
|
|
2028
|
+
devices-pin
|
|
2029
|
+
devices-plus
|
|
2030
|
+
devices-question
|
|
2031
|
+
devices-search
|
|
2032
|
+
devices-share
|
|
2033
|
+
devices-star
|
|
2034
|
+
devices-up
|
|
2035
|
+
devices-x
|
|
2036
|
+
diabolo
|
|
2037
|
+
diabolo-off
|
|
2038
|
+
diabolo-plus
|
|
2039
|
+
dialpad
|
|
2040
|
+
dialpad-off
|
|
2041
|
+
diamond
|
|
2042
|
+
diamond-off
|
|
2043
|
+
diamonds
|
|
2044
|
+
diaper
|
|
2045
|
+
dice
|
|
2046
|
+
dice-1
|
|
2047
|
+
dice-2
|
|
2048
|
+
dice-3
|
|
2049
|
+
dice-4
|
|
2050
|
+
dice-5
|
|
2051
|
+
dice-6
|
|
2052
|
+
dimensions
|
|
2053
|
+
direction
|
|
2054
|
+
direction-arrows
|
|
2055
|
+
direction-horizontal
|
|
2056
|
+
direction-sign
|
|
2057
|
+
direction-sign-off
|
|
2058
|
+
directions
|
|
2059
|
+
directions-off
|
|
2060
|
+
disabled
|
|
2061
|
+
disabled-2
|
|
2062
|
+
disabled-off
|
|
2063
|
+
disc
|
|
2064
|
+
disc-golf
|
|
2065
|
+
disc-off
|
|
2066
|
+
discount
|
|
2067
|
+
discount-off
|
|
2068
|
+
divide
|
|
2069
|
+
dna
|
|
2070
|
+
dna-2
|
|
2071
|
+
dna-2-off
|
|
2072
|
+
dna-off
|
|
2073
|
+
dog
|
|
2074
|
+
dog-bowl
|
|
2075
|
+
door
|
|
2076
|
+
door-enter
|
|
2077
|
+
door-exit
|
|
2078
|
+
door-off
|
|
2079
|
+
dots
|
|
2080
|
+
dots-circle-horizontal
|
|
2081
|
+
dots-diagonal
|
|
2082
|
+
dots-diagonal-2
|
|
2083
|
+
dots-vertical
|
|
2084
|
+
download
|
|
2085
|
+
download-off
|
|
2086
|
+
drag-drop
|
|
2087
|
+
drag-drop-2
|
|
2088
|
+
drone
|
|
2089
|
+
drone-off
|
|
2090
|
+
drop-circle
|
|
2091
|
+
droplet
|
|
2092
|
+
droplet-bolt
|
|
2093
|
+
droplet-cancel
|
|
2094
|
+
droplet-check
|
|
2095
|
+
droplet-code
|
|
2096
|
+
droplet-cog
|
|
2097
|
+
droplet-dollar
|
|
2098
|
+
droplet-down
|
|
2099
|
+
droplet-exclamation
|
|
2100
|
+
droplet-half
|
|
2101
|
+
droplet-half-2
|
|
2102
|
+
droplet-heart
|
|
2103
|
+
droplet-minus
|
|
2104
|
+
droplet-off
|
|
2105
|
+
droplet-pause
|
|
2106
|
+
droplet-pin
|
|
2107
|
+
droplet-plus
|
|
2108
|
+
droplet-question
|
|
2109
|
+
droplet-search
|
|
2110
|
+
droplet-share
|
|
2111
|
+
droplet-star
|
|
2112
|
+
droplet-up
|
|
2113
|
+
droplet-x
|
|
2114
|
+
droplets
|
|
2115
|
+
dual-screen
|
|
2116
|
+
dumpling
|
|
2117
|
+
e-passport
|
|
2118
|
+
ear
|
|
2119
|
+
ear-off
|
|
2120
|
+
ear-scan
|
|
2121
|
+
ease-in
|
|
2122
|
+
ease-in-control-point
|
|
2123
|
+
ease-in-out
|
|
2124
|
+
ease-in-out-control-points
|
|
2125
|
+
ease-out
|
|
2126
|
+
ease-out-control-point
|
|
2127
|
+
edit
|
|
2128
|
+
edit-circle
|
|
2129
|
+
edit-circle-off
|
|
2130
|
+
edit-off
|
|
2131
|
+
egg
|
|
2132
|
+
egg-cracked
|
|
2133
|
+
egg-fried
|
|
2134
|
+
egg-off
|
|
2135
|
+
eggs
|
|
2136
|
+
elevator
|
|
2137
|
+
elevator-off
|
|
2138
|
+
emergency-bed
|
|
2139
|
+
empathize
|
|
2140
|
+
empathize-off
|
|
2141
|
+
emphasis
|
|
2142
|
+
engine
|
|
2143
|
+
engine-off
|
|
2144
|
+
equal
|
|
2145
|
+
equal-double
|
|
2146
|
+
equal-not
|
|
2147
|
+
eraser
|
|
2148
|
+
eraser-off
|
|
2149
|
+
error-404
|
|
2150
|
+
error-404-off
|
|
2151
|
+
escalator
|
|
2152
|
+
escalator-down
|
|
2153
|
+
escalator-up
|
|
2154
|
+
exchange
|
|
2155
|
+
exchange-off
|
|
2156
|
+
exclamation-circle
|
|
2157
|
+
exclamation-mark
|
|
2158
|
+
exclamation-mark-off
|
|
2159
|
+
explicit
|
|
2160
|
+
explicit-off
|
|
2161
|
+
exposure
|
|
2162
|
+
exposure-0
|
|
2163
|
+
exposure-minus-1
|
|
2164
|
+
exposure-minus-2
|
|
2165
|
+
exposure-off
|
|
2166
|
+
exposure-plus-1
|
|
2167
|
+
exposure-plus-2
|
|
2168
|
+
external-link
|
|
2169
|
+
external-link-off
|
|
2170
|
+
eye
|
|
2171
|
+
eye-bitcoin
|
|
2172
|
+
eye-bolt
|
|
2173
|
+
eye-cancel
|
|
2174
|
+
eye-check
|
|
2175
|
+
eye-closed
|
|
2176
|
+
eye-code
|
|
2177
|
+
eye-cog
|
|
2178
|
+
eye-discount
|
|
2179
|
+
eye-dollar
|
|
2180
|
+
eye-dotted
|
|
2181
|
+
eye-down
|
|
2182
|
+
eye-edit
|
|
2183
|
+
eye-exclamation
|
|
2184
|
+
eye-heart
|
|
2185
|
+
eye-minus
|
|
2186
|
+
eye-off
|
|
2187
|
+
eye-pause
|
|
2188
|
+
eye-pin
|
|
2189
|
+
eye-plus
|
|
2190
|
+
eye-question
|
|
2191
|
+
eye-search
|
|
2192
|
+
eye-share
|
|
2193
|
+
eye-spark
|
|
2194
|
+
eye-star
|
|
2195
|
+
eye-table
|
|
2196
|
+
eye-up
|
|
2197
|
+
eye-x
|
|
2198
|
+
eyeglass
|
|
2199
|
+
eyeglass-2
|
|
2200
|
+
eyeglass-off
|
|
2201
|
+
face-id
|
|
2202
|
+
face-id-error
|
|
2203
|
+
face-mask
|
|
2204
|
+
face-mask-off
|
|
2205
|
+
fall
|
|
2206
|
+
favicon
|
|
2207
|
+
feather
|
|
2208
|
+
feather-off
|
|
2209
|
+
fence
|
|
2210
|
+
fence-off
|
|
2211
|
+
ferry
|
|
2212
|
+
fidget-spinner
|
|
2213
|
+
file
|
|
2214
|
+
file-3d
|
|
2215
|
+
file-ai
|
|
2216
|
+
file-alert
|
|
2217
|
+
file-analytics
|
|
2218
|
+
file-arrow-left
|
|
2219
|
+
file-arrow-right
|
|
2220
|
+
file-barcode
|
|
2221
|
+
file-bitcoin
|
|
2222
|
+
file-broken
|
|
2223
|
+
file-certificate
|
|
2224
|
+
file-chart
|
|
2225
|
+
file-check
|
|
2226
|
+
file-code
|
|
2227
|
+
file-code-2
|
|
2228
|
+
file-cv
|
|
2229
|
+
file-database
|
|
2230
|
+
file-delta
|
|
2231
|
+
file-description
|
|
2232
|
+
file-diff
|
|
2233
|
+
file-digit
|
|
2234
|
+
file-dislike
|
|
2235
|
+
file-dollar
|
|
2236
|
+
file-dots
|
|
2237
|
+
file-download
|
|
2238
|
+
file-euro
|
|
2239
|
+
file-excel
|
|
2240
|
+
file-export
|
|
2241
|
+
file-function
|
|
2242
|
+
file-horizontal
|
|
2243
|
+
file-import
|
|
2244
|
+
file-infinity
|
|
2245
|
+
file-info
|
|
2246
|
+
file-invoice
|
|
2247
|
+
file-isr
|
|
2248
|
+
file-lambda
|
|
2249
|
+
file-like
|
|
2250
|
+
file-minus
|
|
2251
|
+
file-music
|
|
2252
|
+
file-neutral
|
|
2253
|
+
file-off
|
|
2254
|
+
file-orientation
|
|
2255
|
+
file-pencil
|
|
2256
|
+
file-percent
|
|
2257
|
+
file-phone
|
|
2258
|
+
file-plus
|
|
2259
|
+
file-power
|
|
2260
|
+
file-report
|
|
2261
|
+
file-rss
|
|
2262
|
+
file-sad
|
|
2263
|
+
file-scissors
|
|
2264
|
+
file-search
|
|
2265
|
+
file-settings
|
|
2266
|
+
file-shredder
|
|
2267
|
+
file-signal
|
|
2268
|
+
file-smile
|
|
2269
|
+
file-spark
|
|
2270
|
+
file-spreadsheet
|
|
2271
|
+
file-stack
|
|
2272
|
+
file-star
|
|
2273
|
+
file-symlink
|
|
2274
|
+
file-text
|
|
2275
|
+
file-text-ai
|
|
2276
|
+
file-text-shield
|
|
2277
|
+
file-text-spark
|
|
2278
|
+
file-time
|
|
2279
|
+
file-type-bmp
|
|
2280
|
+
file-type-css
|
|
2281
|
+
file-type-csv
|
|
2282
|
+
file-type-doc
|
|
2283
|
+
file-type-docx
|
|
2284
|
+
file-type-html
|
|
2285
|
+
file-type-jpg
|
|
2286
|
+
file-type-js
|
|
2287
|
+
file-type-jsx
|
|
2288
|
+
file-type-pdf
|
|
2289
|
+
file-type-php
|
|
2290
|
+
file-type-png
|
|
2291
|
+
file-type-ppt
|
|
2292
|
+
file-type-rs
|
|
2293
|
+
file-type-sql
|
|
2294
|
+
file-type-svg
|
|
2295
|
+
file-type-ts
|
|
2296
|
+
file-type-tsx
|
|
2297
|
+
file-type-txt
|
|
2298
|
+
file-type-vue
|
|
2299
|
+
file-type-xls
|
|
2300
|
+
file-type-xml
|
|
2301
|
+
file-type-zip
|
|
2302
|
+
file-typography
|
|
2303
|
+
file-unknown
|
|
2304
|
+
file-upload
|
|
2305
|
+
file-vector
|
|
2306
|
+
file-word
|
|
2307
|
+
file-x
|
|
2308
|
+
file-zip
|
|
2309
|
+
files
|
|
2310
|
+
files-off
|
|
2311
|
+
filter
|
|
2312
|
+
filter-2
|
|
2313
|
+
filter-2-bolt
|
|
2314
|
+
filter-2-cancel
|
|
2315
|
+
filter-2-check
|
|
2316
|
+
filter-2-code
|
|
2317
|
+
filter-2-cog
|
|
2318
|
+
filter-2-discount
|
|
2319
|
+
filter-2-dollar
|
|
2320
|
+
filter-2-down
|
|
2321
|
+
filter-2-edit
|
|
2322
|
+
filter-2-exclamation
|
|
2323
|
+
filter-2-minus
|
|
2324
|
+
filter-2-pause
|
|
2325
|
+
filter-2-pin
|
|
2326
|
+
filter-2-plus
|
|
2327
|
+
filter-2-question
|
|
2328
|
+
filter-2-search
|
|
2329
|
+
filter-2-share
|
|
2330
|
+
filter-2-spark
|
|
2331
|
+
filter-2-up
|
|
2332
|
+
filter-2-x
|
|
2333
|
+
filter-bolt
|
|
2334
|
+
filter-cancel
|
|
2335
|
+
filter-check
|
|
2336
|
+
filter-code
|
|
2337
|
+
filter-cog
|
|
2338
|
+
filter-discount
|
|
2339
|
+
filter-dollar
|
|
2340
|
+
filter-down
|
|
2341
|
+
filter-edit
|
|
2342
|
+
filter-exclamation
|
|
2343
|
+
filter-heart
|
|
2344
|
+
filter-minus
|
|
2345
|
+
filter-off
|
|
2346
|
+
filter-pause
|
|
2347
|
+
filter-pin
|
|
2348
|
+
filter-plus
|
|
2349
|
+
filter-question
|
|
2350
|
+
filter-search
|
|
2351
|
+
filter-share
|
|
2352
|
+
filter-spark
|
|
2353
|
+
filter-star
|
|
2354
|
+
filter-up
|
|
2355
|
+
filter-x
|
|
2356
|
+
filters
|
|
2357
|
+
fingerprint
|
|
2358
|
+
fingerprint-off
|
|
2359
|
+
fingerprint-scan
|
|
2360
|
+
fire-extinguisher
|
|
2361
|
+
fire-hydrant
|
|
2362
|
+
fire-hydrant-off
|
|
2363
|
+
firetruck
|
|
2364
|
+
firewall-check
|
|
2365
|
+
firewall-flame
|
|
2366
|
+
first-aid-kit
|
|
2367
|
+
first-aid-kit-off
|
|
2368
|
+
fish
|
|
2369
|
+
fish-bone
|
|
2370
|
+
fish-christianity
|
|
2371
|
+
fish-hook
|
|
2372
|
+
fish-hook-off
|
|
2373
|
+
fish-off
|
|
2374
|
+
flag
|
|
2375
|
+
flag-2
|
|
2376
|
+
flag-2-off
|
|
2377
|
+
flag-3
|
|
2378
|
+
flag-bitcoin
|
|
2379
|
+
flag-bolt
|
|
2380
|
+
flag-cancel
|
|
2381
|
+
flag-check
|
|
2382
|
+
flag-code
|
|
2383
|
+
flag-cog
|
|
2384
|
+
flag-discount
|
|
2385
|
+
flag-dollar
|
|
2386
|
+
flag-down
|
|
2387
|
+
flag-exclamation
|
|
2388
|
+
flag-heart
|
|
2389
|
+
flag-minus
|
|
2390
|
+
flag-off
|
|
2391
|
+
flag-pause
|
|
2392
|
+
flag-pin
|
|
2393
|
+
flag-plus
|
|
2394
|
+
flag-question
|
|
2395
|
+
flag-search
|
|
2396
|
+
flag-share
|
|
2397
|
+
flag-spark
|
|
2398
|
+
flag-star
|
|
2399
|
+
flag-up
|
|
2400
|
+
flag-x
|
|
2401
|
+
flame
|
|
2402
|
+
flame-off
|
|
2403
|
+
flare
|
|
2404
|
+
flask
|
|
2405
|
+
flask-2
|
|
2406
|
+
flask-2-off
|
|
2407
|
+
flask-off
|
|
2408
|
+
flip-flops
|
|
2409
|
+
flip-horizontal
|
|
2410
|
+
flip-vertical
|
|
2411
|
+
float-center
|
|
2412
|
+
float-left
|
|
2413
|
+
float-none
|
|
2414
|
+
float-right
|
|
2415
|
+
flower
|
|
2416
|
+
flower-off
|
|
2417
|
+
focus
|
|
2418
|
+
focus-2
|
|
2419
|
+
focus-auto
|
|
2420
|
+
focus-centered
|
|
2421
|
+
fold
|
|
2422
|
+
fold-down
|
|
2423
|
+
fold-up
|
|
2424
|
+
folder
|
|
2425
|
+
folder-bolt
|
|
2426
|
+
folder-cancel
|
|
2427
|
+
folder-check
|
|
2428
|
+
folder-code
|
|
2429
|
+
folder-cog
|
|
2430
|
+
folder-dollar
|
|
2431
|
+
folder-down
|
|
2432
|
+
folder-exclamation
|
|
2433
|
+
folder-heart
|
|
2434
|
+
folder-minus
|
|
2435
|
+
folder-off
|
|
2436
|
+
folder-open
|
|
2437
|
+
folder-pause
|
|
2438
|
+
folder-pin
|
|
2439
|
+
folder-plus
|
|
2440
|
+
folder-question
|
|
2441
|
+
folder-root
|
|
2442
|
+
folder-search
|
|
2443
|
+
folder-share
|
|
2444
|
+
folder-star
|
|
2445
|
+
folder-symlink
|
|
2446
|
+
folder-up
|
|
2447
|
+
folder-x
|
|
2448
|
+
folders
|
|
2449
|
+
folders-off
|
|
2450
|
+
forbid
|
|
2451
|
+
forbid-2
|
|
2452
|
+
forklift
|
|
2453
|
+
forms
|
|
2454
|
+
fountain
|
|
2455
|
+
fountain-off
|
|
2456
|
+
frame
|
|
2457
|
+
frame-off
|
|
2458
|
+
free-rights
|
|
2459
|
+
freeze-column
|
|
2460
|
+
freeze-row
|
|
2461
|
+
freeze-row-column
|
|
2462
|
+
fridge
|
|
2463
|
+
fridge-off
|
|
2464
|
+
friends
|
|
2465
|
+
friends-off
|
|
2466
|
+
frustum
|
|
2467
|
+
frustum-off
|
|
2468
|
+
frustum-plus
|
|
2469
|
+
function
|
|
2470
|
+
function-off
|
|
2471
|
+
galaxy
|
|
2472
|
+
garden-cart
|
|
2473
|
+
garden-cart-off
|
|
2474
|
+
gas-station
|
|
2475
|
+
gas-station-off
|
|
2476
|
+
gauge
|
|
2477
|
+
gauge-off
|
|
2478
|
+
gavel
|
|
2479
|
+
gender-agender
|
|
2480
|
+
gender-androgyne
|
|
2481
|
+
gender-bigender
|
|
2482
|
+
gender-demiboy
|
|
2483
|
+
gender-demigirl
|
|
2484
|
+
gender-epicene
|
|
2485
|
+
gender-female
|
|
2486
|
+
gender-femme
|
|
2487
|
+
gender-genderfluid
|
|
2488
|
+
gender-genderless
|
|
2489
|
+
gender-genderqueer
|
|
2490
|
+
gender-hermaphrodite
|
|
2491
|
+
gender-intergender
|
|
2492
|
+
gender-male
|
|
2493
|
+
gender-neutrois
|
|
2494
|
+
gender-third
|
|
2495
|
+
gender-transgender
|
|
2496
|
+
gender-trasvesti
|
|
2497
|
+
geometry
|
|
2498
|
+
ghost
|
|
2499
|
+
ghost-2
|
|
2500
|
+
ghost-3
|
|
2501
|
+
ghost-off
|
|
2502
|
+
gif
|
|
2503
|
+
gift
|
|
2504
|
+
gift-card
|
|
2505
|
+
gift-off
|
|
2506
|
+
git-branch
|
|
2507
|
+
git-branch-deleted
|
|
2508
|
+
git-cherry-pick
|
|
2509
|
+
git-commit
|
|
2510
|
+
git-compare
|
|
2511
|
+
git-fork
|
|
2512
|
+
git-merge
|
|
2513
|
+
git-pull-request
|
|
2514
|
+
git-pull-request-closed
|
|
2515
|
+
git-pull-request-draft
|
|
2516
|
+
gizmo
|
|
2517
|
+
glass
|
|
2518
|
+
glass-champagne
|
|
2519
|
+
glass-cocktail
|
|
2520
|
+
glass-full
|
|
2521
|
+
glass-gin
|
|
2522
|
+
glass-off
|
|
2523
|
+
globe
|
|
2524
|
+
globe-off
|
|
2525
|
+
go-game
|
|
2526
|
+
golf
|
|
2527
|
+
golf-off
|
|
2528
|
+
gps
|
|
2529
|
+
gradienter
|
|
2530
|
+
grain
|
|
2531
|
+
graph
|
|
2532
|
+
graph-off
|
|
2533
|
+
grave
|
|
2534
|
+
grave-2
|
|
2535
|
+
grid-3x3
|
|
2536
|
+
grid-4x4
|
|
2537
|
+
grid-dots
|
|
2538
|
+
grid-goldenratio
|
|
2539
|
+
grid-pattern
|
|
2540
|
+
grid-scan
|
|
2541
|
+
grill
|
|
2542
|
+
grill-fork
|
|
2543
|
+
grill-off
|
|
2544
|
+
grill-spatula
|
|
2545
|
+
grip-horizontal
|
|
2546
|
+
grip-vertical
|
|
2547
|
+
growth
|
|
2548
|
+
guitar-pick
|
|
2549
|
+
gymnastics
|
|
2550
|
+
h-1
|
|
2551
|
+
h-2
|
|
2552
|
+
h-3
|
|
2553
|
+
h-4
|
|
2554
|
+
h-5
|
|
2555
|
+
h-6
|
|
2556
|
+
hammer
|
|
2557
|
+
hammer-off
|
|
2558
|
+
hand-click
|
|
2559
|
+
hand-click-off
|
|
2560
|
+
hand-finger
|
|
2561
|
+
hand-finger-down
|
|
2562
|
+
hand-finger-left
|
|
2563
|
+
hand-finger-off
|
|
2564
|
+
hand-finger-right
|
|
2565
|
+
hand-grab
|
|
2566
|
+
hand-little-finger
|
|
2567
|
+
hand-love-you
|
|
2568
|
+
hand-middle-finger
|
|
2569
|
+
hand-move
|
|
2570
|
+
hand-off
|
|
2571
|
+
hand-ring-finger
|
|
2572
|
+
hand-sanitizer
|
|
2573
|
+
hand-stop
|
|
2574
|
+
hand-three-fingers
|
|
2575
|
+
hand-two-fingers
|
|
2576
|
+
hanger
|
|
2577
|
+
hanger-2
|
|
2578
|
+
hanger-off
|
|
2579
|
+
hash
|
|
2580
|
+
haze
|
|
2581
|
+
haze-moon
|
|
2582
|
+
hdr
|
|
2583
|
+
heading
|
|
2584
|
+
heading-off
|
|
2585
|
+
headphones
|
|
2586
|
+
headphones-off
|
|
2587
|
+
headset
|
|
2588
|
+
headset-off
|
|
2589
|
+
health-recognition
|
|
2590
|
+
heart
|
|
2591
|
+
heart-bitcoin
|
|
2592
|
+
heart-bolt
|
|
2593
|
+
heart-broken
|
|
2594
|
+
heart-cancel
|
|
2595
|
+
heart-check
|
|
2596
|
+
heart-code
|
|
2597
|
+
heart-cog
|
|
2598
|
+
heart-discount
|
|
2599
|
+
heart-dollar
|
|
2600
|
+
heart-down
|
|
2601
|
+
heart-exclamation
|
|
2602
|
+
heart-handshake
|
|
2603
|
+
heart-minus
|
|
2604
|
+
heart-off
|
|
2605
|
+
heart-pause
|
|
2606
|
+
heart-pin
|
|
2607
|
+
heart-plus
|
|
2608
|
+
heart-question
|
|
2609
|
+
heart-rate-monitor
|
|
2610
|
+
heart-search
|
|
2611
|
+
heart-share
|
|
2612
|
+
heart-spark
|
|
2613
|
+
heart-star
|
|
2614
|
+
heart-up
|
|
2615
|
+
heart-x
|
|
2616
|
+
heartbeat
|
|
2617
|
+
hearts
|
|
2618
|
+
hearts-off
|
|
2619
|
+
helicopter
|
|
2620
|
+
helicopter-landing
|
|
2621
|
+
helmet
|
|
2622
|
+
helmet-off
|
|
2623
|
+
help
|
|
2624
|
+
help-circle
|
|
2625
|
+
help-hexagon
|
|
2626
|
+
help-octagon
|
|
2627
|
+
help-off
|
|
2628
|
+
help-small
|
|
2629
|
+
help-square
|
|
2630
|
+
help-square-rounded
|
|
2631
|
+
help-triangle
|
|
2632
|
+
hemisphere
|
|
2633
|
+
hemisphere-off
|
|
2634
|
+
hemisphere-plus
|
|
2635
|
+
hexagon
|
|
2636
|
+
hexagon-3d
|
|
2637
|
+
hexagon-asterisk
|
|
2638
|
+
hexagon-letter-a
|
|
2639
|
+
hexagon-letter-b
|
|
2640
|
+
hexagon-letter-c
|
|
2641
|
+
hexagon-letter-d
|
|
2642
|
+
hexagon-letter-e
|
|
2643
|
+
hexagon-letter-f
|
|
2644
|
+
hexagon-letter-g
|
|
2645
|
+
hexagon-letter-h
|
|
2646
|
+
hexagon-letter-i
|
|
2647
|
+
hexagon-letter-j
|
|
2648
|
+
hexagon-letter-k
|
|
2649
|
+
hexagon-letter-l
|
|
2650
|
+
hexagon-letter-m
|
|
2651
|
+
hexagon-letter-n
|
|
2652
|
+
hexagon-letter-o
|
|
2653
|
+
hexagon-letter-p
|
|
2654
|
+
hexagon-letter-q
|
|
2655
|
+
hexagon-letter-r
|
|
2656
|
+
hexagon-letter-s
|
|
2657
|
+
hexagon-letter-t
|
|
2658
|
+
hexagon-letter-u
|
|
2659
|
+
hexagon-letter-v
|
|
2660
|
+
hexagon-letter-w
|
|
2661
|
+
hexagon-letter-x
|
|
2662
|
+
hexagon-letter-y
|
|
2663
|
+
hexagon-letter-z
|
|
2664
|
+
hexagon-minus
|
|
2665
|
+
hexagon-minus-2
|
|
2666
|
+
hexagon-number-0
|
|
2667
|
+
hexagon-number-1
|
|
2668
|
+
hexagon-number-2
|
|
2669
|
+
hexagon-number-3
|
|
2670
|
+
hexagon-number-4
|
|
2671
|
+
hexagon-number-5
|
|
2672
|
+
hexagon-number-6
|
|
2673
|
+
hexagon-number-7
|
|
2674
|
+
hexagon-number-8
|
|
2675
|
+
hexagon-number-9
|
|
2676
|
+
hexagon-off
|
|
2677
|
+
hexagon-plus
|
|
2678
|
+
hexagon-plus-2
|
|
2679
|
+
hexagonal-prism
|
|
2680
|
+
hexagonal-prism-off
|
|
2681
|
+
hexagonal-prism-plus
|
|
2682
|
+
hexagonal-pyramid
|
|
2683
|
+
hexagonal-pyramid-off
|
|
2684
|
+
hexagonal-pyramid-plus
|
|
2685
|
+
hexagons
|
|
2686
|
+
hexagons-off
|
|
2687
|
+
hierarchy
|
|
2688
|
+
hierarchy-2
|
|
2689
|
+
hierarchy-3
|
|
2690
|
+
hierarchy-off
|
|
2691
|
+
highlight
|
|
2692
|
+
highlight-off
|
|
2693
|
+
history
|
|
2694
|
+
history-off
|
|
2695
|
+
history-toggle
|
|
2696
|
+
home
|
|
2697
|
+
home-2
|
|
2698
|
+
home-bitcoin
|
|
2699
|
+
home-bolt
|
|
2700
|
+
home-cancel
|
|
2701
|
+
home-check
|
|
2702
|
+
home-cog
|
|
2703
|
+
home-dollar
|
|
2704
|
+
home-dot
|
|
2705
|
+
home-down
|
|
2706
|
+
home-eco
|
|
2707
|
+
home-edit
|
|
2708
|
+
home-exclamation
|
|
2709
|
+
home-hand
|
|
2710
|
+
home-heart
|
|
2711
|
+
home-infinity
|
|
2712
|
+
home-link
|
|
2713
|
+
home-lock
|
|
2714
|
+
home-minus
|
|
2715
|
+
home-move
|
|
2716
|
+
home-off
|
|
2717
|
+
home-plus
|
|
2718
|
+
home-question
|
|
2719
|
+
home-ribbon
|
|
2720
|
+
home-search
|
|
2721
|
+
home-share
|
|
2722
|
+
home-shield
|
|
2723
|
+
home-signal
|
|
2724
|
+
home-spark
|
|
2725
|
+
home-star
|
|
2726
|
+
home-stats
|
|
2727
|
+
home-up
|
|
2728
|
+
home-x
|
|
2729
|
+
horse
|
|
2730
|
+
horse-toy
|
|
2731
|
+
horseshoe
|
|
2732
|
+
hospital
|
|
2733
|
+
hospital-circle
|
|
2734
|
+
hotel-service
|
|
2735
|
+
hourglass
|
|
2736
|
+
hourglass-empty
|
|
2737
|
+
hourglass-high
|
|
2738
|
+
hourglass-low
|
|
2739
|
+
hourglass-off
|
|
2740
|
+
hours-12
|
|
2741
|
+
hours-24
|
|
2742
|
+
html
|
|
2743
|
+
http-connect
|
|
2744
|
+
http-connect-off
|
|
2745
|
+
http-delete
|
|
2746
|
+
http-delete-off
|
|
2747
|
+
http-get
|
|
2748
|
+
http-get-off
|
|
2749
|
+
http-head
|
|
2750
|
+
http-head-off
|
|
2751
|
+
http-options
|
|
2752
|
+
http-options-off
|
|
2753
|
+
http-patch
|
|
2754
|
+
http-patch-off
|
|
2755
|
+
http-post
|
|
2756
|
+
http-post-off
|
|
2757
|
+
http-put
|
|
2758
|
+
http-put-off
|
|
2759
|
+
http-que
|
|
2760
|
+
http-que-off
|
|
2761
|
+
http-trace
|
|
2762
|
+
http-trace-off
|
|
2763
|
+
ice-cream
|
|
2764
|
+
ice-cream-2
|
|
2765
|
+
ice-cream-off
|
|
2766
|
+
ice-skating
|
|
2767
|
+
iceberg
|
|
2768
|
+
icons
|
|
2769
|
+
icons-off
|
|
2770
|
+
id
|
|
2771
|
+
id-badge
|
|
2772
|
+
id-badge-2
|
|
2773
|
+
id-badge-off
|
|
2774
|
+
id-off
|
|
2775
|
+
ikosaedr
|
|
2776
|
+
image-generation
|
|
2777
|
+
image-in-picture
|
|
2778
|
+
inbox
|
|
2779
|
+
inbox-off
|
|
2780
|
+
indent-decrease
|
|
2781
|
+
indent-increase
|
|
2782
|
+
infinity
|
|
2783
|
+
infinity-off
|
|
2784
|
+
info-circle
|
|
2785
|
+
info-hexagon
|
|
2786
|
+
info-octagon
|
|
2787
|
+
info-small
|
|
2788
|
+
info-square
|
|
2789
|
+
info-square-rounded
|
|
2790
|
+
info-triangle
|
|
2791
|
+
inner-shadow-bottom
|
|
2792
|
+
inner-shadow-bottom-left
|
|
2793
|
+
inner-shadow-bottom-right
|
|
2794
|
+
inner-shadow-left
|
|
2795
|
+
inner-shadow-right
|
|
2796
|
+
inner-shadow-top
|
|
2797
|
+
inner-shadow-top-left
|
|
2798
|
+
inner-shadow-top-right
|
|
2799
|
+
input-ai
|
|
2800
|
+
input-check
|
|
2801
|
+
input-search
|
|
2802
|
+
input-spark
|
|
2803
|
+
input-x
|
|
2804
|
+
invoice
|
|
2805
|
+
ironing
|
|
2806
|
+
ironing-1
|
|
2807
|
+
ironing-2
|
|
2808
|
+
ironing-3
|
|
2809
|
+
ironing-off
|
|
2810
|
+
ironing-steam
|
|
2811
|
+
ironing-steam-off
|
|
2812
|
+
irregular-polyhedron
|
|
2813
|
+
irregular-polyhedron-off
|
|
2814
|
+
irregular-polyhedron-plus
|
|
2815
|
+
italic
|
|
2816
|
+
jacket
|
|
2817
|
+
jetpack
|
|
2818
|
+
jetski
|
|
2819
|
+
jewish-star
|
|
2820
|
+
join-bevel
|
|
2821
|
+
join-round
|
|
2822
|
+
join-straight
|
|
2823
|
+
joker
|
|
2824
|
+
jpg
|
|
2825
|
+
json
|
|
2826
|
+
jump-rope
|
|
2827
|
+
karate
|
|
2828
|
+
kayak
|
|
2829
|
+
kerning
|
|
2830
|
+
key
|
|
2831
|
+
key-off
|
|
2832
|
+
keyboard
|
|
2833
|
+
keyboard-hide
|
|
2834
|
+
keyboard-off
|
|
2835
|
+
keyboard-show
|
|
2836
|
+
keyframe
|
|
2837
|
+
keyframe-align-center
|
|
2838
|
+
keyframe-align-horizontal
|
|
2839
|
+
keyframe-align-vertical
|
|
2840
|
+
keyframes
|
|
2841
|
+
label
|
|
2842
|
+
label-important
|
|
2843
|
+
label-off
|
|
2844
|
+
ladder
|
|
2845
|
+
ladder-off
|
|
2846
|
+
ladle
|
|
2847
|
+
lambda
|
|
2848
|
+
lamp
|
|
2849
|
+
lamp-2
|
|
2850
|
+
lamp-off
|
|
2851
|
+
lane
|
|
2852
|
+
language
|
|
2853
|
+
language-hiragana
|
|
2854
|
+
language-katakana
|
|
2855
|
+
language-off
|
|
2856
|
+
lasso
|
|
2857
|
+
lasso-off
|
|
2858
|
+
lasso-polygon
|
|
2859
|
+
laurel-wreath
|
|
2860
|
+
laurel-wreath-1
|
|
2861
|
+
laurel-wreath-2
|
|
2862
|
+
laurel-wreath-3
|
|
2863
|
+
layers-difference
|
|
2864
|
+
layers-intersect
|
|
2865
|
+
layers-intersect-2
|
|
2866
|
+
layers-linked
|
|
2867
|
+
layers-off
|
|
2868
|
+
layers-selected
|
|
2869
|
+
layers-selected-bottom
|
|
2870
|
+
layers-subtract
|
|
2871
|
+
layers-union
|
|
2872
|
+
layout
|
|
2873
|
+
layout-2
|
|
2874
|
+
layout-align-bottom
|
|
2875
|
+
layout-align-center
|
|
2876
|
+
layout-align-left
|
|
2877
|
+
layout-align-middle
|
|
2878
|
+
layout-align-right
|
|
2879
|
+
layout-align-top
|
|
2880
|
+
layout-board
|
|
2881
|
+
layout-board-split
|
|
2882
|
+
layout-bottombar
|
|
2883
|
+
layout-bottombar-collapse
|
|
2884
|
+
layout-bottombar-expand
|
|
2885
|
+
layout-bottombar-inactive
|
|
2886
|
+
layout-cards
|
|
2887
|
+
layout-collage
|
|
2888
|
+
layout-columns
|
|
2889
|
+
layout-dashboard
|
|
2890
|
+
layout-distribute-horizontal
|
|
2891
|
+
layout-distribute-vertical
|
|
2892
|
+
layout-grid
|
|
2893
|
+
layout-grid-add
|
|
2894
|
+
layout-grid-remove
|
|
2895
|
+
layout-kanban
|
|
2896
|
+
layout-list
|
|
2897
|
+
layout-navbar
|
|
2898
|
+
layout-navbar-collapse
|
|
2899
|
+
layout-navbar-expand
|
|
2900
|
+
layout-navbar-inactive
|
|
2901
|
+
layout-off
|
|
2902
|
+
layout-rows
|
|
2903
|
+
layout-sidebar
|
|
2904
|
+
layout-sidebar-inactive
|
|
2905
|
+
layout-sidebar-left-collapse
|
|
2906
|
+
layout-sidebar-left-expand
|
|
2907
|
+
layout-sidebar-right
|
|
2908
|
+
layout-sidebar-right-collapse
|
|
2909
|
+
layout-sidebar-right-expand
|
|
2910
|
+
layout-sidebar-right-inactive
|
|
2911
|
+
leaf
|
|
2912
|
+
leaf-2
|
|
2913
|
+
leaf-off
|
|
2914
|
+
lego
|
|
2915
|
+
lego-off
|
|
2916
|
+
lemon
|
|
2917
|
+
lemon-2
|
|
2918
|
+
letter-a
|
|
2919
|
+
letter-a-small
|
|
2920
|
+
letter-b
|
|
2921
|
+
letter-b-small
|
|
2922
|
+
letter-c
|
|
2923
|
+
letter-c-small
|
|
2924
|
+
letter-case
|
|
2925
|
+
letter-case-lower
|
|
2926
|
+
letter-case-toggle
|
|
2927
|
+
letter-case-upper
|
|
2928
|
+
letter-d
|
|
2929
|
+
letter-d-small
|
|
2930
|
+
letter-e
|
|
2931
|
+
letter-e-small
|
|
2932
|
+
letter-f
|
|
2933
|
+
letter-f-small
|
|
2934
|
+
letter-g
|
|
2935
|
+
letter-g-small
|
|
2936
|
+
letter-h
|
|
2937
|
+
letter-h-small
|
|
2938
|
+
letter-i
|
|
2939
|
+
letter-i-small
|
|
2940
|
+
letter-j
|
|
2941
|
+
letter-j-small
|
|
2942
|
+
letter-k
|
|
2943
|
+
letter-k-small
|
|
2944
|
+
letter-l
|
|
2945
|
+
letter-l-small
|
|
2946
|
+
letter-m
|
|
2947
|
+
letter-m-small
|
|
2948
|
+
letter-n
|
|
2949
|
+
letter-n-small
|
|
2950
|
+
letter-o
|
|
2951
|
+
letter-o-small
|
|
2952
|
+
letter-p
|
|
2953
|
+
letter-p-small
|
|
2954
|
+
letter-q
|
|
2955
|
+
letter-q-small
|
|
2956
|
+
letter-r
|
|
2957
|
+
letter-r-small
|
|
2958
|
+
letter-s
|
|
2959
|
+
letter-s-small
|
|
2960
|
+
letter-spacing
|
|
2961
|
+
letter-t
|
|
2962
|
+
letter-t-small
|
|
2963
|
+
letter-u
|
|
2964
|
+
letter-u-small
|
|
2965
|
+
letter-v
|
|
2966
|
+
letter-v-small
|
|
2967
|
+
letter-w
|
|
2968
|
+
letter-w-small
|
|
2969
|
+
letter-x
|
|
2970
|
+
letter-x-small
|
|
2971
|
+
letter-y
|
|
2972
|
+
letter-y-small
|
|
2973
|
+
letter-z
|
|
2974
|
+
letter-z-small
|
|
2975
|
+
library
|
|
2976
|
+
library-minus
|
|
2977
|
+
library-photo
|
|
2978
|
+
library-plus
|
|
2979
|
+
license
|
|
2980
|
+
license-off
|
|
2981
|
+
lifebuoy
|
|
2982
|
+
lifebuoy-off
|
|
2983
|
+
lighter
|
|
2984
|
+
line
|
|
2985
|
+
line-dashed
|
|
2986
|
+
line-dotted
|
|
2987
|
+
line-height
|
|
2988
|
+
line-scan
|
|
2989
|
+
link
|
|
2990
|
+
link-minus
|
|
2991
|
+
link-off
|
|
2992
|
+
link-plus
|
|
2993
|
+
list
|
|
2994
|
+
list-check
|
|
2995
|
+
list-details
|
|
2996
|
+
list-letters
|
|
2997
|
+
list-numbers
|
|
2998
|
+
list-search
|
|
2999
|
+
list-tree
|
|
3000
|
+
live-photo
|
|
3001
|
+
live-photo-off
|
|
3002
|
+
live-view
|
|
3003
|
+
load-balancer
|
|
3004
|
+
loader
|
|
3005
|
+
loader-2
|
|
3006
|
+
loader-3
|
|
3007
|
+
loader-quarter
|
|
3008
|
+
location
|
|
3009
|
+
location-bolt
|
|
3010
|
+
location-broken
|
|
3011
|
+
location-cancel
|
|
3012
|
+
location-check
|
|
3013
|
+
location-code
|
|
3014
|
+
location-cog
|
|
3015
|
+
location-discount
|
|
3016
|
+
location-dollar
|
|
3017
|
+
location-down
|
|
3018
|
+
location-exclamation
|
|
3019
|
+
location-heart
|
|
3020
|
+
location-minus
|
|
3021
|
+
location-off
|
|
3022
|
+
location-pause
|
|
3023
|
+
location-pin
|
|
3024
|
+
location-plus
|
|
3025
|
+
location-question
|
|
3026
|
+
location-search
|
|
3027
|
+
location-share
|
|
3028
|
+
location-star
|
|
3029
|
+
location-up
|
|
3030
|
+
location-x
|
|
3031
|
+
lock
|
|
3032
|
+
lock-access
|
|
3033
|
+
lock-access-off
|
|
3034
|
+
lock-bitcoin
|
|
3035
|
+
lock-bolt
|
|
3036
|
+
lock-cancel
|
|
3037
|
+
lock-check
|
|
3038
|
+
lock-code
|
|
3039
|
+
lock-cog
|
|
3040
|
+
lock-dollar
|
|
3041
|
+
lock-down
|
|
3042
|
+
lock-exclamation
|
|
3043
|
+
lock-heart
|
|
3044
|
+
lock-minus
|
|
3045
|
+
lock-off
|
|
3046
|
+
lock-open
|
|
3047
|
+
lock-open-2
|
|
3048
|
+
lock-open-off
|
|
3049
|
+
lock-password
|
|
3050
|
+
lock-pause
|
|
3051
|
+
lock-pin
|
|
3052
|
+
lock-plus
|
|
3053
|
+
lock-question
|
|
3054
|
+
lock-search
|
|
3055
|
+
lock-share
|
|
3056
|
+
lock-square
|
|
3057
|
+
lock-square-rounded
|
|
3058
|
+
lock-star
|
|
3059
|
+
lock-up
|
|
3060
|
+
lock-x
|
|
3061
|
+
logic-and
|
|
3062
|
+
logic-buffer
|
|
3063
|
+
logic-nand
|
|
3064
|
+
logic-nor
|
|
3065
|
+
logic-not
|
|
3066
|
+
logic-or
|
|
3067
|
+
logic-xnor
|
|
3068
|
+
logic-xor
|
|
3069
|
+
login
|
|
3070
|
+
login-2
|
|
3071
|
+
logout
|
|
3072
|
+
logout-2
|
|
3073
|
+
logs
|
|
3074
|
+
lollipop
|
|
3075
|
+
lollipop-off
|
|
3076
|
+
luggage
|
|
3077
|
+
luggage-off
|
|
3078
|
+
lungs
|
|
3079
|
+
lungs-off
|
|
3080
|
+
macro
|
|
3081
|
+
macro-off
|
|
3082
|
+
magnet
|
|
3083
|
+
magnet-off
|
|
3084
|
+
magnetic
|
|
3085
|
+
mail
|
|
3086
|
+
mail-ai
|
|
3087
|
+
mail-bitcoin
|
|
3088
|
+
mail-bolt
|
|
3089
|
+
mail-cancel
|
|
3090
|
+
mail-check
|
|
3091
|
+
mail-code
|
|
3092
|
+
mail-cog
|
|
3093
|
+
mail-dollar
|
|
3094
|
+
mail-down
|
|
3095
|
+
mail-exclamation
|
|
3096
|
+
mail-fast
|
|
3097
|
+
mail-forward
|
|
3098
|
+
mail-heart
|
|
3099
|
+
mail-minus
|
|
3100
|
+
mail-off
|
|
3101
|
+
mail-opened
|
|
3102
|
+
mail-pause
|
|
3103
|
+
mail-pin
|
|
3104
|
+
mail-plus
|
|
3105
|
+
mail-question
|
|
3106
|
+
mail-search
|
|
3107
|
+
mail-share
|
|
3108
|
+
mail-spark
|
|
3109
|
+
mail-star
|
|
3110
|
+
mail-up
|
|
3111
|
+
mail-x
|
|
3112
|
+
mailbox
|
|
3113
|
+
mailbox-off
|
|
3114
|
+
man
|
|
3115
|
+
manual-gearbox
|
|
3116
|
+
map
|
|
3117
|
+
map-2
|
|
3118
|
+
map-bolt
|
|
3119
|
+
map-cancel
|
|
3120
|
+
map-check
|
|
3121
|
+
map-code
|
|
3122
|
+
map-cog
|
|
3123
|
+
map-discount
|
|
3124
|
+
map-dollar
|
|
3125
|
+
map-down
|
|
3126
|
+
map-east
|
|
3127
|
+
map-exclamation
|
|
3128
|
+
map-heart
|
|
3129
|
+
map-lock
|
|
3130
|
+
map-minus
|
|
3131
|
+
map-north
|
|
3132
|
+
map-off
|
|
3133
|
+
map-pause
|
|
3134
|
+
map-pin
|
|
3135
|
+
map-pin-2
|
|
3136
|
+
map-pin-bolt
|
|
3137
|
+
map-pin-cancel
|
|
3138
|
+
map-pin-check
|
|
3139
|
+
map-pin-code
|
|
3140
|
+
map-pin-cog
|
|
3141
|
+
map-pin-dollar
|
|
3142
|
+
map-pin-down
|
|
3143
|
+
map-pin-exclamation
|
|
3144
|
+
map-pin-heart
|
|
3145
|
+
map-pin-minus
|
|
3146
|
+
map-pin-off
|
|
3147
|
+
map-pin-pause
|
|
3148
|
+
map-pin-pin
|
|
3149
|
+
map-pin-plus
|
|
3150
|
+
map-pin-question
|
|
3151
|
+
map-pin-search
|
|
3152
|
+
map-pin-share
|
|
3153
|
+
map-pin-star
|
|
3154
|
+
map-pin-up
|
|
3155
|
+
map-pin-x
|
|
3156
|
+
map-pins
|
|
3157
|
+
map-plus
|
|
3158
|
+
map-question
|
|
3159
|
+
map-route
|
|
3160
|
+
map-search
|
|
3161
|
+
map-share
|
|
3162
|
+
map-shield
|
|
3163
|
+
map-south
|
|
3164
|
+
map-star
|
|
3165
|
+
map-up
|
|
3166
|
+
map-west
|
|
3167
|
+
map-x
|
|
3168
|
+
markdown
|
|
3169
|
+
markdown-off
|
|
3170
|
+
marquee
|
|
3171
|
+
marquee-2
|
|
3172
|
+
marquee-off
|
|
3173
|
+
mars
|
|
3174
|
+
mask
|
|
3175
|
+
mask-off
|
|
3176
|
+
masks-theater
|
|
3177
|
+
masks-theater-off
|
|
3178
|
+
massage
|
|
3179
|
+
matchstick
|
|
3180
|
+
math
|
|
3181
|
+
math-1-divide-2
|
|
3182
|
+
math-1-divide-3
|
|
3183
|
+
math-avg
|
|
3184
|
+
math-cos
|
|
3185
|
+
math-ctg
|
|
3186
|
+
math-equal-greater
|
|
3187
|
+
math-equal-lower
|
|
3188
|
+
math-function
|
|
3189
|
+
math-function-off
|
|
3190
|
+
math-function-y
|
|
3191
|
+
math-greater
|
|
3192
|
+
math-integral
|
|
3193
|
+
math-integral-x
|
|
3194
|
+
math-integrals
|
|
3195
|
+
math-lower
|
|
3196
|
+
math-max
|
|
3197
|
+
math-max-min
|
|
3198
|
+
math-min
|
|
3199
|
+
math-not
|
|
3200
|
+
math-off
|
|
3201
|
+
math-pi
|
|
3202
|
+
math-pi-divide-2
|
|
3203
|
+
math-sec
|
|
3204
|
+
math-sin
|
|
3205
|
+
math-symbols
|
|
3206
|
+
math-tg
|
|
3207
|
+
math-x-divide-2
|
|
3208
|
+
math-x-divide-y
|
|
3209
|
+
math-x-divide-y-2
|
|
3210
|
+
math-x-floor-divide-y
|
|
3211
|
+
math-x-minus-x
|
|
3212
|
+
math-x-minus-y
|
|
3213
|
+
math-x-plus-x
|
|
3214
|
+
math-x-plus-y
|
|
3215
|
+
math-xy
|
|
3216
|
+
math-y-minus-y
|
|
3217
|
+
math-y-plus-y
|
|
3218
|
+
matrix
|
|
3219
|
+
maximize
|
|
3220
|
+
maximize-off
|
|
3221
|
+
meat
|
|
3222
|
+
meat-off
|
|
3223
|
+
medal
|
|
3224
|
+
medal-2
|
|
3225
|
+
medical-cross
|
|
3226
|
+
medical-cross-circle
|
|
3227
|
+
medical-cross-off
|
|
3228
|
+
medicine-syrup
|
|
3229
|
+
meeple
|
|
3230
|
+
melon
|
|
3231
|
+
menorah
|
|
3232
|
+
menu
|
|
3233
|
+
menu-2
|
|
3234
|
+
menu-3
|
|
3235
|
+
menu-4
|
|
3236
|
+
menu-deep
|
|
3237
|
+
menu-order
|
|
3238
|
+
mesh
|
|
3239
|
+
message
|
|
3240
|
+
message-2
|
|
3241
|
+
message-2-bolt
|
|
3242
|
+
message-2-cancel
|
|
3243
|
+
message-2-check
|
|
3244
|
+
message-2-code
|
|
3245
|
+
message-2-cog
|
|
3246
|
+
message-2-dollar
|
|
3247
|
+
message-2-down
|
|
3248
|
+
message-2-exclamation
|
|
3249
|
+
message-2-heart
|
|
3250
|
+
message-2-minus
|
|
3251
|
+
message-2-off
|
|
3252
|
+
message-2-pause
|
|
3253
|
+
message-2-pin
|
|
3254
|
+
message-2-plus
|
|
3255
|
+
message-2-question
|
|
3256
|
+
message-2-search
|
|
3257
|
+
message-2-share
|
|
3258
|
+
message-2-star
|
|
3259
|
+
message-2-up
|
|
3260
|
+
message-2-x
|
|
3261
|
+
message-bolt
|
|
3262
|
+
message-cancel
|
|
3263
|
+
message-chatbot
|
|
3264
|
+
message-check
|
|
3265
|
+
message-circle
|
|
3266
|
+
message-circle-bolt
|
|
3267
|
+
message-circle-cancel
|
|
3268
|
+
message-circle-check
|
|
3269
|
+
message-circle-code
|
|
3270
|
+
message-circle-cog
|
|
3271
|
+
message-circle-dollar
|
|
3272
|
+
message-circle-down
|
|
3273
|
+
message-circle-exclamation
|
|
3274
|
+
message-circle-heart
|
|
3275
|
+
message-circle-minus
|
|
3276
|
+
message-circle-off
|
|
3277
|
+
message-circle-pause
|
|
3278
|
+
message-circle-pin
|
|
3279
|
+
message-circle-plus
|
|
3280
|
+
message-circle-question
|
|
3281
|
+
message-circle-search
|
|
3282
|
+
message-circle-share
|
|
3283
|
+
message-circle-star
|
|
3284
|
+
message-circle-up
|
|
3285
|
+
message-circle-user
|
|
3286
|
+
message-circle-x
|
|
3287
|
+
message-code
|
|
3288
|
+
message-cog
|
|
3289
|
+
message-dollar
|
|
3290
|
+
message-dots
|
|
3291
|
+
message-down
|
|
3292
|
+
message-exclamation
|
|
3293
|
+
message-forward
|
|
3294
|
+
message-heart
|
|
3295
|
+
message-language
|
|
3296
|
+
message-minus
|
|
3297
|
+
message-off
|
|
3298
|
+
message-pause
|
|
3299
|
+
message-pin
|
|
3300
|
+
message-plus
|
|
3301
|
+
message-question
|
|
3302
|
+
message-reply
|
|
3303
|
+
message-report
|
|
3304
|
+
message-search
|
|
3305
|
+
message-share
|
|
3306
|
+
message-star
|
|
3307
|
+
message-up
|
|
3308
|
+
message-user
|
|
3309
|
+
message-x
|
|
3310
|
+
messages
|
|
3311
|
+
messages-off
|
|
3312
|
+
meteor
|
|
3313
|
+
meteor-off
|
|
3314
|
+
meter-cube
|
|
3315
|
+
meter-square
|
|
3316
|
+
metronome
|
|
3317
|
+
michelin-bib-gourmand
|
|
3318
|
+
michelin-star
|
|
3319
|
+
michelin-star-green
|
|
3320
|
+
mickey
|
|
3321
|
+
microfrontends
|
|
3322
|
+
microphone
|
|
3323
|
+
microphone-2
|
|
3324
|
+
microphone-2-off
|
|
3325
|
+
microphone-off
|
|
3326
|
+
microscope
|
|
3327
|
+
microscope-off
|
|
3328
|
+
microwave
|
|
3329
|
+
microwave-off
|
|
3330
|
+
middleware
|
|
3331
|
+
military-award
|
|
3332
|
+
military-rank
|
|
3333
|
+
milk
|
|
3334
|
+
milk-off
|
|
3335
|
+
milkshake
|
|
3336
|
+
minimize
|
|
3337
|
+
minus
|
|
3338
|
+
minus-vertical
|
|
3339
|
+
mist
|
|
3340
|
+
mist-off
|
|
3341
|
+
mobiledata
|
|
3342
|
+
mobiledata-off
|
|
3343
|
+
moneybag
|
|
3344
|
+
moneybag-edit
|
|
3345
|
+
moneybag-heart
|
|
3346
|
+
moneybag-minus
|
|
3347
|
+
moneybag-move
|
|
3348
|
+
moneybag-move-back
|
|
3349
|
+
moneybag-plus
|
|
3350
|
+
monkeybar
|
|
3351
|
+
mood-angry
|
|
3352
|
+
mood-annoyed
|
|
3353
|
+
mood-annoyed-2
|
|
3354
|
+
mood-bitcoin
|
|
3355
|
+
mood-boy
|
|
3356
|
+
mood-check
|
|
3357
|
+
mood-cog
|
|
3358
|
+
mood-confuzed
|
|
3359
|
+
mood-crazy-happy
|
|
3360
|
+
mood-cry
|
|
3361
|
+
mood-dollar
|
|
3362
|
+
mood-edit
|
|
3363
|
+
mood-empty
|
|
3364
|
+
mood-happy
|
|
3365
|
+
mood-heart
|
|
3366
|
+
mood-kid
|
|
3367
|
+
mood-look-down
|
|
3368
|
+
mood-look-left
|
|
3369
|
+
mood-look-right
|
|
3370
|
+
mood-look-up
|
|
3371
|
+
mood-minus
|
|
3372
|
+
mood-nerd
|
|
3373
|
+
mood-nervous
|
|
3374
|
+
mood-neutral
|
|
3375
|
+
mood-off
|
|
3376
|
+
mood-pin
|
|
3377
|
+
mood-plus
|
|
3378
|
+
mood-puzzled
|
|
3379
|
+
mood-sad
|
|
3380
|
+
mood-sad-2
|
|
3381
|
+
mood-sad-dizzy
|
|
3382
|
+
mood-sad-squint
|
|
3383
|
+
mood-search
|
|
3384
|
+
mood-share
|
|
3385
|
+
mood-sick
|
|
3386
|
+
mood-silence
|
|
3387
|
+
mood-sing
|
|
3388
|
+
mood-smile
|
|
3389
|
+
mood-smile-beam
|
|
3390
|
+
mood-smile-dizzy
|
|
3391
|
+
mood-spark
|
|
3392
|
+
mood-surprised
|
|
3393
|
+
mood-tongue
|
|
3394
|
+
mood-tongue-wink
|
|
3395
|
+
mood-tongue-wink-2
|
|
3396
|
+
mood-unamused
|
|
3397
|
+
mood-up
|
|
3398
|
+
mood-wink
|
|
3399
|
+
mood-wink-2
|
|
3400
|
+
mood-wrrr
|
|
3401
|
+
mood-x
|
|
3402
|
+
mood-xd
|
|
3403
|
+
moon
|
|
3404
|
+
moon-2
|
|
3405
|
+
moon-off
|
|
3406
|
+
moon-stars
|
|
3407
|
+
moped
|
|
3408
|
+
motorbike
|
|
3409
|
+
mountain
|
|
3410
|
+
mountain-off
|
|
3411
|
+
mouse
|
|
3412
|
+
mouse-2
|
|
3413
|
+
mouse-off
|
|
3414
|
+
moustache
|
|
3415
|
+
movie
|
|
3416
|
+
movie-off
|
|
3417
|
+
mug
|
|
3418
|
+
mug-off
|
|
3419
|
+
multiplier-0-5x
|
|
3420
|
+
multiplier-1-5x
|
|
3421
|
+
multiplier-1x
|
|
3422
|
+
multiplier-2x
|
|
3423
|
+
mushroom
|
|
3424
|
+
mushroom-off
|
|
3425
|
+
music
|
|
3426
|
+
music-bolt
|
|
3427
|
+
music-cancel
|
|
3428
|
+
music-check
|
|
3429
|
+
music-code
|
|
3430
|
+
music-cog
|
|
3431
|
+
music-discount
|
|
3432
|
+
music-dollar
|
|
3433
|
+
music-down
|
|
3434
|
+
music-exclamation
|
|
3435
|
+
music-heart
|
|
3436
|
+
music-minus
|
|
3437
|
+
music-off
|
|
3438
|
+
music-pause
|
|
3439
|
+
music-pin
|
|
3440
|
+
music-plus
|
|
3441
|
+
music-question
|
|
3442
|
+
music-search
|
|
3443
|
+
music-share
|
|
3444
|
+
music-star
|
|
3445
|
+
music-up
|
|
3446
|
+
music-x
|
|
3447
|
+
navigation
|
|
3448
|
+
navigation-bolt
|
|
3449
|
+
navigation-cancel
|
|
3450
|
+
navigation-check
|
|
3451
|
+
navigation-code
|
|
3452
|
+
navigation-cog
|
|
3453
|
+
navigation-discount
|
|
3454
|
+
navigation-dollar
|
|
3455
|
+
navigation-down
|
|
3456
|
+
navigation-east
|
|
3457
|
+
navigation-exclamation
|
|
3458
|
+
navigation-heart
|
|
3459
|
+
navigation-minus
|
|
3460
|
+
navigation-north
|
|
3461
|
+
navigation-off
|
|
3462
|
+
navigation-pause
|
|
3463
|
+
navigation-pin
|
|
3464
|
+
navigation-plus
|
|
3465
|
+
navigation-question
|
|
3466
|
+
navigation-search
|
|
3467
|
+
navigation-share
|
|
3468
|
+
navigation-south
|
|
3469
|
+
navigation-star
|
|
3470
|
+
navigation-top
|
|
3471
|
+
navigation-up
|
|
3472
|
+
navigation-west
|
|
3473
|
+
navigation-x
|
|
3474
|
+
needle
|
|
3475
|
+
needle-thread
|
|
3476
|
+
network
|
|
3477
|
+
network-off
|
|
3478
|
+
new-section
|
|
3479
|
+
news
|
|
3480
|
+
news-off
|
|
3481
|
+
nfc
|
|
3482
|
+
nfc-off
|
|
3483
|
+
no-copyright
|
|
3484
|
+
no-creative-commons
|
|
3485
|
+
no-derivatives
|
|
3486
|
+
north-star
|
|
3487
|
+
note
|
|
3488
|
+
note-off
|
|
3489
|
+
notebook
|
|
3490
|
+
notebook-off
|
|
3491
|
+
notes
|
|
3492
|
+
notes-off
|
|
3493
|
+
notification
|
|
3494
|
+
notification-off
|
|
3495
|
+
number
|
|
3496
|
+
number-0
|
|
3497
|
+
number-0-small
|
|
3498
|
+
number-1
|
|
3499
|
+
number-1-small
|
|
3500
|
+
number-10
|
|
3501
|
+
number-10-small
|
|
3502
|
+
number-100-small
|
|
3503
|
+
number-11
|
|
3504
|
+
number-11-small
|
|
3505
|
+
number-12-small
|
|
3506
|
+
number-123
|
|
3507
|
+
number-13-small
|
|
3508
|
+
number-14-small
|
|
3509
|
+
number-15-small
|
|
3510
|
+
number-16-small
|
|
3511
|
+
number-17-small
|
|
3512
|
+
number-18-small
|
|
3513
|
+
number-19-small
|
|
3514
|
+
number-2
|
|
3515
|
+
number-2-small
|
|
3516
|
+
number-20-small
|
|
3517
|
+
number-21-small
|
|
3518
|
+
number-22-small
|
|
3519
|
+
number-23-small
|
|
3520
|
+
number-24-small
|
|
3521
|
+
number-25-small
|
|
3522
|
+
number-26-small
|
|
3523
|
+
number-27-small
|
|
3524
|
+
number-28-small
|
|
3525
|
+
number-29-small
|
|
3526
|
+
number-3
|
|
3527
|
+
number-3-small
|
|
3528
|
+
number-30-small
|
|
3529
|
+
number-31-small
|
|
3530
|
+
number-32-small
|
|
3531
|
+
number-33-small
|
|
3532
|
+
number-34-small
|
|
3533
|
+
number-35-small
|
|
3534
|
+
number-36-small
|
|
3535
|
+
number-37-small
|
|
3536
|
+
number-38-small
|
|
3537
|
+
number-39-small
|
|
3538
|
+
number-4
|
|
3539
|
+
number-4-small
|
|
3540
|
+
number-40-small
|
|
3541
|
+
number-41-small
|
|
3542
|
+
number-42-small
|
|
3543
|
+
number-43-small
|
|
3544
|
+
number-44-small
|
|
3545
|
+
number-45-small
|
|
3546
|
+
number-46-small
|
|
3547
|
+
number-47-small
|
|
3548
|
+
number-48-small
|
|
3549
|
+
number-49-small
|
|
3550
|
+
number-5
|
|
3551
|
+
number-5-small
|
|
3552
|
+
number-50-small
|
|
3553
|
+
number-51-small
|
|
3554
|
+
number-52-small
|
|
3555
|
+
number-53-small
|
|
3556
|
+
number-54-small
|
|
3557
|
+
number-55-small
|
|
3558
|
+
number-56-small
|
|
3559
|
+
number-57-small
|
|
3560
|
+
number-58-small
|
|
3561
|
+
number-59-small
|
|
3562
|
+
number-6
|
|
3563
|
+
number-6-small
|
|
3564
|
+
number-60-small
|
|
3565
|
+
number-61-small
|
|
3566
|
+
number-62-small
|
|
3567
|
+
number-63-small
|
|
3568
|
+
number-64-small
|
|
3569
|
+
number-65-small
|
|
3570
|
+
number-66-small
|
|
3571
|
+
number-67-small
|
|
3572
|
+
number-68-small
|
|
3573
|
+
number-69-small
|
|
3574
|
+
number-7
|
|
3575
|
+
number-7-small
|
|
3576
|
+
number-70-small
|
|
3577
|
+
number-71-small
|
|
3578
|
+
number-72-small
|
|
3579
|
+
number-73-small
|
|
3580
|
+
number-74-small
|
|
3581
|
+
number-75-small
|
|
3582
|
+
number-76-small
|
|
3583
|
+
number-77-small
|
|
3584
|
+
number-78-small
|
|
3585
|
+
number-79-small
|
|
3586
|
+
number-8
|
|
3587
|
+
number-8-small
|
|
3588
|
+
number-80-small
|
|
3589
|
+
number-81-small
|
|
3590
|
+
number-82-small
|
|
3591
|
+
number-83-small
|
|
3592
|
+
number-84-small
|
|
3593
|
+
number-85-small
|
|
3594
|
+
number-86-small
|
|
3595
|
+
number-87-small
|
|
3596
|
+
number-88-small
|
|
3597
|
+
number-89-small
|
|
3598
|
+
number-9
|
|
3599
|
+
number-9-small
|
|
3600
|
+
number-90-small
|
|
3601
|
+
number-91-small
|
|
3602
|
+
number-92-small
|
|
3603
|
+
number-93-small
|
|
3604
|
+
number-94-small
|
|
3605
|
+
number-95-small
|
|
3606
|
+
number-96-small
|
|
3607
|
+
number-97-small
|
|
3608
|
+
number-98-small
|
|
3609
|
+
number-99-small
|
|
3610
|
+
numbers
|
|
3611
|
+
nurse
|
|
3612
|
+
nut
|
|
3613
|
+
object-scan
|
|
3614
|
+
octagon
|
|
3615
|
+
octagon-minus
|
|
3616
|
+
octagon-minus-2
|
|
3617
|
+
octagon-off
|
|
3618
|
+
octagon-plus
|
|
3619
|
+
octagon-plus-2
|
|
3620
|
+
octahedron
|
|
3621
|
+
octahedron-off
|
|
3622
|
+
octahedron-plus
|
|
3623
|
+
old
|
|
3624
|
+
olympic-torch
|
|
3625
|
+
olympics
|
|
3626
|
+
olympics-off
|
|
3627
|
+
om
|
|
3628
|
+
omega
|
|
3629
|
+
option
|
|
3630
|
+
outbound
|
|
3631
|
+
outlet
|
|
3632
|
+
oval
|
|
3633
|
+
oval-vertical
|
|
3634
|
+
overline
|
|
3635
|
+
package
|
|
3636
|
+
package-export
|
|
3637
|
+
package-import
|
|
3638
|
+
package-off
|
|
3639
|
+
packages
|
|
3640
|
+
pacman
|
|
3641
|
+
page-break
|
|
3642
|
+
paint
|
|
3643
|
+
paint-off
|
|
3644
|
+
palette
|
|
3645
|
+
palette-off
|
|
3646
|
+
panorama-horizontal
|
|
3647
|
+
panorama-horizontal-off
|
|
3648
|
+
panorama-vertical
|
|
3649
|
+
panorama-vertical-off
|
|
3650
|
+
paper-bag
|
|
3651
|
+
paper-bag-off
|
|
3652
|
+
paperclip
|
|
3653
|
+
parachute
|
|
3654
|
+
parachute-off
|
|
3655
|
+
parentheses
|
|
3656
|
+
parentheses-off
|
|
3657
|
+
parking
|
|
3658
|
+
parking-circle
|
|
3659
|
+
parking-meter
|
|
3660
|
+
parking-off
|
|
3661
|
+
password
|
|
3662
|
+
password-fingerprint
|
|
3663
|
+
password-mobile-phone
|
|
3664
|
+
password-user
|
|
3665
|
+
paw
|
|
3666
|
+
paw-off
|
|
3667
|
+
paywall
|
|
3668
|
+
pdf
|
|
3669
|
+
peace
|
|
3670
|
+
pencil
|
|
3671
|
+
pencil-bolt
|
|
3672
|
+
pencil-cancel
|
|
3673
|
+
pencil-check
|
|
3674
|
+
pencil-code
|
|
3675
|
+
pencil-cog
|
|
3676
|
+
pencil-discount
|
|
3677
|
+
pencil-dollar
|
|
3678
|
+
pencil-down
|
|
3679
|
+
pencil-exclamation
|
|
3680
|
+
pencil-heart
|
|
3681
|
+
pencil-minus
|
|
3682
|
+
pencil-off
|
|
3683
|
+
pencil-pause
|
|
3684
|
+
pencil-pin
|
|
3685
|
+
pencil-plus
|
|
3686
|
+
pencil-question
|
|
3687
|
+
pencil-search
|
|
3688
|
+
pencil-share
|
|
3689
|
+
pencil-star
|
|
3690
|
+
pencil-up
|
|
3691
|
+
pencil-x
|
|
3692
|
+
pennant
|
|
3693
|
+
pennant-2
|
|
3694
|
+
pennant-off
|
|
3695
|
+
pentagon
|
|
3696
|
+
pentagon-minus
|
|
3697
|
+
pentagon-number-0
|
|
3698
|
+
pentagon-number-1
|
|
3699
|
+
pentagon-number-2
|
|
3700
|
+
pentagon-number-3
|
|
3701
|
+
pentagon-number-4
|
|
3702
|
+
pentagon-number-5
|
|
3703
|
+
pentagon-number-6
|
|
3704
|
+
pentagon-number-7
|
|
3705
|
+
pentagon-number-8
|
|
3706
|
+
pentagon-number-9
|
|
3707
|
+
pentagon-off
|
|
3708
|
+
pentagon-plus
|
|
3709
|
+
pentagon-x
|
|
3710
|
+
pentagram
|
|
3711
|
+
pepper
|
|
3712
|
+
pepper-off
|
|
3713
|
+
percentage
|
|
3714
|
+
percentage-0
|
|
3715
|
+
percentage-10
|
|
3716
|
+
percentage-100
|
|
3717
|
+
percentage-20
|
|
3718
|
+
percentage-25
|
|
3719
|
+
percentage-30
|
|
3720
|
+
percentage-33
|
|
3721
|
+
percentage-40
|
|
3722
|
+
percentage-50
|
|
3723
|
+
percentage-60
|
|
3724
|
+
percentage-66
|
|
3725
|
+
percentage-70
|
|
3726
|
+
percentage-75
|
|
3727
|
+
percentage-80
|
|
3728
|
+
percentage-90
|
|
3729
|
+
perfume
|
|
3730
|
+
perspective
|
|
3731
|
+
perspective-off
|
|
3732
|
+
phone
|
|
3733
|
+
phone-call
|
|
3734
|
+
phone-calling
|
|
3735
|
+
phone-check
|
|
3736
|
+
phone-done
|
|
3737
|
+
phone-end
|
|
3738
|
+
phone-incoming
|
|
3739
|
+
phone-off
|
|
3740
|
+
phone-outgoing
|
|
3741
|
+
phone-pause
|
|
3742
|
+
phone-plus
|
|
3743
|
+
phone-ringing
|
|
3744
|
+
phone-spark
|
|
3745
|
+
phone-x
|
|
3746
|
+
photo
|
|
3747
|
+
photo-ai
|
|
3748
|
+
photo-bitcoin
|
|
3749
|
+
photo-bolt
|
|
3750
|
+
photo-cancel
|
|
3751
|
+
photo-check
|
|
3752
|
+
photo-circle
|
|
3753
|
+
photo-circle-minus
|
|
3754
|
+
photo-circle-plus
|
|
3755
|
+
photo-code
|
|
3756
|
+
photo-cog
|
|
3757
|
+
photo-dollar
|
|
3758
|
+
photo-down
|
|
3759
|
+
photo-edit
|
|
3760
|
+
photo-exclamation
|
|
3761
|
+
photo-heart
|
|
3762
|
+
photo-hexagon
|
|
3763
|
+
photo-minus
|
|
3764
|
+
photo-off
|
|
3765
|
+
photo-pause
|
|
3766
|
+
photo-pentagon
|
|
3767
|
+
photo-pin
|
|
3768
|
+
photo-plus
|
|
3769
|
+
photo-question
|
|
3770
|
+
photo-scan
|
|
3771
|
+
photo-search
|
|
3772
|
+
photo-sensor
|
|
3773
|
+
photo-sensor-2
|
|
3774
|
+
photo-sensor-3
|
|
3775
|
+
photo-share
|
|
3776
|
+
photo-shield
|
|
3777
|
+
photo-spark
|
|
3778
|
+
photo-square-rounded
|
|
3779
|
+
photo-star
|
|
3780
|
+
photo-up
|
|
3781
|
+
photo-video
|
|
3782
|
+
photo-x
|
|
3783
|
+
physotherapist
|
|
3784
|
+
piano
|
|
3785
|
+
pick
|
|
3786
|
+
picnic-table
|
|
3787
|
+
picture-in-picture
|
|
3788
|
+
picture-in-picture-off
|
|
3789
|
+
picture-in-picture-on
|
|
3790
|
+
picture-in-picture-top
|
|
3791
|
+
pig
|
|
3792
|
+
pig-money
|
|
3793
|
+
pig-off
|
|
3794
|
+
pilcrow
|
|
3795
|
+
pilcrow-left
|
|
3796
|
+
pilcrow-right
|
|
3797
|
+
pill
|
|
3798
|
+
pill-off
|
|
3799
|
+
pillow
|
|
3800
|
+
pills
|
|
3801
|
+
pin
|
|
3802
|
+
pin-end
|
|
3803
|
+
pin-invoke
|
|
3804
|
+
ping-pong
|
|
3805
|
+
pinned
|
|
3806
|
+
pinned-off
|
|
3807
|
+
pipeline
|
|
3808
|
+
pizza
|
|
3809
|
+
pizza-off
|
|
3810
|
+
placeholder
|
|
3811
|
+
plane
|
|
3812
|
+
plane-arrival
|
|
3813
|
+
plane-departure
|
|
3814
|
+
plane-inflight
|
|
3815
|
+
plane-off
|
|
3816
|
+
plane-tilt
|
|
3817
|
+
planet
|
|
3818
|
+
planet-off
|
|
3819
|
+
plant
|
|
3820
|
+
plant-2
|
|
3821
|
+
plant-2-off
|
|
3822
|
+
plant-off
|
|
3823
|
+
play-basketball
|
|
3824
|
+
play-card
|
|
3825
|
+
play-card-1
|
|
3826
|
+
play-card-10
|
|
3827
|
+
play-card-2
|
|
3828
|
+
play-card-3
|
|
3829
|
+
play-card-4
|
|
3830
|
+
play-card-5
|
|
3831
|
+
play-card-6
|
|
3832
|
+
play-card-7
|
|
3833
|
+
play-card-8
|
|
3834
|
+
play-card-9
|
|
3835
|
+
play-card-a
|
|
3836
|
+
play-card-j
|
|
3837
|
+
play-card-k
|
|
3838
|
+
play-card-off
|
|
3839
|
+
play-card-q
|
|
3840
|
+
play-card-star
|
|
3841
|
+
play-football
|
|
3842
|
+
play-handball
|
|
3843
|
+
play-volleyball
|
|
3844
|
+
player-eject
|
|
3845
|
+
player-pause
|
|
3846
|
+
player-play
|
|
3847
|
+
player-record
|
|
3848
|
+
player-skip-back
|
|
3849
|
+
player-skip-forward
|
|
3850
|
+
player-stop
|
|
3851
|
+
player-track-next
|
|
3852
|
+
player-track-prev
|
|
3853
|
+
playlist
|
|
3854
|
+
playlist-add
|
|
3855
|
+
playlist-off
|
|
3856
|
+
playlist-x
|
|
3857
|
+
playstation-circle
|
|
3858
|
+
playstation-square
|
|
3859
|
+
playstation-triangle
|
|
3860
|
+
playstation-x
|
|
3861
|
+
plug
|
|
3862
|
+
plug-connected
|
|
3863
|
+
plug-connected-x
|
|
3864
|
+
plug-off
|
|
3865
|
+
plug-x
|
|
3866
|
+
plus
|
|
3867
|
+
plus-equal
|
|
3868
|
+
plus-minus
|
|
3869
|
+
png
|
|
3870
|
+
podium
|
|
3871
|
+
podium-off
|
|
3872
|
+
point
|
|
3873
|
+
point-off
|
|
3874
|
+
pointer
|
|
3875
|
+
pointer-bolt
|
|
3876
|
+
pointer-cancel
|
|
3877
|
+
pointer-check
|
|
3878
|
+
pointer-code
|
|
3879
|
+
pointer-cog
|
|
3880
|
+
pointer-dollar
|
|
3881
|
+
pointer-down
|
|
3882
|
+
pointer-exclamation
|
|
3883
|
+
pointer-heart
|
|
3884
|
+
pointer-minus
|
|
3885
|
+
pointer-off
|
|
3886
|
+
pointer-pause
|
|
3887
|
+
pointer-pin
|
|
3888
|
+
pointer-plus
|
|
3889
|
+
pointer-question
|
|
3890
|
+
pointer-search
|
|
3891
|
+
pointer-share
|
|
3892
|
+
pointer-star
|
|
3893
|
+
pointer-up
|
|
3894
|
+
pointer-x
|
|
3895
|
+
pokeball
|
|
3896
|
+
pokeball-off
|
|
3897
|
+
poker-chip
|
|
3898
|
+
polaroid
|
|
3899
|
+
polygon
|
|
3900
|
+
polygon-off
|
|
3901
|
+
poo
|
|
3902
|
+
pool
|
|
3903
|
+
pool-off
|
|
3904
|
+
power
|
|
3905
|
+
pray
|
|
3906
|
+
premium-rights
|
|
3907
|
+
prescription
|
|
3908
|
+
presentation
|
|
3909
|
+
presentation-analytics
|
|
3910
|
+
presentation-off
|
|
3911
|
+
printer
|
|
3912
|
+
printer-off
|
|
3913
|
+
prism
|
|
3914
|
+
prism-light
|
|
3915
|
+
prism-off
|
|
3916
|
+
prism-plus
|
|
3917
|
+
prison
|
|
3918
|
+
progress
|
|
3919
|
+
progress-alert
|
|
3920
|
+
progress-bolt
|
|
3921
|
+
progress-check
|
|
3922
|
+
progress-down
|
|
3923
|
+
progress-help
|
|
3924
|
+
progress-x
|
|
3925
|
+
prompt
|
|
3926
|
+
prong
|
|
3927
|
+
propeller
|
|
3928
|
+
propeller-off
|
|
3929
|
+
protocol
|
|
3930
|
+
pumpkin-scary
|
|
3931
|
+
puzzle
|
|
3932
|
+
puzzle-2
|
|
3933
|
+
puzzle-off
|
|
3934
|
+
pyramid
|
|
3935
|
+
pyramid-off
|
|
3936
|
+
pyramid-plus
|
|
3937
|
+
qrcode
|
|
3938
|
+
qrcode-off
|
|
3939
|
+
question-mark
|
|
3940
|
+
queue-pop-in
|
|
3941
|
+
queue-pop-out
|
|
3942
|
+
quote
|
|
3943
|
+
quote-off
|
|
3944
|
+
quote-open
|
|
3945
|
+
quotes
|
|
3946
|
+
radar
|
|
3947
|
+
radar-2
|
|
3948
|
+
radar-off
|
|
3949
|
+
radio
|
|
3950
|
+
radio-off
|
|
3951
|
+
radioactive
|
|
3952
|
+
radioactive-off
|
|
3953
|
+
radius-bottom-left
|
|
3954
|
+
radius-bottom-right
|
|
3955
|
+
radius-top-left
|
|
3956
|
+
radius-top-right
|
|
3957
|
+
rainbow
|
|
3958
|
+
rainbow-off
|
|
3959
|
+
rating-12-plus
|
|
3960
|
+
rating-14-plus
|
|
3961
|
+
rating-16-plus
|
|
3962
|
+
rating-18-plus
|
|
3963
|
+
rating-21-plus
|
|
3964
|
+
razor
|
|
3965
|
+
razor-electric
|
|
3966
|
+
receipt
|
|
3967
|
+
receipt-2
|
|
3968
|
+
receipt-bitcoin
|
|
3969
|
+
receipt-dollar
|
|
3970
|
+
receipt-euro
|
|
3971
|
+
receipt-off
|
|
3972
|
+
receipt-pound
|
|
3973
|
+
receipt-refund
|
|
3974
|
+
receipt-rupee
|
|
3975
|
+
receipt-tax
|
|
3976
|
+
receipt-yen
|
|
3977
|
+
receipt-yuan
|
|
3978
|
+
recharging
|
|
3979
|
+
record-mail
|
|
3980
|
+
record-mail-off
|
|
3981
|
+
rectangle
|
|
3982
|
+
rectangle-rounded-bottom
|
|
3983
|
+
rectangle-rounded-top
|
|
3984
|
+
rectangle-vertical
|
|
3985
|
+
rectangular-prism
|
|
3986
|
+
rectangular-prism-off
|
|
3987
|
+
rectangular-prism-plus
|
|
3988
|
+
recycle
|
|
3989
|
+
recycle-off
|
|
3990
|
+
refresh
|
|
3991
|
+
refresh-alert
|
|
3992
|
+
refresh-dot
|
|
3993
|
+
refresh-off
|
|
3994
|
+
regex
|
|
3995
|
+
regex-off
|
|
3996
|
+
registered
|
|
3997
|
+
relation-many-to-many
|
|
3998
|
+
relation-one-to-many
|
|
3999
|
+
relation-one-to-one
|
|
4000
|
+
reload
|
|
4001
|
+
reorder
|
|
4002
|
+
repeat
|
|
4003
|
+
repeat-off
|
|
4004
|
+
repeat-once
|
|
4005
|
+
replace
|
|
4006
|
+
replace-off
|
|
4007
|
+
replace-user
|
|
4008
|
+
report
|
|
4009
|
+
report-analytics
|
|
4010
|
+
report-medical
|
|
4011
|
+
report-money
|
|
4012
|
+
report-off
|
|
4013
|
+
report-search
|
|
4014
|
+
reserved-line
|
|
4015
|
+
resize
|
|
4016
|
+
restore
|
|
4017
|
+
rewind-backward-10
|
|
4018
|
+
rewind-backward-15
|
|
4019
|
+
rewind-backward-20
|
|
4020
|
+
rewind-backward-30
|
|
4021
|
+
rewind-backward-40
|
|
4022
|
+
rewind-backward-5
|
|
4023
|
+
rewind-backward-50
|
|
4024
|
+
rewind-backward-60
|
|
4025
|
+
rewind-forward-10
|
|
4026
|
+
rewind-forward-15
|
|
4027
|
+
rewind-forward-20
|
|
4028
|
+
rewind-forward-30
|
|
4029
|
+
rewind-forward-40
|
|
4030
|
+
rewind-forward-5
|
|
4031
|
+
rewind-forward-50
|
|
4032
|
+
rewind-forward-60
|
|
4033
|
+
ribbon-health
|
|
4034
|
+
rings
|
|
4035
|
+
ripple
|
|
4036
|
+
ripple-down
|
|
4037
|
+
ripple-off
|
|
4038
|
+
ripple-up
|
|
4039
|
+
road
|
|
4040
|
+
road-off
|
|
4041
|
+
road-sign
|
|
4042
|
+
robot
|
|
4043
|
+
robot-face
|
|
4044
|
+
robot-off
|
|
4045
|
+
rocket
|
|
4046
|
+
rocket-off
|
|
4047
|
+
roller-skating
|
|
4048
|
+
rollercoaster
|
|
4049
|
+
rollercoaster-off
|
|
4050
|
+
rosette
|
|
4051
|
+
rosette-asterisk
|
|
4052
|
+
rosette-discount
|
|
4053
|
+
rosette-discount-check
|
|
4054
|
+
rosette-discount-check-off
|
|
4055
|
+
rosette-discount-off
|
|
4056
|
+
rosette-number-0
|
|
4057
|
+
rosette-number-1
|
|
4058
|
+
rosette-number-2
|
|
4059
|
+
rosette-number-3
|
|
4060
|
+
rosette-number-4
|
|
4061
|
+
rosette-number-5
|
|
4062
|
+
rosette-number-6
|
|
4063
|
+
rosette-number-7
|
|
4064
|
+
rosette-number-8
|
|
4065
|
+
rosette-number-9
|
|
4066
|
+
rotate
|
|
4067
|
+
rotate-2
|
|
4068
|
+
rotate-360
|
|
4069
|
+
rotate-3d
|
|
4070
|
+
rotate-clockwise
|
|
4071
|
+
rotate-clockwise-2
|
|
4072
|
+
rotate-dot
|
|
4073
|
+
rotate-rectangle
|
|
4074
|
+
route
|
|
4075
|
+
route-2
|
|
4076
|
+
route-alt-left
|
|
4077
|
+
route-alt-right
|
|
4078
|
+
route-off
|
|
4079
|
+
route-scan
|
|
4080
|
+
route-square
|
|
4081
|
+
route-square-2
|
|
4082
|
+
route-x
|
|
4083
|
+
route-x-2
|
|
4084
|
+
router
|
|
4085
|
+
router-off
|
|
4086
|
+
row-insert-bottom
|
|
4087
|
+
row-insert-top
|
|
4088
|
+
row-remove
|
|
4089
|
+
rss
|
|
4090
|
+
rubber-stamp
|
|
4091
|
+
rubber-stamp-off
|
|
4092
|
+
ruler
|
|
4093
|
+
ruler-2
|
|
4094
|
+
ruler-2-off
|
|
4095
|
+
ruler-3
|
|
4096
|
+
ruler-measure
|
|
4097
|
+
ruler-measure-2
|
|
4098
|
+
ruler-off
|
|
4099
|
+
run
|
|
4100
|
+
rv-truck
|
|
4101
|
+
s-turn-down
|
|
4102
|
+
s-turn-left
|
|
4103
|
+
s-turn-right
|
|
4104
|
+
s-turn-up
|
|
4105
|
+
sailboat
|
|
4106
|
+
sailboat-2
|
|
4107
|
+
sailboat-off
|
|
4108
|
+
salad
|
|
4109
|
+
salt
|
|
4110
|
+
sandbox
|
|
4111
|
+
satellite
|
|
4112
|
+
satellite-off
|
|
4113
|
+
sausage
|
|
4114
|
+
scale
|
|
4115
|
+
scale-off
|
|
4116
|
+
scale-outline
|
|
4117
|
+
scale-outline-off
|
|
4118
|
+
scan
|
|
4119
|
+
scan-eye
|
|
4120
|
+
scan-letter-a
|
|
4121
|
+
scan-letter-t
|
|
4122
|
+
scan-position
|
|
4123
|
+
scan-traces
|
|
4124
|
+
schema
|
|
4125
|
+
schema-off
|
|
4126
|
+
school
|
|
4127
|
+
school-bell
|
|
4128
|
+
school-off
|
|
4129
|
+
scissors
|
|
4130
|
+
scissors-off
|
|
4131
|
+
scooter
|
|
4132
|
+
scooter-electric
|
|
4133
|
+
scoreboard
|
|
4134
|
+
screen-share
|
|
4135
|
+
screen-share-off
|
|
4136
|
+
screenshot
|
|
4137
|
+
scribble
|
|
4138
|
+
scribble-off
|
|
4139
|
+
script
|
|
4140
|
+
script-minus
|
|
4141
|
+
script-plus
|
|
4142
|
+
script-x
|
|
4143
|
+
scuba-diving
|
|
4144
|
+
scuba-diving-tank
|
|
4145
|
+
scuba-mask
|
|
4146
|
+
scuba-mask-off
|
|
4147
|
+
sdk
|
|
4148
|
+
search
|
|
4149
|
+
search-off
|
|
4150
|
+
section
|
|
4151
|
+
section-sign
|
|
4152
|
+
seedling
|
|
4153
|
+
seedling-off
|
|
4154
|
+
segway
|
|
4155
|
+
select
|
|
4156
|
+
select-all
|
|
4157
|
+
selector
|
|
4158
|
+
send
|
|
4159
|
+
send-2
|
|
4160
|
+
send-off
|
|
4161
|
+
seo
|
|
4162
|
+
separator
|
|
4163
|
+
separator-horizontal
|
|
4164
|
+
separator-vertical
|
|
4165
|
+
server
|
|
4166
|
+
server-2
|
|
4167
|
+
server-bolt
|
|
4168
|
+
server-cog
|
|
4169
|
+
server-off
|
|
4170
|
+
server-spark
|
|
4171
|
+
serverless
|
|
4172
|
+
servicemark
|
|
4173
|
+
settings
|
|
4174
|
+
settings-2
|
|
4175
|
+
settings-ai
|
|
4176
|
+
settings-automation
|
|
4177
|
+
settings-bolt
|
|
4178
|
+
settings-cancel
|
|
4179
|
+
settings-check
|
|
4180
|
+
settings-code
|
|
4181
|
+
settings-cog
|
|
4182
|
+
settings-dollar
|
|
4183
|
+
settings-down
|
|
4184
|
+
settings-exclamation
|
|
4185
|
+
settings-heart
|
|
4186
|
+
settings-minus
|
|
4187
|
+
settings-off
|
|
4188
|
+
settings-pause
|
|
4189
|
+
settings-pin
|
|
4190
|
+
settings-plus
|
|
4191
|
+
settings-question
|
|
4192
|
+
settings-search
|
|
4193
|
+
settings-share
|
|
4194
|
+
settings-spark
|
|
4195
|
+
settings-star
|
|
4196
|
+
settings-up
|
|
4197
|
+
settings-x
|
|
4198
|
+
shadow
|
|
4199
|
+
shadow-off
|
|
4200
|
+
shape
|
|
4201
|
+
shape-2
|
|
4202
|
+
shape-3
|
|
4203
|
+
shape-off
|
|
4204
|
+
share
|
|
4205
|
+
share-2
|
|
4206
|
+
share-3
|
|
4207
|
+
share-off
|
|
4208
|
+
shareplay
|
|
4209
|
+
shield
|
|
4210
|
+
shield-bolt
|
|
4211
|
+
shield-cancel
|
|
4212
|
+
shield-check
|
|
4213
|
+
shield-checkered
|
|
4214
|
+
shield-chevron
|
|
4215
|
+
shield-code
|
|
4216
|
+
shield-cog
|
|
4217
|
+
shield-dollar
|
|
4218
|
+
shield-down
|
|
4219
|
+
shield-exclamation
|
|
4220
|
+
shield-half
|
|
4221
|
+
shield-heart
|
|
4222
|
+
shield-lock
|
|
4223
|
+
shield-minus
|
|
4224
|
+
shield-off
|
|
4225
|
+
shield-pause
|
|
4226
|
+
shield-pin
|
|
4227
|
+
shield-plus
|
|
4228
|
+
shield-question
|
|
4229
|
+
shield-search
|
|
4230
|
+
shield-share
|
|
4231
|
+
shield-star
|
|
4232
|
+
shield-up
|
|
4233
|
+
shield-x
|
|
4234
|
+
ship
|
|
4235
|
+
ship-off
|
|
4236
|
+
shirt
|
|
4237
|
+
shirt-off
|
|
4238
|
+
shirt-sport
|
|
4239
|
+
shoe
|
|
4240
|
+
shoe-off
|
|
4241
|
+
shopping-bag
|
|
4242
|
+
shopping-bag-check
|
|
4243
|
+
shopping-bag-discount
|
|
4244
|
+
shopping-bag-edit
|
|
4245
|
+
shopping-bag-exclamation
|
|
4246
|
+
shopping-bag-heart
|
|
4247
|
+
shopping-bag-minus
|
|
4248
|
+
shopping-bag-plus
|
|
4249
|
+
shopping-bag-search
|
|
4250
|
+
shopping-bag-x
|
|
4251
|
+
shopping-cart
|
|
4252
|
+
shopping-cart-bolt
|
|
4253
|
+
shopping-cart-cancel
|
|
4254
|
+
shopping-cart-check
|
|
4255
|
+
shopping-cart-code
|
|
4256
|
+
shopping-cart-cog
|
|
4257
|
+
shopping-cart-copy
|
|
4258
|
+
shopping-cart-discount
|
|
4259
|
+
shopping-cart-dollar
|
|
4260
|
+
shopping-cart-down
|
|
4261
|
+
shopping-cart-exclamation
|
|
4262
|
+
shopping-cart-heart
|
|
4263
|
+
shopping-cart-minus
|
|
4264
|
+
shopping-cart-off
|
|
4265
|
+
shopping-cart-pause
|
|
4266
|
+
shopping-cart-pin
|
|
4267
|
+
shopping-cart-plus
|
|
4268
|
+
shopping-cart-question
|
|
4269
|
+
shopping-cart-search
|
|
4270
|
+
shopping-cart-share
|
|
4271
|
+
shopping-cart-star
|
|
4272
|
+
shopping-cart-up
|
|
4273
|
+
shopping-cart-x
|
|
4274
|
+
shovel
|
|
4275
|
+
shovel-pitchforks
|
|
4276
|
+
shredder
|
|
4277
|
+
sign-left
|
|
4278
|
+
sign-right
|
|
4279
|
+
signal-2g
|
|
4280
|
+
signal-3g
|
|
4281
|
+
signal-4g
|
|
4282
|
+
signal-4g-plus
|
|
4283
|
+
signal-5g
|
|
4284
|
+
signal-6g
|
|
4285
|
+
signal-e
|
|
4286
|
+
signal-g
|
|
4287
|
+
signal-h
|
|
4288
|
+
signal-h-plus
|
|
4289
|
+
signal-lte
|
|
4290
|
+
signature
|
|
4291
|
+
signature-off
|
|
4292
|
+
sitemap
|
|
4293
|
+
sitemap-off
|
|
4294
|
+
skateboard
|
|
4295
|
+
skateboard-off
|
|
4296
|
+
skateboarding
|
|
4297
|
+
skew-x
|
|
4298
|
+
skew-y
|
|
4299
|
+
ski-jumping
|
|
4300
|
+
skull
|
|
4301
|
+
slash
|
|
4302
|
+
slashes
|
|
4303
|
+
sleigh
|
|
4304
|
+
slice
|
|
4305
|
+
slideshow
|
|
4306
|
+
smart-home
|
|
4307
|
+
smart-home-off
|
|
4308
|
+
smoking
|
|
4309
|
+
smoking-no
|
|
4310
|
+
snowboarding
|
|
4311
|
+
snowflake
|
|
4312
|
+
snowflake-off
|
|
4313
|
+
snowman
|
|
4314
|
+
soccer-field
|
|
4315
|
+
social
|
|
4316
|
+
social-off
|
|
4317
|
+
sock
|
|
4318
|
+
sofa
|
|
4319
|
+
sofa-off
|
|
4320
|
+
solar-electricity
|
|
4321
|
+
solar-panel
|
|
4322
|
+
solar-panel-2
|
|
4323
|
+
sort-0-9
|
|
4324
|
+
sort-9-0
|
|
4325
|
+
sort-a-z
|
|
4326
|
+
sort-ascending
|
|
4327
|
+
sort-ascending-2
|
|
4328
|
+
sort-ascending-letters
|
|
4329
|
+
sort-ascending-numbers
|
|
4330
|
+
sort-ascending-shapes
|
|
4331
|
+
sort-ascending-small-big
|
|
4332
|
+
sort-descending
|
|
4333
|
+
sort-descending-2
|
|
4334
|
+
sort-descending-letters
|
|
4335
|
+
sort-descending-numbers
|
|
4336
|
+
sort-descending-shapes
|
|
4337
|
+
sort-descending-small-big
|
|
4338
|
+
sort-z-a
|
|
4339
|
+
sos
|
|
4340
|
+
soup
|
|
4341
|
+
soup-off
|
|
4342
|
+
source-code
|
|
4343
|
+
space
|
|
4344
|
+
space-off
|
|
4345
|
+
spaces
|
|
4346
|
+
spacing-horizontal
|
|
4347
|
+
spacing-vertical
|
|
4348
|
+
spade
|
|
4349
|
+
sparkles
|
|
4350
|
+
sparkles-2
|
|
4351
|
+
speakerphone
|
|
4352
|
+
speedboat
|
|
4353
|
+
sphere
|
|
4354
|
+
sphere-off
|
|
4355
|
+
sphere-plus
|
|
4356
|
+
spider
|
|
4357
|
+
spiral
|
|
4358
|
+
spiral-off
|
|
4359
|
+
sport-billard
|
|
4360
|
+
spray
|
|
4361
|
+
spy
|
|
4362
|
+
spy-off
|
|
4363
|
+
sql
|
|
4364
|
+
square
|
|
4365
|
+
square-arrow-down
|
|
4366
|
+
square-arrow-left
|
|
4367
|
+
square-arrow-right
|
|
4368
|
+
square-arrow-up
|
|
4369
|
+
square-asterisk
|
|
4370
|
+
square-check
|
|
4371
|
+
square-chevron-down
|
|
4372
|
+
square-chevron-left
|
|
4373
|
+
square-chevron-right
|
|
4374
|
+
square-chevron-up
|
|
4375
|
+
square-chevrons-down
|
|
4376
|
+
square-chevrons-left
|
|
4377
|
+
square-chevrons-right
|
|
4378
|
+
square-chevrons-up
|
|
4379
|
+
square-dashed
|
|
4380
|
+
square-dot
|
|
4381
|
+
square-f0
|
|
4382
|
+
square-f1
|
|
4383
|
+
square-f2
|
|
4384
|
+
square-f3
|
|
4385
|
+
square-f4
|
|
4386
|
+
square-f5
|
|
4387
|
+
square-f6
|
|
4388
|
+
square-f7
|
|
4389
|
+
square-f8
|
|
4390
|
+
square-f9
|
|
4391
|
+
square-forbid
|
|
4392
|
+
square-forbid-2
|
|
4393
|
+
square-half
|
|
4394
|
+
square-key
|
|
4395
|
+
square-letter-a
|
|
4396
|
+
square-letter-b
|
|
4397
|
+
square-letter-c
|
|
4398
|
+
square-letter-d
|
|
4399
|
+
square-letter-e
|
|
4400
|
+
square-letter-f
|
|
4401
|
+
square-letter-g
|
|
4402
|
+
square-letter-h
|
|
4403
|
+
square-letter-i
|
|
4404
|
+
square-letter-j
|
|
4405
|
+
square-letter-k
|
|
4406
|
+
square-letter-l
|
|
4407
|
+
square-letter-m
|
|
4408
|
+
square-letter-n
|
|
4409
|
+
square-letter-o
|
|
4410
|
+
square-letter-p
|
|
4411
|
+
square-letter-q
|
|
4412
|
+
square-letter-r
|
|
4413
|
+
square-letter-s
|
|
4414
|
+
square-letter-t
|
|
4415
|
+
square-letter-u
|
|
4416
|
+
square-letter-v
|
|
4417
|
+
square-letter-w
|
|
4418
|
+
square-letter-x
|
|
4419
|
+
square-letter-y
|
|
4420
|
+
square-letter-z
|
|
4421
|
+
square-minus
|
|
4422
|
+
square-minus-2
|
|
4423
|
+
square-number-0
|
|
4424
|
+
square-number-1
|
|
4425
|
+
square-number-2
|
|
4426
|
+
square-number-3
|
|
4427
|
+
square-number-4
|
|
4428
|
+
square-number-5
|
|
4429
|
+
square-number-6
|
|
4430
|
+
square-number-7
|
|
4431
|
+
square-number-8
|
|
4432
|
+
square-number-9
|
|
4433
|
+
square-off
|
|
4434
|
+
square-percentage
|
|
4435
|
+
square-plus
|
|
4436
|
+
square-plus-2
|
|
4437
|
+
square-root
|
|
4438
|
+
square-root-2
|
|
4439
|
+
square-rotated
|
|
4440
|
+
square-rotated-asterisk
|
|
4441
|
+
square-rotated-forbid
|
|
4442
|
+
square-rotated-forbid-2
|
|
4443
|
+
square-rotated-off
|
|
4444
|
+
square-rounded
|
|
4445
|
+
square-rounded-arrow-down
|
|
4446
|
+
square-rounded-arrow-left
|
|
4447
|
+
square-rounded-arrow-right
|
|
4448
|
+
square-rounded-arrow-up
|
|
4449
|
+
square-rounded-check
|
|
4450
|
+
square-rounded-chevron-down
|
|
4451
|
+
square-rounded-chevron-left
|
|
4452
|
+
square-rounded-chevron-right
|
|
4453
|
+
square-rounded-chevron-up
|
|
4454
|
+
square-rounded-chevrons-down
|
|
4455
|
+
square-rounded-chevrons-left
|
|
4456
|
+
square-rounded-chevrons-right
|
|
4457
|
+
square-rounded-chevrons-up
|
|
4458
|
+
square-rounded-letter-a
|
|
4459
|
+
square-rounded-letter-b
|
|
4460
|
+
square-rounded-letter-c
|
|
4461
|
+
square-rounded-letter-d
|
|
4462
|
+
square-rounded-letter-e
|
|
4463
|
+
square-rounded-letter-f
|
|
4464
|
+
square-rounded-letter-g
|
|
4465
|
+
square-rounded-letter-h
|
|
4466
|
+
square-rounded-letter-i
|
|
4467
|
+
square-rounded-letter-j
|
|
4468
|
+
square-rounded-letter-k
|
|
4469
|
+
square-rounded-letter-l
|
|
4470
|
+
square-rounded-letter-m
|
|
4471
|
+
square-rounded-letter-n
|
|
4472
|
+
square-rounded-letter-o
|
|
4473
|
+
square-rounded-letter-p
|
|
4474
|
+
square-rounded-letter-q
|
|
4475
|
+
square-rounded-letter-r
|
|
4476
|
+
square-rounded-letter-s
|
|
4477
|
+
square-rounded-letter-t
|
|
4478
|
+
square-rounded-letter-u
|
|
4479
|
+
square-rounded-letter-v
|
|
4480
|
+
square-rounded-letter-w
|
|
4481
|
+
square-rounded-letter-x
|
|
4482
|
+
square-rounded-letter-y
|
|
4483
|
+
square-rounded-letter-z
|
|
4484
|
+
square-rounded-minus
|
|
4485
|
+
square-rounded-minus-2
|
|
4486
|
+
square-rounded-number-0
|
|
4487
|
+
square-rounded-number-1
|
|
4488
|
+
square-rounded-number-2
|
|
4489
|
+
square-rounded-number-3
|
|
4490
|
+
square-rounded-number-4
|
|
4491
|
+
square-rounded-number-5
|
|
4492
|
+
square-rounded-number-6
|
|
4493
|
+
square-rounded-number-7
|
|
4494
|
+
square-rounded-number-8
|
|
4495
|
+
square-rounded-number-9
|
|
4496
|
+
square-rounded-percentage
|
|
4497
|
+
square-rounded-plus
|
|
4498
|
+
square-rounded-plus-2
|
|
4499
|
+
square-rounded-x
|
|
4500
|
+
square-toggle
|
|
4501
|
+
square-toggle-horizontal
|
|
4502
|
+
square-x
|
|
4503
|
+
squares
|
|
4504
|
+
squares-diagonal
|
|
4505
|
+
squares-selected
|
|
4506
|
+
stack
|
|
4507
|
+
stack-2
|
|
4508
|
+
stack-3
|
|
4509
|
+
stack-back
|
|
4510
|
+
stack-backward
|
|
4511
|
+
stack-forward
|
|
4512
|
+
stack-front
|
|
4513
|
+
stack-middle
|
|
4514
|
+
stack-pop
|
|
4515
|
+
stack-push
|
|
4516
|
+
stairs
|
|
4517
|
+
stairs-down
|
|
4518
|
+
stairs-up
|
|
4519
|
+
star
|
|
4520
|
+
star-half
|
|
4521
|
+
star-off
|
|
4522
|
+
stars
|
|
4523
|
+
stars-off
|
|
4524
|
+
status-change
|
|
4525
|
+
steam
|
|
4526
|
+
steering-wheel
|
|
4527
|
+
steering-wheel-off
|
|
4528
|
+
step-into
|
|
4529
|
+
step-out
|
|
4530
|
+
stereo-glasses
|
|
4531
|
+
stethoscope
|
|
4532
|
+
stethoscope-off
|
|
4533
|
+
sticker
|
|
4534
|
+
sticker-2
|
|
4535
|
+
stopwatch
|
|
4536
|
+
storm
|
|
4537
|
+
storm-off
|
|
4538
|
+
stretching
|
|
4539
|
+
stretching-2
|
|
4540
|
+
strikethrough
|
|
4541
|
+
stroke-curved
|
|
4542
|
+
stroke-dynamic
|
|
4543
|
+
stroke-straight
|
|
4544
|
+
submarine
|
|
4545
|
+
subscript
|
|
4546
|
+
subtask
|
|
4547
|
+
subtitles
|
|
4548
|
+
subtitles-ai
|
|
4549
|
+
subtitles-edit
|
|
4550
|
+
subtitles-off
|
|
4551
|
+
sum
|
|
4552
|
+
sum-off
|
|
4553
|
+
sun
|
|
4554
|
+
sun-electricity
|
|
4555
|
+
sun-high
|
|
4556
|
+
sun-low
|
|
4557
|
+
sun-moon
|
|
4558
|
+
sun-off
|
|
4559
|
+
sun-wind
|
|
4560
|
+
sunglasses
|
|
4561
|
+
sunrise
|
|
4562
|
+
sunset
|
|
4563
|
+
sunset-2
|
|
4564
|
+
superscript
|
|
4565
|
+
svg
|
|
4566
|
+
swimming
|
|
4567
|
+
swipe
|
|
4568
|
+
swipe-down
|
|
4569
|
+
swipe-left
|
|
4570
|
+
swipe-right
|
|
4571
|
+
swipe-up
|
|
4572
|
+
switch
|
|
4573
|
+
switch-2
|
|
4574
|
+
switch-3
|
|
4575
|
+
switch-horizontal
|
|
4576
|
+
switch-vertical
|
|
4577
|
+
sword
|
|
4578
|
+
sword-off
|
|
4579
|
+
swords
|
|
4580
|
+
table
|
|
4581
|
+
table-alias
|
|
4582
|
+
table-column
|
|
4583
|
+
table-dashed
|
|
4584
|
+
table-down
|
|
4585
|
+
table-export
|
|
4586
|
+
table-heart
|
|
4587
|
+
table-import
|
|
4588
|
+
table-minus
|
|
4589
|
+
table-off
|
|
4590
|
+
table-options
|
|
4591
|
+
table-plus
|
|
4592
|
+
table-row
|
|
4593
|
+
table-share
|
|
4594
|
+
table-shortcut
|
|
4595
|
+
table-spark
|
|
4596
|
+
tag
|
|
4597
|
+
tag-minus
|
|
4598
|
+
tag-off
|
|
4599
|
+
tag-plus
|
|
4600
|
+
tag-starred
|
|
4601
|
+
tags
|
|
4602
|
+
tags-off
|
|
4603
|
+
tallymark-1
|
|
4604
|
+
tallymark-2
|
|
4605
|
+
tallymark-3
|
|
4606
|
+
tallymark-4
|
|
4607
|
+
tallymarks
|
|
4608
|
+
tank
|
|
4609
|
+
target
|
|
4610
|
+
target-arrow
|
|
4611
|
+
target-off
|
|
4612
|
+
tax
|
|
4613
|
+
tax-euro
|
|
4614
|
+
tax-pound
|
|
4615
|
+
teapot
|
|
4616
|
+
telescope
|
|
4617
|
+
telescope-off
|
|
4618
|
+
temperature
|
|
4619
|
+
temperature-celsius
|
|
4620
|
+
temperature-fahrenheit
|
|
4621
|
+
temperature-minus
|
|
4622
|
+
temperature-off
|
|
4623
|
+
temperature-plus
|
|
4624
|
+
temperature-snow
|
|
4625
|
+
temperature-sun
|
|
4626
|
+
template
|
|
4627
|
+
template-off
|
|
4628
|
+
tent
|
|
4629
|
+
tent-off
|
|
4630
|
+
terminal
|
|
4631
|
+
terminal-2
|
|
4632
|
+
test-pipe
|
|
4633
|
+
test-pipe-2
|
|
4634
|
+
test-pipe-off
|
|
4635
|
+
tex
|
|
4636
|
+
text-caption
|
|
4637
|
+
text-color
|
|
4638
|
+
text-decrease
|
|
4639
|
+
text-direction-ltr
|
|
4640
|
+
text-direction-rtl
|
|
4641
|
+
text-grammar
|
|
4642
|
+
text-increase
|
|
4643
|
+
text-orientation
|
|
4644
|
+
text-plus
|
|
4645
|
+
text-recognition
|
|
4646
|
+
text-resize
|
|
4647
|
+
text-scan-2
|
|
4648
|
+
text-size
|
|
4649
|
+
text-spellcheck
|
|
4650
|
+
text-wrap
|
|
4651
|
+
text-wrap-column
|
|
4652
|
+
text-wrap-disabled
|
|
4653
|
+
texture
|
|
4654
|
+
theater
|
|
4655
|
+
thermometer
|
|
4656
|
+
thumb-down
|
|
4657
|
+
thumb-down-off
|
|
4658
|
+
thumb-up
|
|
4659
|
+
thumb-up-off
|
|
4660
|
+
tic-tac
|
|
4661
|
+
ticket
|
|
4662
|
+
ticket-off
|
|
4663
|
+
tie
|
|
4664
|
+
tilde
|
|
4665
|
+
tilt-shift
|
|
4666
|
+
tilt-shift-off
|
|
4667
|
+
time-duration-0
|
|
4668
|
+
time-duration-10
|
|
4669
|
+
time-duration-15
|
|
4670
|
+
time-duration-30
|
|
4671
|
+
time-duration-45
|
|
4672
|
+
time-duration-5
|
|
4673
|
+
time-duration-60
|
|
4674
|
+
time-duration-90
|
|
4675
|
+
time-duration-off
|
|
4676
|
+
timeline
|
|
4677
|
+
timeline-event
|
|
4678
|
+
timeline-event-exclamation
|
|
4679
|
+
timeline-event-minus
|
|
4680
|
+
timeline-event-plus
|
|
4681
|
+
timeline-event-text
|
|
4682
|
+
timeline-event-x
|
|
4683
|
+
timezone
|
|
4684
|
+
tip-jar
|
|
4685
|
+
tip-jar-euro
|
|
4686
|
+
tip-jar-pound
|
|
4687
|
+
tir
|
|
4688
|
+
toggle-left
|
|
4689
|
+
toggle-right
|
|
4690
|
+
toilet-paper
|
|
4691
|
+
toilet-paper-off
|
|
4692
|
+
toml
|
|
4693
|
+
tool
|
|
4694
|
+
tools
|
|
4695
|
+
tools-kitchen
|
|
4696
|
+
tools-kitchen-2
|
|
4697
|
+
tools-kitchen-2-off
|
|
4698
|
+
tools-kitchen-3
|
|
4699
|
+
tools-kitchen-off
|
|
4700
|
+
tools-off
|
|
4701
|
+
tooltip
|
|
4702
|
+
topology-bus
|
|
4703
|
+
topology-complex
|
|
4704
|
+
topology-full
|
|
4705
|
+
topology-full-hierarchy
|
|
4706
|
+
topology-ring
|
|
4707
|
+
topology-ring-2
|
|
4708
|
+
topology-ring-3
|
|
4709
|
+
topology-star
|
|
4710
|
+
topology-star-2
|
|
4711
|
+
topology-star-3
|
|
4712
|
+
topology-star-ring
|
|
4713
|
+
topology-star-ring-2
|
|
4714
|
+
topology-star-ring-3
|
|
4715
|
+
torii
|
|
4716
|
+
tornado
|
|
4717
|
+
tournament
|
|
4718
|
+
tower
|
|
4719
|
+
tower-off
|
|
4720
|
+
track
|
|
4721
|
+
tractor
|
|
4722
|
+
trademark
|
|
4723
|
+
traffic-cone
|
|
4724
|
+
traffic-cone-off
|
|
4725
|
+
traffic-lights
|
|
4726
|
+
traffic-lights-off
|
|
4727
|
+
train
|
|
4728
|
+
transaction-bitcoin
|
|
4729
|
+
transaction-dollar
|
|
4730
|
+
transaction-euro
|
|
4731
|
+
transaction-pound
|
|
4732
|
+
transaction-rupee
|
|
4733
|
+
transaction-yen
|
|
4734
|
+
transaction-yuan
|
|
4735
|
+
transfer
|
|
4736
|
+
transfer-in
|
|
4737
|
+
transfer-out
|
|
4738
|
+
transfer-vertical
|
|
4739
|
+
transform
|
|
4740
|
+
transform-point
|
|
4741
|
+
transform-point-bottom-left
|
|
4742
|
+
transform-point-bottom-right
|
|
4743
|
+
transform-point-top-left
|
|
4744
|
+
transform-point-top-right
|
|
4745
|
+
transition-bottom
|
|
4746
|
+
transition-left
|
|
4747
|
+
transition-right
|
|
4748
|
+
transition-top
|
|
4749
|
+
trash
|
|
4750
|
+
trash-off
|
|
4751
|
+
trash-x
|
|
4752
|
+
treadmill
|
|
4753
|
+
tree
|
|
4754
|
+
trees
|
|
4755
|
+
trekking
|
|
4756
|
+
trending-down
|
|
4757
|
+
trending-down-2
|
|
4758
|
+
trending-down-3
|
|
4759
|
+
trending-up
|
|
4760
|
+
trending-up-2
|
|
4761
|
+
trending-up-3
|
|
4762
|
+
trending-up-down
|
|
4763
|
+
triangle
|
|
4764
|
+
triangle-inverted
|
|
4765
|
+
triangle-minus
|
|
4766
|
+
triangle-minus-2
|
|
4767
|
+
triangle-off
|
|
4768
|
+
triangle-plus
|
|
4769
|
+
triangle-plus-2
|
|
4770
|
+
triangle-square-circle
|
|
4771
|
+
triangles
|
|
4772
|
+
trident
|
|
4773
|
+
trolley
|
|
4774
|
+
trophy
|
|
4775
|
+
trophy-off
|
|
4776
|
+
trowel
|
|
4777
|
+
truck
|
|
4778
|
+
truck-delivery
|
|
4779
|
+
truck-loading
|
|
4780
|
+
truck-off
|
|
4781
|
+
truck-return
|
|
4782
|
+
txt
|
|
4783
|
+
typeface
|
|
4784
|
+
typography
|
|
4785
|
+
typography-off
|
|
4786
|
+
u-turn-left
|
|
4787
|
+
u-turn-right
|
|
4788
|
+
ufo
|
|
4789
|
+
ufo-off
|
|
4790
|
+
uhd
|
|
4791
|
+
umbrella
|
|
4792
|
+
umbrella-2
|
|
4793
|
+
umbrella-closed
|
|
4794
|
+
umbrella-closed-2
|
|
4795
|
+
umbrella-off
|
|
4796
|
+
underline
|
|
4797
|
+
universe
|
|
4798
|
+
unlink
|
|
4799
|
+
upload
|
|
4800
|
+
urgent
|
|
4801
|
+
usb
|
|
4802
|
+
user
|
|
4803
|
+
user-bitcoin
|
|
4804
|
+
user-bolt
|
|
4805
|
+
user-cancel
|
|
4806
|
+
user-check
|
|
4807
|
+
user-circle
|
|
4808
|
+
user-code
|
|
4809
|
+
user-cog
|
|
4810
|
+
user-dollar
|
|
4811
|
+
user-down
|
|
4812
|
+
user-edit
|
|
4813
|
+
user-exclamation
|
|
4814
|
+
user-heart
|
|
4815
|
+
user-hexagon
|
|
4816
|
+
user-key
|
|
4817
|
+
user-minus
|
|
4818
|
+
user-off
|
|
4819
|
+
user-pause
|
|
4820
|
+
user-pentagon
|
|
4821
|
+
user-pin
|
|
4822
|
+
user-plus
|
|
4823
|
+
user-question
|
|
4824
|
+
user-scan
|
|
4825
|
+
user-screen
|
|
4826
|
+
user-search
|
|
4827
|
+
user-share
|
|
4828
|
+
user-shield
|
|
4829
|
+
user-square
|
|
4830
|
+
user-square-rounded
|
|
4831
|
+
user-star
|
|
4832
|
+
user-up
|
|
4833
|
+
user-x
|
|
4834
|
+
users
|
|
4835
|
+
users-group
|
|
4836
|
+
users-minus
|
|
4837
|
+
users-plus
|
|
4838
|
+
uv-index
|
|
4839
|
+
ux-circle
|
|
4840
|
+
vaccine
|
|
4841
|
+
vaccine-bottle
|
|
4842
|
+
vaccine-bottle-off
|
|
4843
|
+
vaccine-off
|
|
4844
|
+
vacuum-cleaner
|
|
4845
|
+
variable
|
|
4846
|
+
variable-minus
|
|
4847
|
+
variable-off
|
|
4848
|
+
variable-plus
|
|
4849
|
+
vector
|
|
4850
|
+
vector-bezier
|
|
4851
|
+
vector-bezier-2
|
|
4852
|
+
vector-bezier-arc
|
|
4853
|
+
vector-bezier-circle
|
|
4854
|
+
vector-off
|
|
4855
|
+
vector-spline
|
|
4856
|
+
vector-triangle
|
|
4857
|
+
vector-triangle-off
|
|
4858
|
+
venus
|
|
4859
|
+
versions
|
|
4860
|
+
versions-off
|
|
4861
|
+
video
|
|
4862
|
+
video-minus
|
|
4863
|
+
video-off
|
|
4864
|
+
video-plus
|
|
4865
|
+
view-360
|
|
4866
|
+
view-360-arrow
|
|
4867
|
+
view-360-number
|
|
4868
|
+
view-360-off
|
|
4869
|
+
viewfinder
|
|
4870
|
+
viewfinder-off
|
|
4871
|
+
viewport-narrow
|
|
4872
|
+
viewport-short
|
|
4873
|
+
viewport-tall
|
|
4874
|
+
viewport-wide
|
|
4875
|
+
vinyl
|
|
4876
|
+
vip
|
|
4877
|
+
vip-2
|
|
4878
|
+
vip-off
|
|
4879
|
+
virus
|
|
4880
|
+
virus-off
|
|
4881
|
+
virus-search
|
|
4882
|
+
vocabulary
|
|
4883
|
+
vocabulary-off
|
|
4884
|
+
volcano
|
|
4885
|
+
volume
|
|
4886
|
+
volume-2
|
|
4887
|
+
volume-3
|
|
4888
|
+
volume-4
|
|
4889
|
+
volume-off
|
|
4890
|
+
vs
|
|
4891
|
+
walk
|
|
4892
|
+
wall
|
|
4893
|
+
wall-off
|
|
4894
|
+
wallet
|
|
4895
|
+
wallet-off
|
|
4896
|
+
wallpaper
|
|
4897
|
+
wallpaper-off
|
|
4898
|
+
wand
|
|
4899
|
+
wand-off
|
|
4900
|
+
wash
|
|
4901
|
+
wash-dry
|
|
4902
|
+
wash-dry-1
|
|
4903
|
+
wash-dry-2
|
|
4904
|
+
wash-dry-3
|
|
4905
|
+
wash-dry-a
|
|
4906
|
+
wash-dry-dip
|
|
4907
|
+
wash-dry-f
|
|
4908
|
+
wash-dry-flat
|
|
4909
|
+
wash-dry-hang
|
|
4910
|
+
wash-dry-off
|
|
4911
|
+
wash-dry-p
|
|
4912
|
+
wash-dry-shade
|
|
4913
|
+
wash-dry-w
|
|
4914
|
+
wash-dryclean
|
|
4915
|
+
wash-dryclean-off
|
|
4916
|
+
wash-eco
|
|
4917
|
+
wash-gentle
|
|
4918
|
+
wash-hand
|
|
4919
|
+
wash-machine
|
|
4920
|
+
wash-off
|
|
4921
|
+
wash-press
|
|
4922
|
+
wash-temperature-1
|
|
4923
|
+
wash-temperature-2
|
|
4924
|
+
wash-temperature-3
|
|
4925
|
+
wash-temperature-4
|
|
4926
|
+
wash-temperature-5
|
|
4927
|
+
wash-temperature-6
|
|
4928
|
+
wash-tumble-dry
|
|
4929
|
+
wash-tumble-off
|
|
4930
|
+
waterpolo
|
|
4931
|
+
wave-saw-tool
|
|
4932
|
+
wave-sine
|
|
4933
|
+
wave-square
|
|
4934
|
+
waves-electricity
|
|
4935
|
+
webhook
|
|
4936
|
+
webhook-off
|
|
4937
|
+
weight
|
|
4938
|
+
wheat
|
|
4939
|
+
wheat-off
|
|
4940
|
+
wheel
|
|
4941
|
+
wheelchair
|
|
4942
|
+
wheelchair-off
|
|
4943
|
+
whirl
|
|
4944
|
+
whisk
|
|
4945
|
+
wifi
|
|
4946
|
+
wifi-0
|
|
4947
|
+
wifi-1
|
|
4948
|
+
wifi-2
|
|
4949
|
+
wifi-off
|
|
4950
|
+
wind
|
|
4951
|
+
wind-electricity
|
|
4952
|
+
wind-off
|
|
4953
|
+
windmill
|
|
4954
|
+
windmill-off
|
|
4955
|
+
window
|
|
4956
|
+
window-maximize
|
|
4957
|
+
window-minimize
|
|
4958
|
+
window-off
|
|
4959
|
+
windsock
|
|
4960
|
+
wiper
|
|
4961
|
+
wiper-wash
|
|
4962
|
+
woman
|
|
4963
|
+
wood
|
|
4964
|
+
world
|
|
4965
|
+
world-bolt
|
|
4966
|
+
world-cancel
|
|
4967
|
+
world-check
|
|
4968
|
+
world-code
|
|
4969
|
+
world-cog
|
|
4970
|
+
world-dollar
|
|
4971
|
+
world-down
|
|
4972
|
+
world-download
|
|
4973
|
+
world-exclamation
|
|
4974
|
+
world-heart
|
|
4975
|
+
world-latitude
|
|
4976
|
+
world-longitude
|
|
4977
|
+
world-map
|
|
4978
|
+
world-minus
|
|
4979
|
+
world-off
|
|
4980
|
+
world-pause
|
|
4981
|
+
world-pin
|
|
4982
|
+
world-plus
|
|
4983
|
+
world-question
|
|
4984
|
+
world-search
|
|
4985
|
+
world-share
|
|
4986
|
+
world-star
|
|
4987
|
+
world-up
|
|
4988
|
+
world-upload
|
|
4989
|
+
world-www
|
|
4990
|
+
world-x
|
|
4991
|
+
wrecking-ball
|
|
4992
|
+
writing
|
|
4993
|
+
writing-off
|
|
4994
|
+
writing-sign
|
|
4995
|
+
writing-sign-off
|
|
4996
|
+
x
|
|
4997
|
+
x-mark
|
|
4998
|
+
x-power-y
|
|
4999
|
+
xbox-a
|
|
5000
|
+
xbox-b
|
|
5001
|
+
xbox-x
|
|
5002
|
+
xbox-y
|
|
5003
|
+
xd
|
|
5004
|
+
xxx
|
|
5005
|
+
yin-yang
|
|
5006
|
+
yoga
|
|
5007
|
+
zeppelin
|
|
5008
|
+
zeppelin-off
|
|
5009
|
+
zero-config
|
|
5010
|
+
zip
|
|
5011
|
+
zodiac-aquarius
|
|
5012
|
+
zodiac-aries
|
|
5013
|
+
zodiac-cancer
|
|
5014
|
+
zodiac-capricorn
|
|
5015
|
+
zodiac-gemini
|
|
5016
|
+
zodiac-leo
|
|
5017
|
+
zodiac-libra
|
|
5018
|
+
zodiac-pisces
|
|
5019
|
+
zodiac-sagittarius
|
|
5020
|
+
zodiac-scorpio
|
|
5021
|
+
zodiac-taurus
|
|
5022
|
+
zodiac-virgo
|
|
5023
|
+
zoom
|
|
5024
|
+
zoom-cancel
|
|
5025
|
+
zoom-check
|
|
5026
|
+
zoom-code
|
|
5027
|
+
zoom-exclamation
|
|
5028
|
+
zoom-in
|
|
5029
|
+
zoom-in-area
|
|
5030
|
+
zoom-money
|
|
5031
|
+
zoom-out
|
|
5032
|
+
zoom-out-area
|
|
5033
|
+
zoom-pan
|
|
5034
|
+
zoom-question
|
|
5035
|
+
zoom-replace
|
|
5036
|
+
zoom-reset
|
|
5037
|
+
zoom-scan
|
|
5038
|
+
zzz
|
|
5039
|
+
zzz-off
|