@koide-labs/ui 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.husky/pre-commit +1 -0
- package/.storybook/main.ts +25 -0
- package/.storybook/preview-head.html +6 -0
- package/.storybook/preview.tsx +48 -0
- package/.storybook/vitest.setup.ts +8 -0
- package/README.md +11 -0
- package/eslint.config.mjs +29 -0
- package/lint-staged.config.js +15 -0
- package/package.json +95 -0
- package/pnpm-workspace.yaml +2 -0
- package/postcss.config.mjs +7 -0
- package/prettier.config.mjs +24 -0
- package/scripts/build-icon-types.ts +38 -0
- package/src/-types.ts +8 -0
- package/src/-utils.tsx +64 -0
- package/src/components/accordion/accordion.module.css +44 -0
- package/src/components/accordion/accordion.stories.tsx +36 -0
- package/src/components/accordion/index.tsx +67 -0
- package/src/components/alert-dialog/alert-dialog.module.css +5 -0
- package/src/components/alert-dialog/alert-dialog.stories.tsx +53 -0
- package/src/components/alert-dialog/index.tsx +138 -0
- package/src/components/anchor/anchor.module.css +18 -0
- package/src/components/anchor/anchor.stories.tsx +28 -0
- package/src/components/anchor/index.tsx +45 -0
- package/src/components/avatar/avatar.module.css +56 -0
- package/src/components/avatar/avatar.stories.tsx +61 -0
- package/src/components/avatar/index.tsx +82 -0
- package/src/components/badge/badge.module.css +35 -0
- package/src/components/badge/badge.stories.tsx +60 -0
- package/src/components/badge/index.tsx +71 -0
- package/src/components/button/button.module.css +42 -0
- package/src/components/button/button.stories.tsx +108 -0
- package/src/components/button/index.tsx +63 -0
- package/src/components/checkbox/checkbox.module.css +36 -0
- package/src/components/checkbox/checkbox.stories.tsx +21 -0
- package/src/components/checkbox/index.tsx +41 -0
- package/src/components/code/code.module.css +20 -0
- package/src/components/code/code.stories.tsx +42 -0
- package/src/components/code/index.tsx +73 -0
- package/src/components/collapse/collapse.module.css +27 -0
- package/src/components/collapse/collapse.stories.tsx +27 -0
- package/src/components/collapse/index.tsx +59 -0
- package/src/components/command/command.module.css +95 -0
- package/src/components/command/command.stories.tsx +38 -0
- package/src/components/command/index.tsx +108 -0
- package/src/components/context-menu/context-menu.module.css +36 -0
- package/src/components/context-menu/context-menu.stories.tsx +99 -0
- package/src/components/context-menu/index.tsx +242 -0
- package/src/components/dialog/dialog.module.css +71 -0
- package/src/components/dialog/dialog.stories.tsx +29 -0
- package/src/components/dialog/index.tsx +148 -0
- package/src/components/heading/heading.module.css +3 -0
- package/src/components/heading/heading.stories.tsx +52 -0
- package/src/components/heading/index.tsx +112 -0
- package/src/components/icon/icon-names.ts +3189 -0
- package/src/components/icon/icon.module.css +36 -0
- package/src/components/icon/icon.stories.tsx +40 -0
- package/src/components/icon/index.tsx +60 -0
- package/src/components/icon-button/icon-button.module.css +33 -0
- package/src/components/icon-button/icon-button.stories.tsx +59 -0
- package/src/components/icon-button/index.tsx +48 -0
- package/src/components/inline-code/index.tsx +29 -0
- package/src/components/inline-code/inline-code.module.css +13 -0
- package/src/components/inline-code/inline-code.stories.tsx +31 -0
- package/src/components/input/index.tsx +22 -0
- package/src/components/input/input.module.css +23 -0
- package/src/components/input/input.stories.tsx +52 -0
- package/src/components/meter/index.tsx +55 -0
- package/src/components/meter/meter.module.css +23 -0
- package/src/components/meter/meter.stories.tsx +31 -0
- package/src/components/multiline-input/index.tsx +58 -0
- package/src/components/multiline-input/multiline-input.stories.tsx +26 -0
- package/src/components/number-input/index.tsx +74 -0
- package/src/components/number-input/number-input.module.css +41 -0
- package/src/components/number-input/number-input.stories.tsx +24 -0
- package/src/components/password-input/index.tsx +24 -0
- package/src/components/password-input/password-input.module.css +10 -0
- package/src/components/password-input/password-input.stories.tsx +24 -0
- package/src/components/pill/index.tsx +45 -0
- package/src/components/pill/pill.module.css +22 -0
- package/src/components/pill/pill.stories.tsx +83 -0
- package/src/components/popover/index.tsx +94 -0
- package/src/components/popover/popover.module.css +8 -0
- package/src/components/popover/popover.stories.tsx +53 -0
- package/src/components/preview-card/index.tsx +68 -0
- package/src/components/preview-card/preview-card.module.css +5 -0
- package/src/components/preview-card/preview-card.stories.tsx +58 -0
- package/src/components/radio/index.tsx +67 -0
- package/src/components/radio/radio-group.module.css +5 -0
- package/src/components/radio/radio.module.css +36 -0
- package/src/components/radio/radio.stories.tsx +27 -0
- package/src/components/search-bar/index.tsx +60 -0
- package/src/components/search-bar/search-bar.module.css +29 -0
- package/src/components/search-bar/search-bar.stories.tsx +37 -0
- package/src/components/select/index.tsx +132 -0
- package/src/components/select/select.module.css +63 -0
- package/src/components/select/select.stories.tsx +49 -0
- package/src/components/separator/index.tsx +28 -0
- package/src/components/separator/separator.module.css +24 -0
- package/src/components/separator/separator.stories.tsx +40 -0
- package/src/components/slider/index.tsx +28 -0
- package/src/components/slider/slider.module.css +52 -0
- package/src/components/slider/slider.stories.tsx +53 -0
- package/src/components/spinner/index.tsx +14 -0
- package/src/components/spinner/spinner.module.css +13 -0
- package/src/components/spinner/spinner.stories.tsx +17 -0
- package/src/components/stacked-avatars/index.tsx +88 -0
- package/src/components/stacked-avatars/stacked-avatars.module.css +79 -0
- package/src/components/stacked-avatars/stacked-avatars.stories.tsx +48 -0
- package/src/components/status-banner/index.tsx +96 -0
- package/src/components/status-banner/status-banner.module.css +52 -0
- package/src/components/status-banner/status-banner.stories.tsx +44 -0
- package/src/components/surface/index.tsx +83 -0
- package/src/components/surface/surface.module.css +35 -0
- package/src/components/surface/surface.stories.tsx +84 -0
- package/src/components/switch/index.tsx +23 -0
- package/src/components/switch/switch.module.css +45 -0
- package/src/components/switch/switch.stories.tsx +48 -0
- package/src/components/tabs/index.tsx +126 -0
- package/src/components/tabs/tabs.module.css +134 -0
- package/src/components/tabs/tabs.stories.tsx +88 -0
- package/src/components/text/index.tsx +69 -0
- package/src/components/text/text.module.css +76 -0
- package/src/components/text/text.stories.tsx +107 -0
- package/src/components/theme-provider/index.ts +2 -0
- package/src/components/theme-provider/theme-context.tsx +18 -0
- package/src/components/theme-provider/theme-provider.stories.tsx +47 -0
- package/src/components/theme-provider/theme-provider.tsx +77 -0
- package/src/components/timestamp/index.tsx +131 -0
- package/src/components/timestamp/timestamp.module.css +8 -0
- package/src/components/timestamp/timestamp.stories.tsx +37 -0
- package/src/components/toast/index.ts +2 -0
- package/src/components/toast/toast.module.css +163 -0
- package/src/components/toast/toast.stories.tsx +53 -0
- package/src/components/toast/toast.tsx +104 -0
- package/src/components/toast/use-toast-manager.ts +63 -0
- package/src/components/tooltip/index.tsx +61 -0
- package/src/components/tooltip/tooltip-arrow.tsx +17 -0
- package/src/components/tooltip/tooltip.module.css +44 -0
- package/src/components/tooltip/tooltip.stories.tsx +76 -0
- package/src/components/view/index.tsx +137 -0
- package/src/components/view/view.module.css +11 -0
- package/src/components/view/view.stories.tsx +131 -0
- package/src/components/view/view_colorway.module.css +280 -0
- package/src/components/view/view_interactive.module.css +127 -0
- package/src/components/view/view_loading.module.css +58 -0
- package/src/components/visually-hidden/index.ts +1 -0
- package/src/index.ts +49 -0
- package/src/integrations/react-markdown/index.tsx +134 -0
- package/src/integrations/react-markdown/react-markdown.module.css +62 -0
- package/src/integrations/react-markdown/react-markdown.stories.tsx +31 -0
- package/src/integrations/remix.ts +12 -0
- package/src/integrations/tailwind.css +173 -0
- package/src/integrations/twemoij/index.tsx +13 -0
- package/src/integrations/twemoij/twemoji.module.css +7 -0
- package/src/integrations/twemoij/twemoji.stories.tsx +40 -0
- package/src/stories/components/all-variants.tsx +40 -0
- package/src/stories/data.ts +72 -0
- package/src/stories/utils.ts +20 -0
- package/src/styles/core.css +153 -0
- package/src/styles/themes/dark.css +86 -0
- package/src/styles/themes/light.css +86 -0
- package/src/styles/tokens.ts +282 -0
- package/src/styles/transitions.module.css +31 -0
- package/stylelint.config.mjs +29 -0
- package/tsconfig.app.json +35 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +26 -0
- package/vite.config.ts +103 -0
- package/vitest.shims.d.ts +1 -0
|
@@ -0,0 +1,3189 @@
|
|
|
1
|
+
export type IconName =
|
|
2
|
+
| "24-hours-fill"
|
|
3
|
+
| "24-hours-line"
|
|
4
|
+
| "4k-fill"
|
|
5
|
+
| "4k-line"
|
|
6
|
+
| "a-b"
|
|
7
|
+
| "account-box-fill"
|
|
8
|
+
| "account-box-line"
|
|
9
|
+
| "account-circle-fill"
|
|
10
|
+
| "account-circle-line"
|
|
11
|
+
| "account-pin-box-fill"
|
|
12
|
+
| "account-pin-box-line"
|
|
13
|
+
| "account-pin-circle-fill"
|
|
14
|
+
| "account-pin-circle-line"
|
|
15
|
+
| "add-box-fill"
|
|
16
|
+
| "add-box-line"
|
|
17
|
+
| "add-circle-fill"
|
|
18
|
+
| "add-circle-line"
|
|
19
|
+
| "add-fill"
|
|
20
|
+
| "add-line"
|
|
21
|
+
| "admin-fill"
|
|
22
|
+
| "admin-line"
|
|
23
|
+
| "advertisement-fill"
|
|
24
|
+
| "advertisement-line"
|
|
25
|
+
| "airplay-fill"
|
|
26
|
+
| "airplay-line"
|
|
27
|
+
| "alarm-fill"
|
|
28
|
+
| "alarm-line"
|
|
29
|
+
| "alarm-warning-fill"
|
|
30
|
+
| "alarm-warning-line"
|
|
31
|
+
| "album-fill"
|
|
32
|
+
| "album-line"
|
|
33
|
+
| "alert-fill"
|
|
34
|
+
| "alert-line"
|
|
35
|
+
| "aliens-fill"
|
|
36
|
+
| "aliens-line"
|
|
37
|
+
| "align-bottom"
|
|
38
|
+
| "align-center"
|
|
39
|
+
| "align-justify"
|
|
40
|
+
| "align-left"
|
|
41
|
+
| "align-right"
|
|
42
|
+
| "align-top"
|
|
43
|
+
| "align-vertically"
|
|
44
|
+
| "alipay-fill"
|
|
45
|
+
| "alipay-line"
|
|
46
|
+
| "amazon-fill"
|
|
47
|
+
| "amazon-line"
|
|
48
|
+
| "anchor-fill"
|
|
49
|
+
| "anchor-line"
|
|
50
|
+
| "ancient-gate-fill"
|
|
51
|
+
| "ancient-gate-line"
|
|
52
|
+
| "ancient-pavilion-fill"
|
|
53
|
+
| "ancient-pavilion-line"
|
|
54
|
+
| "android-fill"
|
|
55
|
+
| "android-line"
|
|
56
|
+
| "angularjs-fill"
|
|
57
|
+
| "angularjs-line"
|
|
58
|
+
| "anticlockwise-2-fill"
|
|
59
|
+
| "anticlockwise-2-line"
|
|
60
|
+
| "anticlockwise-fill"
|
|
61
|
+
| "anticlockwise-line"
|
|
62
|
+
| "app-store-fill"
|
|
63
|
+
| "app-store-line"
|
|
64
|
+
| "apple-fill"
|
|
65
|
+
| "apple-line"
|
|
66
|
+
| "apps-2-fill"
|
|
67
|
+
| "apps-2-line"
|
|
68
|
+
| "apps-fill"
|
|
69
|
+
| "apps-line"
|
|
70
|
+
| "archive-drawer-fill"
|
|
71
|
+
| "archive-drawer-line"
|
|
72
|
+
| "archive-fill"
|
|
73
|
+
| "archive-line"
|
|
74
|
+
| "arrow-down-circle-fill"
|
|
75
|
+
| "arrow-down-circle-line"
|
|
76
|
+
| "arrow-down-fill"
|
|
77
|
+
| "arrow-down-line"
|
|
78
|
+
| "arrow-down-s-fill"
|
|
79
|
+
| "arrow-down-s-line"
|
|
80
|
+
| "arrow-drop-down-fill"
|
|
81
|
+
| "arrow-drop-down-line"
|
|
82
|
+
| "arrow-drop-left-fill"
|
|
83
|
+
| "arrow-drop-left-line"
|
|
84
|
+
| "arrow-drop-right-fill"
|
|
85
|
+
| "arrow-drop-right-line"
|
|
86
|
+
| "arrow-drop-up-fill"
|
|
87
|
+
| "arrow-drop-up-line"
|
|
88
|
+
| "arrow-go-back-fill"
|
|
89
|
+
| "arrow-go-back-line"
|
|
90
|
+
| "arrow-go-forward-fill"
|
|
91
|
+
| "arrow-go-forward-line"
|
|
92
|
+
| "arrow-left-circle-fill"
|
|
93
|
+
| "arrow-left-circle-line"
|
|
94
|
+
| "arrow-left-down-fill"
|
|
95
|
+
| "arrow-left-down-line"
|
|
96
|
+
| "arrow-left-fill"
|
|
97
|
+
| "arrow-left-line"
|
|
98
|
+
| "arrow-left-right-fill"
|
|
99
|
+
| "arrow-left-right-line"
|
|
100
|
+
| "arrow-left-s-fill"
|
|
101
|
+
| "arrow-left-s-line"
|
|
102
|
+
| "arrow-left-up-fill"
|
|
103
|
+
| "arrow-left-up-line"
|
|
104
|
+
| "arrow-right-circle-fill"
|
|
105
|
+
| "arrow-right-circle-line"
|
|
106
|
+
| "arrow-right-down-fill"
|
|
107
|
+
| "arrow-right-down-line"
|
|
108
|
+
| "arrow-right-fill"
|
|
109
|
+
| "arrow-right-line"
|
|
110
|
+
| "arrow-right-s-fill"
|
|
111
|
+
| "arrow-right-s-line"
|
|
112
|
+
| "arrow-right-up-fill"
|
|
113
|
+
| "arrow-right-up-line"
|
|
114
|
+
| "arrow-up-circle-fill"
|
|
115
|
+
| "arrow-up-circle-line"
|
|
116
|
+
| "arrow-up-down-fill"
|
|
117
|
+
| "arrow-up-down-line"
|
|
118
|
+
| "arrow-up-fill"
|
|
119
|
+
| "arrow-up-line"
|
|
120
|
+
| "arrow-up-s-fill"
|
|
121
|
+
| "arrow-up-s-line"
|
|
122
|
+
| "artboard-2-fill"
|
|
123
|
+
| "artboard-2-line"
|
|
124
|
+
| "artboard-fill"
|
|
125
|
+
| "artboard-line"
|
|
126
|
+
| "article-fill"
|
|
127
|
+
| "article-line"
|
|
128
|
+
| "aspect-ratio-fill"
|
|
129
|
+
| "aspect-ratio-line"
|
|
130
|
+
| "asterisk"
|
|
131
|
+
| "at-fill"
|
|
132
|
+
| "at-line"
|
|
133
|
+
| "attachment-2"
|
|
134
|
+
| "attachment-fill"
|
|
135
|
+
| "attachment-line"
|
|
136
|
+
| "auction-fill"
|
|
137
|
+
| "auction-line"
|
|
138
|
+
| "award-fill"
|
|
139
|
+
| "award-line"
|
|
140
|
+
| "baidu-fill"
|
|
141
|
+
| "baidu-line"
|
|
142
|
+
| "ball-pen-fill"
|
|
143
|
+
| "ball-pen-line"
|
|
144
|
+
| "bank-card-2-fill"
|
|
145
|
+
| "bank-card-2-line"
|
|
146
|
+
| "bank-card-fill"
|
|
147
|
+
| "bank-card-line"
|
|
148
|
+
| "bank-fill"
|
|
149
|
+
| "bank-line"
|
|
150
|
+
| "bar-chart-2-fill"
|
|
151
|
+
| "bar-chart-2-line"
|
|
152
|
+
| "bar-chart-box-fill"
|
|
153
|
+
| "bar-chart-box-line"
|
|
154
|
+
| "bar-chart-fill"
|
|
155
|
+
| "bar-chart-grouped-fill"
|
|
156
|
+
| "bar-chart-grouped-line"
|
|
157
|
+
| "bar-chart-horizontal-fill"
|
|
158
|
+
| "bar-chart-horizontal-line"
|
|
159
|
+
| "bar-chart-line"
|
|
160
|
+
| "barcode-box-fill"
|
|
161
|
+
| "barcode-box-line"
|
|
162
|
+
| "barcode-fill"
|
|
163
|
+
| "barcode-line"
|
|
164
|
+
| "barricade-fill"
|
|
165
|
+
| "barricade-line"
|
|
166
|
+
| "base-station-fill"
|
|
167
|
+
| "base-station-line"
|
|
168
|
+
| "basketball-fill"
|
|
169
|
+
| "basketball-line"
|
|
170
|
+
| "battery-2-charge-fill"
|
|
171
|
+
| "battery-2-charge-line"
|
|
172
|
+
| "battery-2-fill"
|
|
173
|
+
| "battery-2-line"
|
|
174
|
+
| "battery-charge-fill"
|
|
175
|
+
| "battery-charge-line"
|
|
176
|
+
| "battery-fill"
|
|
177
|
+
| "battery-line"
|
|
178
|
+
| "battery-low-fill"
|
|
179
|
+
| "battery-low-line"
|
|
180
|
+
| "battery-saver-fill"
|
|
181
|
+
| "battery-saver-line"
|
|
182
|
+
| "battery-share-fill"
|
|
183
|
+
| "battery-share-line"
|
|
184
|
+
| "bear-smile-fill"
|
|
185
|
+
| "bear-smile-line"
|
|
186
|
+
| "behance-fill"
|
|
187
|
+
| "behance-line"
|
|
188
|
+
| "bell-fill"
|
|
189
|
+
| "bell-line"
|
|
190
|
+
| "bike-fill"
|
|
191
|
+
| "bike-line"
|
|
192
|
+
| "bilibili-fill"
|
|
193
|
+
| "bilibili-line"
|
|
194
|
+
| "bill-fill"
|
|
195
|
+
| "bill-line"
|
|
196
|
+
| "billiards-fill"
|
|
197
|
+
| "billiards-line"
|
|
198
|
+
| "bit-coin-fill"
|
|
199
|
+
| "bit-coin-line"
|
|
200
|
+
| "blaze-fill"
|
|
201
|
+
| "blaze-line"
|
|
202
|
+
| "bluetooth-connect-fill"
|
|
203
|
+
| "bluetooth-connect-line"
|
|
204
|
+
| "bluetooth-fill"
|
|
205
|
+
| "bluetooth-line"
|
|
206
|
+
| "blur-off-fill"
|
|
207
|
+
| "blur-off-line"
|
|
208
|
+
| "body-scan-fill"
|
|
209
|
+
| "body-scan-line"
|
|
210
|
+
| "bold"
|
|
211
|
+
| "book-2-fill"
|
|
212
|
+
| "book-2-line"
|
|
213
|
+
| "book-3-fill"
|
|
214
|
+
| "book-3-line"
|
|
215
|
+
| "book-fill"
|
|
216
|
+
| "book-line"
|
|
217
|
+
| "book-marked-fill"
|
|
218
|
+
| "book-marked-line"
|
|
219
|
+
| "book-open-fill"
|
|
220
|
+
| "book-open-line"
|
|
221
|
+
| "book-read-fill"
|
|
222
|
+
| "book-read-line"
|
|
223
|
+
| "booklet-fill"
|
|
224
|
+
| "booklet-line"
|
|
225
|
+
| "bookmark-2-fill"
|
|
226
|
+
| "bookmark-2-line"
|
|
227
|
+
| "bookmark-3-fill"
|
|
228
|
+
| "bookmark-3-line"
|
|
229
|
+
| "bookmark-fill"
|
|
230
|
+
| "bookmark-line"
|
|
231
|
+
| "boxing-fill"
|
|
232
|
+
| "boxing-line"
|
|
233
|
+
| "braces-fill"
|
|
234
|
+
| "braces-line"
|
|
235
|
+
| "brackets-fill"
|
|
236
|
+
| "brackets-line"
|
|
237
|
+
| "briefcase-2-fill"
|
|
238
|
+
| "briefcase-2-line"
|
|
239
|
+
| "briefcase-3-fill"
|
|
240
|
+
| "briefcase-3-line"
|
|
241
|
+
| "briefcase-4-fill"
|
|
242
|
+
| "briefcase-4-line"
|
|
243
|
+
| "briefcase-5-fill"
|
|
244
|
+
| "briefcase-5-line"
|
|
245
|
+
| "briefcase-fill"
|
|
246
|
+
| "briefcase-line"
|
|
247
|
+
| "bring-forward"
|
|
248
|
+
| "bring-to-front"
|
|
249
|
+
| "broadcast-fill"
|
|
250
|
+
| "broadcast-line"
|
|
251
|
+
| "brush-2-fill"
|
|
252
|
+
| "brush-2-line"
|
|
253
|
+
| "brush-3-fill"
|
|
254
|
+
| "brush-3-line"
|
|
255
|
+
| "brush-4-fill"
|
|
256
|
+
| "brush-4-line"
|
|
257
|
+
| "brush-fill"
|
|
258
|
+
| "brush-line"
|
|
259
|
+
| "bubble-chart-fill"
|
|
260
|
+
| "bubble-chart-line"
|
|
261
|
+
| "bug-2-fill"
|
|
262
|
+
| "bug-2-line"
|
|
263
|
+
| "bug-fill"
|
|
264
|
+
| "bug-line"
|
|
265
|
+
| "building-2-fill"
|
|
266
|
+
| "building-2-line"
|
|
267
|
+
| "building-3-fill"
|
|
268
|
+
| "building-3-line"
|
|
269
|
+
| "building-4-fill"
|
|
270
|
+
| "building-4-line"
|
|
271
|
+
| "building-fill"
|
|
272
|
+
| "building-line"
|
|
273
|
+
| "bus-2-fill"
|
|
274
|
+
| "bus-2-line"
|
|
275
|
+
| "bus-fill"
|
|
276
|
+
| "bus-line"
|
|
277
|
+
| "bus-wifi-fill"
|
|
278
|
+
| "bus-wifi-line"
|
|
279
|
+
| "cactus-fill"
|
|
280
|
+
| "cactus-line"
|
|
281
|
+
| "cake-2-fill"
|
|
282
|
+
| "cake-2-line"
|
|
283
|
+
| "cake-3-fill"
|
|
284
|
+
| "cake-3-line"
|
|
285
|
+
| "cake-fill"
|
|
286
|
+
| "cake-line"
|
|
287
|
+
| "calculator-fill"
|
|
288
|
+
| "calculator-line"
|
|
289
|
+
| "calendar-2-fill"
|
|
290
|
+
| "calendar-2-line"
|
|
291
|
+
| "calendar-check-fill"
|
|
292
|
+
| "calendar-check-line"
|
|
293
|
+
| "calendar-event-fill"
|
|
294
|
+
| "calendar-event-line"
|
|
295
|
+
| "calendar-fill"
|
|
296
|
+
| "calendar-line"
|
|
297
|
+
| "calendar-todo-fill"
|
|
298
|
+
| "calendar-todo-line"
|
|
299
|
+
| "camera-2-fill"
|
|
300
|
+
| "camera-2-line"
|
|
301
|
+
| "camera-3-fill"
|
|
302
|
+
| "camera-3-line"
|
|
303
|
+
| "camera-fill"
|
|
304
|
+
| "camera-lens-fill"
|
|
305
|
+
| "camera-lens-line"
|
|
306
|
+
| "camera-line"
|
|
307
|
+
| "camera-off-fill"
|
|
308
|
+
| "camera-off-line"
|
|
309
|
+
| "camera-switch-fill"
|
|
310
|
+
| "camera-switch-line"
|
|
311
|
+
| "capsule-fill"
|
|
312
|
+
| "capsule-line"
|
|
313
|
+
| "car-fill"
|
|
314
|
+
| "car-line"
|
|
315
|
+
| "car-washing-fill"
|
|
316
|
+
| "car-washing-line"
|
|
317
|
+
| "caravan-fill"
|
|
318
|
+
| "caravan-line"
|
|
319
|
+
| "cast-fill"
|
|
320
|
+
| "cast-line"
|
|
321
|
+
| "cellphone-fill"
|
|
322
|
+
| "cellphone-line"
|
|
323
|
+
| "celsius-fill"
|
|
324
|
+
| "celsius-line"
|
|
325
|
+
| "centos-fill"
|
|
326
|
+
| "centos-line"
|
|
327
|
+
| "character-recognition-fill"
|
|
328
|
+
| "character-recognition-line"
|
|
329
|
+
| "charging-pile-2-fill"
|
|
330
|
+
| "charging-pile-2-line"
|
|
331
|
+
| "charging-pile-fill"
|
|
332
|
+
| "charging-pile-line"
|
|
333
|
+
| "chat-1-fill"
|
|
334
|
+
| "chat-1-line"
|
|
335
|
+
| "chat-2-fill"
|
|
336
|
+
| "chat-2-line"
|
|
337
|
+
| "chat-3-fill"
|
|
338
|
+
| "chat-3-line"
|
|
339
|
+
| "chat-4-fill"
|
|
340
|
+
| "chat-4-line"
|
|
341
|
+
| "chat-check-fill"
|
|
342
|
+
| "chat-check-line"
|
|
343
|
+
| "chat-delete-fill"
|
|
344
|
+
| "chat-delete-line"
|
|
345
|
+
| "chat-download-fill"
|
|
346
|
+
| "chat-download-line"
|
|
347
|
+
| "chat-follow-up-fill"
|
|
348
|
+
| "chat-follow-up-line"
|
|
349
|
+
| "chat-forward-fill"
|
|
350
|
+
| "chat-forward-line"
|
|
351
|
+
| "chat-heart-fill"
|
|
352
|
+
| "chat-heart-line"
|
|
353
|
+
| "chat-history-fill"
|
|
354
|
+
| "chat-history-line"
|
|
355
|
+
| "chat-new-fill"
|
|
356
|
+
| "chat-new-line"
|
|
357
|
+
| "chat-off-fill"
|
|
358
|
+
| "chat-off-line"
|
|
359
|
+
| "chat-poll-fill"
|
|
360
|
+
| "chat-poll-line"
|
|
361
|
+
| "chat-private-fill"
|
|
362
|
+
| "chat-private-line"
|
|
363
|
+
| "chat-quote-fill"
|
|
364
|
+
| "chat-quote-line"
|
|
365
|
+
| "chat-settings-fill"
|
|
366
|
+
| "chat-settings-line"
|
|
367
|
+
| "chat-smile-2-fill"
|
|
368
|
+
| "chat-smile-2-line"
|
|
369
|
+
| "chat-smile-3-fill"
|
|
370
|
+
| "chat-smile-3-line"
|
|
371
|
+
| "chat-smile-fill"
|
|
372
|
+
| "chat-smile-line"
|
|
373
|
+
| "chat-upload-fill"
|
|
374
|
+
| "chat-upload-line"
|
|
375
|
+
| "chat-voice-fill"
|
|
376
|
+
| "chat-voice-line"
|
|
377
|
+
| "check-double-fill"
|
|
378
|
+
| "check-double-line"
|
|
379
|
+
| "check-fill"
|
|
380
|
+
| "check-line"
|
|
381
|
+
| "checkbox-blank-circle-fill"
|
|
382
|
+
| "checkbox-blank-circle-line"
|
|
383
|
+
| "checkbox-blank-fill"
|
|
384
|
+
| "checkbox-blank-line"
|
|
385
|
+
| "checkbox-circle-fill"
|
|
386
|
+
| "checkbox-circle-line"
|
|
387
|
+
| "checkbox-fill"
|
|
388
|
+
| "checkbox-indeterminate-fill"
|
|
389
|
+
| "checkbox-indeterminate-line"
|
|
390
|
+
| "checkbox-line"
|
|
391
|
+
| "checkbox-multiple-blank-fill"
|
|
392
|
+
| "checkbox-multiple-blank-line"
|
|
393
|
+
| "checkbox-multiple-fill"
|
|
394
|
+
| "checkbox-multiple-line"
|
|
395
|
+
| "china-railway-fill"
|
|
396
|
+
| "china-railway-line"
|
|
397
|
+
| "chrome-fill"
|
|
398
|
+
| "chrome-line"
|
|
399
|
+
| "clapperboard-fill"
|
|
400
|
+
| "clapperboard-line"
|
|
401
|
+
| "clipboard-fill"
|
|
402
|
+
| "clipboard-line"
|
|
403
|
+
| "clockwise-2-fill"
|
|
404
|
+
| "clockwise-2-line"
|
|
405
|
+
| "clockwise-fill"
|
|
406
|
+
| "clockwise-line"
|
|
407
|
+
| "close-circle-fill"
|
|
408
|
+
| "close-circle-line"
|
|
409
|
+
| "close-fill"
|
|
410
|
+
| "close-line"
|
|
411
|
+
| "closed-captioning-fill"
|
|
412
|
+
| "closed-captioning-line"
|
|
413
|
+
| "cloud-fill"
|
|
414
|
+
| "cloud-line"
|
|
415
|
+
| "cloud-off-fill"
|
|
416
|
+
| "cloud-off-line"
|
|
417
|
+
| "cloud-windy-fill"
|
|
418
|
+
| "cloud-windy-line"
|
|
419
|
+
| "cloudy-2-fill"
|
|
420
|
+
| "cloudy-2-line"
|
|
421
|
+
| "cloudy-fill"
|
|
422
|
+
| "cloudy-line"
|
|
423
|
+
| "code-box-fill"
|
|
424
|
+
| "code-box-line"
|
|
425
|
+
| "code-fill"
|
|
426
|
+
| "code-line"
|
|
427
|
+
| "code-s-fill"
|
|
428
|
+
| "code-s-line"
|
|
429
|
+
| "code-s-slash-fill"
|
|
430
|
+
| "code-s-slash-line"
|
|
431
|
+
| "code-view"
|
|
432
|
+
| "codepen-fill"
|
|
433
|
+
| "codepen-line"
|
|
434
|
+
| "coin-fill"
|
|
435
|
+
| "coin-line"
|
|
436
|
+
| "coins-fill"
|
|
437
|
+
| "coins-line"
|
|
438
|
+
| "collage-fill"
|
|
439
|
+
| "collage-line"
|
|
440
|
+
| "command-fill"
|
|
441
|
+
| "command-line"
|
|
442
|
+
| "community-fill"
|
|
443
|
+
| "community-line"
|
|
444
|
+
| "compass-2-fill"
|
|
445
|
+
| "compass-2-line"
|
|
446
|
+
| "compass-3-fill"
|
|
447
|
+
| "compass-3-line"
|
|
448
|
+
| "compass-4-fill"
|
|
449
|
+
| "compass-4-line"
|
|
450
|
+
| "compass-discover-fill"
|
|
451
|
+
| "compass-discover-line"
|
|
452
|
+
| "compass-fill"
|
|
453
|
+
| "compass-line"
|
|
454
|
+
| "compasses-2-fill"
|
|
455
|
+
| "compasses-2-line"
|
|
456
|
+
| "compasses-fill"
|
|
457
|
+
| "compasses-line"
|
|
458
|
+
| "computer-fill"
|
|
459
|
+
| "computer-line"
|
|
460
|
+
| "contacts-book-2-fill"
|
|
461
|
+
| "contacts-book-2-line"
|
|
462
|
+
| "contacts-book-fill"
|
|
463
|
+
| "contacts-book-line"
|
|
464
|
+
| "contacts-book-upload-fill"
|
|
465
|
+
| "contacts-book-upload-line"
|
|
466
|
+
| "contacts-fill"
|
|
467
|
+
| "contacts-line"
|
|
468
|
+
| "contrast-2-fill"
|
|
469
|
+
| "contrast-2-line"
|
|
470
|
+
| "contrast-drop-2-fill"
|
|
471
|
+
| "contrast-drop-2-line"
|
|
472
|
+
| "contrast-drop-fill"
|
|
473
|
+
| "contrast-drop-line"
|
|
474
|
+
| "contrast-fill"
|
|
475
|
+
| "contrast-line"
|
|
476
|
+
| "copper-coin-fill"
|
|
477
|
+
| "copper-coin-line"
|
|
478
|
+
| "copper-diamond-fill"
|
|
479
|
+
| "copper-diamond-line"
|
|
480
|
+
| "copyleft-fill"
|
|
481
|
+
| "copyleft-line"
|
|
482
|
+
| "copyright-fill"
|
|
483
|
+
| "copyright-line"
|
|
484
|
+
| "coreos-fill"
|
|
485
|
+
| "coreos-line"
|
|
486
|
+
| "coupon-2-fill"
|
|
487
|
+
| "coupon-2-line"
|
|
488
|
+
| "coupon-3-fill"
|
|
489
|
+
| "coupon-3-line"
|
|
490
|
+
| "coupon-4-fill"
|
|
491
|
+
| "coupon-4-line"
|
|
492
|
+
| "coupon-5-fill"
|
|
493
|
+
| "coupon-5-line"
|
|
494
|
+
| "coupon-fill"
|
|
495
|
+
| "coupon-line"
|
|
496
|
+
| "cpu-fill"
|
|
497
|
+
| "cpu-line"
|
|
498
|
+
| "creative-commons-by-fill"
|
|
499
|
+
| "creative-commons-by-line"
|
|
500
|
+
| "creative-commons-fill"
|
|
501
|
+
| "creative-commons-line"
|
|
502
|
+
| "creative-commons-nc-fill"
|
|
503
|
+
| "creative-commons-nc-line"
|
|
504
|
+
| "creative-commons-nd-fill"
|
|
505
|
+
| "creative-commons-nd-line"
|
|
506
|
+
| "creative-commons-sa-fill"
|
|
507
|
+
| "creative-commons-sa-line"
|
|
508
|
+
| "creative-commons-zero-fill"
|
|
509
|
+
| "creative-commons-zero-line"
|
|
510
|
+
| "criminal-fill"
|
|
511
|
+
| "criminal-line"
|
|
512
|
+
| "crop-2-fill"
|
|
513
|
+
| "crop-2-line"
|
|
514
|
+
| "crop-fill"
|
|
515
|
+
| "crop-line"
|
|
516
|
+
| "css3-fill"
|
|
517
|
+
| "css3-line"
|
|
518
|
+
| "cup-fill"
|
|
519
|
+
| "cup-line"
|
|
520
|
+
| "currency-fill"
|
|
521
|
+
| "currency-line"
|
|
522
|
+
| "cursor-fill"
|
|
523
|
+
| "cursor-line"
|
|
524
|
+
| "customer-service-2-fill"
|
|
525
|
+
| "customer-service-2-line"
|
|
526
|
+
| "customer-service-fill"
|
|
527
|
+
| "customer-service-line"
|
|
528
|
+
| "dashboard-2-fill"
|
|
529
|
+
| "dashboard-2-line"
|
|
530
|
+
| "dashboard-3-fill"
|
|
531
|
+
| "dashboard-3-line"
|
|
532
|
+
| "dashboard-fill"
|
|
533
|
+
| "dashboard-line"
|
|
534
|
+
| "database-2-fill"
|
|
535
|
+
| "database-2-line"
|
|
536
|
+
| "database-fill"
|
|
537
|
+
| "database-line"
|
|
538
|
+
| "delete-back-2-fill"
|
|
539
|
+
| "delete-back-2-line"
|
|
540
|
+
| "delete-back-fill"
|
|
541
|
+
| "delete-back-line"
|
|
542
|
+
| "delete-bin-2-fill"
|
|
543
|
+
| "delete-bin-2-line"
|
|
544
|
+
| "delete-bin-3-fill"
|
|
545
|
+
| "delete-bin-3-line"
|
|
546
|
+
| "delete-bin-4-fill"
|
|
547
|
+
| "delete-bin-4-line"
|
|
548
|
+
| "delete-bin-5-fill"
|
|
549
|
+
| "delete-bin-5-line"
|
|
550
|
+
| "delete-bin-6-fill"
|
|
551
|
+
| "delete-bin-6-line"
|
|
552
|
+
| "delete-bin-7-fill"
|
|
553
|
+
| "delete-bin-7-line"
|
|
554
|
+
| "delete-bin-fill"
|
|
555
|
+
| "delete-bin-line"
|
|
556
|
+
| "delete-column"
|
|
557
|
+
| "delete-row"
|
|
558
|
+
| "device-fill"
|
|
559
|
+
| "device-line"
|
|
560
|
+
| "device-recover-fill"
|
|
561
|
+
| "device-recover-line"
|
|
562
|
+
| "dingding-fill"
|
|
563
|
+
| "dingding-line"
|
|
564
|
+
| "direction-fill"
|
|
565
|
+
| "direction-line"
|
|
566
|
+
| "disc-fill"
|
|
567
|
+
| "disc-line"
|
|
568
|
+
| "discord-fill"
|
|
569
|
+
| "discord-line"
|
|
570
|
+
| "discuss-fill"
|
|
571
|
+
| "discuss-line"
|
|
572
|
+
| "dislike-fill"
|
|
573
|
+
| "dislike-line"
|
|
574
|
+
| "disqus-fill"
|
|
575
|
+
| "disqus-line"
|
|
576
|
+
| "divide-fill"
|
|
577
|
+
| "divide-line"
|
|
578
|
+
| "donut-chart-fill"
|
|
579
|
+
| "donut-chart-line"
|
|
580
|
+
| "door-closed-fill"
|
|
581
|
+
| "door-closed-line"
|
|
582
|
+
| "door-fill"
|
|
583
|
+
| "door-line"
|
|
584
|
+
| "door-lock-box-fill"
|
|
585
|
+
| "door-lock-box-line"
|
|
586
|
+
| "door-lock-fill"
|
|
587
|
+
| "door-lock-line"
|
|
588
|
+
| "door-open-fill"
|
|
589
|
+
| "door-open-line"
|
|
590
|
+
| "dossier-fill"
|
|
591
|
+
| "dossier-line"
|
|
592
|
+
| "douban-fill"
|
|
593
|
+
| "douban-line"
|
|
594
|
+
| "double-quotes-l"
|
|
595
|
+
| "double-quotes-r"
|
|
596
|
+
| "download-2-fill"
|
|
597
|
+
| "download-2-line"
|
|
598
|
+
| "download-cloud-2-fill"
|
|
599
|
+
| "download-cloud-2-line"
|
|
600
|
+
| "download-cloud-fill"
|
|
601
|
+
| "download-cloud-line"
|
|
602
|
+
| "download-fill"
|
|
603
|
+
| "download-line"
|
|
604
|
+
| "draft-fill"
|
|
605
|
+
| "draft-line"
|
|
606
|
+
| "drag-drop-fill"
|
|
607
|
+
| "drag-drop-line"
|
|
608
|
+
| "drag-move-2-fill"
|
|
609
|
+
| "drag-move-2-line"
|
|
610
|
+
| "drag-move-fill"
|
|
611
|
+
| "drag-move-line"
|
|
612
|
+
| "dribbble-fill"
|
|
613
|
+
| "dribbble-line"
|
|
614
|
+
| "drive-fill"
|
|
615
|
+
| "drive-line"
|
|
616
|
+
| "drizzle-fill"
|
|
617
|
+
| "drizzle-line"
|
|
618
|
+
| "drop-fill"
|
|
619
|
+
| "drop-line"
|
|
620
|
+
| "dropbox-fill"
|
|
621
|
+
| "dropbox-line"
|
|
622
|
+
| "dual-sim-1-fill"
|
|
623
|
+
| "dual-sim-1-line"
|
|
624
|
+
| "dual-sim-2-fill"
|
|
625
|
+
| "dual-sim-2-line"
|
|
626
|
+
| "dv-fill"
|
|
627
|
+
| "dv-line"
|
|
628
|
+
| "dvd-fill"
|
|
629
|
+
| "dvd-line"
|
|
630
|
+
| "e-bike-2-fill"
|
|
631
|
+
| "e-bike-2-line"
|
|
632
|
+
| "e-bike-fill"
|
|
633
|
+
| "e-bike-line"
|
|
634
|
+
| "earth-fill"
|
|
635
|
+
| "earth-line"
|
|
636
|
+
| "earthquake-fill"
|
|
637
|
+
| "earthquake-line"
|
|
638
|
+
| "edge-fill"
|
|
639
|
+
| "edge-line"
|
|
640
|
+
| "edit-2-fill"
|
|
641
|
+
| "edit-2-line"
|
|
642
|
+
| "edit-box-fill"
|
|
643
|
+
| "edit-box-line"
|
|
644
|
+
| "edit-circle-fill"
|
|
645
|
+
| "edit-circle-line"
|
|
646
|
+
| "edit-fill"
|
|
647
|
+
| "edit-line"
|
|
648
|
+
| "eject-fill"
|
|
649
|
+
| "eject-line"
|
|
650
|
+
| "emotion-2-fill"
|
|
651
|
+
| "emotion-2-line"
|
|
652
|
+
| "emotion-fill"
|
|
653
|
+
| "emotion-happy-fill"
|
|
654
|
+
| "emotion-happy-line"
|
|
655
|
+
| "emotion-laugh-fill"
|
|
656
|
+
| "emotion-laugh-line"
|
|
657
|
+
| "emotion-line"
|
|
658
|
+
| "emotion-normal-fill"
|
|
659
|
+
| "emotion-normal-line"
|
|
660
|
+
| "emotion-sad-fill"
|
|
661
|
+
| "emotion-sad-line"
|
|
662
|
+
| "emotion-unhappy-fill"
|
|
663
|
+
| "emotion-unhappy-line"
|
|
664
|
+
| "empathize-fill"
|
|
665
|
+
| "empathize-line"
|
|
666
|
+
| "emphasis-cn"
|
|
667
|
+
| "emphasis"
|
|
668
|
+
| "english-input"
|
|
669
|
+
| "equalizer-fill"
|
|
670
|
+
| "equalizer-line"
|
|
671
|
+
| "eraser-fill"
|
|
672
|
+
| "eraser-line"
|
|
673
|
+
| "error-warning-fill"
|
|
674
|
+
| "error-warning-line"
|
|
675
|
+
| "evernote-fill"
|
|
676
|
+
| "evernote-line"
|
|
677
|
+
| "exchange-box-fill"
|
|
678
|
+
| "exchange-box-line"
|
|
679
|
+
| "exchange-cny-fill"
|
|
680
|
+
| "exchange-cny-line"
|
|
681
|
+
| "exchange-dollar-fill"
|
|
682
|
+
| "exchange-dollar-line"
|
|
683
|
+
| "exchange-fill"
|
|
684
|
+
| "exchange-funds-fill"
|
|
685
|
+
| "exchange-funds-line"
|
|
686
|
+
| "exchange-line"
|
|
687
|
+
| "external-link-fill"
|
|
688
|
+
| "external-link-line"
|
|
689
|
+
| "eye-2-fill"
|
|
690
|
+
| "eye-2-line"
|
|
691
|
+
| "eye-close-fill"
|
|
692
|
+
| "eye-close-line"
|
|
693
|
+
| "eye-fill"
|
|
694
|
+
| "eye-line"
|
|
695
|
+
| "eye-off-fill"
|
|
696
|
+
| "eye-off-line"
|
|
697
|
+
| "facebook-box-fill"
|
|
698
|
+
| "facebook-box-line"
|
|
699
|
+
| "facebook-circle-fill"
|
|
700
|
+
| "facebook-circle-line"
|
|
701
|
+
| "facebook-fill"
|
|
702
|
+
| "facebook-line"
|
|
703
|
+
| "fahrenheit-fill"
|
|
704
|
+
| "fahrenheit-line"
|
|
705
|
+
| "feedback-fill"
|
|
706
|
+
| "feedback-line"
|
|
707
|
+
| "file-2-fill"
|
|
708
|
+
| "file-2-line"
|
|
709
|
+
| "file-3-fill"
|
|
710
|
+
| "file-3-line"
|
|
711
|
+
| "file-4-fill"
|
|
712
|
+
| "file-4-line"
|
|
713
|
+
| "file-add-fill"
|
|
714
|
+
| "file-add-line"
|
|
715
|
+
| "file-chart-2-fill"
|
|
716
|
+
| "file-chart-2-line"
|
|
717
|
+
| "file-chart-fill"
|
|
718
|
+
| "file-chart-line"
|
|
719
|
+
| "file-cloud-fill"
|
|
720
|
+
| "file-cloud-line"
|
|
721
|
+
| "file-code-fill"
|
|
722
|
+
| "file-code-line"
|
|
723
|
+
| "file-copy-2-fill"
|
|
724
|
+
| "file-copy-2-line"
|
|
725
|
+
| "file-copy-fill"
|
|
726
|
+
| "file-copy-line"
|
|
727
|
+
| "file-damage-fill"
|
|
728
|
+
| "file-damage-line"
|
|
729
|
+
| "file-download-fill"
|
|
730
|
+
| "file-download-line"
|
|
731
|
+
| "file-edit-fill"
|
|
732
|
+
| "file-edit-line"
|
|
733
|
+
| "file-excel-2-fill"
|
|
734
|
+
| "file-excel-2-line"
|
|
735
|
+
| "file-excel-fill"
|
|
736
|
+
| "file-excel-line"
|
|
737
|
+
| "file-fill"
|
|
738
|
+
| "file-forbid-fill"
|
|
739
|
+
| "file-forbid-line"
|
|
740
|
+
| "file-gif-fill"
|
|
741
|
+
| "file-gif-line"
|
|
742
|
+
| "file-history-fill"
|
|
743
|
+
| "file-history-line"
|
|
744
|
+
| "file-hwp-fill"
|
|
745
|
+
| "file-hwp-line"
|
|
746
|
+
| "file-info-fill"
|
|
747
|
+
| "file-info-line"
|
|
748
|
+
| "file-line"
|
|
749
|
+
| "file-list-2-fill"
|
|
750
|
+
| "file-list-2-line"
|
|
751
|
+
| "file-list-3-fill"
|
|
752
|
+
| "file-list-3-line"
|
|
753
|
+
| "file-list-fill"
|
|
754
|
+
| "file-list-line"
|
|
755
|
+
| "file-lock-fill"
|
|
756
|
+
| "file-lock-line"
|
|
757
|
+
| "file-marked-fill"
|
|
758
|
+
| "file-marked-line"
|
|
759
|
+
| "file-music-fill"
|
|
760
|
+
| "file-music-line"
|
|
761
|
+
| "file-paper-2-fill"
|
|
762
|
+
| "file-paper-2-line"
|
|
763
|
+
| "file-paper-fill"
|
|
764
|
+
| "file-paper-line"
|
|
765
|
+
| "file-pdf-fill"
|
|
766
|
+
| "file-pdf-line"
|
|
767
|
+
| "file-ppt-2-fill"
|
|
768
|
+
| "file-ppt-2-line"
|
|
769
|
+
| "file-ppt-fill"
|
|
770
|
+
| "file-ppt-line"
|
|
771
|
+
| "file-reduce-fill"
|
|
772
|
+
| "file-reduce-line"
|
|
773
|
+
| "file-search-fill"
|
|
774
|
+
| "file-search-line"
|
|
775
|
+
| "file-settings-fill"
|
|
776
|
+
| "file-settings-line"
|
|
777
|
+
| "file-shield-2-fill"
|
|
778
|
+
| "file-shield-2-line"
|
|
779
|
+
| "file-shield-fill"
|
|
780
|
+
| "file-shield-line"
|
|
781
|
+
| "file-shred-fill"
|
|
782
|
+
| "file-shred-line"
|
|
783
|
+
| "file-text-fill"
|
|
784
|
+
| "file-text-line"
|
|
785
|
+
| "file-transfer-fill"
|
|
786
|
+
| "file-transfer-line"
|
|
787
|
+
| "file-unknow-fill"
|
|
788
|
+
| "file-unknow-line"
|
|
789
|
+
| "file-upload-fill"
|
|
790
|
+
| "file-upload-line"
|
|
791
|
+
| "file-user-fill"
|
|
792
|
+
| "file-user-line"
|
|
793
|
+
| "file-warning-fill"
|
|
794
|
+
| "file-warning-line"
|
|
795
|
+
| "file-word-2-fill"
|
|
796
|
+
| "file-word-2-line"
|
|
797
|
+
| "file-word-fill"
|
|
798
|
+
| "file-word-line"
|
|
799
|
+
| "file-zip-fill"
|
|
800
|
+
| "file-zip-line"
|
|
801
|
+
| "film-fill"
|
|
802
|
+
| "film-line"
|
|
803
|
+
| "filter-2-fill"
|
|
804
|
+
| "filter-2-line"
|
|
805
|
+
| "filter-3-fill"
|
|
806
|
+
| "filter-3-line"
|
|
807
|
+
| "filter-fill"
|
|
808
|
+
| "filter-line"
|
|
809
|
+
| "filter-off-fill"
|
|
810
|
+
| "filter-off-line"
|
|
811
|
+
| "find-replace-fill"
|
|
812
|
+
| "find-replace-line"
|
|
813
|
+
| "finder-fill"
|
|
814
|
+
| "finder-line"
|
|
815
|
+
| "fingerprint-2-fill"
|
|
816
|
+
| "fingerprint-2-line"
|
|
817
|
+
| "fingerprint-fill"
|
|
818
|
+
| "fingerprint-line"
|
|
819
|
+
| "fire-fill"
|
|
820
|
+
| "fire-line"
|
|
821
|
+
| "firefox-fill"
|
|
822
|
+
| "firefox-line"
|
|
823
|
+
| "first-aid-kit-fill"
|
|
824
|
+
| "first-aid-kit-line"
|
|
825
|
+
| "flag-2-fill"
|
|
826
|
+
| "flag-2-line"
|
|
827
|
+
| "flag-fill"
|
|
828
|
+
| "flag-line"
|
|
829
|
+
| "flashlight-fill"
|
|
830
|
+
| "flashlight-line"
|
|
831
|
+
| "flask-fill"
|
|
832
|
+
| "flask-line"
|
|
833
|
+
| "flight-land-fill"
|
|
834
|
+
| "flight-land-line"
|
|
835
|
+
| "flight-takeoff-fill"
|
|
836
|
+
| "flight-takeoff-line"
|
|
837
|
+
| "flood-fill"
|
|
838
|
+
| "flood-line"
|
|
839
|
+
| "flow-chart"
|
|
840
|
+
| "flutter-fill"
|
|
841
|
+
| "flutter-line"
|
|
842
|
+
| "focus-2-fill"
|
|
843
|
+
| "focus-2-line"
|
|
844
|
+
| "focus-3-fill"
|
|
845
|
+
| "focus-3-line"
|
|
846
|
+
| "focus-fill"
|
|
847
|
+
| "focus-line"
|
|
848
|
+
| "foggy-fill"
|
|
849
|
+
| "foggy-line"
|
|
850
|
+
| "folder-2-fill"
|
|
851
|
+
| "folder-2-line"
|
|
852
|
+
| "folder-3-fill"
|
|
853
|
+
| "folder-3-line"
|
|
854
|
+
| "folder-4-fill"
|
|
855
|
+
| "folder-4-line"
|
|
856
|
+
| "folder-5-fill"
|
|
857
|
+
| "folder-5-line"
|
|
858
|
+
| "folder-add-fill"
|
|
859
|
+
| "folder-add-line"
|
|
860
|
+
| "folder-chart-2-fill"
|
|
861
|
+
| "folder-chart-2-line"
|
|
862
|
+
| "folder-chart-fill"
|
|
863
|
+
| "folder-chart-line"
|
|
864
|
+
| "folder-download-fill"
|
|
865
|
+
| "folder-download-line"
|
|
866
|
+
| "folder-fill"
|
|
867
|
+
| "folder-forbid-fill"
|
|
868
|
+
| "folder-forbid-line"
|
|
869
|
+
| "folder-history-fill"
|
|
870
|
+
| "folder-history-line"
|
|
871
|
+
| "folder-info-fill"
|
|
872
|
+
| "folder-info-line"
|
|
873
|
+
| "folder-keyhole-fill"
|
|
874
|
+
| "folder-keyhole-line"
|
|
875
|
+
| "folder-line"
|
|
876
|
+
| "folder-lock-fill"
|
|
877
|
+
| "folder-lock-line"
|
|
878
|
+
| "folder-music-fill"
|
|
879
|
+
| "folder-music-line"
|
|
880
|
+
| "folder-open-fill"
|
|
881
|
+
| "folder-open-line"
|
|
882
|
+
| "folder-received-fill"
|
|
883
|
+
| "folder-received-line"
|
|
884
|
+
| "folder-reduce-fill"
|
|
885
|
+
| "folder-reduce-line"
|
|
886
|
+
| "folder-settings-fill"
|
|
887
|
+
| "folder-settings-line"
|
|
888
|
+
| "folder-shared-fill"
|
|
889
|
+
| "folder-shared-line"
|
|
890
|
+
| "folder-shield-2-fill"
|
|
891
|
+
| "folder-shield-2-line"
|
|
892
|
+
| "folder-shield-fill"
|
|
893
|
+
| "folder-shield-line"
|
|
894
|
+
| "folder-transfer-fill"
|
|
895
|
+
| "folder-transfer-line"
|
|
896
|
+
| "folder-unknow-fill"
|
|
897
|
+
| "folder-unknow-line"
|
|
898
|
+
| "folder-upload-fill"
|
|
899
|
+
| "folder-upload-line"
|
|
900
|
+
| "folder-user-fill"
|
|
901
|
+
| "folder-user-line"
|
|
902
|
+
| "folder-warning-fill"
|
|
903
|
+
| "folder-warning-line"
|
|
904
|
+
| "folder-zip-fill"
|
|
905
|
+
| "folder-zip-line"
|
|
906
|
+
| "folders-fill"
|
|
907
|
+
| "folders-line"
|
|
908
|
+
| "font-color"
|
|
909
|
+
| "font-size-2"
|
|
910
|
+
| "font-size"
|
|
911
|
+
| "football-fill"
|
|
912
|
+
| "football-line"
|
|
913
|
+
| "footprint-fill"
|
|
914
|
+
| "footprint-line"
|
|
915
|
+
| "forbid-2-fill"
|
|
916
|
+
| "forbid-2-line"
|
|
917
|
+
| "forbid-fill"
|
|
918
|
+
| "forbid-line"
|
|
919
|
+
| "format-clear"
|
|
920
|
+
| "fridge-fill"
|
|
921
|
+
| "fridge-line"
|
|
922
|
+
| "fullscreen-exit-fill"
|
|
923
|
+
| "fullscreen-exit-line"
|
|
924
|
+
| "fullscreen-fill"
|
|
925
|
+
| "fullscreen-line"
|
|
926
|
+
| "function-fill"
|
|
927
|
+
| "function-line"
|
|
928
|
+
| "functions"
|
|
929
|
+
| "funds-box-fill"
|
|
930
|
+
| "funds-box-line"
|
|
931
|
+
| "funds-fill"
|
|
932
|
+
| "funds-line"
|
|
933
|
+
| "gallery-fill"
|
|
934
|
+
| "gallery-line"
|
|
935
|
+
| "gallery-upload-fill"
|
|
936
|
+
| "gallery-upload-line"
|
|
937
|
+
| "game-fill"
|
|
938
|
+
| "game-line"
|
|
939
|
+
| "gamepad-fill"
|
|
940
|
+
| "gamepad-line"
|
|
941
|
+
| "gas-station-fill"
|
|
942
|
+
| "gas-station-line"
|
|
943
|
+
| "gatsby-fill"
|
|
944
|
+
| "gatsby-line"
|
|
945
|
+
| "genderless-fill"
|
|
946
|
+
| "genderless-line"
|
|
947
|
+
| "ghost-2-fill"
|
|
948
|
+
| "ghost-2-line"
|
|
949
|
+
| "ghost-fill"
|
|
950
|
+
| "ghost-line"
|
|
951
|
+
| "ghost-smile-fill"
|
|
952
|
+
| "ghost-smile-line"
|
|
953
|
+
| "gift-2-fill"
|
|
954
|
+
| "gift-2-line"
|
|
955
|
+
| "gift-fill"
|
|
956
|
+
| "gift-line"
|
|
957
|
+
| "git-branch-fill"
|
|
958
|
+
| "git-branch-line"
|
|
959
|
+
| "git-commit-fill"
|
|
960
|
+
| "git-commit-line"
|
|
961
|
+
| "git-merge-fill"
|
|
962
|
+
| "git-merge-line"
|
|
963
|
+
| "git-pull-request-fill"
|
|
964
|
+
| "git-pull-request-line"
|
|
965
|
+
| "git-repository-commits-fill"
|
|
966
|
+
| "git-repository-commits-line"
|
|
967
|
+
| "git-repository-fill"
|
|
968
|
+
| "git-repository-line"
|
|
969
|
+
| "git-repository-private-fill"
|
|
970
|
+
| "git-repository-private-line"
|
|
971
|
+
| "github-fill"
|
|
972
|
+
| "github-line"
|
|
973
|
+
| "gitlab-fill"
|
|
974
|
+
| "gitlab-line"
|
|
975
|
+
| "global-fill"
|
|
976
|
+
| "global-line"
|
|
977
|
+
| "globe-fill"
|
|
978
|
+
| "globe-line"
|
|
979
|
+
| "goblet-fill"
|
|
980
|
+
| "goblet-line"
|
|
981
|
+
| "google-fill"
|
|
982
|
+
| "google-line"
|
|
983
|
+
| "google-play-fill"
|
|
984
|
+
| "google-play-line"
|
|
985
|
+
| "government-fill"
|
|
986
|
+
| "government-line"
|
|
987
|
+
| "gps-fill"
|
|
988
|
+
| "gps-line"
|
|
989
|
+
| "gradienter-fill"
|
|
990
|
+
| "gradienter-line"
|
|
991
|
+
| "grid-fill"
|
|
992
|
+
| "grid-line"
|
|
993
|
+
| "group-2-fill"
|
|
994
|
+
| "group-2-line"
|
|
995
|
+
| "group-fill"
|
|
996
|
+
| "group-line"
|
|
997
|
+
| "guide-fill"
|
|
998
|
+
| "guide-line"
|
|
999
|
+
| "h-1"
|
|
1000
|
+
| "h-2"
|
|
1001
|
+
| "h-3"
|
|
1002
|
+
| "h-4"
|
|
1003
|
+
| "h-5"
|
|
1004
|
+
| "h-6"
|
|
1005
|
+
| "hail-fill"
|
|
1006
|
+
| "hail-line"
|
|
1007
|
+
| "hammer-fill"
|
|
1008
|
+
| "hammer-line"
|
|
1009
|
+
| "hand-coin-fill"
|
|
1010
|
+
| "hand-coin-line"
|
|
1011
|
+
| "hand-heart-fill"
|
|
1012
|
+
| "hand-heart-line"
|
|
1013
|
+
| "hand-sanitizer-fill"
|
|
1014
|
+
| "hand-sanitizer-line"
|
|
1015
|
+
| "handbag-fill"
|
|
1016
|
+
| "handbag-line"
|
|
1017
|
+
| "hard-drive-2-fill"
|
|
1018
|
+
| "hard-drive-2-line"
|
|
1019
|
+
| "hard-drive-fill"
|
|
1020
|
+
| "hard-drive-line"
|
|
1021
|
+
| "hashtag"
|
|
1022
|
+
| "haze-2-fill"
|
|
1023
|
+
| "haze-2-line"
|
|
1024
|
+
| "haze-fill"
|
|
1025
|
+
| "haze-line"
|
|
1026
|
+
| "hd-fill"
|
|
1027
|
+
| "hd-line"
|
|
1028
|
+
| "heading"
|
|
1029
|
+
| "headphone-fill"
|
|
1030
|
+
| "headphone-line"
|
|
1031
|
+
| "health-book-fill"
|
|
1032
|
+
| "health-book-line"
|
|
1033
|
+
| "heart-2-fill"
|
|
1034
|
+
| "heart-2-line"
|
|
1035
|
+
| "heart-3-fill"
|
|
1036
|
+
| "heart-3-line"
|
|
1037
|
+
| "heart-add-fill"
|
|
1038
|
+
| "heart-add-line"
|
|
1039
|
+
| "heart-fill"
|
|
1040
|
+
| "heart-line"
|
|
1041
|
+
| "heart-pulse-fill"
|
|
1042
|
+
| "heart-pulse-line"
|
|
1043
|
+
| "hearts-fill"
|
|
1044
|
+
| "hearts-line"
|
|
1045
|
+
| "heavy-showers-fill"
|
|
1046
|
+
| "heavy-showers-line"
|
|
1047
|
+
| "history-fill"
|
|
1048
|
+
| "history-line"
|
|
1049
|
+
| "home-2-fill"
|
|
1050
|
+
| "home-2-line"
|
|
1051
|
+
| "home-3-fill"
|
|
1052
|
+
| "home-3-line"
|
|
1053
|
+
| "home-4-fill"
|
|
1054
|
+
| "home-4-line"
|
|
1055
|
+
| "home-5-fill"
|
|
1056
|
+
| "home-5-line"
|
|
1057
|
+
| "home-6-fill"
|
|
1058
|
+
| "home-6-line"
|
|
1059
|
+
| "home-7-fill"
|
|
1060
|
+
| "home-7-line"
|
|
1061
|
+
| "home-8-fill"
|
|
1062
|
+
| "home-8-line"
|
|
1063
|
+
| "home-fill"
|
|
1064
|
+
| "home-gear-fill"
|
|
1065
|
+
| "home-gear-line"
|
|
1066
|
+
| "home-heart-fill"
|
|
1067
|
+
| "home-heart-line"
|
|
1068
|
+
| "home-line"
|
|
1069
|
+
| "home-smile-2-fill"
|
|
1070
|
+
| "home-smile-2-line"
|
|
1071
|
+
| "home-smile-fill"
|
|
1072
|
+
| "home-smile-line"
|
|
1073
|
+
| "home-wifi-fill"
|
|
1074
|
+
| "home-wifi-line"
|
|
1075
|
+
| "honor-of-kings-fill"
|
|
1076
|
+
| "honor-of-kings-line"
|
|
1077
|
+
| "honour-fill"
|
|
1078
|
+
| "honour-line"
|
|
1079
|
+
| "hospital-fill"
|
|
1080
|
+
| "hospital-line"
|
|
1081
|
+
| "hotel-bed-fill"
|
|
1082
|
+
| "hotel-bed-line"
|
|
1083
|
+
| "hotel-fill"
|
|
1084
|
+
| "hotel-line"
|
|
1085
|
+
| "hotspot-fill"
|
|
1086
|
+
| "hotspot-line"
|
|
1087
|
+
| "hq-fill"
|
|
1088
|
+
| "hq-line"
|
|
1089
|
+
| "html5-fill"
|
|
1090
|
+
| "html5-line"
|
|
1091
|
+
| "ie-fill"
|
|
1092
|
+
| "ie-line"
|
|
1093
|
+
| "image-2-fill"
|
|
1094
|
+
| "image-2-line"
|
|
1095
|
+
| "image-add-fill"
|
|
1096
|
+
| "image-add-line"
|
|
1097
|
+
| "image-edit-fill"
|
|
1098
|
+
| "image-edit-line"
|
|
1099
|
+
| "image-fill"
|
|
1100
|
+
| "image-line"
|
|
1101
|
+
| "inbox-archive-fill"
|
|
1102
|
+
| "inbox-archive-line"
|
|
1103
|
+
| "inbox-fill"
|
|
1104
|
+
| "inbox-line"
|
|
1105
|
+
| "inbox-unarchive-fill"
|
|
1106
|
+
| "inbox-unarchive-line"
|
|
1107
|
+
| "increase-decrease-fill"
|
|
1108
|
+
| "increase-decrease-line"
|
|
1109
|
+
| "indent-decrease"
|
|
1110
|
+
| "indent-increase"
|
|
1111
|
+
| "indeterminate-circle-fill"
|
|
1112
|
+
| "indeterminate-circle-line"
|
|
1113
|
+
| "information-fill"
|
|
1114
|
+
| "information-line"
|
|
1115
|
+
| "infrared-thermometer-fill"
|
|
1116
|
+
| "infrared-thermometer-line"
|
|
1117
|
+
| "ink-bottle-fill"
|
|
1118
|
+
| "ink-bottle-line"
|
|
1119
|
+
| "input-cursor-move"
|
|
1120
|
+
| "input-method-fill"
|
|
1121
|
+
| "input-method-line"
|
|
1122
|
+
| "insert-column-left"
|
|
1123
|
+
| "insert-column-right"
|
|
1124
|
+
| "insert-row-bottom"
|
|
1125
|
+
| "insert-row-top"
|
|
1126
|
+
| "instagram-fill"
|
|
1127
|
+
| "instagram-line"
|
|
1128
|
+
| "install-fill"
|
|
1129
|
+
| "install-line"
|
|
1130
|
+
| "invision-fill"
|
|
1131
|
+
| "invision-line"
|
|
1132
|
+
| "italic"
|
|
1133
|
+
| "kakao-talk-fill"
|
|
1134
|
+
| "kakao-talk-line"
|
|
1135
|
+
| "key-2-fill"
|
|
1136
|
+
| "key-2-line"
|
|
1137
|
+
| "key-fill"
|
|
1138
|
+
| "key-line"
|
|
1139
|
+
| "keyboard-box-fill"
|
|
1140
|
+
| "keyboard-box-line"
|
|
1141
|
+
| "keyboard-fill"
|
|
1142
|
+
| "keyboard-line"
|
|
1143
|
+
| "keynote-fill"
|
|
1144
|
+
| "keynote-line"
|
|
1145
|
+
| "knife-blood-fill"
|
|
1146
|
+
| "knife-blood-line"
|
|
1147
|
+
| "knife-fill"
|
|
1148
|
+
| "knife-line"
|
|
1149
|
+
| "landscape-fill"
|
|
1150
|
+
| "landscape-line"
|
|
1151
|
+
| "layout-2-fill"
|
|
1152
|
+
| "layout-2-line"
|
|
1153
|
+
| "layout-3-fill"
|
|
1154
|
+
| "layout-3-line"
|
|
1155
|
+
| "layout-4-fill"
|
|
1156
|
+
| "layout-4-line"
|
|
1157
|
+
| "layout-5-fill"
|
|
1158
|
+
| "layout-5-line"
|
|
1159
|
+
| "layout-6-fill"
|
|
1160
|
+
| "layout-6-line"
|
|
1161
|
+
| "layout-bottom-2-fill"
|
|
1162
|
+
| "layout-bottom-2-line"
|
|
1163
|
+
| "layout-bottom-fill"
|
|
1164
|
+
| "layout-bottom-line"
|
|
1165
|
+
| "layout-column-fill"
|
|
1166
|
+
| "layout-column-line"
|
|
1167
|
+
| "layout-fill"
|
|
1168
|
+
| "layout-grid-fill"
|
|
1169
|
+
| "layout-grid-line"
|
|
1170
|
+
| "layout-left-2-fill"
|
|
1171
|
+
| "layout-left-2-line"
|
|
1172
|
+
| "layout-left-fill"
|
|
1173
|
+
| "layout-left-line"
|
|
1174
|
+
| "layout-line"
|
|
1175
|
+
| "layout-masonry-fill"
|
|
1176
|
+
| "layout-masonry-line"
|
|
1177
|
+
| "layout-right-2-fill"
|
|
1178
|
+
| "layout-right-2-line"
|
|
1179
|
+
| "layout-right-fill"
|
|
1180
|
+
| "layout-right-line"
|
|
1181
|
+
| "layout-row-fill"
|
|
1182
|
+
| "layout-row-line"
|
|
1183
|
+
| "layout-top-2-fill"
|
|
1184
|
+
| "layout-top-2-line"
|
|
1185
|
+
| "layout-top-fill"
|
|
1186
|
+
| "layout-top-line"
|
|
1187
|
+
| "leaf-fill"
|
|
1188
|
+
| "leaf-line"
|
|
1189
|
+
| "lifebuoy-fill"
|
|
1190
|
+
| "lifebuoy-line"
|
|
1191
|
+
| "lightbulb-fill"
|
|
1192
|
+
| "lightbulb-flash-fill"
|
|
1193
|
+
| "lightbulb-flash-line"
|
|
1194
|
+
| "lightbulb-line"
|
|
1195
|
+
| "line-chart-fill"
|
|
1196
|
+
| "line-chart-line"
|
|
1197
|
+
| "line-fill"
|
|
1198
|
+
| "line-height"
|
|
1199
|
+
| "line-line"
|
|
1200
|
+
| "link-m"
|
|
1201
|
+
| "link-unlink-m"
|
|
1202
|
+
| "link-unlink"
|
|
1203
|
+
| "link"
|
|
1204
|
+
| "linkedin-box-fill"
|
|
1205
|
+
| "linkedin-box-line"
|
|
1206
|
+
| "linkedin-fill"
|
|
1207
|
+
| "linkedin-line"
|
|
1208
|
+
| "links-fill"
|
|
1209
|
+
| "links-line"
|
|
1210
|
+
| "list-check-2"
|
|
1211
|
+
| "list-check"
|
|
1212
|
+
| "list-ordered"
|
|
1213
|
+
| "list-settings-fill"
|
|
1214
|
+
| "list-settings-line"
|
|
1215
|
+
| "list-unordered"
|
|
1216
|
+
| "live-fill"
|
|
1217
|
+
| "live-line"
|
|
1218
|
+
| "loader-2-fill"
|
|
1219
|
+
| "loader-2-line"
|
|
1220
|
+
| "loader-3-fill"
|
|
1221
|
+
| "loader-3-line"
|
|
1222
|
+
| "loader-4-fill"
|
|
1223
|
+
| "loader-4-line"
|
|
1224
|
+
| "loader-5-fill"
|
|
1225
|
+
| "loader-5-line"
|
|
1226
|
+
| "loader-fill"
|
|
1227
|
+
| "loader-line"
|
|
1228
|
+
| "lock-2-fill"
|
|
1229
|
+
| "lock-2-line"
|
|
1230
|
+
| "lock-fill"
|
|
1231
|
+
| "lock-line"
|
|
1232
|
+
| "lock-password-fill"
|
|
1233
|
+
| "lock-password-line"
|
|
1234
|
+
| "lock-unlock-fill"
|
|
1235
|
+
| "lock-unlock-line"
|
|
1236
|
+
| "login-box-fill"
|
|
1237
|
+
| "login-box-line"
|
|
1238
|
+
| "login-circle-fill"
|
|
1239
|
+
| "login-circle-line"
|
|
1240
|
+
| "logout-box-fill"
|
|
1241
|
+
| "logout-box-line"
|
|
1242
|
+
| "logout-box-r-fill"
|
|
1243
|
+
| "logout-box-r-line"
|
|
1244
|
+
| "logout-circle-fill"
|
|
1245
|
+
| "logout-circle-line"
|
|
1246
|
+
| "logout-circle-r-fill"
|
|
1247
|
+
| "logout-circle-r-line"
|
|
1248
|
+
| "luggage-cart-fill"
|
|
1249
|
+
| "luggage-cart-line"
|
|
1250
|
+
| "luggage-deposit-fill"
|
|
1251
|
+
| "luggage-deposit-line"
|
|
1252
|
+
| "lungs-fill"
|
|
1253
|
+
| "lungs-line"
|
|
1254
|
+
| "mac-fill"
|
|
1255
|
+
| "mac-line"
|
|
1256
|
+
| "macbook-fill"
|
|
1257
|
+
| "macbook-line"
|
|
1258
|
+
| "magic-fill"
|
|
1259
|
+
| "magic-line"
|
|
1260
|
+
| "mail-add-fill"
|
|
1261
|
+
| "mail-add-line"
|
|
1262
|
+
| "mail-check-fill"
|
|
1263
|
+
| "mail-check-line"
|
|
1264
|
+
| "mail-close-fill"
|
|
1265
|
+
| "mail-close-line"
|
|
1266
|
+
| "mail-download-fill"
|
|
1267
|
+
| "mail-download-line"
|
|
1268
|
+
| "mail-fill"
|
|
1269
|
+
| "mail-forbid-fill"
|
|
1270
|
+
| "mail-forbid-line"
|
|
1271
|
+
| "mail-line"
|
|
1272
|
+
| "mail-lock-fill"
|
|
1273
|
+
| "mail-lock-line"
|
|
1274
|
+
| "mail-open-fill"
|
|
1275
|
+
| "mail-open-line"
|
|
1276
|
+
| "mail-send-fill"
|
|
1277
|
+
| "mail-send-line"
|
|
1278
|
+
| "mail-settings-fill"
|
|
1279
|
+
| "mail-settings-line"
|
|
1280
|
+
| "mail-star-fill"
|
|
1281
|
+
| "mail-star-line"
|
|
1282
|
+
| "mail-unread-fill"
|
|
1283
|
+
| "mail-unread-line"
|
|
1284
|
+
| "mail-volume-fill"
|
|
1285
|
+
| "mail-volume-line"
|
|
1286
|
+
| "map-2-fill"
|
|
1287
|
+
| "map-2-line"
|
|
1288
|
+
| "map-fill"
|
|
1289
|
+
| "map-line"
|
|
1290
|
+
| "map-pin-2-fill"
|
|
1291
|
+
| "map-pin-2-line"
|
|
1292
|
+
| "map-pin-3-fill"
|
|
1293
|
+
| "map-pin-3-line"
|
|
1294
|
+
| "map-pin-4-fill"
|
|
1295
|
+
| "map-pin-4-line"
|
|
1296
|
+
| "map-pin-5-fill"
|
|
1297
|
+
| "map-pin-5-line"
|
|
1298
|
+
| "map-pin-add-fill"
|
|
1299
|
+
| "map-pin-add-line"
|
|
1300
|
+
| "map-pin-fill"
|
|
1301
|
+
| "map-pin-line"
|
|
1302
|
+
| "map-pin-range-fill"
|
|
1303
|
+
| "map-pin-range-line"
|
|
1304
|
+
| "map-pin-time-fill"
|
|
1305
|
+
| "map-pin-time-line"
|
|
1306
|
+
| "map-pin-user-fill"
|
|
1307
|
+
| "map-pin-user-line"
|
|
1308
|
+
| "mark-pen-fill"
|
|
1309
|
+
| "mark-pen-line"
|
|
1310
|
+
| "markdown-fill"
|
|
1311
|
+
| "markdown-line"
|
|
1312
|
+
| "markup-fill"
|
|
1313
|
+
| "markup-line"
|
|
1314
|
+
| "mastercard-fill"
|
|
1315
|
+
| "mastercard-line"
|
|
1316
|
+
| "mastodon-fill"
|
|
1317
|
+
| "mastodon-line"
|
|
1318
|
+
| "medal-2-fill"
|
|
1319
|
+
| "medal-2-line"
|
|
1320
|
+
| "medal-fill"
|
|
1321
|
+
| "medal-line"
|
|
1322
|
+
| "medicine-bottle-fill"
|
|
1323
|
+
| "medicine-bottle-line"
|
|
1324
|
+
| "medium-fill"
|
|
1325
|
+
| "medium-line"
|
|
1326
|
+
| "men-fill"
|
|
1327
|
+
| "men-line"
|
|
1328
|
+
| "mental-health-fill"
|
|
1329
|
+
| "mental-health-line"
|
|
1330
|
+
| "menu-2-fill"
|
|
1331
|
+
| "menu-2-line"
|
|
1332
|
+
| "menu-3-fill"
|
|
1333
|
+
| "menu-3-line"
|
|
1334
|
+
| "menu-4-fill"
|
|
1335
|
+
| "menu-4-line"
|
|
1336
|
+
| "menu-5-fill"
|
|
1337
|
+
| "menu-5-line"
|
|
1338
|
+
| "menu-add-fill"
|
|
1339
|
+
| "menu-add-line"
|
|
1340
|
+
| "menu-fill"
|
|
1341
|
+
| "menu-fold-fill"
|
|
1342
|
+
| "menu-fold-line"
|
|
1343
|
+
| "menu-line"
|
|
1344
|
+
| "menu-unfold-fill"
|
|
1345
|
+
| "menu-unfold-line"
|
|
1346
|
+
| "merge-cells-horizontal"
|
|
1347
|
+
| "merge-cells-vertical"
|
|
1348
|
+
| "message-2-fill"
|
|
1349
|
+
| "message-2-line"
|
|
1350
|
+
| "message-3-fill"
|
|
1351
|
+
| "message-3-line"
|
|
1352
|
+
| "message-fill"
|
|
1353
|
+
| "message-line"
|
|
1354
|
+
| "messenger-fill"
|
|
1355
|
+
| "messenger-line"
|
|
1356
|
+
| "meteor-fill"
|
|
1357
|
+
| "meteor-line"
|
|
1358
|
+
| "mic-2-fill"
|
|
1359
|
+
| "mic-2-line"
|
|
1360
|
+
| "mic-fill"
|
|
1361
|
+
| "mic-line"
|
|
1362
|
+
| "mic-off-fill"
|
|
1363
|
+
| "mic-off-line"
|
|
1364
|
+
| "mickey-fill"
|
|
1365
|
+
| "mickey-line"
|
|
1366
|
+
| "microscope-fill"
|
|
1367
|
+
| "microscope-line"
|
|
1368
|
+
| "microsoft-fill"
|
|
1369
|
+
| "microsoft-line"
|
|
1370
|
+
| "mind-map"
|
|
1371
|
+
| "mini-program-fill"
|
|
1372
|
+
| "mini-program-line"
|
|
1373
|
+
| "mist-fill"
|
|
1374
|
+
| "mist-line"
|
|
1375
|
+
| "money-cny-box-fill"
|
|
1376
|
+
| "money-cny-box-line"
|
|
1377
|
+
| "money-cny-circle-fill"
|
|
1378
|
+
| "money-cny-circle-line"
|
|
1379
|
+
| "money-dollar-box-fill"
|
|
1380
|
+
| "money-dollar-box-line"
|
|
1381
|
+
| "money-dollar-circle-fill"
|
|
1382
|
+
| "money-dollar-circle-line"
|
|
1383
|
+
| "money-euro-box-fill"
|
|
1384
|
+
| "money-euro-box-line"
|
|
1385
|
+
| "money-euro-circle-fill"
|
|
1386
|
+
| "money-euro-circle-line"
|
|
1387
|
+
| "money-pound-box-fill"
|
|
1388
|
+
| "money-pound-box-line"
|
|
1389
|
+
| "money-pound-circle-fill"
|
|
1390
|
+
| "money-pound-circle-line"
|
|
1391
|
+
| "moon-clear-fill"
|
|
1392
|
+
| "moon-clear-line"
|
|
1393
|
+
| "moon-cloudy-fill"
|
|
1394
|
+
| "moon-cloudy-line"
|
|
1395
|
+
| "moon-fill"
|
|
1396
|
+
| "moon-foggy-fill"
|
|
1397
|
+
| "moon-foggy-line"
|
|
1398
|
+
| "moon-line"
|
|
1399
|
+
| "more-2-fill"
|
|
1400
|
+
| "more-2-line"
|
|
1401
|
+
| "more-fill"
|
|
1402
|
+
| "more-line"
|
|
1403
|
+
| "motorbike-fill"
|
|
1404
|
+
| "motorbike-line"
|
|
1405
|
+
| "mouse-fill"
|
|
1406
|
+
| "mouse-line"
|
|
1407
|
+
| "movie-2-fill"
|
|
1408
|
+
| "movie-2-line"
|
|
1409
|
+
| "movie-fill"
|
|
1410
|
+
| "movie-line"
|
|
1411
|
+
| "music-2-fill"
|
|
1412
|
+
| "music-2-line"
|
|
1413
|
+
| "music-fill"
|
|
1414
|
+
| "music-line"
|
|
1415
|
+
| "mv-fill"
|
|
1416
|
+
| "mv-line"
|
|
1417
|
+
| "navigation-fill"
|
|
1418
|
+
| "navigation-line"
|
|
1419
|
+
| "netease-cloud-music-fill"
|
|
1420
|
+
| "netease-cloud-music-line"
|
|
1421
|
+
| "netflix-fill"
|
|
1422
|
+
| "netflix-line"
|
|
1423
|
+
| "newspaper-fill"
|
|
1424
|
+
| "newspaper-line"
|
|
1425
|
+
| "node-tree"
|
|
1426
|
+
| "notification-2-fill"
|
|
1427
|
+
| "notification-2-line"
|
|
1428
|
+
| "notification-3-fill"
|
|
1429
|
+
| "notification-3-line"
|
|
1430
|
+
| "notification-4-fill"
|
|
1431
|
+
| "notification-4-line"
|
|
1432
|
+
| "notification-badge-fill"
|
|
1433
|
+
| "notification-badge-line"
|
|
1434
|
+
| "notification-fill"
|
|
1435
|
+
| "notification-line"
|
|
1436
|
+
| "notification-off-fill"
|
|
1437
|
+
| "notification-off-line"
|
|
1438
|
+
| "npmjs-fill"
|
|
1439
|
+
| "npmjs-line"
|
|
1440
|
+
| "number-0"
|
|
1441
|
+
| "number-1"
|
|
1442
|
+
| "number-2"
|
|
1443
|
+
| "number-3"
|
|
1444
|
+
| "number-4"
|
|
1445
|
+
| "number-5"
|
|
1446
|
+
| "number-6"
|
|
1447
|
+
| "number-7"
|
|
1448
|
+
| "number-8"
|
|
1449
|
+
| "number-9"
|
|
1450
|
+
| "numbers-fill"
|
|
1451
|
+
| "numbers-line"
|
|
1452
|
+
| "nurse-fill"
|
|
1453
|
+
| "nurse-line"
|
|
1454
|
+
| "oil-fill"
|
|
1455
|
+
| "oil-line"
|
|
1456
|
+
| "omega"
|
|
1457
|
+
| "open-arm-fill"
|
|
1458
|
+
| "open-arm-line"
|
|
1459
|
+
| "open-source-fill"
|
|
1460
|
+
| "open-source-line"
|
|
1461
|
+
| "opera-fill"
|
|
1462
|
+
| "opera-line"
|
|
1463
|
+
| "order-play-fill"
|
|
1464
|
+
| "order-play-line"
|
|
1465
|
+
| "organization-chart"
|
|
1466
|
+
| "outlet-2-fill"
|
|
1467
|
+
| "outlet-2-line"
|
|
1468
|
+
| "outlet-fill"
|
|
1469
|
+
| "outlet-line"
|
|
1470
|
+
| "page-separator"
|
|
1471
|
+
| "pages-fill"
|
|
1472
|
+
| "pages-line"
|
|
1473
|
+
| "paint-brush-fill"
|
|
1474
|
+
| "paint-brush-line"
|
|
1475
|
+
| "paint-fill"
|
|
1476
|
+
| "paint-line"
|
|
1477
|
+
| "palette-fill"
|
|
1478
|
+
| "palette-line"
|
|
1479
|
+
| "pantone-fill"
|
|
1480
|
+
| "pantone-line"
|
|
1481
|
+
| "paragraph"
|
|
1482
|
+
| "parent-fill"
|
|
1483
|
+
| "parent-line"
|
|
1484
|
+
| "parentheses-fill"
|
|
1485
|
+
| "parentheses-line"
|
|
1486
|
+
| "parking-box-fill"
|
|
1487
|
+
| "parking-box-line"
|
|
1488
|
+
| "parking-fill"
|
|
1489
|
+
| "parking-line"
|
|
1490
|
+
| "passport-fill"
|
|
1491
|
+
| "passport-line"
|
|
1492
|
+
| "patreon-fill"
|
|
1493
|
+
| "patreon-line"
|
|
1494
|
+
| "pause-circle-fill"
|
|
1495
|
+
| "pause-circle-line"
|
|
1496
|
+
| "pause-fill"
|
|
1497
|
+
| "pause-line"
|
|
1498
|
+
| "pause-mini-fill"
|
|
1499
|
+
| "pause-mini-line"
|
|
1500
|
+
| "paypal-fill"
|
|
1501
|
+
| "paypal-line"
|
|
1502
|
+
| "pen-nib-fill"
|
|
1503
|
+
| "pen-nib-line"
|
|
1504
|
+
| "pencil-fill"
|
|
1505
|
+
| "pencil-line"
|
|
1506
|
+
| "pencil-ruler-2-fill"
|
|
1507
|
+
| "pencil-ruler-2-line"
|
|
1508
|
+
| "pencil-ruler-fill"
|
|
1509
|
+
| "pencil-ruler-line"
|
|
1510
|
+
| "percent-fill"
|
|
1511
|
+
| "percent-line"
|
|
1512
|
+
| "phone-camera-fill"
|
|
1513
|
+
| "phone-camera-line"
|
|
1514
|
+
| "phone-fill"
|
|
1515
|
+
| "phone-find-fill"
|
|
1516
|
+
| "phone-find-line"
|
|
1517
|
+
| "phone-line"
|
|
1518
|
+
| "phone-lock-fill"
|
|
1519
|
+
| "phone-lock-line"
|
|
1520
|
+
| "picture-in-picture-2-fill"
|
|
1521
|
+
| "picture-in-picture-2-line"
|
|
1522
|
+
| "picture-in-picture-exit-fill"
|
|
1523
|
+
| "picture-in-picture-exit-line"
|
|
1524
|
+
| "picture-in-picture-fill"
|
|
1525
|
+
| "picture-in-picture-line"
|
|
1526
|
+
| "pie-chart-2-fill"
|
|
1527
|
+
| "pie-chart-2-line"
|
|
1528
|
+
| "pie-chart-box-fill"
|
|
1529
|
+
| "pie-chart-box-line"
|
|
1530
|
+
| "pie-chart-fill"
|
|
1531
|
+
| "pie-chart-line"
|
|
1532
|
+
| "pin-distance-fill"
|
|
1533
|
+
| "pin-distance-line"
|
|
1534
|
+
| "ping-pong-fill"
|
|
1535
|
+
| "ping-pong-line"
|
|
1536
|
+
| "pinterest-fill"
|
|
1537
|
+
| "pinterest-line"
|
|
1538
|
+
| "pinyin-input"
|
|
1539
|
+
| "pixelfed-fill"
|
|
1540
|
+
| "pixelfed-line"
|
|
1541
|
+
| "plane-fill"
|
|
1542
|
+
| "plane-line"
|
|
1543
|
+
| "plant-fill"
|
|
1544
|
+
| "plant-line"
|
|
1545
|
+
| "play-circle-fill"
|
|
1546
|
+
| "play-circle-line"
|
|
1547
|
+
| "play-fill"
|
|
1548
|
+
| "play-line"
|
|
1549
|
+
| "play-list-2-fill"
|
|
1550
|
+
| "play-list-2-line"
|
|
1551
|
+
| "play-list-add-fill"
|
|
1552
|
+
| "play-list-add-line"
|
|
1553
|
+
| "play-list-fill"
|
|
1554
|
+
| "play-list-line"
|
|
1555
|
+
| "play-mini-fill"
|
|
1556
|
+
| "play-mini-line"
|
|
1557
|
+
| "playstation-fill"
|
|
1558
|
+
| "playstation-line"
|
|
1559
|
+
| "plug-2-fill"
|
|
1560
|
+
| "plug-2-line"
|
|
1561
|
+
| "plug-fill"
|
|
1562
|
+
| "plug-line"
|
|
1563
|
+
| "polaroid-2-fill"
|
|
1564
|
+
| "polaroid-2-line"
|
|
1565
|
+
| "polaroid-fill"
|
|
1566
|
+
| "polaroid-line"
|
|
1567
|
+
| "police-car-fill"
|
|
1568
|
+
| "police-car-line"
|
|
1569
|
+
| "price-tag-2-fill"
|
|
1570
|
+
| "price-tag-2-line"
|
|
1571
|
+
| "price-tag-3-fill"
|
|
1572
|
+
| "price-tag-3-line"
|
|
1573
|
+
| "price-tag-fill"
|
|
1574
|
+
| "price-tag-line"
|
|
1575
|
+
| "printer-cloud-fill"
|
|
1576
|
+
| "printer-cloud-line"
|
|
1577
|
+
| "printer-fill"
|
|
1578
|
+
| "printer-line"
|
|
1579
|
+
| "product-hunt-fill"
|
|
1580
|
+
| "product-hunt-line"
|
|
1581
|
+
| "profile-fill"
|
|
1582
|
+
| "profile-line"
|
|
1583
|
+
| "projector-2-fill"
|
|
1584
|
+
| "projector-2-line"
|
|
1585
|
+
| "projector-fill"
|
|
1586
|
+
| "projector-line"
|
|
1587
|
+
| "psychotherapy-fill"
|
|
1588
|
+
| "psychotherapy-line"
|
|
1589
|
+
| "pulse-fill"
|
|
1590
|
+
| "pulse-line"
|
|
1591
|
+
| "pushpin-2-fill"
|
|
1592
|
+
| "pushpin-2-line"
|
|
1593
|
+
| "pushpin-fill"
|
|
1594
|
+
| "pushpin-line"
|
|
1595
|
+
| "qq-fill"
|
|
1596
|
+
| "qq-line"
|
|
1597
|
+
| "qr-code-fill"
|
|
1598
|
+
| "qr-code-line"
|
|
1599
|
+
| "qr-scan-2-fill"
|
|
1600
|
+
| "qr-scan-2-line"
|
|
1601
|
+
| "qr-scan-fill"
|
|
1602
|
+
| "qr-scan-line"
|
|
1603
|
+
| "question-answer-fill"
|
|
1604
|
+
| "question-answer-line"
|
|
1605
|
+
| "question-fill"
|
|
1606
|
+
| "question-line"
|
|
1607
|
+
| "question-mark"
|
|
1608
|
+
| "questionnaire-fill"
|
|
1609
|
+
| "questionnaire-line"
|
|
1610
|
+
| "quill-pen-fill"
|
|
1611
|
+
| "quill-pen-line"
|
|
1612
|
+
| "radar-fill"
|
|
1613
|
+
| "radar-line"
|
|
1614
|
+
| "radio-2-fill"
|
|
1615
|
+
| "radio-2-line"
|
|
1616
|
+
| "radio-button-fill"
|
|
1617
|
+
| "radio-button-line"
|
|
1618
|
+
| "radio-fill"
|
|
1619
|
+
| "radio-line"
|
|
1620
|
+
| "rainbow-fill"
|
|
1621
|
+
| "rainbow-line"
|
|
1622
|
+
| "rainy-fill"
|
|
1623
|
+
| "rainy-line"
|
|
1624
|
+
| "reactjs-fill"
|
|
1625
|
+
| "reactjs-line"
|
|
1626
|
+
| "record-circle-fill"
|
|
1627
|
+
| "record-circle-line"
|
|
1628
|
+
| "record-mail-fill"
|
|
1629
|
+
| "record-mail-line"
|
|
1630
|
+
| "recycle-fill"
|
|
1631
|
+
| "recycle-line"
|
|
1632
|
+
| "red-packet-fill"
|
|
1633
|
+
| "red-packet-line"
|
|
1634
|
+
| "reddit-fill"
|
|
1635
|
+
| "reddit-line"
|
|
1636
|
+
| "refresh-fill"
|
|
1637
|
+
| "refresh-line"
|
|
1638
|
+
| "refund-2-fill"
|
|
1639
|
+
| "refund-2-line"
|
|
1640
|
+
| "refund-fill"
|
|
1641
|
+
| "refund-line"
|
|
1642
|
+
| "registered-fill"
|
|
1643
|
+
| "registered-line"
|
|
1644
|
+
| "remixicon-fill"
|
|
1645
|
+
| "remixicon-line"
|
|
1646
|
+
| "remote-control-2-fill"
|
|
1647
|
+
| "remote-control-2-line"
|
|
1648
|
+
| "remote-control-fill"
|
|
1649
|
+
| "remote-control-line"
|
|
1650
|
+
| "repeat-2-fill"
|
|
1651
|
+
| "repeat-2-line"
|
|
1652
|
+
| "repeat-fill"
|
|
1653
|
+
| "repeat-line"
|
|
1654
|
+
| "repeat-one-fill"
|
|
1655
|
+
| "repeat-one-line"
|
|
1656
|
+
| "reply-all-fill"
|
|
1657
|
+
| "reply-all-line"
|
|
1658
|
+
| "reply-fill"
|
|
1659
|
+
| "reply-line"
|
|
1660
|
+
| "reserved-fill"
|
|
1661
|
+
| "reserved-line"
|
|
1662
|
+
| "rest-time-fill"
|
|
1663
|
+
| "rest-time-line"
|
|
1664
|
+
| "restart-fill"
|
|
1665
|
+
| "restart-line"
|
|
1666
|
+
| "restaurant-2-fill"
|
|
1667
|
+
| "restaurant-2-line"
|
|
1668
|
+
| "restaurant-fill"
|
|
1669
|
+
| "restaurant-line"
|
|
1670
|
+
| "rewind-fill"
|
|
1671
|
+
| "rewind-line"
|
|
1672
|
+
| "rewind-mini-fill"
|
|
1673
|
+
| "rewind-mini-line"
|
|
1674
|
+
| "rhythm-fill"
|
|
1675
|
+
| "rhythm-line"
|
|
1676
|
+
| "riding-fill"
|
|
1677
|
+
| "riding-line"
|
|
1678
|
+
| "road-map-fill"
|
|
1679
|
+
| "road-map-line"
|
|
1680
|
+
| "roadster-fill"
|
|
1681
|
+
| "roadster-line"
|
|
1682
|
+
| "robot-fill"
|
|
1683
|
+
| "robot-line"
|
|
1684
|
+
| "rocket-2-fill"
|
|
1685
|
+
| "rocket-2-line"
|
|
1686
|
+
| "rocket-fill"
|
|
1687
|
+
| "rocket-line"
|
|
1688
|
+
| "rotate-lock-fill"
|
|
1689
|
+
| "rotate-lock-line"
|
|
1690
|
+
| "rounded-corner"
|
|
1691
|
+
| "route-fill"
|
|
1692
|
+
| "route-line"
|
|
1693
|
+
| "router-fill"
|
|
1694
|
+
| "router-line"
|
|
1695
|
+
| "rss-fill"
|
|
1696
|
+
| "rss-line"
|
|
1697
|
+
| "ruler-2-fill"
|
|
1698
|
+
| "ruler-2-line"
|
|
1699
|
+
| "ruler-fill"
|
|
1700
|
+
| "ruler-line"
|
|
1701
|
+
| "run-fill"
|
|
1702
|
+
| "run-line"
|
|
1703
|
+
| "safari-fill"
|
|
1704
|
+
| "safari-line"
|
|
1705
|
+
| "safe-2-fill"
|
|
1706
|
+
| "safe-2-line"
|
|
1707
|
+
| "safe-fill"
|
|
1708
|
+
| "safe-line"
|
|
1709
|
+
| "sailboat-fill"
|
|
1710
|
+
| "sailboat-line"
|
|
1711
|
+
| "save-2-fill"
|
|
1712
|
+
| "save-2-line"
|
|
1713
|
+
| "save-3-fill"
|
|
1714
|
+
| "save-3-line"
|
|
1715
|
+
| "save-fill"
|
|
1716
|
+
| "save-line"
|
|
1717
|
+
| "scales-2-fill"
|
|
1718
|
+
| "scales-2-line"
|
|
1719
|
+
| "scales-3-fill"
|
|
1720
|
+
| "scales-3-line"
|
|
1721
|
+
| "scales-fill"
|
|
1722
|
+
| "scales-line"
|
|
1723
|
+
| "scan-2-fill"
|
|
1724
|
+
| "scan-2-line"
|
|
1725
|
+
| "scan-fill"
|
|
1726
|
+
| "scan-line"
|
|
1727
|
+
| "scissors-2-fill"
|
|
1728
|
+
| "scissors-2-line"
|
|
1729
|
+
| "scissors-cut-fill"
|
|
1730
|
+
| "scissors-cut-line"
|
|
1731
|
+
| "scissors-fill"
|
|
1732
|
+
| "scissors-line"
|
|
1733
|
+
| "screenshot-2-fill"
|
|
1734
|
+
| "screenshot-2-line"
|
|
1735
|
+
| "screenshot-fill"
|
|
1736
|
+
| "screenshot-line"
|
|
1737
|
+
| "sd-card-fill"
|
|
1738
|
+
| "sd-card-line"
|
|
1739
|
+
| "sd-card-mini-fill"
|
|
1740
|
+
| "sd-card-mini-line"
|
|
1741
|
+
| "search-2-fill"
|
|
1742
|
+
| "search-2-line"
|
|
1743
|
+
| "search-eye-fill"
|
|
1744
|
+
| "search-eye-line"
|
|
1745
|
+
| "search-fill"
|
|
1746
|
+
| "search-line"
|
|
1747
|
+
| "secure-payment-fill"
|
|
1748
|
+
| "secure-payment-line"
|
|
1749
|
+
| "seedling-fill"
|
|
1750
|
+
| "seedling-line"
|
|
1751
|
+
| "send-backward"
|
|
1752
|
+
| "send-plane-2-fill"
|
|
1753
|
+
| "send-plane-2-line"
|
|
1754
|
+
| "send-plane-fill"
|
|
1755
|
+
| "send-plane-line"
|
|
1756
|
+
| "send-to-back"
|
|
1757
|
+
| "sensor-fill"
|
|
1758
|
+
| "sensor-line"
|
|
1759
|
+
| "separator"
|
|
1760
|
+
| "server-fill"
|
|
1761
|
+
| "server-line"
|
|
1762
|
+
| "service-fill"
|
|
1763
|
+
| "service-line"
|
|
1764
|
+
| "settings-2-fill"
|
|
1765
|
+
| "settings-2-line"
|
|
1766
|
+
| "settings-3-fill"
|
|
1767
|
+
| "settings-3-line"
|
|
1768
|
+
| "settings-4-fill"
|
|
1769
|
+
| "settings-4-line"
|
|
1770
|
+
| "settings-5-fill"
|
|
1771
|
+
| "settings-5-line"
|
|
1772
|
+
| "settings-6-fill"
|
|
1773
|
+
| "settings-6-line"
|
|
1774
|
+
| "settings-fill"
|
|
1775
|
+
| "settings-line"
|
|
1776
|
+
| "shape-2-fill"
|
|
1777
|
+
| "shape-2-line"
|
|
1778
|
+
| "shape-fill"
|
|
1779
|
+
| "shape-line"
|
|
1780
|
+
| "share-box-fill"
|
|
1781
|
+
| "share-box-line"
|
|
1782
|
+
| "share-circle-fill"
|
|
1783
|
+
| "share-circle-line"
|
|
1784
|
+
| "share-fill"
|
|
1785
|
+
| "share-forward-2-fill"
|
|
1786
|
+
| "share-forward-2-line"
|
|
1787
|
+
| "share-forward-box-fill"
|
|
1788
|
+
| "share-forward-box-line"
|
|
1789
|
+
| "share-forward-fill"
|
|
1790
|
+
| "share-forward-line"
|
|
1791
|
+
| "share-line"
|
|
1792
|
+
| "shield-check-fill"
|
|
1793
|
+
| "shield-check-line"
|
|
1794
|
+
| "shield-cross-fill"
|
|
1795
|
+
| "shield-cross-line"
|
|
1796
|
+
| "shield-fill"
|
|
1797
|
+
| "shield-flash-fill"
|
|
1798
|
+
| "shield-flash-line"
|
|
1799
|
+
| "shield-keyhole-fill"
|
|
1800
|
+
| "shield-keyhole-line"
|
|
1801
|
+
| "shield-line"
|
|
1802
|
+
| "shield-star-fill"
|
|
1803
|
+
| "shield-star-line"
|
|
1804
|
+
| "shield-user-fill"
|
|
1805
|
+
| "shield-user-line"
|
|
1806
|
+
| "ship-2-fill"
|
|
1807
|
+
| "ship-2-line"
|
|
1808
|
+
| "ship-fill"
|
|
1809
|
+
| "ship-line"
|
|
1810
|
+
| "shirt-fill"
|
|
1811
|
+
| "shirt-line"
|
|
1812
|
+
| "shopping-bag-2-fill"
|
|
1813
|
+
| "shopping-bag-2-line"
|
|
1814
|
+
| "shopping-bag-3-fill"
|
|
1815
|
+
| "shopping-bag-3-line"
|
|
1816
|
+
| "shopping-bag-fill"
|
|
1817
|
+
| "shopping-bag-line"
|
|
1818
|
+
| "shopping-basket-2-fill"
|
|
1819
|
+
| "shopping-basket-2-line"
|
|
1820
|
+
| "shopping-basket-fill"
|
|
1821
|
+
| "shopping-basket-line"
|
|
1822
|
+
| "shopping-cart-2-fill"
|
|
1823
|
+
| "shopping-cart-2-line"
|
|
1824
|
+
| "shopping-cart-fill"
|
|
1825
|
+
| "shopping-cart-line"
|
|
1826
|
+
| "showers-fill"
|
|
1827
|
+
| "showers-line"
|
|
1828
|
+
| "shuffle-fill"
|
|
1829
|
+
| "shuffle-line"
|
|
1830
|
+
| "shut-down-fill"
|
|
1831
|
+
| "shut-down-line"
|
|
1832
|
+
| "side-bar-fill"
|
|
1833
|
+
| "side-bar-line"
|
|
1834
|
+
| "signal-tower-fill"
|
|
1835
|
+
| "signal-tower-line"
|
|
1836
|
+
| "signal-wifi-1-fill"
|
|
1837
|
+
| "signal-wifi-1-line"
|
|
1838
|
+
| "signal-wifi-2-fill"
|
|
1839
|
+
| "signal-wifi-2-line"
|
|
1840
|
+
| "signal-wifi-3-fill"
|
|
1841
|
+
| "signal-wifi-3-line"
|
|
1842
|
+
| "signal-wifi-error-fill"
|
|
1843
|
+
| "signal-wifi-error-line"
|
|
1844
|
+
| "signal-wifi-fill"
|
|
1845
|
+
| "signal-wifi-line"
|
|
1846
|
+
| "signal-wifi-off-fill"
|
|
1847
|
+
| "signal-wifi-off-line"
|
|
1848
|
+
| "sim-card-2-fill"
|
|
1849
|
+
| "sim-card-2-line"
|
|
1850
|
+
| "sim-card-fill"
|
|
1851
|
+
| "sim-card-line"
|
|
1852
|
+
| "single-quotes-l"
|
|
1853
|
+
| "single-quotes-r"
|
|
1854
|
+
| "sip-fill"
|
|
1855
|
+
| "sip-line"
|
|
1856
|
+
| "skip-back-fill"
|
|
1857
|
+
| "skip-back-line"
|
|
1858
|
+
| "skip-back-mini-fill"
|
|
1859
|
+
| "skip-back-mini-line"
|
|
1860
|
+
| "skip-forward-fill"
|
|
1861
|
+
| "skip-forward-line"
|
|
1862
|
+
| "skip-forward-mini-fill"
|
|
1863
|
+
| "skip-forward-mini-line"
|
|
1864
|
+
| "skull-2-fill"
|
|
1865
|
+
| "skull-2-line"
|
|
1866
|
+
| "skull-fill"
|
|
1867
|
+
| "skull-line"
|
|
1868
|
+
| "skype-fill"
|
|
1869
|
+
| "skype-line"
|
|
1870
|
+
| "slack-fill"
|
|
1871
|
+
| "slack-line"
|
|
1872
|
+
| "slice-fill"
|
|
1873
|
+
| "slice-line"
|
|
1874
|
+
| "slideshow-2-fill"
|
|
1875
|
+
| "slideshow-2-line"
|
|
1876
|
+
| "slideshow-3-fill"
|
|
1877
|
+
| "slideshow-3-line"
|
|
1878
|
+
| "slideshow-4-fill"
|
|
1879
|
+
| "slideshow-4-line"
|
|
1880
|
+
| "slideshow-fill"
|
|
1881
|
+
| "slideshow-line"
|
|
1882
|
+
| "smartphone-fill"
|
|
1883
|
+
| "smartphone-line"
|
|
1884
|
+
| "snapchat-fill"
|
|
1885
|
+
| "snapchat-line"
|
|
1886
|
+
| "snowy-fill"
|
|
1887
|
+
| "snowy-line"
|
|
1888
|
+
| "sort-asc"
|
|
1889
|
+
| "sort-desc"
|
|
1890
|
+
| "sound-module-fill"
|
|
1891
|
+
| "sound-module-line"
|
|
1892
|
+
| "soundcloud-fill"
|
|
1893
|
+
| "soundcloud-line"
|
|
1894
|
+
| "space-ship-fill"
|
|
1895
|
+
| "space-ship-line"
|
|
1896
|
+
| "space"
|
|
1897
|
+
| "spam-2-fill"
|
|
1898
|
+
| "spam-2-line"
|
|
1899
|
+
| "spam-3-fill"
|
|
1900
|
+
| "spam-3-line"
|
|
1901
|
+
| "spam-fill"
|
|
1902
|
+
| "spam-line"
|
|
1903
|
+
| "speaker-2-fill"
|
|
1904
|
+
| "speaker-2-line"
|
|
1905
|
+
| "speaker-3-fill"
|
|
1906
|
+
| "speaker-3-line"
|
|
1907
|
+
| "speaker-fill"
|
|
1908
|
+
| "speaker-line"
|
|
1909
|
+
| "spectrum-fill"
|
|
1910
|
+
| "spectrum-line"
|
|
1911
|
+
| "speed-fill"
|
|
1912
|
+
| "speed-line"
|
|
1913
|
+
| "speed-mini-fill"
|
|
1914
|
+
| "speed-mini-line"
|
|
1915
|
+
| "split-cells-horizontal"
|
|
1916
|
+
| "split-cells-vertical"
|
|
1917
|
+
| "spotify-fill"
|
|
1918
|
+
| "spotify-line"
|
|
1919
|
+
| "spy-fill"
|
|
1920
|
+
| "spy-line"
|
|
1921
|
+
| "stack-fill"
|
|
1922
|
+
| "stack-line"
|
|
1923
|
+
| "stack-overflow-fill"
|
|
1924
|
+
| "stack-overflow-line"
|
|
1925
|
+
| "stackshare-fill"
|
|
1926
|
+
| "stackshare-line"
|
|
1927
|
+
| "star-fill"
|
|
1928
|
+
| "star-half-fill"
|
|
1929
|
+
| "star-half-line"
|
|
1930
|
+
| "star-half-s-fill"
|
|
1931
|
+
| "star-half-s-line"
|
|
1932
|
+
| "star-line"
|
|
1933
|
+
| "star-s-fill"
|
|
1934
|
+
| "star-s-line"
|
|
1935
|
+
| "star-smile-fill"
|
|
1936
|
+
| "star-smile-line"
|
|
1937
|
+
| "steam-fill"
|
|
1938
|
+
| "steam-line"
|
|
1939
|
+
| "steering-2-fill"
|
|
1940
|
+
| "steering-2-line"
|
|
1941
|
+
| "steering-fill"
|
|
1942
|
+
| "steering-line"
|
|
1943
|
+
| "stethoscope-fill"
|
|
1944
|
+
| "stethoscope-line"
|
|
1945
|
+
| "sticky-note-2-fill"
|
|
1946
|
+
| "sticky-note-2-line"
|
|
1947
|
+
| "sticky-note-fill"
|
|
1948
|
+
| "sticky-note-line"
|
|
1949
|
+
| "stock-fill"
|
|
1950
|
+
| "stock-line"
|
|
1951
|
+
| "stop-circle-fill"
|
|
1952
|
+
| "stop-circle-line"
|
|
1953
|
+
| "stop-fill"
|
|
1954
|
+
| "stop-line"
|
|
1955
|
+
| "stop-mini-fill"
|
|
1956
|
+
| "stop-mini-line"
|
|
1957
|
+
| "store-2-fill"
|
|
1958
|
+
| "store-2-line"
|
|
1959
|
+
| "store-3-fill"
|
|
1960
|
+
| "store-3-line"
|
|
1961
|
+
| "store-fill"
|
|
1962
|
+
| "store-line"
|
|
1963
|
+
| "strikethrough-2"
|
|
1964
|
+
| "strikethrough"
|
|
1965
|
+
| "subscript-2"
|
|
1966
|
+
| "subscript"
|
|
1967
|
+
| "subtract-fill"
|
|
1968
|
+
| "subtract-line"
|
|
1969
|
+
| "subway-fill"
|
|
1970
|
+
| "subway-line"
|
|
1971
|
+
| "subway-wifi-fill"
|
|
1972
|
+
| "subway-wifi-line"
|
|
1973
|
+
| "suitcase-2-fill"
|
|
1974
|
+
| "suitcase-2-line"
|
|
1975
|
+
| "suitcase-3-fill"
|
|
1976
|
+
| "suitcase-3-line"
|
|
1977
|
+
| "suitcase-fill"
|
|
1978
|
+
| "suitcase-line"
|
|
1979
|
+
| "sun-cloudy-fill"
|
|
1980
|
+
| "sun-cloudy-line"
|
|
1981
|
+
| "sun-fill"
|
|
1982
|
+
| "sun-foggy-fill"
|
|
1983
|
+
| "sun-foggy-line"
|
|
1984
|
+
| "sun-line"
|
|
1985
|
+
| "superscript-2"
|
|
1986
|
+
| "superscript"
|
|
1987
|
+
| "surgical-mask-fill"
|
|
1988
|
+
| "surgical-mask-line"
|
|
1989
|
+
| "surround-sound-fill"
|
|
1990
|
+
| "surround-sound-line"
|
|
1991
|
+
| "survey-fill"
|
|
1992
|
+
| "survey-line"
|
|
1993
|
+
| "swap-box-fill"
|
|
1994
|
+
| "swap-box-line"
|
|
1995
|
+
| "swap-fill"
|
|
1996
|
+
| "swap-line"
|
|
1997
|
+
| "switch-fill"
|
|
1998
|
+
| "switch-line"
|
|
1999
|
+
| "sword-fill"
|
|
2000
|
+
| "sword-line"
|
|
2001
|
+
| "syringe-fill"
|
|
2002
|
+
| "syringe-line"
|
|
2003
|
+
| "t-box-fill"
|
|
2004
|
+
| "t-box-line"
|
|
2005
|
+
| "t-shirt-2-fill"
|
|
2006
|
+
| "t-shirt-2-line"
|
|
2007
|
+
| "t-shirt-air-fill"
|
|
2008
|
+
| "t-shirt-air-line"
|
|
2009
|
+
| "t-shirt-fill"
|
|
2010
|
+
| "t-shirt-line"
|
|
2011
|
+
| "table-2"
|
|
2012
|
+
| "table-alt-fill"
|
|
2013
|
+
| "table-alt-line"
|
|
2014
|
+
| "table-fill"
|
|
2015
|
+
| "table-line"
|
|
2016
|
+
| "tablet-fill"
|
|
2017
|
+
| "tablet-line"
|
|
2018
|
+
| "takeaway-fill"
|
|
2019
|
+
| "takeaway-line"
|
|
2020
|
+
| "taobao-fill"
|
|
2021
|
+
| "taobao-line"
|
|
2022
|
+
| "tape-fill"
|
|
2023
|
+
| "tape-line"
|
|
2024
|
+
| "task-fill"
|
|
2025
|
+
| "task-line"
|
|
2026
|
+
| "taxi-fill"
|
|
2027
|
+
| "taxi-line"
|
|
2028
|
+
| "taxi-wifi-fill"
|
|
2029
|
+
| "taxi-wifi-line"
|
|
2030
|
+
| "team-fill"
|
|
2031
|
+
| "team-line"
|
|
2032
|
+
| "telegram-fill"
|
|
2033
|
+
| "telegram-line"
|
|
2034
|
+
| "temp-cold-fill"
|
|
2035
|
+
| "temp-cold-line"
|
|
2036
|
+
| "temp-hot-fill"
|
|
2037
|
+
| "temp-hot-line"
|
|
2038
|
+
| "terminal-box-fill"
|
|
2039
|
+
| "terminal-box-line"
|
|
2040
|
+
| "terminal-fill"
|
|
2041
|
+
| "terminal-line"
|
|
2042
|
+
| "terminal-window-fill"
|
|
2043
|
+
| "terminal-window-line"
|
|
2044
|
+
| "test-tube-fill"
|
|
2045
|
+
| "test-tube-line"
|
|
2046
|
+
| "text-direction-l"
|
|
2047
|
+
| "text-direction-r"
|
|
2048
|
+
| "text-spacing"
|
|
2049
|
+
| "text-wrap"
|
|
2050
|
+
| "text"
|
|
2051
|
+
| "thermometer-fill"
|
|
2052
|
+
| "thermometer-line"
|
|
2053
|
+
| "thumb-down-fill"
|
|
2054
|
+
| "thumb-down-line"
|
|
2055
|
+
| "thumb-up-fill"
|
|
2056
|
+
| "thumb-up-line"
|
|
2057
|
+
| "thunderstorms-fill"
|
|
2058
|
+
| "thunderstorms-line"
|
|
2059
|
+
| "ticket-2-fill"
|
|
2060
|
+
| "ticket-2-line"
|
|
2061
|
+
| "ticket-fill"
|
|
2062
|
+
| "ticket-line"
|
|
2063
|
+
| "time-fill"
|
|
2064
|
+
| "time-line"
|
|
2065
|
+
| "timer-2-fill"
|
|
2066
|
+
| "timer-2-line"
|
|
2067
|
+
| "timer-fill"
|
|
2068
|
+
| "timer-flash-fill"
|
|
2069
|
+
| "timer-flash-line"
|
|
2070
|
+
| "timer-line"
|
|
2071
|
+
| "todo-fill"
|
|
2072
|
+
| "todo-line"
|
|
2073
|
+
| "toggle-fill"
|
|
2074
|
+
| "toggle-line"
|
|
2075
|
+
| "tools-fill"
|
|
2076
|
+
| "tools-line"
|
|
2077
|
+
| "tornado-fill"
|
|
2078
|
+
| "tornado-line"
|
|
2079
|
+
| "trademark-fill"
|
|
2080
|
+
| "trademark-line"
|
|
2081
|
+
| "traffic-light-fill"
|
|
2082
|
+
| "traffic-light-line"
|
|
2083
|
+
| "train-fill"
|
|
2084
|
+
| "train-line"
|
|
2085
|
+
| "train-wifi-fill"
|
|
2086
|
+
| "train-wifi-line"
|
|
2087
|
+
| "translate-2"
|
|
2088
|
+
| "translate"
|
|
2089
|
+
| "travesti-fill"
|
|
2090
|
+
| "travesti-line"
|
|
2091
|
+
| "treasure-map-fill"
|
|
2092
|
+
| "treasure-map-line"
|
|
2093
|
+
| "trello-fill"
|
|
2094
|
+
| "trello-line"
|
|
2095
|
+
| "trophy-fill"
|
|
2096
|
+
| "trophy-line"
|
|
2097
|
+
| "truck-fill"
|
|
2098
|
+
| "truck-line"
|
|
2099
|
+
| "tumblr-fill"
|
|
2100
|
+
| "tumblr-line"
|
|
2101
|
+
| "tv-2-fill"
|
|
2102
|
+
| "tv-2-line"
|
|
2103
|
+
| "tv-fill"
|
|
2104
|
+
| "tv-line"
|
|
2105
|
+
| "twitch-fill"
|
|
2106
|
+
| "twitch-line"
|
|
2107
|
+
| "twitter-fill"
|
|
2108
|
+
| "twitter-line"
|
|
2109
|
+
| "typhoon-fill"
|
|
2110
|
+
| "typhoon-line"
|
|
2111
|
+
| "u-disk-fill"
|
|
2112
|
+
| "u-disk-line"
|
|
2113
|
+
| "ubuntu-fill"
|
|
2114
|
+
| "ubuntu-line"
|
|
2115
|
+
| "umbrella-fill"
|
|
2116
|
+
| "umbrella-line"
|
|
2117
|
+
| "underline"
|
|
2118
|
+
| "uninstall-fill"
|
|
2119
|
+
| "uninstall-line"
|
|
2120
|
+
| "unsplash-fill"
|
|
2121
|
+
| "unsplash-line"
|
|
2122
|
+
| "upload-2-fill"
|
|
2123
|
+
| "upload-2-line"
|
|
2124
|
+
| "upload-cloud-2-fill"
|
|
2125
|
+
| "upload-cloud-2-line"
|
|
2126
|
+
| "upload-cloud-fill"
|
|
2127
|
+
| "upload-cloud-line"
|
|
2128
|
+
| "upload-fill"
|
|
2129
|
+
| "upload-line"
|
|
2130
|
+
| "usb-fill"
|
|
2131
|
+
| "usb-line"
|
|
2132
|
+
| "user-2-fill"
|
|
2133
|
+
| "user-2-line"
|
|
2134
|
+
| "user-3-fill"
|
|
2135
|
+
| "user-3-line"
|
|
2136
|
+
| "user-4-fill"
|
|
2137
|
+
| "user-4-line"
|
|
2138
|
+
| "user-5-fill"
|
|
2139
|
+
| "user-5-line"
|
|
2140
|
+
| "user-6-fill"
|
|
2141
|
+
| "user-6-line"
|
|
2142
|
+
| "user-add-fill"
|
|
2143
|
+
| "user-add-line"
|
|
2144
|
+
| "user-fill"
|
|
2145
|
+
| "user-follow-fill"
|
|
2146
|
+
| "user-follow-line"
|
|
2147
|
+
| "user-heart-fill"
|
|
2148
|
+
| "user-heart-line"
|
|
2149
|
+
| "user-line"
|
|
2150
|
+
| "user-location-fill"
|
|
2151
|
+
| "user-location-line"
|
|
2152
|
+
| "user-received-2-fill"
|
|
2153
|
+
| "user-received-2-line"
|
|
2154
|
+
| "user-received-fill"
|
|
2155
|
+
| "user-received-line"
|
|
2156
|
+
| "user-search-fill"
|
|
2157
|
+
| "user-search-line"
|
|
2158
|
+
| "user-settings-fill"
|
|
2159
|
+
| "user-settings-line"
|
|
2160
|
+
| "user-shared-2-fill"
|
|
2161
|
+
| "user-shared-2-line"
|
|
2162
|
+
| "user-shared-fill"
|
|
2163
|
+
| "user-shared-line"
|
|
2164
|
+
| "user-smile-fill"
|
|
2165
|
+
| "user-smile-line"
|
|
2166
|
+
| "user-star-fill"
|
|
2167
|
+
| "user-star-line"
|
|
2168
|
+
| "user-unfollow-fill"
|
|
2169
|
+
| "user-unfollow-line"
|
|
2170
|
+
| "user-voice-fill"
|
|
2171
|
+
| "user-voice-line"
|
|
2172
|
+
| "video-add-fill"
|
|
2173
|
+
| "video-add-line"
|
|
2174
|
+
| "video-chat-fill"
|
|
2175
|
+
| "video-chat-line"
|
|
2176
|
+
| "video-download-fill"
|
|
2177
|
+
| "video-download-line"
|
|
2178
|
+
| "video-fill"
|
|
2179
|
+
| "video-line"
|
|
2180
|
+
| "video-upload-fill"
|
|
2181
|
+
| "video-upload-line"
|
|
2182
|
+
| "vidicon-2-fill"
|
|
2183
|
+
| "vidicon-2-line"
|
|
2184
|
+
| "vidicon-fill"
|
|
2185
|
+
| "vidicon-line"
|
|
2186
|
+
| "vimeo-fill"
|
|
2187
|
+
| "vimeo-line"
|
|
2188
|
+
| "vip-crown-2-fill"
|
|
2189
|
+
| "vip-crown-2-line"
|
|
2190
|
+
| "vip-crown-fill"
|
|
2191
|
+
| "vip-crown-line"
|
|
2192
|
+
| "vip-diamond-fill"
|
|
2193
|
+
| "vip-diamond-line"
|
|
2194
|
+
| "vip-fill"
|
|
2195
|
+
| "vip-line"
|
|
2196
|
+
| "virus-fill"
|
|
2197
|
+
| "virus-line"
|
|
2198
|
+
| "visa-fill"
|
|
2199
|
+
| "visa-line"
|
|
2200
|
+
| "voice-recognition-fill"
|
|
2201
|
+
| "voice-recognition-line"
|
|
2202
|
+
| "voiceprint-fill"
|
|
2203
|
+
| "voiceprint-line"
|
|
2204
|
+
| "volume-down-fill"
|
|
2205
|
+
| "volume-down-line"
|
|
2206
|
+
| "volume-mute-fill"
|
|
2207
|
+
| "volume-mute-line"
|
|
2208
|
+
| "volume-off-vibrate-fill"
|
|
2209
|
+
| "volume-off-vibrate-line"
|
|
2210
|
+
| "volume-up-fill"
|
|
2211
|
+
| "volume-up-line"
|
|
2212
|
+
| "volume-vibrate-fill"
|
|
2213
|
+
| "volume-vibrate-line"
|
|
2214
|
+
| "vuejs-fill"
|
|
2215
|
+
| "vuejs-line"
|
|
2216
|
+
| "walk-fill"
|
|
2217
|
+
| "walk-line"
|
|
2218
|
+
| "wallet-2-fill"
|
|
2219
|
+
| "wallet-2-line"
|
|
2220
|
+
| "wallet-3-fill"
|
|
2221
|
+
| "wallet-3-line"
|
|
2222
|
+
| "wallet-fill"
|
|
2223
|
+
| "wallet-line"
|
|
2224
|
+
| "water-flash-fill"
|
|
2225
|
+
| "water-flash-line"
|
|
2226
|
+
| "webcam-fill"
|
|
2227
|
+
| "webcam-line"
|
|
2228
|
+
| "wechat-2-fill"
|
|
2229
|
+
| "wechat-2-line"
|
|
2230
|
+
| "wechat-fill"
|
|
2231
|
+
| "wechat-line"
|
|
2232
|
+
| "wechat-pay-fill"
|
|
2233
|
+
| "wechat-pay-line"
|
|
2234
|
+
| "weibo-fill"
|
|
2235
|
+
| "weibo-line"
|
|
2236
|
+
| "whatsapp-fill"
|
|
2237
|
+
| "whatsapp-line"
|
|
2238
|
+
| "wheelchair-fill"
|
|
2239
|
+
| "wheelchair-line"
|
|
2240
|
+
| "wifi-fill"
|
|
2241
|
+
| "wifi-line"
|
|
2242
|
+
| "wifi-off-fill"
|
|
2243
|
+
| "wifi-off-line"
|
|
2244
|
+
| "window-2-fill"
|
|
2245
|
+
| "window-2-line"
|
|
2246
|
+
| "window-fill"
|
|
2247
|
+
| "window-line"
|
|
2248
|
+
| "windows-fill"
|
|
2249
|
+
| "windows-line"
|
|
2250
|
+
| "windy-fill"
|
|
2251
|
+
| "windy-line"
|
|
2252
|
+
| "wireless-charging-fill"
|
|
2253
|
+
| "wireless-charging-line"
|
|
2254
|
+
| "women-fill"
|
|
2255
|
+
| "women-line"
|
|
2256
|
+
| "wubi-input"
|
|
2257
|
+
| "xbox-fill"
|
|
2258
|
+
| "xbox-line"
|
|
2259
|
+
| "xing-fill"
|
|
2260
|
+
| "xing-line"
|
|
2261
|
+
| "youtube-fill"
|
|
2262
|
+
| "youtube-line"
|
|
2263
|
+
| "zcool-fill"
|
|
2264
|
+
| "zcool-line"
|
|
2265
|
+
| "zhihu-fill"
|
|
2266
|
+
| "zhihu-line"
|
|
2267
|
+
| "zoom-in-fill"
|
|
2268
|
+
| "zoom-in-line"
|
|
2269
|
+
| "zoom-out-fill"
|
|
2270
|
+
| "zoom-out-line"
|
|
2271
|
+
| "zzz-fill"
|
|
2272
|
+
| "zzz-line"
|
|
2273
|
+
| "arrow-down-double-fill"
|
|
2274
|
+
| "arrow-down-double-line"
|
|
2275
|
+
| "arrow-left-double-fill"
|
|
2276
|
+
| "arrow-left-double-line"
|
|
2277
|
+
| "arrow-right-double-fill"
|
|
2278
|
+
| "arrow-right-double-line"
|
|
2279
|
+
| "arrow-turn-back-fill"
|
|
2280
|
+
| "arrow-turn-back-line"
|
|
2281
|
+
| "arrow-turn-forward-fill"
|
|
2282
|
+
| "arrow-turn-forward-line"
|
|
2283
|
+
| "arrow-up-double-fill"
|
|
2284
|
+
| "arrow-up-double-line"
|
|
2285
|
+
| "bard-fill"
|
|
2286
|
+
| "bard-line"
|
|
2287
|
+
| "bootstrap-fill"
|
|
2288
|
+
| "bootstrap-line"
|
|
2289
|
+
| "box-1-fill"
|
|
2290
|
+
| "box-1-line"
|
|
2291
|
+
| "box-2-fill"
|
|
2292
|
+
| "box-2-line"
|
|
2293
|
+
| "box-3-fill"
|
|
2294
|
+
| "box-3-line"
|
|
2295
|
+
| "brain-fill"
|
|
2296
|
+
| "brain-line"
|
|
2297
|
+
| "candle-fill"
|
|
2298
|
+
| "candle-line"
|
|
2299
|
+
| "cash-fill"
|
|
2300
|
+
| "cash-line"
|
|
2301
|
+
| "contract-left-fill"
|
|
2302
|
+
| "contract-left-line"
|
|
2303
|
+
| "contract-left-right-fill"
|
|
2304
|
+
| "contract-left-right-line"
|
|
2305
|
+
| "contract-right-fill"
|
|
2306
|
+
| "contract-right-line"
|
|
2307
|
+
| "contract-up-down-fill"
|
|
2308
|
+
| "contract-up-down-line"
|
|
2309
|
+
| "copilot-fill"
|
|
2310
|
+
| "copilot-line"
|
|
2311
|
+
| "corner-down-left-fill"
|
|
2312
|
+
| "corner-down-left-line"
|
|
2313
|
+
| "corner-down-right-fill"
|
|
2314
|
+
| "corner-down-right-line"
|
|
2315
|
+
| "corner-left-down-fill"
|
|
2316
|
+
| "corner-left-down-line"
|
|
2317
|
+
| "corner-left-up-fill"
|
|
2318
|
+
| "corner-left-up-line"
|
|
2319
|
+
| "corner-right-down-fill"
|
|
2320
|
+
| "corner-right-down-line"
|
|
2321
|
+
| "corner-right-up-fill"
|
|
2322
|
+
| "corner-right-up-line"
|
|
2323
|
+
| "corner-up-left-double-fill"
|
|
2324
|
+
| "corner-up-left-double-line"
|
|
2325
|
+
| "corner-up-left-fill"
|
|
2326
|
+
| "corner-up-left-line"
|
|
2327
|
+
| "corner-up-right-double-fill"
|
|
2328
|
+
| "corner-up-right-double-line"
|
|
2329
|
+
| "corner-up-right-fill"
|
|
2330
|
+
| "corner-up-right-line"
|
|
2331
|
+
| "cross-fill"
|
|
2332
|
+
| "cross-line"
|
|
2333
|
+
| "edge-new-fill"
|
|
2334
|
+
| "edge-new-line"
|
|
2335
|
+
| "equal-fill"
|
|
2336
|
+
| "equal-line"
|
|
2337
|
+
| "expand-left-fill"
|
|
2338
|
+
| "expand-left-line"
|
|
2339
|
+
| "expand-left-right-fill"
|
|
2340
|
+
| "expand-left-right-line"
|
|
2341
|
+
| "expand-right-fill"
|
|
2342
|
+
| "expand-right-line"
|
|
2343
|
+
| "expand-up-down-fill"
|
|
2344
|
+
| "expand-up-down-line"
|
|
2345
|
+
| "flickr-fill"
|
|
2346
|
+
| "flickr-line"
|
|
2347
|
+
| "forward-10-fill"
|
|
2348
|
+
| "forward-10-line"
|
|
2349
|
+
| "forward-15-fill"
|
|
2350
|
+
| "forward-15-line"
|
|
2351
|
+
| "forward-30-fill"
|
|
2352
|
+
| "forward-30-line"
|
|
2353
|
+
| "forward-5-fill"
|
|
2354
|
+
| "forward-5-line"
|
|
2355
|
+
| "graduation-cap-fill"
|
|
2356
|
+
| "graduation-cap-line"
|
|
2357
|
+
| "home-office-fill"
|
|
2358
|
+
| "home-office-line"
|
|
2359
|
+
| "hourglass-2-fill"
|
|
2360
|
+
| "hourglass-2-line"
|
|
2361
|
+
| "hourglass-fill"
|
|
2362
|
+
| "hourglass-line"
|
|
2363
|
+
| "javascript-fill"
|
|
2364
|
+
| "javascript-line"
|
|
2365
|
+
| "loop-left-fill"
|
|
2366
|
+
| "loop-left-line"
|
|
2367
|
+
| "loop-right-fill"
|
|
2368
|
+
| "loop-right-line"
|
|
2369
|
+
| "memories-fill"
|
|
2370
|
+
| "memories-line"
|
|
2371
|
+
| "meta-fill"
|
|
2372
|
+
| "meta-line"
|
|
2373
|
+
| "microsoft-loop-fill"
|
|
2374
|
+
| "microsoft-loop-line"
|
|
2375
|
+
| "nft-fill"
|
|
2376
|
+
| "nft-line"
|
|
2377
|
+
| "notion-fill"
|
|
2378
|
+
| "notion-line"
|
|
2379
|
+
| "openai-fill"
|
|
2380
|
+
| "openai-line"
|
|
2381
|
+
| "overline"
|
|
2382
|
+
| "p2p-fill"
|
|
2383
|
+
| "p2p-line"
|
|
2384
|
+
| "presentation-fill"
|
|
2385
|
+
| "presentation-line"
|
|
2386
|
+
| "replay-10-fill"
|
|
2387
|
+
| "replay-10-line"
|
|
2388
|
+
| "replay-15-fill"
|
|
2389
|
+
| "replay-15-line"
|
|
2390
|
+
| "replay-30-fill"
|
|
2391
|
+
| "replay-30-line"
|
|
2392
|
+
| "replay-5-fill"
|
|
2393
|
+
| "replay-5-line"
|
|
2394
|
+
| "school-fill"
|
|
2395
|
+
| "school-line"
|
|
2396
|
+
| "shining-2-fill"
|
|
2397
|
+
| "shining-2-line"
|
|
2398
|
+
| "shining-fill"
|
|
2399
|
+
| "shining-line"
|
|
2400
|
+
| "sketching"
|
|
2401
|
+
| "skip-down-fill"
|
|
2402
|
+
| "skip-down-line"
|
|
2403
|
+
| "skip-left-fill"
|
|
2404
|
+
| "skip-left-line"
|
|
2405
|
+
| "skip-right-fill"
|
|
2406
|
+
| "skip-right-line"
|
|
2407
|
+
| "skip-up-fill"
|
|
2408
|
+
| "skip-up-line"
|
|
2409
|
+
| "slow-down-fill"
|
|
2410
|
+
| "slow-down-line"
|
|
2411
|
+
| "sparkling-2-fill"
|
|
2412
|
+
| "sparkling-2-line"
|
|
2413
|
+
| "sparkling-fill"
|
|
2414
|
+
| "sparkling-line"
|
|
2415
|
+
| "speak-fill"
|
|
2416
|
+
| "speak-line"
|
|
2417
|
+
| "speed-up-fill"
|
|
2418
|
+
| "speed-up-line"
|
|
2419
|
+
| "tiktok-fill"
|
|
2420
|
+
| "tiktok-line"
|
|
2421
|
+
| "token-swap-fill"
|
|
2422
|
+
| "token-swap-line"
|
|
2423
|
+
| "unpin-fill"
|
|
2424
|
+
| "unpin-line"
|
|
2425
|
+
| "wechat-channels-fill"
|
|
2426
|
+
| "wechat-channels-line"
|
|
2427
|
+
| "wordpress-fill"
|
|
2428
|
+
| "wordpress-line"
|
|
2429
|
+
| "blender-fill"
|
|
2430
|
+
| "blender-line"
|
|
2431
|
+
| "emoji-sticker-fill"
|
|
2432
|
+
| "emoji-sticker-line"
|
|
2433
|
+
| "git-close-pull-request-fill"
|
|
2434
|
+
| "git-close-pull-request-line"
|
|
2435
|
+
| "instance-fill"
|
|
2436
|
+
| "instance-line"
|
|
2437
|
+
| "megaphone-fill"
|
|
2438
|
+
| "megaphone-line"
|
|
2439
|
+
| "pass-expired-fill"
|
|
2440
|
+
| "pass-expired-line"
|
|
2441
|
+
| "pass-pending-fill"
|
|
2442
|
+
| "pass-pending-line"
|
|
2443
|
+
| "pass-valid-fill"
|
|
2444
|
+
| "pass-valid-line"
|
|
2445
|
+
| "ai-generate"
|
|
2446
|
+
| "calendar-close-fill"
|
|
2447
|
+
| "calendar-close-line"
|
|
2448
|
+
| "draggable"
|
|
2449
|
+
| "font-family"
|
|
2450
|
+
| "font-mono"
|
|
2451
|
+
| "font-sans-serif"
|
|
2452
|
+
| "hard-drive-3-fill"
|
|
2453
|
+
| "hard-drive-3-line"
|
|
2454
|
+
| "kick-fill"
|
|
2455
|
+
| "kick-line"
|
|
2456
|
+
| "list-check-3"
|
|
2457
|
+
| "list-indefinite"
|
|
2458
|
+
| "list-ordered-2"
|
|
2459
|
+
| "list-radio"
|
|
2460
|
+
| "openbase-fill"
|
|
2461
|
+
| "openbase-line"
|
|
2462
|
+
| "planet-fill"
|
|
2463
|
+
| "planet-line"
|
|
2464
|
+
| "prohibited-fill"
|
|
2465
|
+
| "prohibited-line"
|
|
2466
|
+
| "quote-text"
|
|
2467
|
+
| "seo-fill"
|
|
2468
|
+
| "seo-line"
|
|
2469
|
+
| "slash-commands"
|
|
2470
|
+
| "archive-2-fill"
|
|
2471
|
+
| "archive-2-line"
|
|
2472
|
+
| "inbox-2-fill"
|
|
2473
|
+
| "inbox-2-line"
|
|
2474
|
+
| "shake-hands-fill"
|
|
2475
|
+
| "shake-hands-line"
|
|
2476
|
+
| "supabase-fill"
|
|
2477
|
+
| "supabase-line"
|
|
2478
|
+
| "water-percent-fill"
|
|
2479
|
+
| "water-percent-line"
|
|
2480
|
+
| "yuque-fill"
|
|
2481
|
+
| "yuque-line"
|
|
2482
|
+
| "crosshair-2-fill"
|
|
2483
|
+
| "crosshair-2-line"
|
|
2484
|
+
| "crosshair-fill"
|
|
2485
|
+
| "crosshair-line"
|
|
2486
|
+
| "file-close-fill"
|
|
2487
|
+
| "file-close-line"
|
|
2488
|
+
| "infinity-fill"
|
|
2489
|
+
| "infinity-line"
|
|
2490
|
+
| "rfid-fill"
|
|
2491
|
+
| "rfid-line"
|
|
2492
|
+
| "slash-commands-2"
|
|
2493
|
+
| "user-forbid-fill"
|
|
2494
|
+
| "user-forbid-line"
|
|
2495
|
+
| "beer-fill"
|
|
2496
|
+
| "beer-line"
|
|
2497
|
+
| "circle-fill"
|
|
2498
|
+
| "circle-line"
|
|
2499
|
+
| "dropdown-list"
|
|
2500
|
+
| "file-image-fill"
|
|
2501
|
+
| "file-image-line"
|
|
2502
|
+
| "file-pdf-2-fill"
|
|
2503
|
+
| "file-pdf-2-line"
|
|
2504
|
+
| "file-video-fill"
|
|
2505
|
+
| "file-video-line"
|
|
2506
|
+
| "folder-image-fill"
|
|
2507
|
+
| "folder-image-line"
|
|
2508
|
+
| "folder-video-fill"
|
|
2509
|
+
| "folder-video-line"
|
|
2510
|
+
| "hexagon-fill"
|
|
2511
|
+
| "hexagon-line"
|
|
2512
|
+
| "menu-search-fill"
|
|
2513
|
+
| "menu-search-line"
|
|
2514
|
+
| "octagon-fill"
|
|
2515
|
+
| "octagon-line"
|
|
2516
|
+
| "pentagon-fill"
|
|
2517
|
+
| "pentagon-line"
|
|
2518
|
+
| "rectangle-fill"
|
|
2519
|
+
| "rectangle-line"
|
|
2520
|
+
| "robot-2-fill"
|
|
2521
|
+
| "robot-2-line"
|
|
2522
|
+
| "shapes-fill"
|
|
2523
|
+
| "shapes-line"
|
|
2524
|
+
| "square-fill"
|
|
2525
|
+
| "square-line"
|
|
2526
|
+
| "tent-fill"
|
|
2527
|
+
| "tent-line"
|
|
2528
|
+
| "threads-fill"
|
|
2529
|
+
| "threads-line"
|
|
2530
|
+
| "tree-fill"
|
|
2531
|
+
| "tree-line"
|
|
2532
|
+
| "triangle-fill"
|
|
2533
|
+
| "triangle-line"
|
|
2534
|
+
| "twitter-x-fill"
|
|
2535
|
+
| "twitter-x-line"
|
|
2536
|
+
| "verified-badge-fill"
|
|
2537
|
+
| "verified-badge-line"
|
|
2538
|
+
| "armchair-fill"
|
|
2539
|
+
| "armchair-line"
|
|
2540
|
+
| "bnb-fill"
|
|
2541
|
+
| "bnb-line"
|
|
2542
|
+
| "bread-fill"
|
|
2543
|
+
| "bread-line"
|
|
2544
|
+
| "btc-fill"
|
|
2545
|
+
| "btc-line"
|
|
2546
|
+
| "calendar-schedule-fill"
|
|
2547
|
+
| "calendar-schedule-line"
|
|
2548
|
+
| "dice-1-fill"
|
|
2549
|
+
| "dice-1-line"
|
|
2550
|
+
| "dice-2-fill"
|
|
2551
|
+
| "dice-2-line"
|
|
2552
|
+
| "dice-3-fill"
|
|
2553
|
+
| "dice-3-line"
|
|
2554
|
+
| "dice-4-fill"
|
|
2555
|
+
| "dice-4-line"
|
|
2556
|
+
| "dice-5-fill"
|
|
2557
|
+
| "dice-5-line"
|
|
2558
|
+
| "dice-6-fill"
|
|
2559
|
+
| "dice-6-line"
|
|
2560
|
+
| "dice-fill"
|
|
2561
|
+
| "dice-line"
|
|
2562
|
+
| "drinks-fill"
|
|
2563
|
+
| "drinks-line"
|
|
2564
|
+
| "equalizer-2-fill"
|
|
2565
|
+
| "equalizer-2-line"
|
|
2566
|
+
| "equalizer-3-fill"
|
|
2567
|
+
| "equalizer-3-line"
|
|
2568
|
+
| "eth-fill"
|
|
2569
|
+
| "eth-line"
|
|
2570
|
+
| "flower-fill"
|
|
2571
|
+
| "flower-line"
|
|
2572
|
+
| "glasses-2-fill"
|
|
2573
|
+
| "glasses-2-line"
|
|
2574
|
+
| "glasses-fill"
|
|
2575
|
+
| "glasses-line"
|
|
2576
|
+
| "goggles-fill"
|
|
2577
|
+
| "goggles-line"
|
|
2578
|
+
| "image-circle-fill"
|
|
2579
|
+
| "image-circle-line"
|
|
2580
|
+
| "info-i"
|
|
2581
|
+
| "money-rupee-circle-fill"
|
|
2582
|
+
| "money-rupee-circle-line"
|
|
2583
|
+
| "news-fill"
|
|
2584
|
+
| "news-line"
|
|
2585
|
+
| "robot-3-fill"
|
|
2586
|
+
| "robot-3-line"
|
|
2587
|
+
| "share-2-fill"
|
|
2588
|
+
| "share-2-line"
|
|
2589
|
+
| "sofa-fill"
|
|
2590
|
+
| "sofa-line"
|
|
2591
|
+
| "svelte-fill"
|
|
2592
|
+
| "svelte-line"
|
|
2593
|
+
| "vk-fill"
|
|
2594
|
+
| "vk-line"
|
|
2595
|
+
| "xrp-fill"
|
|
2596
|
+
| "xrp-line"
|
|
2597
|
+
| "xtz-fill"
|
|
2598
|
+
| "xtz-line"
|
|
2599
|
+
| "archive-stack-fill"
|
|
2600
|
+
| "archive-stack-line"
|
|
2601
|
+
| "bowl-fill"
|
|
2602
|
+
| "bowl-line"
|
|
2603
|
+
| "calendar-view"
|
|
2604
|
+
| "carousel-view"
|
|
2605
|
+
| "code-block"
|
|
2606
|
+
| "color-filter-fill"
|
|
2607
|
+
| "color-filter-line"
|
|
2608
|
+
| "contacts-book-3-fill"
|
|
2609
|
+
| "contacts-book-3-line"
|
|
2610
|
+
| "contract-fill"
|
|
2611
|
+
| "contract-line"
|
|
2612
|
+
| "drinks-2-fill"
|
|
2613
|
+
| "drinks-2-line"
|
|
2614
|
+
| "export-fill"
|
|
2615
|
+
| "export-line"
|
|
2616
|
+
| "file-check-fill"
|
|
2617
|
+
| "file-check-line"
|
|
2618
|
+
| "focus-mode"
|
|
2619
|
+
| "folder-6-fill"
|
|
2620
|
+
| "folder-6-line"
|
|
2621
|
+
| "folder-check-fill"
|
|
2622
|
+
| "folder-check-line"
|
|
2623
|
+
| "folder-close-fill"
|
|
2624
|
+
| "folder-close-line"
|
|
2625
|
+
| "folder-cloud-fill"
|
|
2626
|
+
| "folder-cloud-line"
|
|
2627
|
+
| "gallery-view-2"
|
|
2628
|
+
| "gallery-view"
|
|
2629
|
+
| "hand"
|
|
2630
|
+
| "import-fill"
|
|
2631
|
+
| "import-line"
|
|
2632
|
+
| "information-2-fill"
|
|
2633
|
+
| "information-2-line"
|
|
2634
|
+
| "kanban-view-2"
|
|
2635
|
+
| "kanban-view"
|
|
2636
|
+
| "list-view"
|
|
2637
|
+
| "lock-star-fill"
|
|
2638
|
+
| "lock-star-line"
|
|
2639
|
+
| "puzzle-2-fill"
|
|
2640
|
+
| "puzzle-2-line"
|
|
2641
|
+
| "puzzle-fill"
|
|
2642
|
+
| "puzzle-line"
|
|
2643
|
+
| "ram-2-fill"
|
|
2644
|
+
| "ram-2-line"
|
|
2645
|
+
| "ram-fill"
|
|
2646
|
+
| "ram-line"
|
|
2647
|
+
| "receipt-fill"
|
|
2648
|
+
| "receipt-line"
|
|
2649
|
+
| "shadow-fill"
|
|
2650
|
+
| "shadow-line"
|
|
2651
|
+
| "sidebar-fold-fill"
|
|
2652
|
+
| "sidebar-fold-line"
|
|
2653
|
+
| "sidebar-unfold-fill"
|
|
2654
|
+
| "sidebar-unfold-line"
|
|
2655
|
+
| "slideshow-view"
|
|
2656
|
+
| "sort-alphabet-asc"
|
|
2657
|
+
| "sort-alphabet-desc"
|
|
2658
|
+
| "sort-number-asc"
|
|
2659
|
+
| "sort-number-desc"
|
|
2660
|
+
| "stacked-view"
|
|
2661
|
+
| "sticky-note-add-fill"
|
|
2662
|
+
| "sticky-note-add-line"
|
|
2663
|
+
| "swap-2-fill"
|
|
2664
|
+
| "swap-2-line"
|
|
2665
|
+
| "swap-3-fill"
|
|
2666
|
+
| "swap-3-line"
|
|
2667
|
+
| "table-3"
|
|
2668
|
+
| "table-view"
|
|
2669
|
+
| "text-block"
|
|
2670
|
+
| "text-snippet"
|
|
2671
|
+
| "timeline-view"
|
|
2672
|
+
| "blogger-fill"
|
|
2673
|
+
| "blogger-line"
|
|
2674
|
+
| "chat-thread-fill"
|
|
2675
|
+
| "chat-thread-line"
|
|
2676
|
+
| "discount-percent-fill"
|
|
2677
|
+
| "discount-percent-line"
|
|
2678
|
+
| "exchange-2-fill"
|
|
2679
|
+
| "exchange-2-line"
|
|
2680
|
+
| "git-fork-fill"
|
|
2681
|
+
| "git-fork-line"
|
|
2682
|
+
| "input-field"
|
|
2683
|
+
| "progress-1-fill"
|
|
2684
|
+
| "progress-1-line"
|
|
2685
|
+
| "progress-2-fill"
|
|
2686
|
+
| "progress-2-line"
|
|
2687
|
+
| "progress-3-fill"
|
|
2688
|
+
| "progress-3-line"
|
|
2689
|
+
| "progress-4-fill"
|
|
2690
|
+
| "progress-4-line"
|
|
2691
|
+
| "progress-5-fill"
|
|
2692
|
+
| "progress-5-line"
|
|
2693
|
+
| "progress-6-fill"
|
|
2694
|
+
| "progress-6-line"
|
|
2695
|
+
| "progress-7-fill"
|
|
2696
|
+
| "progress-7-line"
|
|
2697
|
+
| "progress-8-fill"
|
|
2698
|
+
| "progress-8-line"
|
|
2699
|
+
| "remix-run-fill"
|
|
2700
|
+
| "remix-run-line"
|
|
2701
|
+
| "signpost-fill"
|
|
2702
|
+
| "signpost-line"
|
|
2703
|
+
| "time-zone-fill"
|
|
2704
|
+
| "time-zone-line"
|
|
2705
|
+
| "arrow-down-wide-fill"
|
|
2706
|
+
| "arrow-down-wide-line"
|
|
2707
|
+
| "arrow-left-wide-fill"
|
|
2708
|
+
| "arrow-left-wide-line"
|
|
2709
|
+
| "arrow-right-wide-fill"
|
|
2710
|
+
| "arrow-right-wide-line"
|
|
2711
|
+
| "arrow-up-wide-fill"
|
|
2712
|
+
| "arrow-up-wide-line"
|
|
2713
|
+
| "bluesky-fill"
|
|
2714
|
+
| "bluesky-line"
|
|
2715
|
+
| "expand-height-fill"
|
|
2716
|
+
| "expand-height-line"
|
|
2717
|
+
| "expand-width-fill"
|
|
2718
|
+
| "expand-width-line"
|
|
2719
|
+
| "forward-end-fill"
|
|
2720
|
+
| "forward-end-line"
|
|
2721
|
+
| "forward-end-mini-fill"
|
|
2722
|
+
| "forward-end-mini-line"
|
|
2723
|
+
| "friendica-fill"
|
|
2724
|
+
| "friendica-line"
|
|
2725
|
+
| "git-pr-draft-fill"
|
|
2726
|
+
| "git-pr-draft-line"
|
|
2727
|
+
| "play-reverse-fill"
|
|
2728
|
+
| "play-reverse-line"
|
|
2729
|
+
| "play-reverse-mini-fill"
|
|
2730
|
+
| "play-reverse-mini-line"
|
|
2731
|
+
| "rewind-start-fill"
|
|
2732
|
+
| "rewind-start-line"
|
|
2733
|
+
| "rewind-start-mini-fill"
|
|
2734
|
+
| "rewind-start-mini-line"
|
|
2735
|
+
| "scroll-to-bottom-fill"
|
|
2736
|
+
| "scroll-to-bottom-line"
|
|
2737
|
+
| "add-large-fill"
|
|
2738
|
+
| "add-large-line"
|
|
2739
|
+
| "aed-electrodes-fill"
|
|
2740
|
+
| "aed-electrodes-line"
|
|
2741
|
+
| "aed-fill"
|
|
2742
|
+
| "aed-line"
|
|
2743
|
+
| "alibaba-cloud-fill"
|
|
2744
|
+
| "alibaba-cloud-line"
|
|
2745
|
+
| "align-item-bottom-fill"
|
|
2746
|
+
| "align-item-bottom-line"
|
|
2747
|
+
| "align-item-horizontal-center-fill"
|
|
2748
|
+
| "align-item-horizontal-center-line"
|
|
2749
|
+
| "align-item-left-fill"
|
|
2750
|
+
| "align-item-left-line"
|
|
2751
|
+
| "align-item-right-fill"
|
|
2752
|
+
| "align-item-right-line"
|
|
2753
|
+
| "align-item-top-fill"
|
|
2754
|
+
| "align-item-top-line"
|
|
2755
|
+
| "align-item-vertical-center-fill"
|
|
2756
|
+
| "align-item-vertical-center-line"
|
|
2757
|
+
| "apps-2-add-fill"
|
|
2758
|
+
| "apps-2-add-line"
|
|
2759
|
+
| "close-large-fill"
|
|
2760
|
+
| "close-large-line"
|
|
2761
|
+
| "collapse-diagonal-2-fill"
|
|
2762
|
+
| "collapse-diagonal-2-line"
|
|
2763
|
+
| "collapse-diagonal-fill"
|
|
2764
|
+
| "collapse-diagonal-line"
|
|
2765
|
+
| "dashboard-horizontal-fill"
|
|
2766
|
+
| "dashboard-horizontal-line"
|
|
2767
|
+
| "expand-diagonal-2-fill"
|
|
2768
|
+
| "expand-diagonal-2-line"
|
|
2769
|
+
| "expand-diagonal-fill"
|
|
2770
|
+
| "expand-diagonal-line"
|
|
2771
|
+
| "firebase-fill"
|
|
2772
|
+
| "firebase-line"
|
|
2773
|
+
| "flip-horizontal-2-fill"
|
|
2774
|
+
| "flip-horizontal-2-line"
|
|
2775
|
+
| "flip-horizontal-fill"
|
|
2776
|
+
| "flip-horizontal-line"
|
|
2777
|
+
| "flip-vertical-2-fill"
|
|
2778
|
+
| "flip-vertical-2-line"
|
|
2779
|
+
| "flip-vertical-fill"
|
|
2780
|
+
| "flip-vertical-line"
|
|
2781
|
+
| "formula"
|
|
2782
|
+
| "function-add-fill"
|
|
2783
|
+
| "function-add-line"
|
|
2784
|
+
| "goblet-2-fill"
|
|
2785
|
+
| "goblet-2-line"
|
|
2786
|
+
| "golf-ball-fill"
|
|
2787
|
+
| "golf-ball-line"
|
|
2788
|
+
| "group-3-fill"
|
|
2789
|
+
| "group-3-line"
|
|
2790
|
+
| "heart-add-2-fill"
|
|
2791
|
+
| "heart-add-2-line"
|
|
2792
|
+
| "id-card-fill"
|
|
2793
|
+
| "id-card-line"
|
|
2794
|
+
| "information-off-fill"
|
|
2795
|
+
| "information-off-line"
|
|
2796
|
+
| "java-fill"
|
|
2797
|
+
| "java-line"
|
|
2798
|
+
| "layout-grid-2-fill"
|
|
2799
|
+
| "layout-grid-2-line"
|
|
2800
|
+
| "layout-horizontal-fill"
|
|
2801
|
+
| "layout-horizontal-line"
|
|
2802
|
+
| "layout-vertical-fill"
|
|
2803
|
+
| "layout-vertical-line"
|
|
2804
|
+
| "menu-fold-2-fill"
|
|
2805
|
+
| "menu-fold-2-line"
|
|
2806
|
+
| "menu-fold-3-fill"
|
|
2807
|
+
| "menu-fold-3-line"
|
|
2808
|
+
| "menu-fold-4-fill"
|
|
2809
|
+
| "menu-fold-4-line"
|
|
2810
|
+
| "menu-unfold-2-fill"
|
|
2811
|
+
| "menu-unfold-2-line"
|
|
2812
|
+
| "menu-unfold-3-fill"
|
|
2813
|
+
| "menu-unfold-3-line"
|
|
2814
|
+
| "menu-unfold-4-fill"
|
|
2815
|
+
| "menu-unfold-4-line"
|
|
2816
|
+
| "mobile-download-fill"
|
|
2817
|
+
| "mobile-download-line"
|
|
2818
|
+
| "nextjs-fill"
|
|
2819
|
+
| "nextjs-line"
|
|
2820
|
+
| "nodejs-fill"
|
|
2821
|
+
| "nodejs-line"
|
|
2822
|
+
| "pause-large-fill"
|
|
2823
|
+
| "pause-large-line"
|
|
2824
|
+
| "play-large-fill"
|
|
2825
|
+
| "play-large-line"
|
|
2826
|
+
| "play-reverse-large-fill"
|
|
2827
|
+
| "play-reverse-large-line"
|
|
2828
|
+
| "police-badge-fill"
|
|
2829
|
+
| "police-badge-line"
|
|
2830
|
+
| "prohibited-2-fill"
|
|
2831
|
+
| "prohibited-2-line"
|
|
2832
|
+
| "shopping-bag-4-fill"
|
|
2833
|
+
| "shopping-bag-4-line"
|
|
2834
|
+
| "snowflake-fill"
|
|
2835
|
+
| "snowflake-line"
|
|
2836
|
+
| "square-root"
|
|
2837
|
+
| "stop-large-fill"
|
|
2838
|
+
| "stop-large-line"
|
|
2839
|
+
| "tailwind-css-fill"
|
|
2840
|
+
| "tailwind-css-line"
|
|
2841
|
+
| "tooth-fill"
|
|
2842
|
+
| "tooth-line"
|
|
2843
|
+
| "video-off-fill"
|
|
2844
|
+
| "video-off-line"
|
|
2845
|
+
| "video-on-fill"
|
|
2846
|
+
| "video-on-line"
|
|
2847
|
+
| "webhook-fill"
|
|
2848
|
+
| "webhook-line"
|
|
2849
|
+
| "weight-fill"
|
|
2850
|
+
| "weight-line"
|
|
2851
|
+
| "book-shelf-fill"
|
|
2852
|
+
| "book-shelf-line"
|
|
2853
|
+
| "brain-2-fill"
|
|
2854
|
+
| "brain-2-line"
|
|
2855
|
+
| "chat-search-fill"
|
|
2856
|
+
| "chat-search-line"
|
|
2857
|
+
| "chat-unread-fill"
|
|
2858
|
+
| "chat-unread-line"
|
|
2859
|
+
| "collapse-horizontal-fill"
|
|
2860
|
+
| "collapse-horizontal-line"
|
|
2861
|
+
| "collapse-vertical-fill"
|
|
2862
|
+
| "collapse-vertical-line"
|
|
2863
|
+
| "dna-fill"
|
|
2864
|
+
| "dna-line"
|
|
2865
|
+
| "dropper-fill"
|
|
2866
|
+
| "dropper-line"
|
|
2867
|
+
| "expand-diagonal-s-2-fill"
|
|
2868
|
+
| "expand-diagonal-s-2-line"
|
|
2869
|
+
| "expand-diagonal-s-fill"
|
|
2870
|
+
| "expand-diagonal-s-line"
|
|
2871
|
+
| "expand-horizontal-fill"
|
|
2872
|
+
| "expand-horizontal-line"
|
|
2873
|
+
| "expand-horizontal-s-fill"
|
|
2874
|
+
| "expand-horizontal-s-line"
|
|
2875
|
+
| "expand-vertical-fill"
|
|
2876
|
+
| "expand-vertical-line"
|
|
2877
|
+
| "expand-vertical-s-fill"
|
|
2878
|
+
| "expand-vertical-s-line"
|
|
2879
|
+
| "gemini-fill"
|
|
2880
|
+
| "gemini-line"
|
|
2881
|
+
| "reset-left-fill"
|
|
2882
|
+
| "reset-left-line"
|
|
2883
|
+
| "reset-right-fill"
|
|
2884
|
+
| "reset-right-line"
|
|
2885
|
+
| "stairs-fill"
|
|
2886
|
+
| "stairs-line"
|
|
2887
|
+
| "telegram-2-fill"
|
|
2888
|
+
| "telegram-2-line"
|
|
2889
|
+
| "triangular-flag-fill"
|
|
2890
|
+
| "triangular-flag-line"
|
|
2891
|
+
| "user-minus-fill"
|
|
2892
|
+
| "user-minus-line"
|
|
2893
|
+
| "account-box-2-fill"
|
|
2894
|
+
| "account-box-2-line"
|
|
2895
|
+
| "account-circle-2-fill"
|
|
2896
|
+
| "account-circle-2-line"
|
|
2897
|
+
| "alarm-snooze-fill"
|
|
2898
|
+
| "alarm-snooze-line"
|
|
2899
|
+
| "arrow-down-box-fill"
|
|
2900
|
+
| "arrow-down-box-line"
|
|
2901
|
+
| "arrow-left-box-fill"
|
|
2902
|
+
| "arrow-left-box-line"
|
|
2903
|
+
| "arrow-left-down-box-fill"
|
|
2904
|
+
| "arrow-left-down-box-line"
|
|
2905
|
+
| "arrow-left-up-box-fill"
|
|
2906
|
+
| "arrow-left-up-box-line"
|
|
2907
|
+
| "arrow-right-box-fill"
|
|
2908
|
+
| "arrow-right-box-line"
|
|
2909
|
+
| "arrow-right-down-box-fill"
|
|
2910
|
+
| "arrow-right-down-box-line"
|
|
2911
|
+
| "arrow-right-up-box-fill"
|
|
2912
|
+
| "arrow-right-up-box-line"
|
|
2913
|
+
| "arrow-up-box-fill"
|
|
2914
|
+
| "arrow-up-box-line"
|
|
2915
|
+
| "bar-chart-box-ai-fill"
|
|
2916
|
+
| "bar-chart-box-ai-line"
|
|
2917
|
+
| "brush-ai-fill"
|
|
2918
|
+
| "brush-ai-line"
|
|
2919
|
+
| "camera-ai-fill"
|
|
2920
|
+
| "camera-ai-line"
|
|
2921
|
+
| "chat-ai-fill"
|
|
2922
|
+
| "chat-ai-line"
|
|
2923
|
+
| "chat-smile-ai-fill"
|
|
2924
|
+
| "chat-smile-ai-line"
|
|
2925
|
+
| "chat-voice-ai-fill"
|
|
2926
|
+
| "chat-voice-ai-line"
|
|
2927
|
+
| "code-ai-fill"
|
|
2928
|
+
| "code-ai-line"
|
|
2929
|
+
| "color-filter-ai-fill"
|
|
2930
|
+
| "color-filter-ai-line"
|
|
2931
|
+
| "custom-size"
|
|
2932
|
+
| "fediverse-fill"
|
|
2933
|
+
| "fediverse-line"
|
|
2934
|
+
| "flag-off-fill"
|
|
2935
|
+
| "flag-off-line"
|
|
2936
|
+
| "home-9-fill"
|
|
2937
|
+
| "home-9-line"
|
|
2938
|
+
| "image-ai-fill"
|
|
2939
|
+
| "image-ai-line"
|
|
2940
|
+
| "image-circle-ai-fill"
|
|
2941
|
+
| "image-circle-ai-line"
|
|
2942
|
+
| "info-card-fill"
|
|
2943
|
+
| "info-card-line"
|
|
2944
|
+
| "landscape-ai-fill"
|
|
2945
|
+
| "landscape-ai-line"
|
|
2946
|
+
| "letter-spacing-2"
|
|
2947
|
+
| "line-height-2"
|
|
2948
|
+
| "mail-ai-fill"
|
|
2949
|
+
| "mail-ai-line"
|
|
2950
|
+
| "mic-2-ai-fill"
|
|
2951
|
+
| "mic-2-ai-line"
|
|
2952
|
+
| "mic-ai-fill"
|
|
2953
|
+
| "mic-ai-line"
|
|
2954
|
+
| "movie-ai-fill"
|
|
2955
|
+
| "movie-ai-line"
|
|
2956
|
+
| "music-ai-fill"
|
|
2957
|
+
| "music-ai-line"
|
|
2958
|
+
| "notification-snooze-fill"
|
|
2959
|
+
| "notification-snooze-line"
|
|
2960
|
+
| "php-fill"
|
|
2961
|
+
| "php-line"
|
|
2962
|
+
| "pix-fill"
|
|
2963
|
+
| "pix-line"
|
|
2964
|
+
| "pulse-ai-fill"
|
|
2965
|
+
| "pulse-ai-line"
|
|
2966
|
+
| "quill-pen-ai-fill"
|
|
2967
|
+
| "quill-pen-ai-line"
|
|
2968
|
+
| "speak-ai-fill"
|
|
2969
|
+
| "speak-ai-line"
|
|
2970
|
+
| "star-off-fill"
|
|
2971
|
+
| "star-off-line"
|
|
2972
|
+
| "translate-ai-2"
|
|
2973
|
+
| "translate-ai"
|
|
2974
|
+
| "user-community-fill"
|
|
2975
|
+
| "user-community-line"
|
|
2976
|
+
| "vercel-fill"
|
|
2977
|
+
| "vercel-line"
|
|
2978
|
+
| "video-ai-fill"
|
|
2979
|
+
| "video-ai-line"
|
|
2980
|
+
| "video-on-ai-fill"
|
|
2981
|
+
| "video-on-ai-line"
|
|
2982
|
+
| "voice-ai-fill"
|
|
2983
|
+
| "voice-ai-line"
|
|
2984
|
+
| "ai-generate-2"
|
|
2985
|
+
| "ai-generate-text"
|
|
2986
|
+
| "anthropic-fill"
|
|
2987
|
+
| "anthropic-line"
|
|
2988
|
+
| "apps-2-ai-fill"
|
|
2989
|
+
| "apps-2-ai-line"
|
|
2990
|
+
| "camera-lens-ai-fill"
|
|
2991
|
+
| "camera-lens-ai-line"
|
|
2992
|
+
| "clapperboard-ai-fill"
|
|
2993
|
+
| "clapperboard-ai-line"
|
|
2994
|
+
| "claude-fill"
|
|
2995
|
+
| "claude-line"
|
|
2996
|
+
| "closed-captioning-ai-fill"
|
|
2997
|
+
| "closed-captioning-ai-line"
|
|
2998
|
+
| "dvd-ai-fill"
|
|
2999
|
+
| "dvd-ai-line"
|
|
3000
|
+
| "film-ai-fill"
|
|
3001
|
+
| "film-ai-line"
|
|
3002
|
+
| "font-size-ai"
|
|
3003
|
+
| "mixtral-fill"
|
|
3004
|
+
| "mixtral-line"
|
|
3005
|
+
| "movie-2-ai-fill"
|
|
3006
|
+
| "movie-2-ai-line"
|
|
3007
|
+
| "mv-ai-fill"
|
|
3008
|
+
| "mv-ai-line"
|
|
3009
|
+
| "perplexity-fill"
|
|
3010
|
+
| "perplexity-line"
|
|
3011
|
+
| "poker-clubs-fill"
|
|
3012
|
+
| "poker-clubs-line"
|
|
3013
|
+
| "poker-diamonds-fill"
|
|
3014
|
+
| "poker-diamonds-line"
|
|
3015
|
+
| "poker-hearts-fill"
|
|
3016
|
+
| "poker-hearts-line"
|
|
3017
|
+
| "poker-spades-fill"
|
|
3018
|
+
| "poker-spades-line"
|
|
3019
|
+
| "safe-3-fill"
|
|
3020
|
+
| "safe-3-line"
|
|
3021
|
+
| "accessibility-fill"
|
|
3022
|
+
| "accessibility-line"
|
|
3023
|
+
| "alarm-add-fill"
|
|
3024
|
+
| "alarm-add-line"
|
|
3025
|
+
| "arrow-down-long-fill"
|
|
3026
|
+
| "arrow-down-long-line"
|
|
3027
|
+
| "arrow-left-down-long-fill"
|
|
3028
|
+
| "arrow-left-down-long-line"
|
|
3029
|
+
| "arrow-left-long-fill"
|
|
3030
|
+
| "arrow-left-long-line"
|
|
3031
|
+
| "arrow-left-up-long-fill"
|
|
3032
|
+
| "arrow-left-up-long-line"
|
|
3033
|
+
| "arrow-right-down-long-fill"
|
|
3034
|
+
| "arrow-right-down-long-line"
|
|
3035
|
+
| "arrow-right-long-fill"
|
|
3036
|
+
| "arrow-right-long-line"
|
|
3037
|
+
| "arrow-right-up-long-fill"
|
|
3038
|
+
| "arrow-right-up-long-line"
|
|
3039
|
+
| "arrow-up-long-fill"
|
|
3040
|
+
| "arrow-up-long-line"
|
|
3041
|
+
| "chess-fill"
|
|
3042
|
+
| "chess-line"
|
|
3043
|
+
| "diamond-fill"
|
|
3044
|
+
| "diamond-line"
|
|
3045
|
+
| "diamond-ring-fill"
|
|
3046
|
+
| "diamond-ring-line"
|
|
3047
|
+
| "figma-fill"
|
|
3048
|
+
| "figma-line"
|
|
3049
|
+
| "firefox-browser-fill"
|
|
3050
|
+
| "firefox-browser-line"
|
|
3051
|
+
| "jewelry-fill"
|
|
3052
|
+
| "jewelry-line"
|
|
3053
|
+
| "multi-image-fill"
|
|
3054
|
+
| "multi-image-line"
|
|
3055
|
+
| "no-credit-card-fill"
|
|
3056
|
+
| "no-credit-card-line"
|
|
3057
|
+
| "service-bell-fill"
|
|
3058
|
+
| "service-bell-line"
|
|
3059
|
+
| "ai-agent-fill"
|
|
3060
|
+
| "ai-agent-line"
|
|
3061
|
+
| "ai-generate-2-fill"
|
|
3062
|
+
| "ai-generate-2-line"
|
|
3063
|
+
| "ai-generate-3d-fill"
|
|
3064
|
+
| "ai-generate-3d-line"
|
|
3065
|
+
| "ai"
|
|
3066
|
+
| "apps-ai-fill"
|
|
3067
|
+
| "apps-ai-line"
|
|
3068
|
+
| "atom-fill"
|
|
3069
|
+
| "atom-line"
|
|
3070
|
+
| "book-ai-fill"
|
|
3071
|
+
| "book-ai-line"
|
|
3072
|
+
| "brain-3-fill"
|
|
3073
|
+
| "brain-3-line"
|
|
3074
|
+
| "brain-ai-3-fill"
|
|
3075
|
+
| "brain-ai-3-line"
|
|
3076
|
+
| "brush-ai-3-fill"
|
|
3077
|
+
| "brush-ai-3-line"
|
|
3078
|
+
| "camera-4-fill"
|
|
3079
|
+
| "camera-4-line"
|
|
3080
|
+
| "camera-ai-2-fill"
|
|
3081
|
+
| "camera-ai-2-line"
|
|
3082
|
+
| "chat-ai-2-fill"
|
|
3083
|
+
| "chat-ai-2-line"
|
|
3084
|
+
| "chat-ai-3-fill"
|
|
3085
|
+
| "chat-ai-3-line"
|
|
3086
|
+
| "chat-ai-4-fill"
|
|
3087
|
+
| "chat-ai-4-line"
|
|
3088
|
+
| "chat-smile-ai-3-fill"
|
|
3089
|
+
| "chat-smile-ai-3-line"
|
|
3090
|
+
| "deepseek-fill"
|
|
3091
|
+
| "deepseek-line"
|
|
3092
|
+
| "file-ai-2-fill"
|
|
3093
|
+
| "file-ai-2-line"
|
|
3094
|
+
| "file-ai-fill"
|
|
3095
|
+
| "file-ai-line"
|
|
3096
|
+
| "function-ai-fill"
|
|
3097
|
+
| "function-ai-line"
|
|
3098
|
+
| "game-2-fill"
|
|
3099
|
+
| "game-2-line"
|
|
3100
|
+
| "goblet-broken-fill"
|
|
3101
|
+
| "goblet-broken-line"
|
|
3102
|
+
| "lightbulb-ai-fill"
|
|
3103
|
+
| "lightbulb-ai-line"
|
|
3104
|
+
| "loop-left-ai-fill"
|
|
3105
|
+
| "loop-left-ai-line"
|
|
3106
|
+
| "loop-right-ai-fill"
|
|
3107
|
+
| "loop-right-ai-line"
|
|
3108
|
+
| "message-ai-3-fill"
|
|
3109
|
+
| "message-ai-3-line"
|
|
3110
|
+
| "painting-ai-fill"
|
|
3111
|
+
| "painting-ai-line"
|
|
3112
|
+
| "painting-fill"
|
|
3113
|
+
| "painting-line"
|
|
3114
|
+
| "pencil-ai-2-fill"
|
|
3115
|
+
| "pencil-ai-2-line"
|
|
3116
|
+
| "pencil-ai-fill"
|
|
3117
|
+
| "pencil-ai-line"
|
|
3118
|
+
| "remix-fill"
|
|
3119
|
+
| "remix-line"
|
|
3120
|
+
| "search-ai-2-fill"
|
|
3121
|
+
| "search-ai-2-line"
|
|
3122
|
+
| "search-ai-3-fill"
|
|
3123
|
+
| "search-ai-3-line"
|
|
3124
|
+
| "search-ai-4-fill"
|
|
3125
|
+
| "search-ai-4-line"
|
|
3126
|
+
| "search-ai-fill"
|
|
3127
|
+
| "search-ai-line"
|
|
3128
|
+
| "speech-to-text-fill"
|
|
3129
|
+
| "speech-to-text-line"
|
|
3130
|
+
| "target-fill"
|
|
3131
|
+
| "target-line"
|
|
3132
|
+
| "text-to-speech-fill"
|
|
3133
|
+
| "text-to-speech-line"
|
|
3134
|
+
| "wrench-fill"
|
|
3135
|
+
| "wrench-line"
|
|
3136
|
+
| "area-chart-fill"
|
|
3137
|
+
| "area-chart-line"
|
|
3138
|
+
| "baseball-fill"
|
|
3139
|
+
| "baseball-line"
|
|
3140
|
+
| "binoculars-fill"
|
|
3141
|
+
| "binoculars-line"
|
|
3142
|
+
| "cursor-hand"
|
|
3143
|
+
| "emotion-add-fill"
|
|
3144
|
+
| "emotion-add-line"
|
|
3145
|
+
| "file-scan-fill"
|
|
3146
|
+
| "file-scan-line"
|
|
3147
|
+
| "fiverr-fill"
|
|
3148
|
+
| "fiverr-line"
|
|
3149
|
+
| "font-serif"
|
|
3150
|
+
| "ghost-3-fill"
|
|
3151
|
+
| "ghost-3-line"
|
|
3152
|
+
| "gitee-fill"
|
|
3153
|
+
| "gitee-line"
|
|
3154
|
+
| "global-off-fill"
|
|
3155
|
+
| "global-off-line"
|
|
3156
|
+
| "image-download-fill"
|
|
3157
|
+
| "image-download-line"
|
|
3158
|
+
| "image-upload-fill"
|
|
3159
|
+
| "image-upload-line"
|
|
3160
|
+
| "issues-fill"
|
|
3161
|
+
| "issues-line"
|
|
3162
|
+
| "issues-reopen-fill"
|
|
3163
|
+
| "issues-reopen-line"
|
|
3164
|
+
| "network-error-fill"
|
|
3165
|
+
| "network-error-line"
|
|
3166
|
+
| "network-fill"
|
|
3167
|
+
| "network-line"
|
|
3168
|
+
| "network-off-fill"
|
|
3169
|
+
| "network-off-line"
|
|
3170
|
+
| "piano-fill"
|
|
3171
|
+
| "piano-grand-fill"
|
|
3172
|
+
| "piano-grand-line"
|
|
3173
|
+
| "piano-line"
|
|
3174
|
+
| "plug-3-fill"
|
|
3175
|
+
| "plug-3-line"
|
|
3176
|
+
| "send-ins-fill"
|
|
3177
|
+
| "send-ins-line"
|
|
3178
|
+
| "signal-cellular-1-fill"
|
|
3179
|
+
| "signal-cellular-1-line"
|
|
3180
|
+
| "signal-cellular-2-fill"
|
|
3181
|
+
| "signal-cellular-2-line"
|
|
3182
|
+
| "signal-cellular-3-fill"
|
|
3183
|
+
| "signal-cellular-3-line"
|
|
3184
|
+
| "signal-cellular-off-fill"
|
|
3185
|
+
| "signal-cellular-off-line"
|
|
3186
|
+
| "stacked-chart-fill"
|
|
3187
|
+
| "stacked-chart-line"
|
|
3188
|
+
| "upwork-fill"
|
|
3189
|
+
| "upwork-line";
|