@shakerquiz/utilities 0.5.222 → 0.6.1
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/package.json +2 -4
- package/source/entities/blend.js +5 -0
- package/source/entities/cardinality-routes.js +82 -0
- package/source/entities/cardinality.js +8 -0
- package/source/entities/category.js +4 -0
- package/source/entities/city-affilation.js +16 -0
- package/source/entities/city-chatapp-version.js +9 -0
- package/source/entities/game-status.js +110 -0
- package/source/{enumerations → entities}/gender.js +7 -0
- package/source/entities/icon.js +654 -0
- package/source/entities/method.js +22 -0
- package/source/entities/mode.js +14 -0
- package/source/entities/network.js +9 -0
- package/source/entities/numerosity.js +5 -0
- package/source/entities/phase.js +23 -0
- package/source/entities/quantifier.js +41 -0
- package/source/entities/registration-attribute.js +68 -0
- package/source/entities/registration-channel.js +17 -0
- package/source/entities/registration-lineup.js +19 -0
- package/source/entities/registration-mailing.js +20 -0
- package/source/{enumerations/registration/status.js → entities/registration-status.js} +1 -13
- package/source/entities/role.js +25 -0
- package/source/entities/route-cardinality-route.js +112 -0
- package/source/entities/route-cardinality.js +175 -0
- package/source/entities/route-pathname-params.js +12 -0
- package/source/entities/route-pathname.js +70 -0
- package/source/entities/route-service.js +65 -0
- package/source/entities/route.js +70 -0
- package/source/entities/service-routes.js +107 -0
- package/source/entities/service-runtime.js +21 -0
- package/source/entities/service.js +21 -0
- package/source/entities/theme-status.js +14 -0
- package/source/entities/venue-audience.js +14 -0
- package/source/entities/venue-status.js +15 -0
- package/source/helpers/hydrate-route-pathname.js +32 -0
- package/source/helpers/string-tag.js +7 -0
- package/source/helpers/tag.js +37 -0
- package/source/index.js +41 -38
- package/source/prototypes/reflection.js +53 -0
- package/source/enumerations/blend.js +0 -11
- package/source/enumerations/cardinality.js +0 -13
- package/source/enumerations/category.js +0 -9
- package/source/enumerations/entities/affilation.js +0 -29
- package/source/enumerations/entities/game-status.js +0 -122
- package/source/enumerations/entities/registration-attribute.js +0 -83
- package/source/enumerations/entities/registration-channel.js +0 -26
- package/source/enumerations/entities/registration-mailing.js +0 -24
- package/source/enumerations/entities/role.js +0 -40
- package/source/enumerations/entities/version.js +0 -23
- package/source/enumerations/icon.js +0 -655
- package/source/enumerations/method.js +0 -31
- package/source/enumerations/mode.js +0 -48
- package/source/enumerations/network.js +0 -9
- package/source/enumerations/numerosity.js +0 -5
- package/source/enumerations/phase.js +0 -31
- package/source/enumerations/quantifier.js +0 -87
- package/source/enumerations/registration/lineup.js +0 -33
- package/source/enumerations/route.js +0 -515
- package/source/enumerations/service.js +0 -62
- package/source/enumerations/theme/status.js +0 -27
- package/source/enumerations/venue/audience.js +0 -27
- package/source/enumerations/venue/status.js +0 -27
- package/source/functions/hydrate-route-params.js +0 -18
- package/source/functions/hydrate-route-pathname.js +0 -26
- package/source/functions/string-tag.js +0 -5
- package/source/functions/tag.js +0 -37
- /package/source/{enumerations → entities}/constants.js +0 -0
- /package/source/{enumerations → entities}/display.js +0 -0
- /package/source/{enumerations → entities}/pattern.js +0 -0
- /package/source/{enumerations → entities}/runtime.js +0 -0
|
@@ -0,0 +1,654 @@
|
|
|
1
|
+
export const Icon = Object.freeze({
|
|
2
|
+
'hero/solid/academic-cap': 'hero/solid/academic-cap',
|
|
3
|
+
'hero/solid/adjustments-horizontal': 'hero/solid/adjustments-horizontal',
|
|
4
|
+
'hero/solid/adjustments-vertical': 'hero/solid/adjustments-vertical',
|
|
5
|
+
'hero/solid/archive-box-arrow-down': 'hero/solid/archive-box-arrow-down',
|
|
6
|
+
'hero/solid/archive-box-x-mark': 'hero/solid/archive-box-x-mark',
|
|
7
|
+
'hero/solid/archive-box': 'hero/solid/archive-box',
|
|
8
|
+
'hero/solid/arrow-down-circle': 'hero/solid/arrow-down-circle',
|
|
9
|
+
'hero/solid/arrow-down-left': 'hero/solid/arrow-down-left',
|
|
10
|
+
'hero/solid/arrow-down-on-square-stack': 'hero/solid/arrow-down-on-square-stack',
|
|
11
|
+
'hero/solid/arrow-down-on-square': 'hero/solid/arrow-down-on-square',
|
|
12
|
+
'hero/solid/arrow-down-right': 'hero/solid/arrow-down-right',
|
|
13
|
+
'hero/solid/arrow-down-tray': 'hero/solid/arrow-down-tray',
|
|
14
|
+
'hero/solid/arrow-down': 'hero/solid/arrow-down',
|
|
15
|
+
'hero/solid/arrow-left-circle': 'hero/solid/arrow-left-circle',
|
|
16
|
+
'hero/solid/arrow-left-end-on-rectangle': 'hero/solid/arrow-left-end-on-rectangle',
|
|
17
|
+
'hero/solid/arrow-left-on-rectangle': 'hero/solid/arrow-left-on-rectangle',
|
|
18
|
+
'hero/solid/arrow-left-start-on-rectangle': 'hero/solid/arrow-left-start-on-rectangle',
|
|
19
|
+
'hero/solid/arrow-left': 'hero/solid/arrow-left',
|
|
20
|
+
'hero/solid/arrow-long-down': 'hero/solid/arrow-long-down',
|
|
21
|
+
'hero/solid/arrow-long-left': 'hero/solid/arrow-long-left',
|
|
22
|
+
'hero/solid/arrow-long-right': 'hero/solid/arrow-long-right',
|
|
23
|
+
'hero/solid/arrow-long-up': 'hero/solid/arrow-long-up',
|
|
24
|
+
'hero/solid/arrow-path-rounded-square': 'hero/solid/arrow-path-rounded-square',
|
|
25
|
+
'hero/solid/arrow-path': 'hero/solid/arrow-path',
|
|
26
|
+
'hero/solid/arrow-right-circle': 'hero/solid/arrow-right-circle',
|
|
27
|
+
'hero/solid/arrow-right-end-on-rectangle': 'hero/solid/arrow-right-end-on-rectangle',
|
|
28
|
+
'hero/solid/arrow-right-on-rectangle': 'hero/solid/arrow-right-on-rectangle',
|
|
29
|
+
'hero/solid/arrow-right-start-on-rectangle': 'hero/solid/arrow-right-start-on-rectangle',
|
|
30
|
+
'hero/solid/arrow-right': 'hero/solid/arrow-right',
|
|
31
|
+
'hero/solid/arrow-small-down': 'hero/solid/arrow-small-down',
|
|
32
|
+
'hero/solid/arrow-small-left': 'hero/solid/arrow-small-left',
|
|
33
|
+
'hero/solid/arrow-small-right': 'hero/solid/arrow-small-right',
|
|
34
|
+
'hero/solid/arrow-small-up': 'hero/solid/arrow-small-up',
|
|
35
|
+
'hero/solid/arrow-top-right-on-square': 'hero/solid/arrow-top-right-on-square',
|
|
36
|
+
'hero/solid/arrow-trending-down': 'hero/solid/arrow-trending-down',
|
|
37
|
+
'hero/solid/arrow-trending-up': 'hero/solid/arrow-trending-up',
|
|
38
|
+
'hero/solid/arrow-turn-down-left': 'hero/solid/arrow-turn-down-left',
|
|
39
|
+
'hero/solid/arrow-turn-down-right': 'hero/solid/arrow-turn-down-right',
|
|
40
|
+
'hero/solid/arrow-turn-left-down': 'hero/solid/arrow-turn-left-down',
|
|
41
|
+
'hero/solid/arrow-turn-left-up': 'hero/solid/arrow-turn-left-up',
|
|
42
|
+
'hero/solid/arrow-turn-right-down': 'hero/solid/arrow-turn-right-down',
|
|
43
|
+
'hero/solid/arrow-turn-right-up': 'hero/solid/arrow-turn-right-up',
|
|
44
|
+
'hero/solid/arrow-turn-up-left': 'hero/solid/arrow-turn-up-left',
|
|
45
|
+
'hero/solid/arrow-turn-up-right': 'hero/solid/arrow-turn-up-right',
|
|
46
|
+
'hero/solid/arrow-up-circle': 'hero/solid/arrow-up-circle',
|
|
47
|
+
'hero/solid/arrow-up-left': 'hero/solid/arrow-up-left',
|
|
48
|
+
'hero/solid/arrow-up-on-square-stack': 'hero/solid/arrow-up-on-square-stack',
|
|
49
|
+
'hero/solid/arrow-up-on-square': 'hero/solid/arrow-up-on-square',
|
|
50
|
+
'hero/solid/arrow-up-right': 'hero/solid/arrow-up-right',
|
|
51
|
+
'hero/solid/arrow-up-tray': 'hero/solid/arrow-up-tray',
|
|
52
|
+
'hero/solid/arrow-up': 'hero/solid/arrow-up',
|
|
53
|
+
'hero/solid/arrow-uturn-down': 'hero/solid/arrow-uturn-down',
|
|
54
|
+
'hero/solid/arrow-uturn-left': 'hero/solid/arrow-uturn-left',
|
|
55
|
+
'hero/solid/arrow-uturn-right': 'hero/solid/arrow-uturn-right',
|
|
56
|
+
'hero/solid/arrow-uturn-up': 'hero/solid/arrow-uturn-up',
|
|
57
|
+
'hero/solid/arrows-pointing-in': 'hero/solid/arrows-pointing-in',
|
|
58
|
+
'hero/solid/arrows-pointing-out': 'hero/solid/arrows-pointing-out',
|
|
59
|
+
'hero/solid/arrows-right-left': 'hero/solid/arrows-right-left',
|
|
60
|
+
'hero/solid/arrows-up-down': 'hero/solid/arrows-up-down',
|
|
61
|
+
'hero/solid/at-symbol': 'hero/solid/at-symbol',
|
|
62
|
+
'hero/solid/backspace': 'hero/solid/backspace',
|
|
63
|
+
'hero/solid/backward': 'hero/solid/backward',
|
|
64
|
+
'hero/solid/banknotes': 'hero/solid/banknotes',
|
|
65
|
+
'hero/solid/bars-2': 'hero/solid/bars-2',
|
|
66
|
+
'hero/solid/bars-3-bottom-left': 'hero/solid/bars-3-bottom-left',
|
|
67
|
+
'hero/solid/bars-3-bottom-right': 'hero/solid/bars-3-bottom-right',
|
|
68
|
+
'hero/solid/bars-3-center-left': 'hero/solid/bars-3-center-left',
|
|
69
|
+
'hero/solid/bars-3': 'hero/solid/bars-3',
|
|
70
|
+
'hero/solid/bars-4': 'hero/solid/bars-4',
|
|
71
|
+
'hero/solid/bars-arrow-down': 'hero/solid/bars-arrow-down',
|
|
72
|
+
'hero/solid/bars-arrow-up': 'hero/solid/bars-arrow-up',
|
|
73
|
+
'hero/solid/battery-0': 'hero/solid/battery-0',
|
|
74
|
+
'hero/solid/battery-100': 'hero/solid/battery-100',
|
|
75
|
+
'hero/solid/battery-50': 'hero/solid/battery-50',
|
|
76
|
+
'hero/solid/beaker': 'hero/solid/beaker',
|
|
77
|
+
'hero/solid/bell-alert': 'hero/solid/bell-alert',
|
|
78
|
+
'hero/solid/bell-slash': 'hero/solid/bell-slash',
|
|
79
|
+
'hero/solid/bell-snooze': 'hero/solid/bell-snooze',
|
|
80
|
+
'hero/solid/bell': 'hero/solid/bell',
|
|
81
|
+
'hero/solid/bold': 'hero/solid/bold',
|
|
82
|
+
'hero/solid/bolt-slash': 'hero/solid/bolt-slash',
|
|
83
|
+
'hero/solid/bolt': 'hero/solid/bolt',
|
|
84
|
+
'hero/solid/book-open': 'hero/solid/book-open',
|
|
85
|
+
'hero/solid/bookmark-slash': 'hero/solid/bookmark-slash',
|
|
86
|
+
'hero/solid/bookmark-square': 'hero/solid/bookmark-square',
|
|
87
|
+
'hero/solid/bookmark': 'hero/solid/bookmark',
|
|
88
|
+
'hero/solid/briefcase': 'hero/solid/briefcase',
|
|
89
|
+
'hero/solid/bug-ant': 'hero/solid/bug-ant',
|
|
90
|
+
'hero/solid/building-library': 'hero/solid/building-library',
|
|
91
|
+
'hero/solid/building-office-2': 'hero/solid/building-office-2',
|
|
92
|
+
'hero/solid/building-office': 'hero/solid/building-office',
|
|
93
|
+
'hero/solid/building-storefront': 'hero/solid/building-storefront',
|
|
94
|
+
'hero/solid/cake': 'hero/solid/cake',
|
|
95
|
+
'hero/solid/calculator': 'hero/solid/calculator',
|
|
96
|
+
'hero/solid/calendar-date-range': 'hero/solid/calendar-date-range',
|
|
97
|
+
'hero/solid/calendar-days': 'hero/solid/calendar-days',
|
|
98
|
+
'hero/solid/calendar': 'hero/solid/calendar',
|
|
99
|
+
'hero/solid/camera': 'hero/solid/camera',
|
|
100
|
+
'hero/solid/chart-bar-square': 'hero/solid/chart-bar-square',
|
|
101
|
+
'hero/solid/chart-bar': 'hero/solid/chart-bar',
|
|
102
|
+
'hero/solid/chart-pie': 'hero/solid/chart-pie',
|
|
103
|
+
'hero/solid/chat-bubble-bottom-center-text': 'hero/solid/chat-bubble-bottom-center-text',
|
|
104
|
+
'hero/solid/chat-bubble-bottom-center': 'hero/solid/chat-bubble-bottom-center',
|
|
105
|
+
'hero/solid/chat-bubble-left-ellipsis': 'hero/solid/chat-bubble-left-ellipsis',
|
|
106
|
+
'hero/solid/chat-bubble-left-right': 'hero/solid/chat-bubble-left-right',
|
|
107
|
+
'hero/solid/chat-bubble-left': 'hero/solid/chat-bubble-left',
|
|
108
|
+
'hero/solid/chat-bubble-oval-left-ellipsis': 'hero/solid/chat-bubble-oval-left-ellipsis',
|
|
109
|
+
'hero/solid/chat-bubble-oval-left': 'hero/solid/chat-bubble-oval-left',
|
|
110
|
+
'hero/solid/check-badge': 'hero/solid/check-badge',
|
|
111
|
+
'hero/solid/check-circle': 'hero/solid/check-circle',
|
|
112
|
+
'hero/solid/check': 'hero/solid/check',
|
|
113
|
+
'hero/solid/chevron-double-down': 'hero/solid/chevron-double-down',
|
|
114
|
+
'hero/solid/chevron-double-left': 'hero/solid/chevron-double-left',
|
|
115
|
+
'hero/solid/chevron-double-right': 'hero/solid/chevron-double-right',
|
|
116
|
+
'hero/solid/chevron-double-up': 'hero/solid/chevron-double-up',
|
|
117
|
+
'hero/solid/chevron-down': 'hero/solid/chevron-down',
|
|
118
|
+
'hero/solid/chevron-left': 'hero/solid/chevron-left',
|
|
119
|
+
'hero/solid/chevron-right': 'hero/solid/chevron-right',
|
|
120
|
+
'hero/solid/chevron-up-down': 'hero/solid/chevron-up-down',
|
|
121
|
+
'hero/solid/chevron-up': 'hero/solid/chevron-up',
|
|
122
|
+
'hero/solid/circle-stack': 'hero/solid/circle-stack',
|
|
123
|
+
'hero/solid/clipboard-document-check': 'hero/solid/clipboard-document-check',
|
|
124
|
+
'hero/solid/clipboard-document-list': 'hero/solid/clipboard-document-list',
|
|
125
|
+
'hero/solid/clipboard-document': 'hero/solid/clipboard-document',
|
|
126
|
+
'hero/solid/clipboard': 'hero/solid/clipboard',
|
|
127
|
+
'hero/solid/clock': 'hero/solid/clock',
|
|
128
|
+
'hero/solid/cloud-arrow-down': 'hero/solid/cloud-arrow-down',
|
|
129
|
+
'hero/solid/cloud-arrow-up': 'hero/solid/cloud-arrow-up',
|
|
130
|
+
'hero/solid/cloud': 'hero/solid/cloud',
|
|
131
|
+
'hero/solid/code-bracket-square': 'hero/solid/code-bracket-square',
|
|
132
|
+
'hero/solid/code-bracket': 'hero/solid/code-bracket',
|
|
133
|
+
'hero/solid/cog-6-tooth': 'hero/solid/cog-6-tooth',
|
|
134
|
+
'hero/solid/cog-8-tooth': 'hero/solid/cog-8-tooth',
|
|
135
|
+
'hero/solid/cog': 'hero/solid/cog',
|
|
136
|
+
'hero/solid/command-line': 'hero/solid/command-line',
|
|
137
|
+
'hero/solid/computer-desktop': 'hero/solid/computer-desktop',
|
|
138
|
+
'hero/solid/cpu-chip': 'hero/solid/cpu-chip',
|
|
139
|
+
'hero/solid/credit-card': 'hero/solid/credit-card',
|
|
140
|
+
'hero/solid/cube-transparent': 'hero/solid/cube-transparent',
|
|
141
|
+
'hero/solid/cube': 'hero/solid/cube',
|
|
142
|
+
'hero/solid/currency-bangladeshi': 'hero/solid/currency-bangladeshi',
|
|
143
|
+
'hero/solid/currency-dollar': 'hero/solid/currency-dollar',
|
|
144
|
+
'hero/solid/currency-euro': 'hero/solid/currency-euro',
|
|
145
|
+
'hero/solid/currency-pound': 'hero/solid/currency-pound',
|
|
146
|
+
'hero/solid/currency-rupee': 'hero/solid/currency-rupee',
|
|
147
|
+
'hero/solid/currency-yen': 'hero/solid/currency-yen',
|
|
148
|
+
'hero/solid/cursor-arrow-rays': 'hero/solid/cursor-arrow-rays',
|
|
149
|
+
'hero/solid/cursor-arrow-ripple': 'hero/solid/cursor-arrow-ripple',
|
|
150
|
+
'hero/solid/device-phone-mobile': 'hero/solid/device-phone-mobile',
|
|
151
|
+
'hero/solid/device-tablet': 'hero/solid/device-tablet',
|
|
152
|
+
'hero/solid/divide': 'hero/solid/divide',
|
|
153
|
+
'hero/solid/document-arrow-down': 'hero/solid/document-arrow-down',
|
|
154
|
+
'hero/solid/document-arrow-up': 'hero/solid/document-arrow-up',
|
|
155
|
+
'hero/solid/document-chart-bar': 'hero/solid/document-chart-bar',
|
|
156
|
+
'hero/solid/document-check': 'hero/solid/document-check',
|
|
157
|
+
'hero/solid/document-currency-bangladeshi': 'hero/solid/document-currency-bangladeshi',
|
|
158
|
+
'hero/solid/document-currency-dollar': 'hero/solid/document-currency-dollar',
|
|
159
|
+
'hero/solid/document-currency-euro': 'hero/solid/document-currency-euro',
|
|
160
|
+
'hero/solid/document-currency-pound': 'hero/solid/document-currency-pound',
|
|
161
|
+
'hero/solid/document-currency-rupee': 'hero/solid/document-currency-rupee',
|
|
162
|
+
'hero/solid/document-currency-yen': 'hero/solid/document-currency-yen',
|
|
163
|
+
'hero/solid/document-duplicate': 'hero/solid/document-duplicate',
|
|
164
|
+
'hero/solid/document-magnifying-glass': 'hero/solid/document-magnifying-glass',
|
|
165
|
+
'hero/solid/document-minus': 'hero/solid/document-minus',
|
|
166
|
+
'hero/solid/document-plus': 'hero/solid/document-plus',
|
|
167
|
+
'hero/solid/document-text': 'hero/solid/document-text',
|
|
168
|
+
'hero/solid/document': 'hero/solid/document',
|
|
169
|
+
'hero/solid/ellipsis-horizontal-circle': 'hero/solid/ellipsis-horizontal-circle',
|
|
170
|
+
'hero/solid/ellipsis-horizontal': 'hero/solid/ellipsis-horizontal',
|
|
171
|
+
'hero/solid/ellipsis-vertical': 'hero/solid/ellipsis-vertical',
|
|
172
|
+
'hero/solid/envelope-open': 'hero/solid/envelope-open',
|
|
173
|
+
'hero/solid/envelope': 'hero/solid/envelope',
|
|
174
|
+
'hero/solid/equals': 'hero/solid/equals',
|
|
175
|
+
'hero/solid/exclamation-circle': 'hero/solid/exclamation-circle',
|
|
176
|
+
'hero/solid/exclamation-triangle': 'hero/solid/exclamation-triangle',
|
|
177
|
+
'hero/solid/eye-dropper': 'hero/solid/eye-dropper',
|
|
178
|
+
'hero/solid/eye-slash': 'hero/solid/eye-slash',
|
|
179
|
+
'hero/solid/eye': 'hero/solid/eye',
|
|
180
|
+
'hero/solid/face-frown': 'hero/solid/face-frown',
|
|
181
|
+
'hero/solid/face-smile': 'hero/solid/face-smile',
|
|
182
|
+
'hero/solid/film': 'hero/solid/film',
|
|
183
|
+
'hero/solid/finger-print': 'hero/solid/finger-print',
|
|
184
|
+
'hero/solid/fire': 'hero/solid/fire',
|
|
185
|
+
'hero/solid/flag': 'hero/solid/flag',
|
|
186
|
+
'hero/solid/folder-arrow-down': 'hero/solid/folder-arrow-down',
|
|
187
|
+
'hero/solid/folder-minus': 'hero/solid/folder-minus',
|
|
188
|
+
'hero/solid/folder-open': 'hero/solid/folder-open',
|
|
189
|
+
'hero/solid/folder-plus': 'hero/solid/folder-plus',
|
|
190
|
+
'hero/solid/folder': 'hero/solid/folder',
|
|
191
|
+
'hero/solid/forward': 'hero/solid/forward',
|
|
192
|
+
'hero/solid/funnel': 'hero/solid/funnel',
|
|
193
|
+
'hero/solid/gif': 'hero/solid/gif',
|
|
194
|
+
'hero/solid/gift-top': 'hero/solid/gift-top',
|
|
195
|
+
'hero/solid/gift': 'hero/solid/gift',
|
|
196
|
+
'hero/solid/globe-alt': 'hero/solid/globe-alt',
|
|
197
|
+
'hero/solid/globe-americas': 'hero/solid/globe-americas',
|
|
198
|
+
'hero/solid/globe-asia-australia': 'hero/solid/globe-asia-australia',
|
|
199
|
+
'hero/solid/globe-europe-africa': 'hero/solid/globe-europe-africa',
|
|
200
|
+
'hero/solid/h1': 'hero/solid/h1',
|
|
201
|
+
'hero/solid/h2': 'hero/solid/h2',
|
|
202
|
+
'hero/solid/h3': 'hero/solid/h3',
|
|
203
|
+
'hero/solid/hand-raised': 'hero/solid/hand-raised',
|
|
204
|
+
'hero/solid/hand-thumb-down': 'hero/solid/hand-thumb-down',
|
|
205
|
+
'hero/solid/hand-thumb-up': 'hero/solid/hand-thumb-up',
|
|
206
|
+
'hero/solid/hashtag': 'hero/solid/hashtag',
|
|
207
|
+
'hero/solid/heart': 'hero/solid/heart',
|
|
208
|
+
'hero/solid/home-modern': 'hero/solid/home-modern',
|
|
209
|
+
'hero/solid/home': 'hero/solid/home',
|
|
210
|
+
'hero/solid/identification': 'hero/solid/identification',
|
|
211
|
+
'hero/solid/inbox-arrow-down': 'hero/solid/inbox-arrow-down',
|
|
212
|
+
'hero/solid/inbox-stack': 'hero/solid/inbox-stack',
|
|
213
|
+
'hero/solid/inbox': 'hero/solid/inbox',
|
|
214
|
+
'hero/solid/information-circle': 'hero/solid/information-circle',
|
|
215
|
+
'hero/solid/italic': 'hero/solid/italic',
|
|
216
|
+
'hero/solid/key': 'hero/solid/key',
|
|
217
|
+
'hero/solid/language': 'hero/solid/language',
|
|
218
|
+
'hero/solid/lifebuoy': 'hero/solid/lifebuoy',
|
|
219
|
+
'hero/solid/light-bulb': 'hero/solid/light-bulb',
|
|
220
|
+
'hero/solid/link-slash': 'hero/solid/link-slash',
|
|
221
|
+
'hero/solid/link': 'hero/solid/link',
|
|
222
|
+
'hero/solid/list-bullet': 'hero/solid/list-bullet',
|
|
223
|
+
'hero/solid/lock-closed': 'hero/solid/lock-closed',
|
|
224
|
+
'hero/solid/lock-open': 'hero/solid/lock-open',
|
|
225
|
+
'hero/solid/magnifying-glass-circle': 'hero/solid/magnifying-glass-circle',
|
|
226
|
+
'hero/solid/magnifying-glass-minus': 'hero/solid/magnifying-glass-minus',
|
|
227
|
+
'hero/solid/magnifying-glass-plus': 'hero/solid/magnifying-glass-plus',
|
|
228
|
+
'hero/solid/magnifying-glass': 'hero/solid/magnifying-glass',
|
|
229
|
+
'hero/solid/map-pin': 'hero/solid/map-pin',
|
|
230
|
+
'hero/solid/map': 'hero/solid/map',
|
|
231
|
+
'hero/solid/megaphone': 'hero/solid/megaphone',
|
|
232
|
+
'hero/solid/microphone': 'hero/solid/microphone',
|
|
233
|
+
'hero/solid/minus-circle': 'hero/solid/minus-circle',
|
|
234
|
+
'hero/solid/minus-small': 'hero/solid/minus-small',
|
|
235
|
+
'hero/solid/minus': 'hero/solid/minus',
|
|
236
|
+
'hero/solid/moon': 'hero/solid/moon',
|
|
237
|
+
'hero/solid/musical-note': 'hero/solid/musical-note',
|
|
238
|
+
'hero/solid/newspaper': 'hero/solid/newspaper',
|
|
239
|
+
'hero/solid/no-symbol': 'hero/solid/no-symbol',
|
|
240
|
+
'hero/solid/numbered-list': 'hero/solid/numbered-list',
|
|
241
|
+
'hero/solid/paint-brush': 'hero/solid/paint-brush',
|
|
242
|
+
'hero/solid/paper-airplane': 'hero/solid/paper-airplane',
|
|
243
|
+
'hero/solid/paper-clip': 'hero/solid/paper-clip',
|
|
244
|
+
'hero/solid/pause-circle': 'hero/solid/pause-circle',
|
|
245
|
+
'hero/solid/pause': 'hero/solid/pause',
|
|
246
|
+
'hero/solid/pencil-square': 'hero/solid/pencil-square',
|
|
247
|
+
'hero/solid/pencil': 'hero/solid/pencil',
|
|
248
|
+
'hero/solid/percent-badge': 'hero/solid/percent-badge',
|
|
249
|
+
'hero/solid/phone-arrow-down-left': 'hero/solid/phone-arrow-down-left',
|
|
250
|
+
'hero/solid/phone-arrow-up-right': 'hero/solid/phone-arrow-up-right',
|
|
251
|
+
'hero/solid/phone-x-mark': 'hero/solid/phone-x-mark',
|
|
252
|
+
'hero/solid/phone': 'hero/solid/phone',
|
|
253
|
+
'hero/solid/photo': 'hero/solid/photo',
|
|
254
|
+
'hero/solid/play-circle': 'hero/solid/play-circle',
|
|
255
|
+
'hero/solid/play-pause': 'hero/solid/play-pause',
|
|
256
|
+
'hero/solid/play': 'hero/solid/play',
|
|
257
|
+
'hero/solid/plus-circle': 'hero/solid/plus-circle',
|
|
258
|
+
'hero/solid/plus-small': 'hero/solid/plus-small',
|
|
259
|
+
'hero/solid/plus': 'hero/solid/plus',
|
|
260
|
+
'hero/solid/power': 'hero/solid/power',
|
|
261
|
+
'hero/solid/presentation-chart-bar': 'hero/solid/presentation-chart-bar',
|
|
262
|
+
'hero/solid/presentation-chart-line': 'hero/solid/presentation-chart-line',
|
|
263
|
+
'hero/solid/printer': 'hero/solid/printer',
|
|
264
|
+
'hero/solid/puzzle-piece': 'hero/solid/puzzle-piece',
|
|
265
|
+
'hero/solid/qr-code': 'hero/solid/qr-code',
|
|
266
|
+
'hero/solid/question-mark-circle': 'hero/solid/question-mark-circle',
|
|
267
|
+
'hero/solid/queue-list': 'hero/solid/queue-list',
|
|
268
|
+
'hero/solid/radio': 'hero/solid/radio',
|
|
269
|
+
'hero/solid/receipt-percent': 'hero/solid/receipt-percent',
|
|
270
|
+
'hero/solid/receipt-refund': 'hero/solid/receipt-refund',
|
|
271
|
+
'hero/solid/rectangle-group': 'hero/solid/rectangle-group',
|
|
272
|
+
'hero/solid/rectangle-stack': 'hero/solid/rectangle-stack',
|
|
273
|
+
'hero/solid/rocket-launch': 'hero/solid/rocket-launch',
|
|
274
|
+
'hero/solid/rss': 'hero/solid/rss',
|
|
275
|
+
'hero/solid/scale': 'hero/solid/scale',
|
|
276
|
+
'hero/solid/scissors': 'hero/solid/scissors',
|
|
277
|
+
'hero/solid/server-stack': 'hero/solid/server-stack',
|
|
278
|
+
'hero/solid/server': 'hero/solid/server',
|
|
279
|
+
'hero/solid/share': 'hero/solid/share',
|
|
280
|
+
'hero/solid/shield-check': 'hero/solid/shield-check',
|
|
281
|
+
'hero/solid/shield-exclamation': 'hero/solid/shield-exclamation',
|
|
282
|
+
'hero/solid/shopping-bag': 'hero/solid/shopping-bag',
|
|
283
|
+
'hero/solid/shopping-cart': 'hero/solid/shopping-cart',
|
|
284
|
+
'hero/solid/signal-slash': 'hero/solid/signal-slash',
|
|
285
|
+
'hero/solid/signal': 'hero/solid/signal',
|
|
286
|
+
'hero/solid/slash': 'hero/solid/slash',
|
|
287
|
+
'hero/solid/sparkles': 'hero/solid/sparkles',
|
|
288
|
+
'hero/solid/speaker-wave': 'hero/solid/speaker-wave',
|
|
289
|
+
'hero/solid/speaker-x-mark': 'hero/solid/speaker-x-mark',
|
|
290
|
+
'hero/solid/square-2-stack': 'hero/solid/square-2-stack',
|
|
291
|
+
'hero/solid/square-3-stack-3d': 'hero/solid/square-3-stack-3d',
|
|
292
|
+
'hero/solid/squares-2x2': 'hero/solid/squares-2x2',
|
|
293
|
+
'hero/solid/squares-plus': 'hero/solid/squares-plus',
|
|
294
|
+
'hero/solid/star': 'hero/solid/star',
|
|
295
|
+
'hero/solid/stop-circle': 'hero/solid/stop-circle',
|
|
296
|
+
'hero/solid/stop': 'hero/solid/stop',
|
|
297
|
+
'hero/solid/strikethrough': 'hero/solid/strikethrough',
|
|
298
|
+
'hero/solid/sun': 'hero/solid/sun',
|
|
299
|
+
'hero/solid/swatch': 'hero/solid/swatch',
|
|
300
|
+
'hero/solid/table-cells': 'hero/solid/table-cells',
|
|
301
|
+
'hero/solid/tag': 'hero/solid/tag',
|
|
302
|
+
'hero/solid/ticket': 'hero/solid/ticket',
|
|
303
|
+
'hero/solid/trash': 'hero/solid/trash',
|
|
304
|
+
'hero/solid/trophy': 'hero/solid/trophy',
|
|
305
|
+
'hero/solid/truck': 'hero/solid/truck',
|
|
306
|
+
'hero/solid/tv': 'hero/solid/tv',
|
|
307
|
+
'hero/solid/underline': 'hero/solid/underline',
|
|
308
|
+
'hero/solid/user-circle': 'hero/solid/user-circle',
|
|
309
|
+
'hero/solid/user-group': 'hero/solid/user-group',
|
|
310
|
+
'hero/solid/user-minus': 'hero/solid/user-minus',
|
|
311
|
+
'hero/solid/user-plus': 'hero/solid/user-plus',
|
|
312
|
+
'hero/solid/user': 'hero/solid/user',
|
|
313
|
+
'hero/solid/users': 'hero/solid/users',
|
|
314
|
+
'hero/solid/variable': 'hero/solid/variable',
|
|
315
|
+
'hero/solid/video-camera-slash': 'hero/solid/video-camera-slash',
|
|
316
|
+
'hero/solid/video-camera': 'hero/solid/video-camera',
|
|
317
|
+
'hero/solid/view-columns': 'hero/solid/view-columns',
|
|
318
|
+
'hero/solid/viewfinder-circle': 'hero/solid/viewfinder-circle',
|
|
319
|
+
'hero/solid/wallet': 'hero/solid/wallet',
|
|
320
|
+
'hero/solid/wifi': 'hero/solid/wifi',
|
|
321
|
+
'hero/solid/window': 'hero/solid/window',
|
|
322
|
+
'hero/solid/wrench-screwdriver': 'hero/solid/wrench-screwdriver',
|
|
323
|
+
'hero/solid/wrench': 'hero/solid/wrench',
|
|
324
|
+
'hero/solid/x-circle': 'hero/solid/x-circle',
|
|
325
|
+
'hero/solid/x-mark': 'hero/solid/x-mark',
|
|
326
|
+
'hero/outline/academic-cap': 'hero/outline/academic-cap',
|
|
327
|
+
'hero/outline/adjustments-horizontal': 'hero/outline/adjustments-horizontal',
|
|
328
|
+
'hero/outline/adjustments-vertical': 'hero/outline/adjustments-vertical',
|
|
329
|
+
'hero/outline/archive-box-arrow-down': 'hero/outline/archive-box-arrow-down',
|
|
330
|
+
'hero/outline/archive-box-x-mark': 'hero/outline/archive-box-x-mark',
|
|
331
|
+
'hero/outline/archive-box': 'hero/outline/archive-box',
|
|
332
|
+
'hero/outline/arrow-down-circle': 'hero/outline/arrow-down-circle',
|
|
333
|
+
'hero/outline/arrow-down-left': 'hero/outline/arrow-down-left',
|
|
334
|
+
'hero/outline/arrow-down-on-square-stack': 'hero/outline/arrow-down-on-square-stack',
|
|
335
|
+
'hero/outline/arrow-down-on-square': 'hero/outline/arrow-down-on-square',
|
|
336
|
+
'hero/outline/arrow-down-right': 'hero/outline/arrow-down-right',
|
|
337
|
+
'hero/outline/arrow-down-tray': 'hero/outline/arrow-down-tray',
|
|
338
|
+
'hero/outline/arrow-down': 'hero/outline/arrow-down',
|
|
339
|
+
'hero/outline/arrow-left-circle': 'hero/outline/arrow-left-circle',
|
|
340
|
+
'hero/outline/arrow-left-end-on-rectangle': 'hero/outline/arrow-left-end-on-rectangle',
|
|
341
|
+
'hero/outline/arrow-left-on-rectangle': 'hero/outline/arrow-left-on-rectangle',
|
|
342
|
+
'hero/outline/arrow-left-start-on-rectangle': 'hero/outline/arrow-left-start-on-rectangle',
|
|
343
|
+
'hero/outline/arrow-left': 'hero/outline/arrow-left',
|
|
344
|
+
'hero/outline/arrow-long-down': 'hero/outline/arrow-long-down',
|
|
345
|
+
'hero/outline/arrow-long-left': 'hero/outline/arrow-long-left',
|
|
346
|
+
'hero/outline/arrow-long-right': 'hero/outline/arrow-long-right',
|
|
347
|
+
'hero/outline/arrow-long-up': 'hero/outline/arrow-long-up',
|
|
348
|
+
'hero/outline/arrow-path-rounded-square': 'hero/outline/arrow-path-rounded-square',
|
|
349
|
+
'hero/outline/arrow-path': 'hero/outline/arrow-path',
|
|
350
|
+
'hero/outline/arrow-right-circle': 'hero/outline/arrow-right-circle',
|
|
351
|
+
'hero/outline/arrow-right-end-on-rectangle': 'hero/outline/arrow-right-end-on-rectangle',
|
|
352
|
+
'hero/outline/arrow-right-on-rectangle': 'hero/outline/arrow-right-on-rectangle',
|
|
353
|
+
'hero/outline/arrow-right-start-on-rectangle': 'hero/outline/arrow-right-start-on-rectangle',
|
|
354
|
+
'hero/outline/arrow-right': 'hero/outline/arrow-right',
|
|
355
|
+
'hero/outline/arrow-small-down': 'hero/outline/arrow-small-down',
|
|
356
|
+
'hero/outline/arrow-small-left': 'hero/outline/arrow-small-left',
|
|
357
|
+
'hero/outline/arrow-small-right': 'hero/outline/arrow-small-right',
|
|
358
|
+
'hero/outline/arrow-small-up': 'hero/outline/arrow-small-up',
|
|
359
|
+
'hero/outline/arrow-top-right-on-square': 'hero/outline/arrow-top-right-on-square',
|
|
360
|
+
'hero/outline/arrow-trending-down': 'hero/outline/arrow-trending-down',
|
|
361
|
+
'hero/outline/arrow-trending-up': 'hero/outline/arrow-trending-up',
|
|
362
|
+
'hero/outline/arrow-turn-down-left': 'hero/outline/arrow-turn-down-left',
|
|
363
|
+
'hero/outline/arrow-turn-down-right': 'hero/outline/arrow-turn-down-right',
|
|
364
|
+
'hero/outline/arrow-turn-left-down': 'hero/outline/arrow-turn-left-down',
|
|
365
|
+
'hero/outline/arrow-turn-left-up': 'hero/outline/arrow-turn-left-up',
|
|
366
|
+
'hero/outline/arrow-turn-right-down': 'hero/outline/arrow-turn-right-down',
|
|
367
|
+
'hero/outline/arrow-turn-right-up': 'hero/outline/arrow-turn-right-up',
|
|
368
|
+
'hero/outline/arrow-turn-up-left': 'hero/outline/arrow-turn-up-left',
|
|
369
|
+
'hero/outline/arrow-turn-up-right': 'hero/outline/arrow-turn-up-right',
|
|
370
|
+
'hero/outline/arrow-up-circle': 'hero/outline/arrow-up-circle',
|
|
371
|
+
'hero/outline/arrow-up-left': 'hero/outline/arrow-up-left',
|
|
372
|
+
'hero/outline/arrow-up-on-square-stack': 'hero/outline/arrow-up-on-square-stack',
|
|
373
|
+
'hero/outline/arrow-up-on-square': 'hero/outline/arrow-up-on-square',
|
|
374
|
+
'hero/outline/arrow-up-right': 'hero/outline/arrow-up-right',
|
|
375
|
+
'hero/outline/arrow-up-tray': 'hero/outline/arrow-up-tray',
|
|
376
|
+
'hero/outline/arrow-up': 'hero/outline/arrow-up',
|
|
377
|
+
'hero/outline/arrow-uturn-down': 'hero/outline/arrow-uturn-down',
|
|
378
|
+
'hero/outline/arrow-uturn-left': 'hero/outline/arrow-uturn-left',
|
|
379
|
+
'hero/outline/arrow-uturn-right': 'hero/outline/arrow-uturn-right',
|
|
380
|
+
'hero/outline/arrow-uturn-up': 'hero/outline/arrow-uturn-up',
|
|
381
|
+
'hero/outline/arrows-pointing-in': 'hero/outline/arrows-pointing-in',
|
|
382
|
+
'hero/outline/arrows-pointing-out': 'hero/outline/arrows-pointing-out',
|
|
383
|
+
'hero/outline/arrows-right-left': 'hero/outline/arrows-right-left',
|
|
384
|
+
'hero/outline/arrows-up-down': 'hero/outline/arrows-up-down',
|
|
385
|
+
'hero/outline/at-symbol': 'hero/outline/at-symbol',
|
|
386
|
+
'hero/outline/backspace': 'hero/outline/backspace',
|
|
387
|
+
'hero/outline/backward': 'hero/outline/backward',
|
|
388
|
+
'hero/outline/banknotes': 'hero/outline/banknotes',
|
|
389
|
+
'hero/outline/bars-2': 'hero/outline/bars-2',
|
|
390
|
+
'hero/outline/bars-3-bottom-left': 'hero/outline/bars-3-bottom-left',
|
|
391
|
+
'hero/outline/bars-3-bottom-right': 'hero/outline/bars-3-bottom-right',
|
|
392
|
+
'hero/outline/bars-3-center-left': 'hero/outline/bars-3-center-left',
|
|
393
|
+
'hero/outline/bars-3': 'hero/outline/bars-3',
|
|
394
|
+
'hero/outline/bars-4': 'hero/outline/bars-4',
|
|
395
|
+
'hero/outline/bars-arrow-down': 'hero/outline/bars-arrow-down',
|
|
396
|
+
'hero/outline/bars-arrow-up': 'hero/outline/bars-arrow-up',
|
|
397
|
+
'hero/outline/battery-0': 'hero/outline/battery-0',
|
|
398
|
+
'hero/outline/battery-100': 'hero/outline/battery-100',
|
|
399
|
+
'hero/outline/battery-50': 'hero/outline/battery-50',
|
|
400
|
+
'hero/outline/beaker': 'hero/outline/beaker',
|
|
401
|
+
'hero/outline/bell-alert': 'hero/outline/bell-alert',
|
|
402
|
+
'hero/outline/bell-slash': 'hero/outline/bell-slash',
|
|
403
|
+
'hero/outline/bell-snooze': 'hero/outline/bell-snooze',
|
|
404
|
+
'hero/outline/bell': 'hero/outline/bell',
|
|
405
|
+
'hero/outline/bold': 'hero/outline/bold',
|
|
406
|
+
'hero/outline/bolt-slash': 'hero/outline/bolt-slash',
|
|
407
|
+
'hero/outline/bolt': 'hero/outline/bolt',
|
|
408
|
+
'hero/outline/book-open': 'hero/outline/book-open',
|
|
409
|
+
'hero/outline/bookmark-slash': 'hero/outline/bookmark-slash',
|
|
410
|
+
'hero/outline/bookmark-square': 'hero/outline/bookmark-square',
|
|
411
|
+
'hero/outline/bookmark': 'hero/outline/bookmark',
|
|
412
|
+
'hero/outline/briefcase': 'hero/outline/briefcase',
|
|
413
|
+
'hero/outline/bug-ant': 'hero/outline/bug-ant',
|
|
414
|
+
'hero/outline/building-library': 'hero/outline/building-library',
|
|
415
|
+
'hero/outline/building-office-2': 'hero/outline/building-office-2',
|
|
416
|
+
'hero/outline/building-office': 'hero/outline/building-office',
|
|
417
|
+
'hero/outline/building-storefront': 'hero/outline/building-storefront',
|
|
418
|
+
'hero/outline/cake': 'hero/outline/cake',
|
|
419
|
+
'hero/outline/calculator': 'hero/outline/calculator',
|
|
420
|
+
'hero/outline/calendar-date-range': 'hero/outline/calendar-date-range',
|
|
421
|
+
'hero/outline/calendar-days': 'hero/outline/calendar-days',
|
|
422
|
+
'hero/outline/calendar': 'hero/outline/calendar',
|
|
423
|
+
'hero/outline/camera': 'hero/outline/camera',
|
|
424
|
+
'hero/outline/chart-bar-square': 'hero/outline/chart-bar-square',
|
|
425
|
+
'hero/outline/chart-bar': 'hero/outline/chart-bar',
|
|
426
|
+
'hero/outline/chart-pie': 'hero/outline/chart-pie',
|
|
427
|
+
'hero/outline/chat-bubble-bottom-center-text': 'hero/outline/chat-bubble-bottom-center-text',
|
|
428
|
+
'hero/outline/chat-bubble-bottom-center': 'hero/outline/chat-bubble-bottom-center',
|
|
429
|
+
'hero/outline/chat-bubble-left-ellipsis': 'hero/outline/chat-bubble-left-ellipsis',
|
|
430
|
+
'hero/outline/chat-bubble-left-right': 'hero/outline/chat-bubble-left-right',
|
|
431
|
+
'hero/outline/chat-bubble-left': 'hero/outline/chat-bubble-left',
|
|
432
|
+
'hero/outline/chat-bubble-oval-left-ellipsis': 'hero/outline/chat-bubble-oval-left-ellipsis',
|
|
433
|
+
'hero/outline/chat-bubble-oval-left': 'hero/outline/chat-bubble-oval-left',
|
|
434
|
+
'hero/outline/check-badge': 'hero/outline/check-badge',
|
|
435
|
+
'hero/outline/check-circle': 'hero/outline/check-circle',
|
|
436
|
+
'hero/outline/check': 'hero/outline/check',
|
|
437
|
+
'hero/outline/chevron-double-down': 'hero/outline/chevron-double-down',
|
|
438
|
+
'hero/outline/chevron-double-left': 'hero/outline/chevron-double-left',
|
|
439
|
+
'hero/outline/chevron-double-right': 'hero/outline/chevron-double-right',
|
|
440
|
+
'hero/outline/chevron-double-up': 'hero/outline/chevron-double-up',
|
|
441
|
+
'hero/outline/chevron-down': 'hero/outline/chevron-down',
|
|
442
|
+
'hero/outline/chevron-left': 'hero/outline/chevron-left',
|
|
443
|
+
'hero/outline/chevron-right': 'hero/outline/chevron-right',
|
|
444
|
+
'hero/outline/chevron-up-down': 'hero/outline/chevron-up-down',
|
|
445
|
+
'hero/outline/chevron-up': 'hero/outline/chevron-up',
|
|
446
|
+
'hero/outline/circle-stack': 'hero/outline/circle-stack',
|
|
447
|
+
'hero/outline/clipboard-document-check': 'hero/outline/clipboard-document-check',
|
|
448
|
+
'hero/outline/clipboard-document-list': 'hero/outline/clipboard-document-list',
|
|
449
|
+
'hero/outline/clipboard-document': 'hero/outline/clipboard-document',
|
|
450
|
+
'hero/outline/clipboard': 'hero/outline/clipboard',
|
|
451
|
+
'hero/outline/clock': 'hero/outline/clock',
|
|
452
|
+
'hero/outline/cloud-arrow-down': 'hero/outline/cloud-arrow-down',
|
|
453
|
+
'hero/outline/cloud-arrow-up': 'hero/outline/cloud-arrow-up',
|
|
454
|
+
'hero/outline/cloud': 'hero/outline/cloud',
|
|
455
|
+
'hero/outline/code-bracket-square': 'hero/outline/code-bracket-square',
|
|
456
|
+
'hero/outline/code-bracket': 'hero/outline/code-bracket',
|
|
457
|
+
'hero/outline/cog-6-tooth': 'hero/outline/cog-6-tooth',
|
|
458
|
+
'hero/outline/cog-8-tooth': 'hero/outline/cog-8-tooth',
|
|
459
|
+
'hero/outline/cog': 'hero/outline/cog',
|
|
460
|
+
'hero/outline/command-line': 'hero/outline/command-line',
|
|
461
|
+
'hero/outline/computer-desktop': 'hero/outline/computer-desktop',
|
|
462
|
+
'hero/outline/cpu-chip': 'hero/outline/cpu-chip',
|
|
463
|
+
'hero/outline/credit-card': 'hero/outline/credit-card',
|
|
464
|
+
'hero/outline/cube-transparent': 'hero/outline/cube-transparent',
|
|
465
|
+
'hero/outline/cube': 'hero/outline/cube',
|
|
466
|
+
'hero/outline/currency-bangladeshi': 'hero/outline/currency-bangladeshi',
|
|
467
|
+
'hero/outline/currency-dollar': 'hero/outline/currency-dollar',
|
|
468
|
+
'hero/outline/currency-euro': 'hero/outline/currency-euro',
|
|
469
|
+
'hero/outline/currency-pound': 'hero/outline/currency-pound',
|
|
470
|
+
'hero/outline/currency-rupee': 'hero/outline/currency-rupee',
|
|
471
|
+
'hero/outline/currency-yen': 'hero/outline/currency-yen',
|
|
472
|
+
'hero/outline/cursor-arrow-rays': 'hero/outline/cursor-arrow-rays',
|
|
473
|
+
'hero/outline/cursor-arrow-ripple': 'hero/outline/cursor-arrow-ripple',
|
|
474
|
+
'hero/outline/device-phone-mobile': 'hero/outline/device-phone-mobile',
|
|
475
|
+
'hero/outline/device-tablet': 'hero/outline/device-tablet',
|
|
476
|
+
'hero/outline/divide': 'hero/outline/divide',
|
|
477
|
+
'hero/outline/document-arrow-down': 'hero/outline/document-arrow-down',
|
|
478
|
+
'hero/outline/document-arrow-up': 'hero/outline/document-arrow-up',
|
|
479
|
+
'hero/outline/document-chart-bar': 'hero/outline/document-chart-bar',
|
|
480
|
+
'hero/outline/document-check': 'hero/outline/document-check',
|
|
481
|
+
'hero/outline/document-currency-bangladeshi': 'hero/outline/document-currency-bangladeshi',
|
|
482
|
+
'hero/outline/document-currency-dollar': 'hero/outline/document-currency-dollar',
|
|
483
|
+
'hero/outline/document-currency-euro': 'hero/outline/document-currency-euro',
|
|
484
|
+
'hero/outline/document-currency-pound': 'hero/outline/document-currency-pound',
|
|
485
|
+
'hero/outline/document-currency-rupee': 'hero/outline/document-currency-rupee',
|
|
486
|
+
'hero/outline/document-currency-yen': 'hero/outline/document-currency-yen',
|
|
487
|
+
'hero/outline/document-duplicate': 'hero/outline/document-duplicate',
|
|
488
|
+
'hero/outline/document-magnifying-glass': 'hero/outline/document-magnifying-glass',
|
|
489
|
+
'hero/outline/document-minus': 'hero/outline/document-minus',
|
|
490
|
+
'hero/outline/document-plus': 'hero/outline/document-plus',
|
|
491
|
+
'hero/outline/document-text': 'hero/outline/document-text',
|
|
492
|
+
'hero/outline/document': 'hero/outline/document',
|
|
493
|
+
'hero/outline/ellipsis-horizontal-circle': 'hero/outline/ellipsis-horizontal-circle',
|
|
494
|
+
'hero/outline/ellipsis-horizontal': 'hero/outline/ellipsis-horizontal',
|
|
495
|
+
'hero/outline/ellipsis-vertical': 'hero/outline/ellipsis-vertical',
|
|
496
|
+
'hero/outline/envelope-open': 'hero/outline/envelope-open',
|
|
497
|
+
'hero/outline/envelope': 'hero/outline/envelope',
|
|
498
|
+
'hero/outline/equals': 'hero/outline/equals',
|
|
499
|
+
'hero/outline/exclamation-circle': 'hero/outline/exclamation-circle',
|
|
500
|
+
'hero/outline/exclamation-triangle': 'hero/outline/exclamation-triangle',
|
|
501
|
+
'hero/outline/eye-dropper': 'hero/outline/eye-dropper',
|
|
502
|
+
'hero/outline/eye-slash': 'hero/outline/eye-slash',
|
|
503
|
+
'hero/outline/eye': 'hero/outline/eye',
|
|
504
|
+
'hero/outline/face-frown': 'hero/outline/face-frown',
|
|
505
|
+
'hero/outline/face-smile': 'hero/outline/face-smile',
|
|
506
|
+
'hero/outline/film': 'hero/outline/film',
|
|
507
|
+
'hero/outline/finger-print': 'hero/outline/finger-print',
|
|
508
|
+
'hero/outline/fire': 'hero/outline/fire',
|
|
509
|
+
'hero/outline/flag': 'hero/outline/flag',
|
|
510
|
+
'hero/outline/folder-arrow-down': 'hero/outline/folder-arrow-down',
|
|
511
|
+
'hero/outline/folder-minus': 'hero/outline/folder-minus',
|
|
512
|
+
'hero/outline/folder-open': 'hero/outline/folder-open',
|
|
513
|
+
'hero/outline/folder-plus': 'hero/outline/folder-plus',
|
|
514
|
+
'hero/outline/folder': 'hero/outline/folder',
|
|
515
|
+
'hero/outline/forward': 'hero/outline/forward',
|
|
516
|
+
'hero/outline/funnel': 'hero/outline/funnel',
|
|
517
|
+
'hero/outline/gif': 'hero/outline/gif',
|
|
518
|
+
'hero/outline/gift-top': 'hero/outline/gift-top',
|
|
519
|
+
'hero/outline/gift': 'hero/outline/gift',
|
|
520
|
+
'hero/outline/globe-alt': 'hero/outline/globe-alt',
|
|
521
|
+
'hero/outline/globe-americas': 'hero/outline/globe-americas',
|
|
522
|
+
'hero/outline/globe-asia-australia': 'hero/outline/globe-asia-australia',
|
|
523
|
+
'hero/outline/globe-europe-africa': 'hero/outline/globe-europe-africa',
|
|
524
|
+
'hero/outline/h1': 'hero/outline/h1',
|
|
525
|
+
'hero/outline/h2': 'hero/outline/h2',
|
|
526
|
+
'hero/outline/h3': 'hero/outline/h3',
|
|
527
|
+
'hero/outline/hand-raised': 'hero/outline/hand-raised',
|
|
528
|
+
'hero/outline/hand-thumb-down': 'hero/outline/hand-thumb-down',
|
|
529
|
+
'hero/outline/hand-thumb-up': 'hero/outline/hand-thumb-up',
|
|
530
|
+
'hero/outline/hashtag': 'hero/outline/hashtag',
|
|
531
|
+
'hero/outline/heart': 'hero/outline/heart',
|
|
532
|
+
'hero/outline/home-modern': 'hero/outline/home-modern',
|
|
533
|
+
'hero/outline/home': 'hero/outline/home',
|
|
534
|
+
'hero/outline/identification': 'hero/outline/identification',
|
|
535
|
+
'hero/outline/inbox-arrow-down': 'hero/outline/inbox-arrow-down',
|
|
536
|
+
'hero/outline/inbox-stack': 'hero/outline/inbox-stack',
|
|
537
|
+
'hero/outline/inbox': 'hero/outline/inbox',
|
|
538
|
+
'hero/outline/information-circle': 'hero/outline/information-circle',
|
|
539
|
+
'hero/outline/italic': 'hero/outline/italic',
|
|
540
|
+
'hero/outline/key': 'hero/outline/key',
|
|
541
|
+
'hero/outline/language': 'hero/outline/language',
|
|
542
|
+
'hero/outline/lifebuoy': 'hero/outline/lifebuoy',
|
|
543
|
+
'hero/outline/light-bulb': 'hero/outline/light-bulb',
|
|
544
|
+
'hero/outline/link-slash': 'hero/outline/link-slash',
|
|
545
|
+
'hero/outline/link': 'hero/outline/link',
|
|
546
|
+
'hero/outline/list-bullet': 'hero/outline/list-bullet',
|
|
547
|
+
'hero/outline/lock-closed': 'hero/outline/lock-closed',
|
|
548
|
+
'hero/outline/lock-open': 'hero/outline/lock-open',
|
|
549
|
+
'hero/outline/magnifying-glass-circle': 'hero/outline/magnifying-glass-circle',
|
|
550
|
+
'hero/outline/magnifying-glass-minus': 'hero/outline/magnifying-glass-minus',
|
|
551
|
+
'hero/outline/magnifying-glass-plus': 'hero/outline/magnifying-glass-plus',
|
|
552
|
+
'hero/outline/magnifying-glass': 'hero/outline/magnifying-glass',
|
|
553
|
+
'hero/outline/map-pin': 'hero/outline/map-pin',
|
|
554
|
+
'hero/outline/map': 'hero/outline/map',
|
|
555
|
+
'hero/outline/megaphone': 'hero/outline/megaphone',
|
|
556
|
+
'hero/outline/microphone': 'hero/outline/microphone',
|
|
557
|
+
'hero/outline/minus-circle': 'hero/outline/minus-circle',
|
|
558
|
+
'hero/outline/minus-small': 'hero/outline/minus-small',
|
|
559
|
+
'hero/outline/minus': 'hero/outline/minus',
|
|
560
|
+
'hero/outline/moon': 'hero/outline/moon',
|
|
561
|
+
'hero/outline/musical-note': 'hero/outline/musical-note',
|
|
562
|
+
'hero/outline/newspaper': 'hero/outline/newspaper',
|
|
563
|
+
'hero/outline/no-symbol': 'hero/outline/no-symbol',
|
|
564
|
+
'hero/outline/numbered-list': 'hero/outline/numbered-list',
|
|
565
|
+
'hero/outline/paint-brush': 'hero/outline/paint-brush',
|
|
566
|
+
'hero/outline/paper-airplane': 'hero/outline/paper-airplane',
|
|
567
|
+
'hero/outline/paper-clip': 'hero/outline/paper-clip',
|
|
568
|
+
'hero/outline/pause-circle': 'hero/outline/pause-circle',
|
|
569
|
+
'hero/outline/pause': 'hero/outline/pause',
|
|
570
|
+
'hero/outline/pencil-square': 'hero/outline/pencil-square',
|
|
571
|
+
'hero/outline/pencil': 'hero/outline/pencil',
|
|
572
|
+
'hero/outline/percent-badge': 'hero/outline/percent-badge',
|
|
573
|
+
'hero/outline/phone-arrow-down-left': 'hero/outline/phone-arrow-down-left',
|
|
574
|
+
'hero/outline/phone-arrow-up-right': 'hero/outline/phone-arrow-up-right',
|
|
575
|
+
'hero/outline/phone-x-mark': 'hero/outline/phone-x-mark',
|
|
576
|
+
'hero/outline/phone': 'hero/outline/phone',
|
|
577
|
+
'hero/outline/photo': 'hero/outline/photo',
|
|
578
|
+
'hero/outline/play-circle': 'hero/outline/play-circle',
|
|
579
|
+
'hero/outline/play-pause': 'hero/outline/play-pause',
|
|
580
|
+
'hero/outline/play': 'hero/outline/play',
|
|
581
|
+
'hero/outline/plus-circle': 'hero/outline/plus-circle',
|
|
582
|
+
'hero/outline/plus-small': 'hero/outline/plus-small',
|
|
583
|
+
'hero/outline/plus': 'hero/outline/plus',
|
|
584
|
+
'hero/outline/power': 'hero/outline/power',
|
|
585
|
+
'hero/outline/presentation-chart-bar': 'hero/outline/presentation-chart-bar',
|
|
586
|
+
'hero/outline/presentation-chart-line': 'hero/outline/presentation-chart-line',
|
|
587
|
+
'hero/outline/printer': 'hero/outline/printer',
|
|
588
|
+
'hero/outline/puzzle-piece': 'hero/outline/puzzle-piece',
|
|
589
|
+
'hero/outline/qr-code': 'hero/outline/qr-code',
|
|
590
|
+
'hero/outline/question-mark-circle': 'hero/outline/question-mark-circle',
|
|
591
|
+
'hero/outline/queue-list': 'hero/outline/queue-list',
|
|
592
|
+
'hero/outline/radio': 'hero/outline/radio',
|
|
593
|
+
'hero/outline/receipt-percent': 'hero/outline/receipt-percent',
|
|
594
|
+
'hero/outline/receipt-refund': 'hero/outline/receipt-refund',
|
|
595
|
+
'hero/outline/rectangle-group': 'hero/outline/rectangle-group',
|
|
596
|
+
'hero/outline/rectangle-stack': 'hero/outline/rectangle-stack',
|
|
597
|
+
'hero/outline/rocket-launch': 'hero/outline/rocket-launch',
|
|
598
|
+
'hero/outline/rss': 'hero/outline/rss',
|
|
599
|
+
'hero/outline/scale': 'hero/outline/scale',
|
|
600
|
+
'hero/outline/scissors': 'hero/outline/scissors',
|
|
601
|
+
'hero/outline/server-stack': 'hero/outline/server-stack',
|
|
602
|
+
'hero/outline/server': 'hero/outline/server',
|
|
603
|
+
'hero/outline/share': 'hero/outline/share',
|
|
604
|
+
'hero/outline/shield-check': 'hero/outline/shield-check',
|
|
605
|
+
'hero/outline/shield-exclamation': 'hero/outline/shield-exclamation',
|
|
606
|
+
'hero/outline/shopping-bag': 'hero/outline/shopping-bag',
|
|
607
|
+
'hero/outline/shopping-cart': 'hero/outline/shopping-cart',
|
|
608
|
+
'hero/outline/signal-slash': 'hero/outline/signal-slash',
|
|
609
|
+
'hero/outline/signal': 'hero/outline/signal',
|
|
610
|
+
'hero/outline/slash': 'hero/outline/slash',
|
|
611
|
+
'hero/outline/sparkles': 'hero/outline/sparkles',
|
|
612
|
+
'hero/outline/speaker-wave': 'hero/outline/speaker-wave',
|
|
613
|
+
'hero/outline/speaker-x-mark': 'hero/outline/speaker-x-mark',
|
|
614
|
+
'hero/outline/square-2-stack': 'hero/outline/square-2-stack',
|
|
615
|
+
'hero/outline/square-3-stack-3d': 'hero/outline/square-3-stack-3d',
|
|
616
|
+
'hero/outline/squares-2x2': 'hero/outline/squares-2x2',
|
|
617
|
+
'hero/outline/squares-plus': 'hero/outline/squares-plus',
|
|
618
|
+
'hero/outline/star': 'hero/outline/star',
|
|
619
|
+
'hero/outline/stop-circle': 'hero/outline/stop-circle',
|
|
620
|
+
'hero/outline/stop': 'hero/outline/stop',
|
|
621
|
+
'hero/outline/strikethrough': 'hero/outline/strikethrough',
|
|
622
|
+
'hero/outline/sun': 'hero/outline/sun',
|
|
623
|
+
'hero/outline/swatch': 'hero/outline/swatch',
|
|
624
|
+
'hero/outline/table-cells': 'hero/outline/table-cells',
|
|
625
|
+
'hero/outline/tag': 'hero/outline/tag',
|
|
626
|
+
'hero/outline/ticket': 'hero/outline/ticket',
|
|
627
|
+
'hero/outline/trash': 'hero/outline/trash',
|
|
628
|
+
'hero/outline/trophy': 'hero/outline/trophy',
|
|
629
|
+
'hero/outline/truck': 'hero/outline/truck',
|
|
630
|
+
'hero/outline/tv': 'hero/outline/tv',
|
|
631
|
+
'hero/outline/underline': 'hero/outline/underline',
|
|
632
|
+
'hero/outline/user-circle': 'hero/outline/user-circle',
|
|
633
|
+
'hero/outline/user-group': 'hero/outline/user-group',
|
|
634
|
+
'hero/outline/user-minus': 'hero/outline/user-minus',
|
|
635
|
+
'hero/outline/user-plus': 'hero/outline/user-plus',
|
|
636
|
+
'hero/outline/user': 'hero/outline/user',
|
|
637
|
+
'hero/outline/users': 'hero/outline/users',
|
|
638
|
+
'hero/outline/variable': 'hero/outline/variable',
|
|
639
|
+
'hero/outline/video-camera-slash': 'hero/outline/video-camera-slash',
|
|
640
|
+
'hero/outline/video-camera': 'hero/outline/video-camera',
|
|
641
|
+
'hero/outline/view-columns': 'hero/outline/view-columns',
|
|
642
|
+
'hero/outline/viewfinder-circle': 'hero/outline/viewfinder-circle',
|
|
643
|
+
'hero/outline/wallet': 'hero/outline/wallet',
|
|
644
|
+
'hero/outline/wifi': 'hero/outline/wifi',
|
|
645
|
+
'hero/outline/window': 'hero/outline/window',
|
|
646
|
+
'hero/outline/wrench-screwdriver': 'hero/outline/wrench-screwdriver',
|
|
647
|
+
'hero/outline/wrench': 'hero/outline/wrench',
|
|
648
|
+
'hero/outline/x-circle': 'hero/outline/x-circle',
|
|
649
|
+
'hero/outline/x-mark': 'hero/outline/x-mark',
|
|
650
|
+
'telegram/solid/logo': 'telegram/solid/logo',
|
|
651
|
+
'vk/solid/logo': 'vk/solid/logo',
|
|
652
|
+
})
|
|
653
|
+
|
|
654
|
+
export const Icons = Object.freeze(Object.values(Icon))
|