@refineui/icon-cdn 0.3.25 → 0.3.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/IconUtils.d.ts +2 -0
- package/dist/IconUtils.js +39 -9
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +5 -4
- package/dist/filled-icons.d.ts +206 -43
- package/dist/filled-icons.js +215 -49
- package/dist/index.esm.js +454 -98
- package/dist/index.js +865 -183
- package/dist/index.umd.js +865 -183
- package/dist/regular-icons.d.ts +206 -43
- package/dist/regular-icons.js +215 -49
- package/icons/16/flip_verticial-filled.svg +5 -0
- package/icons/16/flip_verticial-regular.svg +5 -0
- package/icons/16/local_language-filled.svg +4 -0
- package/icons/16/local_language-regular.svg +4 -0
- package/icons/16/more_verticial-filled.svg +5 -0
- package/icons/16/more_verticial-regular.svg +5 -0
- package/icons/20/flip_verticial-filled.svg +5 -0
- package/icons/20/flip_verticial-regular.svg +5 -0
- package/icons/20/local_language-filled.svg +4 -0
- package/icons/20/local_language-regular.svg +4 -0
- package/icons/20/more_verticial-filled.svg +5 -0
- package/icons/20/more_verticial-regular.svg +5 -0
- package/icons/24/flip_verticial-filled.svg +5 -0
- package/icons/24/flip_verticial-regular.svg +5 -0
- package/icons/24/local_language-filled.svg +4 -0
- package/icons/24/local_language-regular.svg +4 -0
- package/icons/24/more_verticial-filled.svg +5 -0
- package/icons/24/more_verticial-regular.svg +5 -0
- package/icons/28/flip_verticial-filled.svg +5 -0
- package/icons/28/flip_verticial-regular.svg +5 -0
- package/icons/28/local_language-filled.svg +4 -0
- package/icons/28/local_language-regular.svg +4 -0
- package/icons/28/more_verticial-filled.svg +5 -0
- package/icons/28/more_verticial-regular.svg +5 -0
- package/icons/32/flip_verticial-filled.svg +5 -0
- package/icons/32/flip_verticial-regular.svg +5 -0
- package/icons/32/local_language-filled.svg +4 -0
- package/icons/32/local_language-regular.svg +4 -0
- package/icons/32/more_verticial-filled.svg +5 -0
- package/icons/32/more_verticial-regular.svg +5 -0
- package/icons/48/flip_verticial-filled.svg +5 -0
- package/icons/48/flip_verticial-regular.svg +5 -0
- package/icons/48/local_language-filled.svg +4 -0
- package/icons/48/local_language-regular.svg +4 -0
- package/icons/48/more_verticial-filled.svg +5 -0
- package/icons/48/more_verticial-regular.svg +5 -0
- package/package.json +1 -1
- package/icons/16/flip_vertcial-filled.svg +0 -4
- package/icons/16/flip_vertcial-regular.svg +0 -4
- package/icons/16/locallanguage-filled.svg +0 -4
- package/icons/16/locallanguage-regular.svg +0 -4
- package/icons/16/more_vertcial-filled.svg +0 -4
- package/icons/16/more_vertcial-regular.svg +0 -4
- package/icons/20/flip_vertcial-filled.svg +0 -4
- package/icons/20/flip_vertcial-regular.svg +0 -4
- package/icons/20/locallanguage-filled.svg +0 -4
- package/icons/20/locallanguage-regular.svg +0 -4
- package/icons/20/more_vertcial-filled.svg +0 -4
- package/icons/20/more_vertcial-regular.svg +0 -4
- package/icons/24/flip_vertcial-filled.svg +0 -4
- package/icons/24/flip_vertcial-regular.svg +0 -4
- package/icons/24/locallanguage-filled.svg +0 -4
- package/icons/24/locallanguage-regular.svg +0 -4
- package/icons/24/more_vertcial-filled.svg +0 -4
- package/icons/24/more_vertcial-regular.svg +0 -4
- package/icons/28/flip_vertcial-filled.svg +0 -4
- package/icons/28/flip_vertcial-regular.svg +0 -4
- package/icons/28/locallanguage-filled.svg +0 -4
- package/icons/28/locallanguage-regular.svg +0 -4
- package/icons/28/more_vertcial-filled.svg +0 -4
- package/icons/28/more_vertcial-regular.svg +0 -4
- package/icons/32/flip_vertcial-filled.svg +0 -4
- package/icons/32/flip_vertcial-regular.svg +0 -4
- package/icons/32/locallanguage-filled.svg +0 -4
- package/icons/32/locallanguage-regular.svg +0 -4
- package/icons/32/more_vertcial-filled.svg +0 -4
- package/icons/32/more_vertcial-regular.svg +0 -4
- package/icons/48/flip_vertcial-filled.svg +0 -4
- package/icons/48/flip_vertcial-regular.svg +0 -4
- package/icons/48/locallanguage-filled.svg +0 -4
- package/icons/48/locallanguage-regular.svg +0 -4
- package/icons/48/more_vertcial-filled.svg +0 -4
- package/icons/48/more_vertcial-regular.svg +0 -4
package/dist/index.esm.js
CHANGED
|
@@ -35,24 +35,48 @@ const getIconURL = (iconName, size = 24, style = 'regular') => {
|
|
|
35
35
|
};
|
|
36
36
|
|
|
37
37
|
// === Regular style icons ===
|
|
38
|
-
const
|
|
38
|
+
const AccessTimeRegular = createIconURL('access-time', 24, 'regular');
|
|
39
39
|
const AccessibilityRegular = createIconURL('accessibility', 24, 'regular');
|
|
40
40
|
const AddRegular = createIconURL('add', 24, 'regular');
|
|
41
|
+
const AddCircleRegular = createIconURL('add-circle', 24, 'regular');
|
|
42
|
+
const AddSquareRegular = createIconURL('add-square', 24, 'regular');
|
|
41
43
|
const AirplaneRegular = createIconURL('airplane', 24, 'regular');
|
|
42
44
|
const AlbumRegular = createIconURL('album', 24, 'regular');
|
|
43
45
|
const AlertRegular = createIconURL('alert', 24, 'regular');
|
|
44
|
-
const
|
|
46
|
+
const AlertBadgeRegular = createIconURL('alert-badge', 24, 'regular');
|
|
47
|
+
const AlertOffRegular = createIconURL('alert-off', 24, 'regular');
|
|
48
|
+
const AlignBottomRegular = createIconURL('align-bottom', 24, 'regular');
|
|
49
|
+
const AlignCenterHorizontalRegular = createIconURL('align-center-horizontal', 24, 'regular');
|
|
50
|
+
const AlignCenterVerticalRegular = createIconURL('align-center-vertical', 24, 'regular');
|
|
51
|
+
const AlignLeftRegular = createIconURL('align-left', 24, 'regular');
|
|
52
|
+
const AlignRightRegular = createIconURL('align-right', 24, 'regular');
|
|
53
|
+
const AlignTopRegular = createIconURL('align-top', 24, 'regular');
|
|
45
54
|
const AndroidRegular = createIconURL('android', 24, 'regular');
|
|
46
|
-
const
|
|
55
|
+
const AppFolderRegular = createIconURL('app-folder', 24, 'regular');
|
|
56
|
+
const AppRecentRegular = createIconURL('app-recent', 24, 'regular');
|
|
57
|
+
const AppTitleRegular = createIconURL('app-title', 24, 'regular');
|
|
47
58
|
const AppstoreRegular = createIconURL('appstore', 24, 'regular');
|
|
48
59
|
const AutosumRegular = createIconURL('autosum', 24, 'regular');
|
|
49
60
|
const BackpackRegular = createIconURL('backpack', 24, 'regular');
|
|
50
61
|
const BackspaceRegular = createIconURL('backspace', 24, 'regular');
|
|
51
62
|
const BadgeRegular = createIconURL('badge', 24, 'regular');
|
|
52
63
|
const BalloonRegular = createIconURL('balloon', 24, 'regular');
|
|
53
|
-
const
|
|
54
|
-
const
|
|
55
|
-
const
|
|
64
|
+
const BarChartHorizontalRegular = createIconURL('bar-chart-horizontal', 24, 'regular');
|
|
65
|
+
const BarChartHorizontalDescendingRegular = createIconURL('bar-chart-horizontal-descending', 24, 'regular');
|
|
66
|
+
const BarChartVerticalRegular = createIconURL('bar-chart-vertical', 24, 'regular');
|
|
67
|
+
const BarChartVerticalDescendingRegular = createIconURL('bar-chart-vertical-descending', 24, 'regular');
|
|
68
|
+
const BarcodeScannerRegular = createIconURL('barcode-scanner', 24, 'regular');
|
|
69
|
+
const Battery0Regular = createIconURL('battery-0', 24, 'regular');
|
|
70
|
+
const Battery10Regular = createIconURL('battery-10', 24, 'regular');
|
|
71
|
+
const Battery100Regular = createIconURL('battery-100', 24, 'regular');
|
|
72
|
+
const Battery20Regular = createIconURL('battery-20', 24, 'regular');
|
|
73
|
+
const Battery30Regular = createIconURL('battery-30', 24, 'regular');
|
|
74
|
+
const Battery40Regular = createIconURL('battery-40', 24, 'regular');
|
|
75
|
+
const Battery50Regular = createIconURL('battery-50', 24, 'regular');
|
|
76
|
+
const Battery60Regular = createIconURL('battery-60', 24, 'regular');
|
|
77
|
+
const Battery70Regular = createIconURL('battery-70', 24, 'regular');
|
|
78
|
+
const Battery80Regular = createIconURL('battery-80', 24, 'regular');
|
|
79
|
+
const Battery90Regular = createIconURL('battery-90', 24, 'regular');
|
|
56
80
|
const BlockRegular = createIconURL('block', 24, 'regular');
|
|
57
81
|
const BluetoothRegular = createIconURL('bluetooth', 24, 'regular');
|
|
58
82
|
const BlurRegular = createIconURL('blur', 24, 'regular');
|
|
@@ -64,23 +88,30 @@ const CalculatorRegular = createIconURL('calculator', 24, 'regular');
|
|
|
64
88
|
const CalendarRegular = createIconURL('calendar', 24, 'regular');
|
|
65
89
|
const CameraRegular = createIconURL('camera', 24, 'regular');
|
|
66
90
|
const CartRegular = createIconURL('cart', 24, 'regular');
|
|
67
|
-
const
|
|
91
|
+
const CartonBoxRegular = createIconURL('carton-box', 24, 'regular');
|
|
68
92
|
const ChartRegular = createIconURL('chart', 24, 'regular');
|
|
69
93
|
const ChatRegular = createIconURL('chat', 24, 'regular');
|
|
94
|
+
const ChatAddRegular = createIconURL('chat-add', 24, 'regular');
|
|
95
|
+
const ChatEmptyRegular = createIconURL('chat-empty', 24, 'regular');
|
|
70
96
|
const CheckmarkRegular = createIconURL('checkmark', 24, 'regular');
|
|
71
97
|
const ChessRegular = createIconURL('chess', 24, 'regular');
|
|
72
|
-
const
|
|
98
|
+
const ChevronDownRegular = createIconURL('chevron-down', 24, 'regular');
|
|
99
|
+
const ChevronLeftRegular = createIconURL('chevron-left', 24, 'regular');
|
|
100
|
+
const ChevronRightRegular = createIconURL('chevron-right', 24, 'regular');
|
|
101
|
+
const ChevronUpRegular = createIconURL('chevron-up', 24, 'regular');
|
|
73
102
|
const CircleRegular = createIconURL('circle', 24, 'regular');
|
|
74
103
|
const ClipboardRegular = createIconURL('clipboard', 24, 'regular');
|
|
75
104
|
const ClockRegular = createIconURL('clock', 24, 'regular');
|
|
105
|
+
const ClockAlarmRegular = createIconURL('clock-alarm', 24, 'regular');
|
|
76
106
|
const CloudRegular = createIconURL('cloud', 24, 'regular');
|
|
77
107
|
const CloverRegular = createIconURL('clover', 24, 'regular');
|
|
78
108
|
const CodeRegular = createIconURL('code', 24, 'regular');
|
|
109
|
+
const CodeBlockRegular = createIconURL('code-block', 24, 'regular');
|
|
79
110
|
const CommaRegular = createIconURL('comma', 24, 'regular');
|
|
80
111
|
const CommentRegular = createIconURL('comment', 24, 'regular');
|
|
81
112
|
const ConeRegular = createIconURL('cone', 24, 'regular');
|
|
82
113
|
const ContrastRegular = createIconURL('contrast', 24, 'regular');
|
|
83
|
-
const
|
|
114
|
+
const ControlButtonRegular = createIconURL('control-button', 24, 'regular');
|
|
84
115
|
const CookieRegular = createIconURL('cookie', 24, 'regular');
|
|
85
116
|
const CopyRegular = createIconURL('copy', 24, 'regular');
|
|
86
117
|
const CouchRegular = createIconURL('couch', 24, 'regular');
|
|
@@ -94,47 +125,73 @@ const CutRegular = createIconURL('cut', 24, 'regular');
|
|
|
94
125
|
const DartRegular = createIconURL('dart', 24, 'regular');
|
|
95
126
|
const DatabaseRegular = createIconURL('database', 24, 'regular');
|
|
96
127
|
const DeleteRegular = createIconURL('delete', 24, 'regular');
|
|
128
|
+
const DeleteOffRegular = createIconURL('delete-off', 24, 'regular');
|
|
97
129
|
const DentistRegular = createIconURL('dentist', 24, 'regular');
|
|
98
130
|
const DeskRegular = createIconURL('desk', 24, 'regular');
|
|
99
131
|
const DesktopRegular = createIconURL('desktop', 24, 'regular');
|
|
132
|
+
const DesktopMacRegular = createIconURL('desktop-mac', 24, 'regular');
|
|
100
133
|
const DialpadRegular = createIconURL('dialpad', 24, 'regular');
|
|
101
134
|
const DiamondRegular = createIconURL('diamond', 24, 'regular');
|
|
102
135
|
const DismissRegular = createIconURL('dismiss', 24, 'regular');
|
|
136
|
+
const DismissCircleRegular = createIconURL('dismiss-circle', 24, 'regular');
|
|
137
|
+
const DismissSquareRegular = createIconURL('dismiss-square', 24, 'regular');
|
|
103
138
|
const DoctorRegular = createIconURL('doctor', 24, 'regular');
|
|
104
139
|
const DocumentRegular = createIconURL('document', 24, 'regular');
|
|
140
|
+
const DocumentBorderRegular = createIconURL('document-border', 24, 'regular');
|
|
105
141
|
const DoorRegular = createIconURL('door', 24, 'regular');
|
|
106
142
|
const DragRegular = createIconURL('drag', 24, 'regular');
|
|
107
143
|
const DrawerRegular = createIconURL('drawer', 24, 'regular');
|
|
108
144
|
const DropRegular = createIconURL('drop', 24, 'regular');
|
|
109
|
-
const
|
|
145
|
+
const DualScreenRegular = createIconURL('dual-screen', 24, 'regular');
|
|
110
146
|
const DumbbellRegular = createIconURL('dumbbell', 24, 'regular');
|
|
111
147
|
const DustRegular = createIconURL('dust', 24, 'regular');
|
|
112
148
|
const EarthRegular = createIconURL('earth', 24, 'regular');
|
|
113
149
|
const EditRegular = createIconURL('edit', 24, 'regular');
|
|
150
|
+
const EditOffRegular = createIconURL('edit-off', 24, 'regular');
|
|
114
151
|
const ElevatorRegular = createIconURL('elevator', 24, 'regular');
|
|
115
152
|
const EmojiRegular = createIconURL('emoji', 24, 'regular');
|
|
153
|
+
const EmojiAngryRegular = createIconURL('emoji-angry', 24, 'regular');
|
|
154
|
+
const EmojiCoolRegular = createIconURL('emoji-cool', 24, 'regular');
|
|
155
|
+
const EmojiGrimacingRegular = createIconURL('emoji-grimacing', 24, 'regular');
|
|
156
|
+
const EmojiLaughRegular = createIconURL('emoji-laugh', 24, 'regular');
|
|
157
|
+
const EmojiMehRegular = createIconURL('emoji-meh', 24, 'regular');
|
|
158
|
+
const EmojiSadRegular = createIconURL('emoji-sad', 24, 'regular');
|
|
159
|
+
const EmojiSurpriseRegular = createIconURL('emoji-surprise', 24, 'regular');
|
|
116
160
|
const EngineRegular = createIconURL('engine', 24, 'regular');
|
|
117
161
|
const EqualRegular = createIconURL('equal', 24, 'regular');
|
|
118
|
-
const
|
|
162
|
+
const EqualCircleRegular = createIconURL('equal-circle', 24, 'regular');
|
|
163
|
+
const EqualOffRegular = createIconURL('equal-off', 24, 'regular');
|
|
164
|
+
const ErrorCircleRegular = createIconURL('error-circle', 24, 'regular');
|
|
119
165
|
const EyeRegular = createIconURL('eye', 24, 'regular');
|
|
166
|
+
const EyeOffRegular = createIconURL('eye-off', 24, 'regular');
|
|
120
167
|
const EyedropperRegular = createIconURL('eyedropper', 24, 'regular');
|
|
121
|
-
const
|
|
168
|
+
const EyedropperOffRegular = createIconURL('eyedropper-off', 24, 'regular');
|
|
169
|
+
const FastForwardRegular = createIconURL('fast-forward', 24, 'regular');
|
|
122
170
|
const FilmstripRegular = createIconURL('filmstrip', 24, 'regular');
|
|
171
|
+
const FilmstripOffRegular = createIconURL('filmstrip-off', 24, 'regular');
|
|
123
172
|
const FilterRegular = createIconURL('filter', 24, 'regular');
|
|
124
173
|
const FireRegular = createIconURL('fire', 24, 'regular');
|
|
125
174
|
const FlagRegular = createIconURL('flag', 24, 'regular');
|
|
175
|
+
const FlagOffRegular = createIconURL('flag-off', 24, 'regular');
|
|
126
176
|
const FlashRegular = createIconURL('flash', 24, 'regular');
|
|
177
|
+
const FlashOffRegular = createIconURL('flash-off', 24, 'regular');
|
|
127
178
|
const FlashlightRegular = createIconURL('flashlight', 24, 'regular');
|
|
128
|
-
const
|
|
179
|
+
const FlashlightOffRegular = createIconURL('flashlight-off', 24, 'regular');
|
|
180
|
+
const FlipHorizontalRegular = createIconURL('flip-horizontal', 24, 'regular');
|
|
181
|
+
const FlipVerticialRegular = createIconURL('flip-verticial', 24, 'regular');
|
|
129
182
|
const FolderRegular = createIconURL('folder', 24, 'regular');
|
|
183
|
+
const FolderOpenRegular = createIconURL('folder-open', 24, 'regular');
|
|
130
184
|
const FrameRegular = createIconURL('frame', 24, 'regular');
|
|
131
|
-
const
|
|
185
|
+
const FullScreenMaximizeRegular = createIconURL('full-screen-maximize', 24, 'regular');
|
|
186
|
+
const FullScreenMinimizeRegular = createIconURL('full-screen-minimize', 24, 'regular');
|
|
132
187
|
const GamesRegular = createIconURL('games', 24, 'regular');
|
|
133
|
-
const
|
|
188
|
+
const GanttChartRegular = createIconURL('gantt-chart', 24, 'regular');
|
|
134
189
|
const GasRegular = createIconURL('gas', 24, 'regular');
|
|
190
|
+
const GasStationRegular = createIconURL('gas-station', 24, 'regular');
|
|
135
191
|
const GavelRegular = createIconURL('gavel', 24, 'regular');
|
|
136
192
|
const GifRegular = createIconURL('gif', 24, 'regular');
|
|
137
193
|
const GiftRegular = createIconURL('gift', 24, 'regular');
|
|
194
|
+
const GiftCardRegular = createIconURL('gift-card', 24, 'regular');
|
|
138
195
|
const GitRegular = createIconURL('git', 24, 'regular');
|
|
139
196
|
const GlassesRegular = createIconURL('glasses', 24, 'regular');
|
|
140
197
|
const GlobalRegular = createIconURL('global', 24, 'regular');
|
|
@@ -142,102 +199,160 @@ const GridRegular = createIconURL('grid', 24, 'regular');
|
|
|
142
199
|
const GuestRegular = createIconURL('guest', 24, 'regular');
|
|
143
200
|
const GuitarRegular = createIconURL('guitar', 24, 'regular');
|
|
144
201
|
const HammerRegular = createIconURL('hammer', 24, 'regular');
|
|
145
|
-
const
|
|
146
|
-
const
|
|
202
|
+
const HardDriveRegular = createIconURL('hard-drive', 24, 'regular');
|
|
203
|
+
const HatGraduationRegular = createIconURL('hat-graduation', 24, 'regular');
|
|
147
204
|
const HdRegular = createIconURL('hd', 24, 'regular');
|
|
148
205
|
const HdrRegular = createIconURL('hdr', 24, 'regular');
|
|
206
|
+
const HdrOffRegular = createIconURL('hdr-off', 24, 'regular');
|
|
149
207
|
const HeadphonesRegular = createIconURL('headphones', 24, 'regular');
|
|
150
|
-
const
|
|
208
|
+
const HeadphonesMicRegular = createIconURL('headphones-mic', 24, 'regular');
|
|
209
|
+
const HeadsetVrRegular = createIconURL('headset-vr', 24, 'regular');
|
|
151
210
|
const HeartRegular = createIconURL('heart', 24, 'regular');
|
|
211
|
+
const HeartBrokenRegular = createIconURL('heart-broken', 24, 'regular');
|
|
152
212
|
const HexagonRegular = createIconURL('hexagon', 24, 'regular');
|
|
153
213
|
const HighlightRegular = createIconURL('highlight', 24, 'regular');
|
|
154
214
|
const HighwayRegular = createIconURL('highway', 24, 'regular');
|
|
155
215
|
const HomeRegular = createIconURL('home', 24, 'regular');
|
|
216
|
+
const HomeCheckmarkRegular = createIconURL('home-checkmark', 24, 'regular');
|
|
156
217
|
const HourglassRegular = createIconURL('hourglass', 24, 'regular');
|
|
218
|
+
const HourglassHalfRegular = createIconURL('hourglass-half', 24, 'regular');
|
|
219
|
+
const HourglassOneQuarterRegular = createIconURL('hourglass-one-quarter', 24, 'regular');
|
|
220
|
+
const HourglassThreeQuarterRegular = createIconURL('hourglass-three-quarter', 24, 'regular');
|
|
157
221
|
const HtmlRegular = createIconURL('html', 24, 'regular');
|
|
158
222
|
const ImageRegular = createIconURL('image', 24, 'regular');
|
|
223
|
+
const ImageCircleRegular = createIconURL('image-circle', 24, 'regular');
|
|
159
224
|
const ImportantRegular = createIconURL('important', 24, 'regular');
|
|
160
225
|
const IncognitoRegular = createIconURL('incognito', 24, 'regular');
|
|
161
226
|
const InfoRegular = createIconURL('info', 24, 'regular');
|
|
162
227
|
const IosRegular = createIconURL('ios', 24, 'regular');
|
|
228
|
+
const IosArrowLtrRegular = createIconURL('ios-arrow-ltr', 24, 'regular');
|
|
229
|
+
const IosArrowRtlRegular = createIconURL('ios-arrow-rtl', 24, 'regular');
|
|
230
|
+
const IosChevronLtrRegular = createIconURL('ios-chevron-ltr', 24, 'regular');
|
|
231
|
+
const IosChevronRtlRegular = createIconURL('ios-chevron-rtl', 24, 'regular');
|
|
163
232
|
const IotRegular = createIconURL('iot', 24, 'regular');
|
|
164
233
|
const JavascriptRegular = createIconURL('javascript', 24, 'regular');
|
|
165
234
|
const JoystickRegular = createIconURL('joystick', 24, 'regular');
|
|
166
235
|
const JsonRegular = createIconURL('json', 24, 'regular');
|
|
236
|
+
const JsonFileRegular = createIconURL('json-file', 24, 'regular');
|
|
167
237
|
const KeyRegular = createIconURL('key', 24, 'regular');
|
|
238
|
+
const KeyMultipleRegular = createIconURL('key-multiple', 24, 'regular');
|
|
168
239
|
const KeyboardRegular = createIconURL('keyboard', 24, 'regular');
|
|
240
|
+
const KeyboardBackspaceRegular = createIconURL('keyboard-backspace', 24, 'regular');
|
|
241
|
+
const KeyboardCommandRegular = createIconURL('keyboard-command', 24, 'regular');
|
|
242
|
+
const KeyboardLockRegular = createIconURL('keyboard-lock', 24, 'regular');
|
|
243
|
+
const KeyboardOffRegular = createIconURL('keyboard-off', 24, 'regular');
|
|
244
|
+
const KeyboardOptionRegular = createIconURL('keyboard-option', 24, 'regular');
|
|
245
|
+
const KeyboardReturnRegular = createIconURL('keyboard-return', 24, 'regular');
|
|
246
|
+
const KeyboardShiftRegular = createIconURL('keyboard-shift', 24, 'regular');
|
|
247
|
+
const KeyboardShiftUppercaseRegular = createIconURL('keyboard-shift-uppercase', 24, 'regular');
|
|
248
|
+
const KeyboardTabRegular = createIconURL('keyboard-tab', 24, 'regular');
|
|
169
249
|
const KioskRegular = createIconURL('kiosk', 24, 'regular');
|
|
170
250
|
const KotlinRegular = createIconURL('kotlin', 24, 'regular');
|
|
171
251
|
const LaptopRegular = createIconURL('laptop', 24, 'regular');
|
|
172
252
|
const LayerRegular = createIconURL('layer', 24, 'regular');
|
|
173
253
|
const LightbulbRegular = createIconURL('lightbulb', 24, 'regular');
|
|
174
254
|
const LineRegular = createIconURL('line', 24, 'regular');
|
|
255
|
+
const LineDashesRegular = createIconURL('line-dashes', 24, 'regular');
|
|
256
|
+
const LineHorizontal1Regular = createIconURL('line-horizontal-1', 24, 'regular');
|
|
257
|
+
const LineHorizontal1DashesRegular = createIconURL('line-horizontal-1-dashes', 24, 'regular');
|
|
175
258
|
const LinkRegular = createIconURL('link', 24, 'regular');
|
|
176
|
-
const LocalRegular = createIconURL('local', 24, 'regular');
|
|
177
259
|
const LocalLanguageRegular = createIconURL('local-language', 24, 'regular');
|
|
178
260
|
const LocationRegular = createIconURL('location', 24, 'regular');
|
|
179
|
-
const
|
|
261
|
+
const LocationArrowRegular = createIconURL('location-arrow', 24, 'regular');
|
|
262
|
+
const LockClosedRegular = createIconURL('lock-closed', 24, 'regular');
|
|
263
|
+
const LockOpenRegular = createIconURL('lock-open', 24, 'regular');
|
|
180
264
|
const LuggageRegular = createIconURL('luggage', 24, 'regular');
|
|
181
265
|
const MacosRegular = createIconURL('macos', 24, 'regular');
|
|
182
266
|
const MailRegular = createIconURL('mail', 24, 'regular');
|
|
267
|
+
const MailReadRegular = createIconURL('mail-read', 24, 'regular');
|
|
183
268
|
const MailboxRegular = createIconURL('mailbox', 24, 'regular');
|
|
184
269
|
const MapRegular = createIconURL('map', 24, 'regular');
|
|
185
270
|
const MarkdownRegular = createIconURL('markdown', 24, 'regular');
|
|
186
|
-
const
|
|
271
|
+
const MathSymbolsRegular = createIconURL('math-symbols', 24, 'regular');
|
|
187
272
|
const MegaphoneRegular = createIconURL('megaphone', 24, 'regular');
|
|
188
273
|
const MicRegular = createIconURL('mic', 24, 'regular');
|
|
189
274
|
const MoonRegular = createIconURL('moon', 24, 'regular');
|
|
190
|
-
const
|
|
275
|
+
const MoreCircleRegular = createIconURL('more-circle', 24, 'regular');
|
|
276
|
+
const MoreHorizontalRegular = createIconURL('more-horizontal', 24, 'regular');
|
|
277
|
+
const MoreVerticialRegular = createIconURL('more-verticial', 24, 'regular');
|
|
191
278
|
const MouseRegular = createIconURL('mouse', 24, 'regular');
|
|
192
279
|
const MovieRegular = createIconURL('movie', 24, 'regular');
|
|
193
|
-
const
|
|
280
|
+
const NetworkCheckRegular = createIconURL('network-check', 24, 'regular');
|
|
194
281
|
const NewsRegular = createIconURL('news', 24, 'regular');
|
|
195
282
|
const NextRegular = createIconURL('next', 24, 'regular');
|
|
196
283
|
const NoteRegular = createIconURL('note', 24, 'regular');
|
|
197
284
|
const NotebookRegular = createIconURL('notebook', 24, 'regular');
|
|
198
285
|
const NotepadRegular = createIconURL('notepad', 24, 'regular');
|
|
199
|
-
const
|
|
286
|
+
const NumberCircle0Regular = createIconURL('number-circle-0', 24, 'regular');
|
|
287
|
+
const NumberCircle1Regular = createIconURL('number-circle-1', 24, 'regular');
|
|
288
|
+
const NumberCircle2Regular = createIconURL('number-circle-2', 24, 'regular');
|
|
289
|
+
const NumberCircle3Regular = createIconURL('number-circle-3', 24, 'regular');
|
|
290
|
+
const NumberCircle4Regular = createIconURL('number-circle-4', 24, 'regular');
|
|
291
|
+
const NumberCircle5Regular = createIconURL('number-circle-5', 24, 'regular');
|
|
292
|
+
const NumberCircle6Regular = createIconURL('number-circle-6', 24, 'regular');
|
|
293
|
+
const NumberCircle7Regular = createIconURL('number-circle-7', 24, 'regular');
|
|
294
|
+
const NumberCircle8Regular = createIconURL('number-circle-8', 24, 'regular');
|
|
295
|
+
const NumberCircle9Regular = createIconURL('number-circle-9', 24, 'regular');
|
|
296
|
+
const NumberSymbolRegular = createIconURL('number-symbol', 24, 'regular');
|
|
297
|
+
const NumberSymbolCircleRegular = createIconURL('number-symbol-circle', 24, 'regular');
|
|
298
|
+
const NumberSymbolSquareRegular = createIconURL('number-symbol-square', 24, 'regular');
|
|
200
299
|
const OpacityRegular = createIconURL('opacity', 24, 'regular');
|
|
201
300
|
const OpenRegular = createIconURL('open', 24, 'regular');
|
|
301
|
+
const OpenOffRegular = createIconURL('open-off', 24, 'regular');
|
|
202
302
|
const OptionsRegular = createIconURL('options', 24, 'regular');
|
|
203
303
|
const OrganizationRegular = createIconURL('organization', 24, 'regular');
|
|
304
|
+
const OrganizationHorizontalRegular = createIconURL('organization-horizontal', 24, 'regular');
|
|
204
305
|
const OrientationRegular = createIconURL('orientation', 24, 'regular');
|
|
205
306
|
const OvalRegular = createIconURL('oval', 24, 'regular');
|
|
206
307
|
const OvenRegular = createIconURL('oven', 24, 'regular');
|
|
207
308
|
const PaddingRegular = createIconURL('padding', 24, 'regular');
|
|
208
|
-
const
|
|
209
|
-
const
|
|
309
|
+
const PageFitRegular = createIconURL('page-fit', 24, 'regular');
|
|
310
|
+
const PaintBrushRegular = createIconURL('paint-brush', 24, 'regular');
|
|
311
|
+
const PaintBucketRegular = createIconURL('paint-bucket', 24, 'regular');
|
|
210
312
|
const ParallelogramRegular = createIconURL('parallelogram', 24, 'regular');
|
|
211
313
|
const PasswordRegular = createIconURL('password', 24, 'regular');
|
|
212
314
|
const PauseRegular = createIconURL('pause', 24, 'regular');
|
|
315
|
+
const PauseCircleRegular = createIconURL('pause-circle', 24, 'regular');
|
|
213
316
|
const PaymentRegular = createIconURL('payment', 24, 'regular');
|
|
317
|
+
const PaymentWirelessRegular = createIconURL('payment-wireless', 24, 'regular');
|
|
214
318
|
const PenRegular = createIconURL('pen', 24, 'regular');
|
|
319
|
+
const PenOffRegular = createIconURL('pen-off', 24, 'regular');
|
|
215
320
|
const PentagonRegular = createIconURL('pentagon', 24, 'regular');
|
|
216
321
|
const PersonRegular = createIconURL('person', 24, 'regular');
|
|
322
|
+
const PersonVoiceRegular = createIconURL('person-voice', 24, 'regular');
|
|
217
323
|
const PhoneRegular = createIconURL('phone', 24, 'regular');
|
|
218
324
|
const PianoRegular = createIconURL('piano', 24, 'regular');
|
|
219
325
|
const PinRegular = createIconURL('pin', 24, 'regular');
|
|
220
326
|
const PipelineRegular = createIconURL('pipeline', 24, 'regular');
|
|
221
327
|
const PlayRegular = createIconURL('play', 24, 'regular');
|
|
328
|
+
const PlayCircleRegular = createIconURL('play-circle', 24, 'regular');
|
|
222
329
|
const PlaystoreRegular = createIconURL('playstore', 24, 'regular');
|
|
223
|
-
const
|
|
330
|
+
const PortHdmiRegular = createIconURL('port-hdmi', 24, 'regular');
|
|
331
|
+
const PortMicroUsbRegular = createIconURL('port-micro-usb', 24, 'regular');
|
|
332
|
+
const PortUsbARegular = createIconURL('port-usb-a', 24, 'regular');
|
|
333
|
+
const PortUsbCRegular = createIconURL('port-usb-c', 24, 'regular');
|
|
224
334
|
const PowerRegular = createIconURL('power', 24, 'regular');
|
|
225
|
-
const
|
|
335
|
+
const PreviewLinkRegular = createIconURL('preview-link', 24, 'regular');
|
|
226
336
|
const PreviousRegular = createIconURL('previous', 24, 'regular');
|
|
227
337
|
const PrintRegular = createIconURL('print', 24, 'regular');
|
|
228
338
|
const PulseRegular = createIconURL('pulse', 24, 'regular');
|
|
339
|
+
const PulseCircleRegular = createIconURL('pulse-circle', 24, 'regular');
|
|
340
|
+
const PulseSquareRegular = createIconURL('pulse-square', 24, 'regular');
|
|
229
341
|
const PythonRegular = createIconURL('python', 24, 'regular');
|
|
230
|
-
const
|
|
342
|
+
const QrCodeRegular = createIconURL('qr-code', 24, 'regular');
|
|
231
343
|
const QuestionRegular = createIconURL('question', 24, 'regular');
|
|
232
|
-
const
|
|
344
|
+
const QuestionCircleRegular = createIconURL('question-circle', 24, 'regular');
|
|
345
|
+
const RadioButtonRegular = createIconURL('radio-button', 24, 'regular');
|
|
233
346
|
const RamRegular = createIconURL('ram', 24, 'regular');
|
|
234
347
|
const RecordRegular = createIconURL('record', 24, 'regular');
|
|
348
|
+
const RecordStopRegular = createIconURL('record-stop', 24, 'regular');
|
|
235
349
|
const RectangleRegular = createIconURL('rectangle', 24, 'regular');
|
|
236
350
|
const RefineuiRegular = createIconURL('refineui', 24, 'regular');
|
|
237
351
|
const RewindRegular = createIconURL('rewind', 24, 'regular');
|
|
238
352
|
const RhombusRegular = createIconURL('rhombus', 24, 'regular');
|
|
239
353
|
const RibbonRegular = createIconURL('ribbon', 24, 'regular');
|
|
240
354
|
const RoadRegular = createIconURL('road', 24, 'regular');
|
|
355
|
+
const RoadConeRegular = createIconURL('road-cone', 24, 'regular');
|
|
241
356
|
const RocketRegular = createIconURL('rocket', 24, 'regular');
|
|
242
357
|
const RotationRegular = createIconURL('rotation', 24, 'regular');
|
|
243
358
|
const RouterRegular = createIconURL('router', 24, 'regular');
|
|
@@ -249,24 +364,40 @@ const ScalesRegular = createIconURL('scales', 24, 'regular');
|
|
|
249
364
|
const ScriptRegular = createIconURL('script', 24, 'regular');
|
|
250
365
|
const SearchRegular = createIconURL('search', 24, 'regular');
|
|
251
366
|
const SendRegular = createIconURL('send', 24, 'regular');
|
|
252
|
-
const
|
|
367
|
+
const SerialPortRegular = createIconURL('serial-port', 24, 'regular');
|
|
253
368
|
const ServerRegular = createIconURL('server', 24, 'regular');
|
|
254
|
-
const
|
|
369
|
+
const ServerLinkRegular = createIconURL('server-link', 24, 'regular');
|
|
370
|
+
const ServerPlayRegular = createIconURL('server-play', 24, 'regular');
|
|
371
|
+
const ServiceBellRegular = createIconURL('service-bell', 24, 'regular');
|
|
255
372
|
const SettingsRegular = createIconURL('settings', 24, 'regular');
|
|
256
|
-
const
|
|
373
|
+
const ShapeExcludeRegular = createIconURL('shape-exclude', 24, 'regular');
|
|
374
|
+
const ShapeIntersectRegular = createIconURL('shape-intersect', 24, 'regular');
|
|
375
|
+
const ShapeSubtractRegular = createIconURL('shape-subtract', 24, 'regular');
|
|
376
|
+
const ShapeUnionRegular = createIconURL('shape-union', 24, 'regular');
|
|
257
377
|
const ShapesRegular = createIconURL('shapes', 24, 'regular');
|
|
258
378
|
const ShareRegular = createIconURL('share', 24, 'regular');
|
|
259
|
-
const
|
|
379
|
+
const ShareAndroidRegular = createIconURL('share-android', 24, 'regular');
|
|
380
|
+
const ShareIosRegular = createIconURL('share-ios', 24, 'regular');
|
|
381
|
+
const ShellScriptRegular = createIconURL('shell-script', 24, 'regular');
|
|
260
382
|
const ShieldRegular = createIconURL('shield', 24, 'regular');
|
|
261
|
-
const
|
|
383
|
+
const ShoppingBagRegular = createIconURL('shopping-bag', 24, 'regular');
|
|
262
384
|
const SimRegular = createIconURL('sim', 24, 'regular');
|
|
263
|
-
const
|
|
385
|
+
const SlideAddRegular = createIconURL('slide-add', 24, 'regular');
|
|
386
|
+
const SlideContentRegular = createIconURL('slide-content', 24, 'regular');
|
|
387
|
+
const SlideEraserRegular = createIconURL('slide-eraser', 24, 'regular');
|
|
388
|
+
const SlideGridRegular = createIconURL('slide-grid', 24, 'regular');
|
|
389
|
+
const SlideHideRegular = createIconURL('slide-hide', 24, 'regular');
|
|
390
|
+
const SlideLayoutRegular = createIconURL('slide-layout', 24, 'regular');
|
|
264
391
|
const SmartwatchRegular = createIconURL('smartwatch', 24, 'regular');
|
|
265
|
-
const
|
|
392
|
+
const SoundSourceRegular = createIconURL('sound-source', 24, 'regular');
|
|
266
393
|
const SpacebarRegular = createIconURL('spacebar', 24, 'regular');
|
|
267
|
-
const
|
|
268
|
-
const
|
|
394
|
+
const SportBaseballRegular = createIconURL('sport-baseball', 24, 'regular');
|
|
395
|
+
const SportBasketballRegular = createIconURL('sport-basketball', 24, 'regular');
|
|
396
|
+
const SportSoccerRegular = createIconURL('sport-soccer', 24, 'regular');
|
|
397
|
+
const SprayCanRegular = createIconURL('spray-can', 24, 'regular');
|
|
269
398
|
const SquareRegular = createIconURL('square', 24, 'regular');
|
|
399
|
+
const SquareHintRegular = createIconURL('square-hint', 24, 'regular');
|
|
400
|
+
const SquareMultipleRegular = createIconURL('square-multiple', 24, 'regular');
|
|
270
401
|
const StarRegular = createIconURL('star', 24, 'regular');
|
|
271
402
|
const StopRegular = createIconURL('stop', 24, 'regular');
|
|
272
403
|
const SubtractRegular = createIconURL('subtract', 24, 'regular');
|
|
@@ -278,54 +409,110 @@ const TargetRegular = createIconURL('target', 24, 'regular');
|
|
|
278
409
|
const TemperatureRegular = createIconURL('temperature', 24, 'regular');
|
|
279
410
|
const TentRegular = createIconURL('tent', 24, 'regular');
|
|
280
411
|
const TextRegular = createIconURL('text', 24, 'regular');
|
|
412
|
+
const TextAlignCenterRegular = createIconURL('text-align-center', 24, 'regular');
|
|
413
|
+
const TextAlignJustifyRegular = createIconURL('text-align-justify', 24, 'regular');
|
|
414
|
+
const TextAlignLeftRegular = createIconURL('text-align-left', 24, 'regular');
|
|
415
|
+
const TextAlignRightRegular = createIconURL('text-align-right', 24, 'regular');
|
|
281
416
|
const TextboxRegular = createIconURL('textbox', 24, 'regular');
|
|
417
|
+
const TextboxAlignBottomRegular = createIconURL('textbox-align-bottom', 24, 'regular');
|
|
418
|
+
const TextboxAlignBottomCenterRegular = createIconURL('textbox-align-bottom-center', 24, 'regular');
|
|
419
|
+
const TextboxAlignBottomLeftRegular = createIconURL('textbox-align-bottom-left', 24, 'regular');
|
|
420
|
+
const TextboxAlignBottomRightRegular = createIconURL('textbox-align-bottom-right', 24, 'regular');
|
|
421
|
+
const TextboxAlignCenterRegular = createIconURL('textbox-align-center', 24, 'regular');
|
|
422
|
+
const TextboxAlignMiddleRegular = createIconURL('textbox-align-middle', 24, 'regular');
|
|
423
|
+
const TextboxAlignMiddleLeftRegular = createIconURL('textbox-align-middle-left', 24, 'regular');
|
|
424
|
+
const TextboxAlignMiddleRightRegular = createIconURL('textbox-align-middle-right', 24, 'regular');
|
|
425
|
+
const TextboxAlignTopRegular = createIconURL('textbox-align-top', 24, 'regular');
|
|
426
|
+
const TextboxAlignTopCenterRegular = createIconURL('textbox-align-top-center', 24, 'regular');
|
|
427
|
+
const TextboxAlignTopLeftRegular = createIconURL('textbox-align-top-left', 24, 'regular');
|
|
428
|
+
const TextboxAlignTopRightRegular = createIconURL('textbox-align-top-right', 24, 'regular');
|
|
282
429
|
const ThinkingRegular = createIconURL('thinking', 24, 'regular');
|
|
283
430
|
const TicketRegular = createIconURL('ticket', 24, 'regular');
|
|
284
431
|
const TimerRegular = createIconURL('timer', 24, 'regular');
|
|
285
|
-
const
|
|
432
|
+
const ToggleLeftRegular = createIconURL('toggle-left', 24, 'regular');
|
|
433
|
+
const ToggleMultipleRegular = createIconURL('toggle-multiple', 24, 'regular');
|
|
434
|
+
const ToggleRightRegular = createIconURL('toggle-right', 24, 'regular');
|
|
286
435
|
const ToolboxRegular = createIconURL('toolbox', 24, 'regular');
|
|
287
436
|
const TrophyRegular = createIconURL('trophy', 24, 'regular');
|
|
288
437
|
const TvRegular = createIconURL('tv', 24, 'regular');
|
|
289
438
|
const TypescriptRegular = createIconURL('typescript', 24, 'regular');
|
|
290
439
|
const UmbrellaRegular = createIconURL('umbrella', 24, 'regular');
|
|
291
440
|
const UsbRegular = createIconURL('usb', 24, 'regular');
|
|
441
|
+
const UsbCableRegular = createIconURL('usb-cable', 24, 'regular');
|
|
292
442
|
const VerifiedRegular = createIconURL('verified', 24, 'regular');
|
|
293
443
|
const VideoRegular = createIconURL('video', 24, 'regular');
|
|
444
|
+
const VideoClipRegular = createIconURL('video-clip', 24, 'regular');
|
|
445
|
+
const VideoPlayPauseRegular = createIconURL('video-play-pause', 24, 'regular');
|
|
294
446
|
const VoicemailRegular = createIconURL('voicemail', 24, 'regular');
|
|
295
447
|
const VoteRegular = createIconURL('vote', 24, 'regular');
|
|
296
|
-
const
|
|
448
|
+
const WalkieTalkieRegular = createIconURL('walkie-talkie', 24, 'regular');
|
|
297
449
|
const WalletRegular = createIconURL('wallet', 24, 'regular');
|
|
298
450
|
const WandRegular = createIconURL('wand', 24, 'regular');
|
|
299
451
|
const WarningRegular = createIconURL('warning', 24, 'regular');
|
|
300
452
|
const WasherRegular = createIconURL('washer', 24, 'regular');
|
|
301
453
|
const WaterRegular = createIconURL('water', 24, 'regular');
|
|
302
|
-
const
|
|
454
|
+
const WeatherBlowingSnowRegular = createIconURL('weather-blowing-snow', 24, 'regular');
|
|
455
|
+
const WeatherCloudyRegular = createIconURL('weather-cloudy', 24, 'regular');
|
|
456
|
+
const WeatherRainRegular = createIconURL('weather-rain', 24, 'regular');
|
|
457
|
+
const WeatherSnowRegular = createIconURL('weather-snow', 24, 'regular');
|
|
458
|
+
const WeatherSnowflakeRegular = createIconURL('weather-snowflake', 24, 'regular');
|
|
459
|
+
const WeatherSunnyRegular = createIconURL('weather-sunny', 24, 'regular');
|
|
460
|
+
const WeatherThunderstormRegular = createIconURL('weather-thunderstorm', 24, 'regular');
|
|
303
461
|
const WebRegular = createIconURL('web', 24, 'regular');
|
|
304
|
-
const
|
|
462
|
+
const Wifi1Regular = createIconURL('wifi-1', 24, 'regular');
|
|
463
|
+
const Wifi2Regular = createIconURL('wifi-2', 24, 'regular');
|
|
464
|
+
const Wifi3Regular = createIconURL('wifi-3', 24, 'regular');
|
|
465
|
+
const Wifi4Regular = createIconURL('wifi-4', 24, 'regular');
|
|
305
466
|
const WindowsRegular = createIconURL('windows', 24, 'regular');
|
|
306
467
|
const WrenchRegular = createIconURL('wrench', 24, 'regular');
|
|
307
468
|
const XrayRegular = createIconURL('xray', 24, 'regular');
|
|
308
|
-
const ZoomRegular = createIconURL('zoom', 24, 'regular');
|
|
469
|
+
const ZoomRegular = createIconURL('zoom', 24, 'regular');
|
|
470
|
+
const ZoomInRegular = createIconURL('zoom-in', 24, 'regular');
|
|
471
|
+
const ZoomOutRegular = createIconURL('zoom-out', 24, 'regular');
|
|
309
472
|
|
|
310
473
|
// === Filled style icons ===
|
|
311
|
-
const
|
|
474
|
+
const AccessTimeFilled = createIconURL('access-time', 24, 'filled');
|
|
312
475
|
const AccessibilityFilled = createIconURL('accessibility', 24, 'filled');
|
|
313
476
|
const AddFilled = createIconURL('add', 24, 'filled');
|
|
477
|
+
const AddCircleFilled = createIconURL('add-circle', 24, 'filled');
|
|
478
|
+
const AddSquareFilled = createIconURL('add-square', 24, 'filled');
|
|
314
479
|
const AirplaneFilled = createIconURL('airplane', 24, 'filled');
|
|
315
480
|
const AlbumFilled = createIconURL('album', 24, 'filled');
|
|
316
481
|
const AlertFilled = createIconURL('alert', 24, 'filled');
|
|
317
|
-
const
|
|
482
|
+
const AlertBadgeFilled = createIconURL('alert-badge', 24, 'filled');
|
|
483
|
+
const AlertOffFilled = createIconURL('alert-off', 24, 'filled');
|
|
484
|
+
const AlignBottomFilled = createIconURL('align-bottom', 24, 'filled');
|
|
485
|
+
const AlignCenterHorizontalFilled = createIconURL('align-center-horizontal', 24, 'filled');
|
|
486
|
+
const AlignCenterVerticalFilled = createIconURL('align-center-vertical', 24, 'filled');
|
|
487
|
+
const AlignLeftFilled = createIconURL('align-left', 24, 'filled');
|
|
488
|
+
const AlignRightFilled = createIconURL('align-right', 24, 'filled');
|
|
489
|
+
const AlignTopFilled = createIconURL('align-top', 24, 'filled');
|
|
318
490
|
const AndroidFilled = createIconURL('android', 24, 'filled');
|
|
319
|
-
const
|
|
491
|
+
const AppFolderFilled = createIconURL('app-folder', 24, 'filled');
|
|
492
|
+
const AppRecentFilled = createIconURL('app-recent', 24, 'filled');
|
|
493
|
+
const AppTitleFilled = createIconURL('app-title', 24, 'filled');
|
|
320
494
|
const AppstoreFilled = createIconURL('appstore', 24, 'filled');
|
|
321
495
|
const AutosumFilled = createIconURL('autosum', 24, 'filled');
|
|
322
496
|
const BackpackFilled = createIconURL('backpack', 24, 'filled');
|
|
323
497
|
const BackspaceFilled = createIconURL('backspace', 24, 'filled');
|
|
324
498
|
const BadgeFilled = createIconURL('badge', 24, 'filled');
|
|
325
499
|
const BalloonFilled = createIconURL('balloon', 24, 'filled');
|
|
326
|
-
const
|
|
327
|
-
const
|
|
328
|
-
const
|
|
500
|
+
const BarChartHorizontalFilled = createIconURL('bar-chart-horizontal', 24, 'filled');
|
|
501
|
+
const BarChartHorizontalDescendingFilled = createIconURL('bar-chart-horizontal-descending', 24, 'filled');
|
|
502
|
+
const BarChartVerticalFilled = createIconURL('bar-chart-vertical', 24, 'filled');
|
|
503
|
+
const BarChartVerticalDescendingFilled = createIconURL('bar-chart-vertical-descending', 24, 'filled');
|
|
504
|
+
const BarcodeScannerFilled = createIconURL('barcode-scanner', 24, 'filled');
|
|
505
|
+
const Battery0Filled = createIconURL('battery-0', 24, 'filled');
|
|
506
|
+
const Battery10Filled = createIconURL('battery-10', 24, 'filled');
|
|
507
|
+
const Battery100Filled = createIconURL('battery-100', 24, 'filled');
|
|
508
|
+
const Battery20Filled = createIconURL('battery-20', 24, 'filled');
|
|
509
|
+
const Battery30Filled = createIconURL('battery-30', 24, 'filled');
|
|
510
|
+
const Battery40Filled = createIconURL('battery-40', 24, 'filled');
|
|
511
|
+
const Battery50Filled = createIconURL('battery-50', 24, 'filled');
|
|
512
|
+
const Battery60Filled = createIconURL('battery-60', 24, 'filled');
|
|
513
|
+
const Battery70Filled = createIconURL('battery-70', 24, 'filled');
|
|
514
|
+
const Battery80Filled = createIconURL('battery-80', 24, 'filled');
|
|
515
|
+
const Battery90Filled = createIconURL('battery-90', 24, 'filled');
|
|
329
516
|
const BlockFilled = createIconURL('block', 24, 'filled');
|
|
330
517
|
const BluetoothFilled = createIconURL('bluetooth', 24, 'filled');
|
|
331
518
|
const BlurFilled = createIconURL('blur', 24, 'filled');
|
|
@@ -337,23 +524,30 @@ const CalculatorFilled = createIconURL('calculator', 24, 'filled');
|
|
|
337
524
|
const CalendarFilled = createIconURL('calendar', 24, 'filled');
|
|
338
525
|
const CameraFilled = createIconURL('camera', 24, 'filled');
|
|
339
526
|
const CartFilled = createIconURL('cart', 24, 'filled');
|
|
340
|
-
const
|
|
527
|
+
const CartonBoxFilled = createIconURL('carton-box', 24, 'filled');
|
|
341
528
|
const ChartFilled = createIconURL('chart', 24, 'filled');
|
|
342
529
|
const ChatFilled = createIconURL('chat', 24, 'filled');
|
|
530
|
+
const ChatAddFilled = createIconURL('chat-add', 24, 'filled');
|
|
531
|
+
const ChatEmptyFilled = createIconURL('chat-empty', 24, 'filled');
|
|
343
532
|
const CheckmarkFilled = createIconURL('checkmark', 24, 'filled');
|
|
344
533
|
const ChessFilled = createIconURL('chess', 24, 'filled');
|
|
345
|
-
const
|
|
534
|
+
const ChevronDownFilled = createIconURL('chevron-down', 24, 'filled');
|
|
535
|
+
const ChevronLeftFilled = createIconURL('chevron-left', 24, 'filled');
|
|
536
|
+
const ChevronRightFilled = createIconURL('chevron-right', 24, 'filled');
|
|
537
|
+
const ChevronUpFilled = createIconURL('chevron-up', 24, 'filled');
|
|
346
538
|
const CircleFilled = createIconURL('circle', 24, 'filled');
|
|
347
539
|
const ClipboardFilled = createIconURL('clipboard', 24, 'filled');
|
|
348
540
|
const ClockFilled = createIconURL('clock', 24, 'filled');
|
|
541
|
+
const ClockAlarmFilled = createIconURL('clock-alarm', 24, 'filled');
|
|
349
542
|
const CloudFilled = createIconURL('cloud', 24, 'filled');
|
|
350
543
|
const CloverFilled = createIconURL('clover', 24, 'filled');
|
|
351
544
|
const CodeFilled = createIconURL('code', 24, 'filled');
|
|
545
|
+
const CodeBlockFilled = createIconURL('code-block', 24, 'filled');
|
|
352
546
|
const CommaFilled = createIconURL('comma', 24, 'filled');
|
|
353
547
|
const CommentFilled = createIconURL('comment', 24, 'filled');
|
|
354
548
|
const ConeFilled = createIconURL('cone', 24, 'filled');
|
|
355
549
|
const ContrastFilled = createIconURL('contrast', 24, 'filled');
|
|
356
|
-
const
|
|
550
|
+
const ControlButtonFilled = createIconURL('control-button', 24, 'filled');
|
|
357
551
|
const CookieFilled = createIconURL('cookie', 24, 'filled');
|
|
358
552
|
const CopyFilled = createIconURL('copy', 24, 'filled');
|
|
359
553
|
const CouchFilled = createIconURL('couch', 24, 'filled');
|
|
@@ -367,47 +561,73 @@ const CutFilled = createIconURL('cut', 24, 'filled');
|
|
|
367
561
|
const DartFilled = createIconURL('dart', 24, 'filled');
|
|
368
562
|
const DatabaseFilled = createIconURL('database', 24, 'filled');
|
|
369
563
|
const DeleteFilled = createIconURL('delete', 24, 'filled');
|
|
564
|
+
const DeleteOffFilled = createIconURL('delete-off', 24, 'filled');
|
|
370
565
|
const DentistFilled = createIconURL('dentist', 24, 'filled');
|
|
371
566
|
const DeskFilled = createIconURL('desk', 24, 'filled');
|
|
372
567
|
const DesktopFilled = createIconURL('desktop', 24, 'filled');
|
|
568
|
+
const DesktopMacFilled = createIconURL('desktop-mac', 24, 'filled');
|
|
373
569
|
const DialpadFilled = createIconURL('dialpad', 24, 'filled');
|
|
374
570
|
const DiamondFilled = createIconURL('diamond', 24, 'filled');
|
|
375
571
|
const DismissFilled = createIconURL('dismiss', 24, 'filled');
|
|
572
|
+
const DismissCircleFilled = createIconURL('dismiss-circle', 24, 'filled');
|
|
573
|
+
const DismissSquareFilled = createIconURL('dismiss-square', 24, 'filled');
|
|
376
574
|
const DoctorFilled = createIconURL('doctor', 24, 'filled');
|
|
377
575
|
const DocumentFilled = createIconURL('document', 24, 'filled');
|
|
576
|
+
const DocumentBorderFilled = createIconURL('document-border', 24, 'filled');
|
|
378
577
|
const DoorFilled = createIconURL('door', 24, 'filled');
|
|
379
578
|
const DragFilled = createIconURL('drag', 24, 'filled');
|
|
380
579
|
const DrawerFilled = createIconURL('drawer', 24, 'filled');
|
|
381
580
|
const DropFilled = createIconURL('drop', 24, 'filled');
|
|
382
|
-
const
|
|
581
|
+
const DualScreenFilled = createIconURL('dual-screen', 24, 'filled');
|
|
383
582
|
const DumbbellFilled = createIconURL('dumbbell', 24, 'filled');
|
|
384
583
|
const DustFilled = createIconURL('dust', 24, 'filled');
|
|
385
584
|
const EarthFilled = createIconURL('earth', 24, 'filled');
|
|
386
585
|
const EditFilled = createIconURL('edit', 24, 'filled');
|
|
586
|
+
const EditOffFilled = createIconURL('edit-off', 24, 'filled');
|
|
387
587
|
const ElevatorFilled = createIconURL('elevator', 24, 'filled');
|
|
388
588
|
const EmojiFilled = createIconURL('emoji', 24, 'filled');
|
|
589
|
+
const EmojiAngryFilled = createIconURL('emoji-angry', 24, 'filled');
|
|
590
|
+
const EmojiCoolFilled = createIconURL('emoji-cool', 24, 'filled');
|
|
591
|
+
const EmojiGrimacingFilled = createIconURL('emoji-grimacing', 24, 'filled');
|
|
592
|
+
const EmojiLaughFilled = createIconURL('emoji-laugh', 24, 'filled');
|
|
593
|
+
const EmojiMehFilled = createIconURL('emoji-meh', 24, 'filled');
|
|
594
|
+
const EmojiSadFilled = createIconURL('emoji-sad', 24, 'filled');
|
|
595
|
+
const EmojiSurpriseFilled = createIconURL('emoji-surprise', 24, 'filled');
|
|
389
596
|
const EngineFilled = createIconURL('engine', 24, 'filled');
|
|
390
597
|
const EqualFilled = createIconURL('equal', 24, 'filled');
|
|
391
|
-
const
|
|
598
|
+
const EqualCircleFilled = createIconURL('equal-circle', 24, 'filled');
|
|
599
|
+
const EqualOffFilled = createIconURL('equal-off', 24, 'filled');
|
|
600
|
+
const ErrorCircleFilled = createIconURL('error-circle', 24, 'filled');
|
|
392
601
|
const EyeFilled = createIconURL('eye', 24, 'filled');
|
|
602
|
+
const EyeOffFilled = createIconURL('eye-off', 24, 'filled');
|
|
393
603
|
const EyedropperFilled = createIconURL('eyedropper', 24, 'filled');
|
|
394
|
-
const
|
|
604
|
+
const EyedropperOffFilled = createIconURL('eyedropper-off', 24, 'filled');
|
|
605
|
+
const FastForwardFilled = createIconURL('fast-forward', 24, 'filled');
|
|
395
606
|
const FilmstripFilled = createIconURL('filmstrip', 24, 'filled');
|
|
607
|
+
const FilmstripOffFilled = createIconURL('filmstrip-off', 24, 'filled');
|
|
396
608
|
const FilterFilled = createIconURL('filter', 24, 'filled');
|
|
397
609
|
const FireFilled = createIconURL('fire', 24, 'filled');
|
|
398
610
|
const FlagFilled = createIconURL('flag', 24, 'filled');
|
|
611
|
+
const FlagOffFilled = createIconURL('flag-off', 24, 'filled');
|
|
399
612
|
const FlashFilled = createIconURL('flash', 24, 'filled');
|
|
613
|
+
const FlashOffFilled = createIconURL('flash-off', 24, 'filled');
|
|
400
614
|
const FlashlightFilled = createIconURL('flashlight', 24, 'filled');
|
|
401
|
-
const
|
|
615
|
+
const FlashlightOffFilled = createIconURL('flashlight-off', 24, 'filled');
|
|
616
|
+
const FlipHorizontalFilled = createIconURL('flip-horizontal', 24, 'filled');
|
|
617
|
+
const FlipVerticialFilled = createIconURL('flip-verticial', 24, 'filled');
|
|
402
618
|
const FolderFilled = createIconURL('folder', 24, 'filled');
|
|
619
|
+
const FolderOpenFilled = createIconURL('folder-open', 24, 'filled');
|
|
403
620
|
const FrameFilled = createIconURL('frame', 24, 'filled');
|
|
404
|
-
const
|
|
621
|
+
const FullScreenMaximizeFilled = createIconURL('full-screen-maximize', 24, 'filled');
|
|
622
|
+
const FullScreenMinimizeFilled = createIconURL('full-screen-minimize', 24, 'filled');
|
|
405
623
|
const GamesFilled = createIconURL('games', 24, 'filled');
|
|
406
|
-
const
|
|
624
|
+
const GanttChartFilled = createIconURL('gantt-chart', 24, 'filled');
|
|
407
625
|
const GasFilled = createIconURL('gas', 24, 'filled');
|
|
626
|
+
const GasStationFilled = createIconURL('gas-station', 24, 'filled');
|
|
408
627
|
const GavelFilled = createIconURL('gavel', 24, 'filled');
|
|
409
628
|
const GifFilled = createIconURL('gif', 24, 'filled');
|
|
410
629
|
const GiftFilled = createIconURL('gift', 24, 'filled');
|
|
630
|
+
const GiftCardFilled = createIconURL('gift-card', 24, 'filled');
|
|
411
631
|
const GitFilled = createIconURL('git', 24, 'filled');
|
|
412
632
|
const GlassesFilled = createIconURL('glasses', 24, 'filled');
|
|
413
633
|
const GlobalFilled = createIconURL('global', 24, 'filled');
|
|
@@ -415,102 +635,160 @@ const GridFilled = createIconURL('grid', 24, 'filled');
|
|
|
415
635
|
const GuestFilled = createIconURL('guest', 24, 'filled');
|
|
416
636
|
const GuitarFilled = createIconURL('guitar', 24, 'filled');
|
|
417
637
|
const HammerFilled = createIconURL('hammer', 24, 'filled');
|
|
418
|
-
const
|
|
419
|
-
const
|
|
638
|
+
const HardDriveFilled = createIconURL('hard-drive', 24, 'filled');
|
|
639
|
+
const HatGraduationFilled = createIconURL('hat-graduation', 24, 'filled');
|
|
420
640
|
const HdFilled = createIconURL('hd', 24, 'filled');
|
|
421
641
|
const HdrFilled = createIconURL('hdr', 24, 'filled');
|
|
642
|
+
const HdrOffFilled = createIconURL('hdr-off', 24, 'filled');
|
|
422
643
|
const HeadphonesFilled = createIconURL('headphones', 24, 'filled');
|
|
423
|
-
const
|
|
644
|
+
const HeadphonesMicFilled = createIconURL('headphones-mic', 24, 'filled');
|
|
645
|
+
const HeadsetVrFilled = createIconURL('headset-vr', 24, 'filled');
|
|
424
646
|
const HeartFilled = createIconURL('heart', 24, 'filled');
|
|
647
|
+
const HeartBrokenFilled = createIconURL('heart-broken', 24, 'filled');
|
|
425
648
|
const HexagonFilled = createIconURL('hexagon', 24, 'filled');
|
|
426
649
|
const HighlightFilled = createIconURL('highlight', 24, 'filled');
|
|
427
650
|
const HighwayFilled = createIconURL('highway', 24, 'filled');
|
|
428
651
|
const HomeFilled = createIconURL('home', 24, 'filled');
|
|
652
|
+
const HomeCheckmarkFilled = createIconURL('home-checkmark', 24, 'filled');
|
|
429
653
|
const HourglassFilled = createIconURL('hourglass', 24, 'filled');
|
|
654
|
+
const HourglassHalfFilled = createIconURL('hourglass-half', 24, 'filled');
|
|
655
|
+
const HourglassOneQuarterFilled = createIconURL('hourglass-one-quarter', 24, 'filled');
|
|
656
|
+
const HourglassThreeQuarterFilled = createIconURL('hourglass-three-quarter', 24, 'filled');
|
|
430
657
|
const HtmlFilled = createIconURL('html', 24, 'filled');
|
|
431
658
|
const ImageFilled = createIconURL('image', 24, 'filled');
|
|
659
|
+
const ImageCircleFilled = createIconURL('image-circle', 24, 'filled');
|
|
432
660
|
const ImportantFilled = createIconURL('important', 24, 'filled');
|
|
433
661
|
const IncognitoFilled = createIconURL('incognito', 24, 'filled');
|
|
434
662
|
const InfoFilled = createIconURL('info', 24, 'filled');
|
|
435
663
|
const IosFilled = createIconURL('ios', 24, 'filled');
|
|
664
|
+
const IosArrowLtrFilled = createIconURL('ios-arrow-ltr', 24, 'filled');
|
|
665
|
+
const IosArrowRtlFilled = createIconURL('ios-arrow-rtl', 24, 'filled');
|
|
666
|
+
const IosChevronLtrFilled = createIconURL('ios-chevron-ltr', 24, 'filled');
|
|
667
|
+
const IosChevronRtlFilled = createIconURL('ios-chevron-rtl', 24, 'filled');
|
|
436
668
|
const IotFilled = createIconURL('iot', 24, 'filled');
|
|
437
669
|
const JavascriptFilled = createIconURL('javascript', 24, 'filled');
|
|
438
670
|
const JoystickFilled = createIconURL('joystick', 24, 'filled');
|
|
439
671
|
const JsonFilled = createIconURL('json', 24, 'filled');
|
|
672
|
+
const JsonFileFilled = createIconURL('json-file', 24, 'filled');
|
|
440
673
|
const KeyFilled = createIconURL('key', 24, 'filled');
|
|
674
|
+
const KeyMultipleFilled = createIconURL('key-multiple', 24, 'filled');
|
|
441
675
|
const KeyboardFilled = createIconURL('keyboard', 24, 'filled');
|
|
676
|
+
const KeyboardBackspaceFilled = createIconURL('keyboard-backspace', 24, 'filled');
|
|
677
|
+
const KeyboardCommandFilled = createIconURL('keyboard-command', 24, 'filled');
|
|
678
|
+
const KeyboardLockFilled = createIconURL('keyboard-lock', 24, 'filled');
|
|
679
|
+
const KeyboardOffFilled = createIconURL('keyboard-off', 24, 'filled');
|
|
680
|
+
const KeyboardOptionFilled = createIconURL('keyboard-option', 24, 'filled');
|
|
681
|
+
const KeyboardReturnFilled = createIconURL('keyboard-return', 24, 'filled');
|
|
682
|
+
const KeyboardShiftFilled = createIconURL('keyboard-shift', 24, 'filled');
|
|
683
|
+
const KeyboardShiftUppercaseFilled = createIconURL('keyboard-shift-uppercase', 24, 'filled');
|
|
684
|
+
const KeyboardTabFilled = createIconURL('keyboard-tab', 24, 'filled');
|
|
442
685
|
const KioskFilled = createIconURL('kiosk', 24, 'filled');
|
|
443
686
|
const KotlinFilled = createIconURL('kotlin', 24, 'filled');
|
|
444
687
|
const LaptopFilled = createIconURL('laptop', 24, 'filled');
|
|
445
688
|
const LayerFilled = createIconURL('layer', 24, 'filled');
|
|
446
689
|
const LightbulbFilled = createIconURL('lightbulb', 24, 'filled');
|
|
447
690
|
const LineFilled = createIconURL('line', 24, 'filled');
|
|
691
|
+
const LineDashesFilled = createIconURL('line-dashes', 24, 'filled');
|
|
692
|
+
const LineHorizontal1Filled = createIconURL('line-horizontal-1', 24, 'filled');
|
|
693
|
+
const LineHorizontal1DashesFilled = createIconURL('line-horizontal-1-dashes', 24, 'filled');
|
|
448
694
|
const LinkFilled = createIconURL('link', 24, 'filled');
|
|
449
|
-
const LocalFilled = createIconURL('local', 24, 'filled');
|
|
450
695
|
const LocalLanguageFilled = createIconURL('local-language', 24, 'filled');
|
|
451
696
|
const LocationFilled = createIconURL('location', 24, 'filled');
|
|
452
|
-
const
|
|
697
|
+
const LocationArrowFilled = createIconURL('location-arrow', 24, 'filled');
|
|
698
|
+
const LockClosedFilled = createIconURL('lock-closed', 24, 'filled');
|
|
699
|
+
const LockOpenFilled = createIconURL('lock-open', 24, 'filled');
|
|
453
700
|
const LuggageFilled = createIconURL('luggage', 24, 'filled');
|
|
454
701
|
const MacosFilled = createIconURL('macos', 24, 'filled');
|
|
455
702
|
const MailFilled = createIconURL('mail', 24, 'filled');
|
|
703
|
+
const MailReadFilled = createIconURL('mail-read', 24, 'filled');
|
|
456
704
|
const MailboxFilled = createIconURL('mailbox', 24, 'filled');
|
|
457
705
|
const MapFilled = createIconURL('map', 24, 'filled');
|
|
458
706
|
const MarkdownFilled = createIconURL('markdown', 24, 'filled');
|
|
459
|
-
const
|
|
707
|
+
const MathSymbolsFilled = createIconURL('math-symbols', 24, 'filled');
|
|
460
708
|
const MegaphoneFilled = createIconURL('megaphone', 24, 'filled');
|
|
461
709
|
const MicFilled = createIconURL('mic', 24, 'filled');
|
|
462
710
|
const MoonFilled = createIconURL('moon', 24, 'filled');
|
|
463
|
-
const
|
|
711
|
+
const MoreCircleFilled = createIconURL('more-circle', 24, 'filled');
|
|
712
|
+
const MoreHorizontalFilled = createIconURL('more-horizontal', 24, 'filled');
|
|
713
|
+
const MoreVerticialFilled = createIconURL('more-verticial', 24, 'filled');
|
|
464
714
|
const MouseFilled = createIconURL('mouse', 24, 'filled');
|
|
465
715
|
const MovieFilled = createIconURL('movie', 24, 'filled');
|
|
466
|
-
const
|
|
716
|
+
const NetworkCheckFilled = createIconURL('network-check', 24, 'filled');
|
|
467
717
|
const NewsFilled = createIconURL('news', 24, 'filled');
|
|
468
718
|
const NextFilled = createIconURL('next', 24, 'filled');
|
|
469
719
|
const NoteFilled = createIconURL('note', 24, 'filled');
|
|
470
720
|
const NotebookFilled = createIconURL('notebook', 24, 'filled');
|
|
471
721
|
const NotepadFilled = createIconURL('notepad', 24, 'filled');
|
|
472
|
-
const
|
|
722
|
+
const NumberCircle0Filled = createIconURL('number-circle-0', 24, 'filled');
|
|
723
|
+
const NumberCircle1Filled = createIconURL('number-circle-1', 24, 'filled');
|
|
724
|
+
const NumberCircle2Filled = createIconURL('number-circle-2', 24, 'filled');
|
|
725
|
+
const NumberCircle3Filled = createIconURL('number-circle-3', 24, 'filled');
|
|
726
|
+
const NumberCircle4Filled = createIconURL('number-circle-4', 24, 'filled');
|
|
727
|
+
const NumberCircle5Filled = createIconURL('number-circle-5', 24, 'filled');
|
|
728
|
+
const NumberCircle6Filled = createIconURL('number-circle-6', 24, 'filled');
|
|
729
|
+
const NumberCircle7Filled = createIconURL('number-circle-7', 24, 'filled');
|
|
730
|
+
const NumberCircle8Filled = createIconURL('number-circle-8', 24, 'filled');
|
|
731
|
+
const NumberCircle9Filled = createIconURL('number-circle-9', 24, 'filled');
|
|
732
|
+
const NumberSymbolFilled = createIconURL('number-symbol', 24, 'filled');
|
|
733
|
+
const NumberSymbolCircleFilled = createIconURL('number-symbol-circle', 24, 'filled');
|
|
734
|
+
const NumberSymbolSquareFilled = createIconURL('number-symbol-square', 24, 'filled');
|
|
473
735
|
const OpacityFilled = createIconURL('opacity', 24, 'filled');
|
|
474
736
|
const OpenFilled = createIconURL('open', 24, 'filled');
|
|
737
|
+
const OpenOffFilled = createIconURL('open-off', 24, 'filled');
|
|
475
738
|
const OptionsFilled = createIconURL('options', 24, 'filled');
|
|
476
739
|
const OrganizationFilled = createIconURL('organization', 24, 'filled');
|
|
740
|
+
const OrganizationHorizontalFilled = createIconURL('organization-horizontal', 24, 'filled');
|
|
477
741
|
const OrientationFilled = createIconURL('orientation', 24, 'filled');
|
|
478
742
|
const OvalFilled = createIconURL('oval', 24, 'filled');
|
|
479
743
|
const OvenFilled = createIconURL('oven', 24, 'filled');
|
|
480
744
|
const PaddingFilled = createIconURL('padding', 24, 'filled');
|
|
481
|
-
const
|
|
482
|
-
const
|
|
745
|
+
const PageFitFilled = createIconURL('page-fit', 24, 'filled');
|
|
746
|
+
const PaintBrushFilled = createIconURL('paint-brush', 24, 'filled');
|
|
747
|
+
const PaintBucketFilled = createIconURL('paint-bucket', 24, 'filled');
|
|
483
748
|
const ParallelogramFilled = createIconURL('parallelogram', 24, 'filled');
|
|
484
749
|
const PasswordFilled = createIconURL('password', 24, 'filled');
|
|
485
750
|
const PauseFilled = createIconURL('pause', 24, 'filled');
|
|
751
|
+
const PauseCircleFilled = createIconURL('pause-circle', 24, 'filled');
|
|
486
752
|
const PaymentFilled = createIconURL('payment', 24, 'filled');
|
|
753
|
+
const PaymentWirelessFilled = createIconURL('payment-wireless', 24, 'filled');
|
|
487
754
|
const PenFilled = createIconURL('pen', 24, 'filled');
|
|
755
|
+
const PenOffFilled = createIconURL('pen-off', 24, 'filled');
|
|
488
756
|
const PentagonFilled = createIconURL('pentagon', 24, 'filled');
|
|
489
757
|
const PersonFilled = createIconURL('person', 24, 'filled');
|
|
758
|
+
const PersonVoiceFilled = createIconURL('person-voice', 24, 'filled');
|
|
490
759
|
const PhoneFilled = createIconURL('phone', 24, 'filled');
|
|
491
760
|
const PianoFilled = createIconURL('piano', 24, 'filled');
|
|
492
761
|
const PinFilled = createIconURL('pin', 24, 'filled');
|
|
493
762
|
const PipelineFilled = createIconURL('pipeline', 24, 'filled');
|
|
494
763
|
const PlayFilled = createIconURL('play', 24, 'filled');
|
|
764
|
+
const PlayCircleFilled = createIconURL('play-circle', 24, 'filled');
|
|
495
765
|
const PlaystoreFilled = createIconURL('playstore', 24, 'filled');
|
|
496
|
-
const
|
|
766
|
+
const PortHdmiFilled = createIconURL('port-hdmi', 24, 'filled');
|
|
767
|
+
const PortMicroUsbFilled = createIconURL('port-micro-usb', 24, 'filled');
|
|
768
|
+
const PortUsbAFilled = createIconURL('port-usb-a', 24, 'filled');
|
|
769
|
+
const PortUsbCFilled = createIconURL('port-usb-c', 24, 'filled');
|
|
497
770
|
const PowerFilled = createIconURL('power', 24, 'filled');
|
|
498
|
-
const
|
|
771
|
+
const PreviewLinkFilled = createIconURL('preview-link', 24, 'filled');
|
|
499
772
|
const PreviousFilled = createIconURL('previous', 24, 'filled');
|
|
500
773
|
const PrintFilled = createIconURL('print', 24, 'filled');
|
|
501
774
|
const PulseFilled = createIconURL('pulse', 24, 'filled');
|
|
775
|
+
const PulseCircleFilled = createIconURL('pulse-circle', 24, 'filled');
|
|
776
|
+
const PulseSquareFilled = createIconURL('pulse-square', 24, 'filled');
|
|
502
777
|
const PythonFilled = createIconURL('python', 24, 'filled');
|
|
503
|
-
const
|
|
778
|
+
const QrCodeFilled = createIconURL('qr-code', 24, 'filled');
|
|
504
779
|
const QuestionFilled = createIconURL('question', 24, 'filled');
|
|
505
|
-
const
|
|
780
|
+
const QuestionCircleFilled = createIconURL('question-circle', 24, 'filled');
|
|
781
|
+
const RadioButtonFilled = createIconURL('radio-button', 24, 'filled');
|
|
506
782
|
const RamFilled = createIconURL('ram', 24, 'filled');
|
|
507
783
|
const RecordFilled = createIconURL('record', 24, 'filled');
|
|
784
|
+
const RecordStopFilled = createIconURL('record-stop', 24, 'filled');
|
|
508
785
|
const RectangleFilled = createIconURL('rectangle', 24, 'filled');
|
|
509
786
|
const RefineuiFilled = createIconURL('refineui', 24, 'filled');
|
|
510
787
|
const RewindFilled = createIconURL('rewind', 24, 'filled');
|
|
511
788
|
const RhombusFilled = createIconURL('rhombus', 24, 'filled');
|
|
512
789
|
const RibbonFilled = createIconURL('ribbon', 24, 'filled');
|
|
513
790
|
const RoadFilled = createIconURL('road', 24, 'filled');
|
|
791
|
+
const RoadConeFilled = createIconURL('road-cone', 24, 'filled');
|
|
514
792
|
const RocketFilled = createIconURL('rocket', 24, 'filled');
|
|
515
793
|
const RotationFilled = createIconURL('rotation', 24, 'filled');
|
|
516
794
|
const RouterFilled = createIconURL('router', 24, 'filled');
|
|
@@ -522,24 +800,40 @@ const ScalesFilled = createIconURL('scales', 24, 'filled');
|
|
|
522
800
|
const ScriptFilled = createIconURL('script', 24, 'filled');
|
|
523
801
|
const SearchFilled = createIconURL('search', 24, 'filled');
|
|
524
802
|
const SendFilled = createIconURL('send', 24, 'filled');
|
|
525
|
-
const
|
|
803
|
+
const SerialPortFilled = createIconURL('serial-port', 24, 'filled');
|
|
526
804
|
const ServerFilled = createIconURL('server', 24, 'filled');
|
|
527
|
-
const
|
|
805
|
+
const ServerLinkFilled = createIconURL('server-link', 24, 'filled');
|
|
806
|
+
const ServerPlayFilled = createIconURL('server-play', 24, 'filled');
|
|
807
|
+
const ServiceBellFilled = createIconURL('service-bell', 24, 'filled');
|
|
528
808
|
const SettingsFilled = createIconURL('settings', 24, 'filled');
|
|
529
|
-
const
|
|
809
|
+
const ShapeExcludeFilled = createIconURL('shape-exclude', 24, 'filled');
|
|
810
|
+
const ShapeIntersectFilled = createIconURL('shape-intersect', 24, 'filled');
|
|
811
|
+
const ShapeSubtractFilled = createIconURL('shape-subtract', 24, 'filled');
|
|
812
|
+
const ShapeUnionFilled = createIconURL('shape-union', 24, 'filled');
|
|
530
813
|
const ShapesFilled = createIconURL('shapes', 24, 'filled');
|
|
531
814
|
const ShareFilled = createIconURL('share', 24, 'filled');
|
|
532
|
-
const
|
|
815
|
+
const ShareAndroidFilled = createIconURL('share-android', 24, 'filled');
|
|
816
|
+
const ShareIosFilled = createIconURL('share-ios', 24, 'filled');
|
|
817
|
+
const ShellScriptFilled = createIconURL('shell-script', 24, 'filled');
|
|
533
818
|
const ShieldFilled = createIconURL('shield', 24, 'filled');
|
|
534
|
-
const
|
|
819
|
+
const ShoppingBagFilled = createIconURL('shopping-bag', 24, 'filled');
|
|
535
820
|
const SimFilled = createIconURL('sim', 24, 'filled');
|
|
536
|
-
const
|
|
821
|
+
const SlideAddFilled = createIconURL('slide-add', 24, 'filled');
|
|
822
|
+
const SlideContentFilled = createIconURL('slide-content', 24, 'filled');
|
|
823
|
+
const SlideEraserFilled = createIconURL('slide-eraser', 24, 'filled');
|
|
824
|
+
const SlideGridFilled = createIconURL('slide-grid', 24, 'filled');
|
|
825
|
+
const SlideHideFilled = createIconURL('slide-hide', 24, 'filled');
|
|
826
|
+
const SlideLayoutFilled = createIconURL('slide-layout', 24, 'filled');
|
|
537
827
|
const SmartwatchFilled = createIconURL('smartwatch', 24, 'filled');
|
|
538
|
-
const
|
|
828
|
+
const SoundSourceFilled = createIconURL('sound-source', 24, 'filled');
|
|
539
829
|
const SpacebarFilled = createIconURL('spacebar', 24, 'filled');
|
|
540
|
-
const
|
|
541
|
-
const
|
|
830
|
+
const SportBaseballFilled = createIconURL('sport-baseball', 24, 'filled');
|
|
831
|
+
const SportBasketballFilled = createIconURL('sport-basketball', 24, 'filled');
|
|
832
|
+
const SportSoccerFilled = createIconURL('sport-soccer', 24, 'filled');
|
|
833
|
+
const SprayCanFilled = createIconURL('spray-can', 24, 'filled');
|
|
542
834
|
const SquareFilled = createIconURL('square', 24, 'filled');
|
|
835
|
+
const SquareHintFilled = createIconURL('square-hint', 24, 'filled');
|
|
836
|
+
const SquareMultipleFilled = createIconURL('square-multiple', 24, 'filled');
|
|
543
837
|
const StarFilled = createIconURL('star', 24, 'filled');
|
|
544
838
|
const StopFilled = createIconURL('stop', 24, 'filled');
|
|
545
839
|
const SubtractFilled = createIconURL('subtract', 24, 'filled');
|
|
@@ -551,34 +845,66 @@ const TargetFilled = createIconURL('target', 24, 'filled');
|
|
|
551
845
|
const TemperatureFilled = createIconURL('temperature', 24, 'filled');
|
|
552
846
|
const TentFilled = createIconURL('tent', 24, 'filled');
|
|
553
847
|
const TextFilled = createIconURL('text', 24, 'filled');
|
|
848
|
+
const TextAlignCenterFilled = createIconURL('text-align-center', 24, 'filled');
|
|
849
|
+
const TextAlignJustifyFilled = createIconURL('text-align-justify', 24, 'filled');
|
|
850
|
+
const TextAlignLeftFilled = createIconURL('text-align-left', 24, 'filled');
|
|
851
|
+
const TextAlignRightFilled = createIconURL('text-align-right', 24, 'filled');
|
|
554
852
|
const TextboxFilled = createIconURL('textbox', 24, 'filled');
|
|
853
|
+
const TextboxAlignBottomFilled = createIconURL('textbox-align-bottom', 24, 'filled');
|
|
854
|
+
const TextboxAlignBottomCenterFilled = createIconURL('textbox-align-bottom-center', 24, 'filled');
|
|
855
|
+
const TextboxAlignBottomLeftFilled = createIconURL('textbox-align-bottom-left', 24, 'filled');
|
|
856
|
+
const TextboxAlignBottomRightFilled = createIconURL('textbox-align-bottom-right', 24, 'filled');
|
|
857
|
+
const TextboxAlignCenterFilled = createIconURL('textbox-align-center', 24, 'filled');
|
|
858
|
+
const TextboxAlignMiddleFilled = createIconURL('textbox-align-middle', 24, 'filled');
|
|
859
|
+
const TextboxAlignMiddleLeftFilled = createIconURL('textbox-align-middle-left', 24, 'filled');
|
|
860
|
+
const TextboxAlignMiddleRightFilled = createIconURL('textbox-align-middle-right', 24, 'filled');
|
|
861
|
+
const TextboxAlignTopFilled = createIconURL('textbox-align-top', 24, 'filled');
|
|
862
|
+
const TextboxAlignTopCenterFilled = createIconURL('textbox-align-top-center', 24, 'filled');
|
|
863
|
+
const TextboxAlignTopLeftFilled = createIconURL('textbox-align-top-left', 24, 'filled');
|
|
864
|
+
const TextboxAlignTopRightFilled = createIconURL('textbox-align-top-right', 24, 'filled');
|
|
555
865
|
const ThinkingFilled = createIconURL('thinking', 24, 'filled');
|
|
556
866
|
const TicketFilled = createIconURL('ticket', 24, 'filled');
|
|
557
867
|
const TimerFilled = createIconURL('timer', 24, 'filled');
|
|
558
|
-
const
|
|
868
|
+
const ToggleLeftFilled = createIconURL('toggle-left', 24, 'filled');
|
|
869
|
+
const ToggleMultipleFilled = createIconURL('toggle-multiple', 24, 'filled');
|
|
870
|
+
const ToggleRightFilled = createIconURL('toggle-right', 24, 'filled');
|
|
559
871
|
const ToolboxFilled = createIconURL('toolbox', 24, 'filled');
|
|
560
872
|
const TrophyFilled = createIconURL('trophy', 24, 'filled');
|
|
561
873
|
const TvFilled = createIconURL('tv', 24, 'filled');
|
|
562
874
|
const TypescriptFilled = createIconURL('typescript', 24, 'filled');
|
|
563
875
|
const UmbrellaFilled = createIconURL('umbrella', 24, 'filled');
|
|
564
876
|
const UsbFilled = createIconURL('usb', 24, 'filled');
|
|
877
|
+
const UsbCableFilled = createIconURL('usb-cable', 24, 'filled');
|
|
565
878
|
const VerifiedFilled = createIconURL('verified', 24, 'filled');
|
|
566
879
|
const VideoFilled = createIconURL('video', 24, 'filled');
|
|
880
|
+
const VideoClipFilled = createIconURL('video-clip', 24, 'filled');
|
|
881
|
+
const VideoPlayPauseFilled = createIconURL('video-play-pause', 24, 'filled');
|
|
567
882
|
const VoicemailFilled = createIconURL('voicemail', 24, 'filled');
|
|
568
883
|
const VoteFilled = createIconURL('vote', 24, 'filled');
|
|
569
|
-
const
|
|
884
|
+
const WalkieTalkieFilled = createIconURL('walkie-talkie', 24, 'filled');
|
|
570
885
|
const WalletFilled = createIconURL('wallet', 24, 'filled');
|
|
571
886
|
const WandFilled = createIconURL('wand', 24, 'filled');
|
|
572
887
|
const WarningFilled = createIconURL('warning', 24, 'filled');
|
|
573
888
|
const WasherFilled = createIconURL('washer', 24, 'filled');
|
|
574
889
|
const WaterFilled = createIconURL('water', 24, 'filled');
|
|
575
|
-
const
|
|
890
|
+
const WeatherBlowingSnowFilled = createIconURL('weather-blowing-snow', 24, 'filled');
|
|
891
|
+
const WeatherCloudyFilled = createIconURL('weather-cloudy', 24, 'filled');
|
|
892
|
+
const WeatherRainFilled = createIconURL('weather-rain', 24, 'filled');
|
|
893
|
+
const WeatherSnowFilled = createIconURL('weather-snow', 24, 'filled');
|
|
894
|
+
const WeatherSnowflakeFilled = createIconURL('weather-snowflake', 24, 'filled');
|
|
895
|
+
const WeatherSunnyFilled = createIconURL('weather-sunny', 24, 'filled');
|
|
896
|
+
const WeatherThunderstormFilled = createIconURL('weather-thunderstorm', 24, 'filled');
|
|
576
897
|
const WebFilled = createIconURL('web', 24, 'filled');
|
|
577
|
-
const
|
|
898
|
+
const Wifi1Filled = createIconURL('wifi-1', 24, 'filled');
|
|
899
|
+
const Wifi2Filled = createIconURL('wifi-2', 24, 'filled');
|
|
900
|
+
const Wifi3Filled = createIconURL('wifi-3', 24, 'filled');
|
|
901
|
+
const Wifi4Filled = createIconURL('wifi-4', 24, 'filled');
|
|
578
902
|
const WindowsFilled = createIconURL('windows', 24, 'filled');
|
|
579
903
|
const WrenchFilled = createIconURL('wrench', 24, 'filled');
|
|
580
904
|
const XrayFilled = createIconURL('xray', 24, 'filled');
|
|
581
|
-
const ZoomFilled = createIconURL('zoom', 24, 'filled');
|
|
905
|
+
const ZoomFilled = createIconURL('zoom', 24, 'filled');
|
|
906
|
+
const ZoomInFilled = createIconURL('zoom-in', 24, 'filled');
|
|
907
|
+
const ZoomOutFilled = createIconURL('zoom-out', 24, 'filled');
|
|
582
908
|
|
|
583
909
|
var totalIcons = 434;
|
|
584
910
|
var supportedSizes = [
|
|
@@ -57753,20 +58079,50 @@ var metadata = {
|
|
|
57753
58079
|
icons: icons
|
|
57754
58080
|
};
|
|
57755
58081
|
|
|
58082
|
+
function nameToSlug(name) {
|
|
58083
|
+
return String(name).toLowerCase().trim().replace(/\s+/g, '-');
|
|
58084
|
+
}
|
|
58085
|
+
function pascalToSlug(name) {
|
|
58086
|
+
return String(name).replace(/([A-Z])/g, '-$1').toLowerCase().replace(/^-/, '');
|
|
58087
|
+
}
|
|
58088
|
+
function normalizeIconName(name) {
|
|
58089
|
+
return String(name).trim().replace(/\s+/g, ' ');
|
|
58090
|
+
}
|
|
57756
58091
|
class IconUtils {
|
|
57757
58092
|
constructor() {
|
|
57758
58093
|
this.metadata = metadata;
|
|
57759
58094
|
this.fontFamilies = metadata.fontFamilies;
|
|
57760
58095
|
}
|
|
58096
|
+
/** Resolve icon data by name or by slug (handles "Local language", "LocalLanguage", extra spaces) */
|
|
58097
|
+
getIconData(iconName) {
|
|
58098
|
+
if (!iconName || typeof iconName !== 'string')
|
|
58099
|
+
return null;
|
|
58100
|
+
const direct = this.metadata.icons[iconName] ?? null;
|
|
58101
|
+
if (direct)
|
|
58102
|
+
return direct;
|
|
58103
|
+
const normalized = normalizeIconName(iconName);
|
|
58104
|
+
if (normalized) {
|
|
58105
|
+
const found = this.metadata.icons[normalized] ?? null;
|
|
58106
|
+
if (found)
|
|
58107
|
+
return found;
|
|
58108
|
+
}
|
|
58109
|
+
const slug = nameToSlug(iconName);
|
|
58110
|
+
const bySlug = Object.values(this.metadata.icons).find((icon) => icon.slug === slug);
|
|
58111
|
+
if (bySlug)
|
|
58112
|
+
return bySlug;
|
|
58113
|
+
const slugPascal = pascalToSlug(iconName);
|
|
58114
|
+
const byPascal = Object.values(this.metadata.icons).find((icon) => icon.slug === slugPascal);
|
|
58115
|
+
return byPascal ?? null;
|
|
58116
|
+
}
|
|
57761
58117
|
/**
|
|
57762
58118
|
* Get the unicode character of the icon
|
|
57763
58119
|
*/
|
|
57764
58120
|
getIconChar(iconName, style = 'regular', size = 24) {
|
|
57765
|
-
const iconData = this.
|
|
57766
|
-
if (!iconData)
|
|
58121
|
+
const iconData = this.getIconData(iconName);
|
|
58122
|
+
if (!iconData?.unicodeMapping)
|
|
57767
58123
|
return null;
|
|
57768
|
-
const unicodeInfo = iconData.unicodeMapping[size]?.[style];
|
|
57769
|
-
if (!unicodeInfo)
|
|
58124
|
+
const unicodeInfo = iconData.unicodeMapping[String(size)]?.[style];
|
|
58125
|
+
if (!unicodeInfo || unicodeInfo.unicode == null)
|
|
57770
58126
|
return null;
|
|
57771
58127
|
return String.fromCodePoint(unicodeInfo.unicode);
|
|
57772
58128
|
}
|
|
@@ -57774,10 +58130,10 @@ class IconUtils {
|
|
|
57774
58130
|
* Get the CSS class name of the icon
|
|
57775
58131
|
*/
|
|
57776
58132
|
getIconClass(iconName, style = 'regular', size = 24) {
|
|
57777
|
-
const iconData = this.
|
|
57778
|
-
if (!iconData)
|
|
58133
|
+
const iconData = this.getIconData(iconName);
|
|
58134
|
+
if (!iconData?.unicodeMapping)
|
|
57779
58135
|
return null;
|
|
57780
|
-
const unicodeInfo = iconData.unicodeMapping[size]?.[style];
|
|
58136
|
+
const unicodeInfo = iconData.unicodeMapping[String(size)]?.[style];
|
|
57781
58137
|
if (!unicodeInfo)
|
|
57782
58138
|
return null;
|
|
57783
58139
|
return unicodeInfo.cssClass;
|
|
@@ -57804,7 +58160,7 @@ class IconUtils {
|
|
|
57804
58160
|
* Get icon info
|
|
57805
58161
|
*/
|
|
57806
58162
|
getIconInfo(iconName) {
|
|
57807
|
-
return this.
|
|
58163
|
+
return this.getIconData(iconName);
|
|
57808
58164
|
}
|
|
57809
58165
|
/**
|
|
57810
58166
|
* Search icons
|
|
@@ -57818,7 +58174,7 @@ class IconUtils {
|
|
|
57818
58174
|
* Check if an icon is supported for a specific size and style
|
|
57819
58175
|
*/
|
|
57820
58176
|
isIconSupported(iconName, style = 'regular', size = 24) {
|
|
57821
|
-
const iconData = this.
|
|
58177
|
+
const iconData = this.getIconData(iconName);
|
|
57822
58178
|
if (!iconData)
|
|
57823
58179
|
return false;
|
|
57824
58180
|
return iconData.size.includes(size) && iconData.style.includes(style);
|
|
@@ -57827,5 +58183,5 @@ class IconUtils {
|
|
|
57827
58183
|
// Singleton instance creation
|
|
57828
58184
|
const iconUtils = new IconUtils();
|
|
57829
58185
|
|
|
57830
|
-
export { AccessFilled, AccessRegular, AccessibilityFilled, AccessibilityRegular, AddFilled, AddRegular, AirplaneFilled, AirplaneRegular, AlbumFilled, AlbumRegular, AlertFilled, AlertRegular, AlignFilled, AlignRegular, AndroidFilled, AndroidRegular, AppFilled, AppRegular, AppstoreFilled, AppstoreRegular, AutosumFilled, AutosumRegular, BackpackFilled, BackpackRegular, BackspaceFilled, BackspaceRegular, BadgeFilled, BadgeRegular, BalloonFilled, BalloonRegular, BarFilled, BarRegular, BarcodeFilled, BarcodeRegular, BatteryFilled, BatteryRegular, BlockFilled, BlockRegular, BluetoothFilled, BluetoothRegular, BlurFilled, BlurRegular, BoardFilled, BoardRegular, BookFilled, BookRegular, BookmarkFilled, BookmarkRegular, BugFilled, BugRegular, CalculatorFilled, CalculatorRegular, CalendarFilled, CalendarRegular, CameraFilled, CameraRegular, CartFilled, CartRegular, CartonFilled, CartonRegular, ChartFilled, ChartRegular, ChatFilled, ChatRegular, CheckmarkFilled, CheckmarkRegular, ChessFilled, ChessRegular, ChevronFilled, ChevronRegular, CircleFilled, CircleRegular, ClipboardFilled, ClipboardRegular, ClockFilled, ClockRegular, CloudFilled, CloudRegular, CloverFilled, CloverRegular, CodeFilled, CodeRegular, CommaFilled, CommaRegular, CommentFilled, CommentRegular, ConeFilled, ConeRegular, ContrastFilled, ContrastRegular, ControlFilled, ControlRegular, CookieFilled, CookieRegular, CopyFilled, CopyRegular, CouchFilled, CouchRegular, CpuFilled, CpuRegular, CropFilled, CropRegular, CrownFilled, CrownRegular, CssFilled, CssRegular, CubeFilled, CubeRegular, CursorFilled, CursorRegular, CutFilled, CutRegular, DartFilled, DartRegular, DatabaseFilled, DatabaseRegular, DeleteFilled, DeleteRegular, DentistFilled, DentistRegular, DeskFilled, DeskRegular, DesktopFilled, DesktopRegular, DialpadFilled, DialpadRegular, DiamondFilled, DiamondRegular, DismissFilled, DismissRegular, DoctorFilled, DoctorRegular, DocumentFilled, DocumentRegular, DoorFilled, DoorRegular, DragFilled, DragRegular, DrawerFilled, DrawerRegular, DropFilled, DropRegular, DualFilled, DualRegular, DumbbellFilled, DumbbellRegular, DustFilled, DustRegular, EarthFilled, EarthRegular, EditFilled, EditRegular, ElevatorFilled, ElevatorRegular, EmojiFilled, EmojiRegular, EngineFilled, EngineRegular, EqualFilled, EqualRegular, ErrorFilled, ErrorRegular, EyeFilled, EyeRegular, EyedropperFilled, EyedropperRegular, FastFilled, FastRegular, FilmstripFilled, FilmstripRegular, FilterFilled, FilterRegular, FireFilled, FireRegular, FlagFilled, FlagRegular, FlashFilled, FlashRegular, FlashlightFilled, FlashlightRegular, FlipFilled, FlipRegular, FolderFilled, FolderRegular, FrameFilled, FrameRegular, FullFilled, FullRegular, GamesFilled, GamesRegular, GanttFilled, GanttRegular, GasFilled, GasRegular, GavelFilled, GavelRegular, GifFilled, GifRegular, GiftFilled, GiftRegular, GitFilled, GitRegular, GlassesFilled, GlassesRegular, GlobalFilled, GlobalRegular, GridFilled, GridRegular, GuestFilled, GuestRegular, GuitarFilled, GuitarRegular, HammerFilled, HammerRegular, HardFilled, HardRegular, HatFilled, HatRegular, HdFilled, HdRegular, HdrFilled, HdrRegular, HeadphonesFilled, HeadphonesRegular, HeadsetFilled, HeadsetRegular, HeartFilled, HeartRegular, HexagonFilled, HexagonRegular, HighlightFilled, HighlightRegular, HighwayFilled, HighwayRegular, HomeFilled, HomeRegular, HourglassFilled, HourglassRegular, HtmlFilled, HtmlRegular, iconUtils as IconUtils, ImageFilled, ImageRegular, ImportantFilled, ImportantRegular, IncognitoFilled, IncognitoRegular, InfoFilled, InfoRegular, IosFilled, IosRegular, IotFilled, IotRegular, JavascriptFilled, JavascriptRegular, JoystickFilled, JoystickRegular, JsonFilled, JsonRegular, KeyFilled, KeyRegular, KeyboardFilled, KeyboardRegular, KioskFilled, KioskRegular, KotlinFilled, KotlinRegular, LaptopFilled, LaptopRegular, LayerFilled, LayerRegular, LightbulbFilled, LightbulbRegular, LineFilled, LineRegular, LinkFilled, LinkRegular, LocalFilled, LocalLanguageFilled, LocalLanguageRegular, LocalRegular, LocationFilled, LocationRegular, LockFilled, LockRegular, LuggageFilled, LuggageRegular, MacosFilled, MacosRegular, MailFilled, MailRegular, MailboxFilled, MailboxRegular, MapFilled, MapRegular, MarkdownFilled, MarkdownRegular, MathFilled, MathRegular, MegaphoneFilled, MegaphoneRegular, MicFilled, MicRegular, MoonFilled, MoonRegular, MoreFilled, MoreRegular, MouseFilled, MouseRegular, MovieFilled, MovieRegular, NetworkFilled, NetworkRegular, NewsFilled, NewsRegular, NextFilled, NextRegular, NoteFilled, NoteRegular, NotebookFilled, NotebookRegular, NotepadFilled, NotepadRegular, NumberFilled, NumberRegular, OpacityFilled, OpacityRegular, OpenFilled, OpenRegular, OptionsFilled, OptionsRegular, OrganizationFilled, OrganizationRegular, OrientationFilled, OrientationRegular, OvalFilled, OvalRegular, OvenFilled, OvenRegular, PaddingFilled, PaddingRegular, PageFilled, PageRegular, PaintFilled, PaintRegular, ParallelogramFilled, ParallelogramRegular, PasswordFilled, PasswordRegular, PauseFilled, PauseRegular, PaymentFilled, PaymentRegular, PenFilled, PenRegular, PentagonFilled, PentagonRegular, PersonFilled, PersonRegular, PhoneFilled, PhoneRegular, PianoFilled, PianoRegular, PinFilled, PinRegular, PipelineFilled, PipelineRegular, PlayFilled, PlayRegular, PlaystoreFilled, PlaystoreRegular, PortFilled, PortRegular, PowerFilled, PowerRegular, PreviewFilled, PreviewRegular, PreviousFilled, PreviousRegular, PrintFilled, PrintRegular, PulseFilled, PulseRegular, PythonFilled, PythonRegular, QrFilled, QrRegular, QuestionFilled, QuestionRegular, RadioFilled, RadioRegular, RamFilled, RamRegular, RecordFilled, RecordRegular, RectangleFilled, RectangleRegular, RefineuiFilled, RefineuiRegular, RewindFilled, RewindRegular, RhombusFilled, RhombusRegular, RibbonFilled, RibbonRegular, RoadFilled, RoadRegular, RocketFilled, RocketRegular, RotationFilled, RotationRegular, RouterFilled, RouterRegular, RssFilled, RssRegular, RulerFilled, RulerRegular, RunFilled, RunRegular, SaveFilled, SaveRegular, ScalesFilled, ScalesRegular, ScriptFilled, ScriptRegular, SearchFilled, SearchRegular, SendFilled, SendRegular, SerialFilled, SerialRegular, ServerFilled, ServerRegular, ServiceFilled, ServiceRegular, SettingsFilled, SettingsRegular, ShapeFilled, ShapeRegular, ShapesFilled, ShapesRegular, ShareFilled, ShareRegular, ShellFilled, ShellRegular, ShieldFilled, ShieldRegular, ShoppingFilled, ShoppingRegular, SimFilled, SimRegular, SlideFilled, SlideRegular, SmartwatchFilled, SmartwatchRegular, SoundFilled, SoundRegular, SpacebarFilled, SpacebarRegular, SportFilled, SportRegular, SprayFilled, SprayRegular, SquareFilled, SquareRegular, StarFilled, StarRegular, StopFilled, StopRegular, SubtractFilled, SubtractRegular, SwiftFilled, SwiftRegular, TabFilled, TabRegular, TabletFilled, TabletRegular, TagFilled, TagRegular, TargetFilled, TargetRegular, TemperatureFilled, TemperatureRegular, TentFilled, TentRegular, TextFilled, TextRegular, TextboxFilled, TextboxRegular, ThinkingFilled, ThinkingRegular, TicketFilled, TicketRegular, TimerFilled, TimerRegular, ToggleFilled, ToggleRegular, ToolboxFilled, ToolboxRegular, TrophyFilled, TrophyRegular, TvFilled, TvRegular, TypescriptFilled, TypescriptRegular, UmbrellaFilled, UmbrellaRegular, UsbFilled, UsbRegular, VerifiedFilled, VerifiedRegular, VideoFilled, VideoRegular, VoicemailFilled, VoicemailRegular, VoteFilled, VoteRegular, WalkieFilled, WalkieRegular, WalletFilled, WalletRegular, WandFilled, WandRegular, WarningFilled, WarningRegular, WasherFilled, WasherRegular, WaterFilled, WaterRegular, WeatherFilled, WeatherRegular, WebFilled, WebRegular, WifiFilled, WifiRegular, WindowsFilled, WindowsRegular, WrenchFilled, WrenchRegular, XrayFilled, XrayRegular, ZoomFilled, ZoomRegular, createIconURL, generateIconFileName, generateSampleSVG, getCDNBaseUrl, getIconURL, isValidIconSize, isValidIconStyle, mapIconName };
|
|
58186
|
+
export { AccessTimeFilled, AccessTimeRegular, AccessibilityFilled, AccessibilityRegular, AddCircleFilled, AddCircleRegular, AddFilled, AddRegular, AddSquareFilled, AddSquareRegular, AirplaneFilled, AirplaneRegular, AlbumFilled, AlbumRegular, AlertBadgeFilled, AlertBadgeRegular, AlertFilled, AlertOffFilled, AlertOffRegular, AlertRegular, AlignBottomFilled, AlignBottomRegular, AlignCenterHorizontalFilled, AlignCenterHorizontalRegular, AlignCenterVerticalFilled, AlignCenterVerticalRegular, AlignLeftFilled, AlignLeftRegular, AlignRightFilled, AlignRightRegular, AlignTopFilled, AlignTopRegular, AndroidFilled, AndroidRegular, AppFolderFilled, AppFolderRegular, AppRecentFilled, AppRecentRegular, AppTitleFilled, AppTitleRegular, AppstoreFilled, AppstoreRegular, AutosumFilled, AutosumRegular, BackpackFilled, BackpackRegular, BackspaceFilled, BackspaceRegular, BadgeFilled, BadgeRegular, BalloonFilled, BalloonRegular, BarChartHorizontalDescendingFilled, BarChartHorizontalDescendingRegular, BarChartHorizontalFilled, BarChartHorizontalRegular, BarChartVerticalDescendingFilled, BarChartVerticalDescendingRegular, BarChartVerticalFilled, BarChartVerticalRegular, BarcodeScannerFilled, BarcodeScannerRegular, Battery0Filled, Battery0Regular, Battery100Filled, Battery100Regular, Battery10Filled, Battery10Regular, Battery20Filled, Battery20Regular, Battery30Filled, Battery30Regular, Battery40Filled, Battery40Regular, Battery50Filled, Battery50Regular, Battery60Filled, Battery60Regular, Battery70Filled, Battery70Regular, Battery80Filled, Battery80Regular, Battery90Filled, Battery90Regular, BlockFilled, BlockRegular, BluetoothFilled, BluetoothRegular, BlurFilled, BlurRegular, BoardFilled, BoardRegular, BookFilled, BookRegular, BookmarkFilled, BookmarkRegular, BugFilled, BugRegular, CalculatorFilled, CalculatorRegular, CalendarFilled, CalendarRegular, CameraFilled, CameraRegular, CartFilled, CartRegular, CartonBoxFilled, CartonBoxRegular, ChartFilled, ChartRegular, ChatAddFilled, ChatAddRegular, ChatEmptyFilled, ChatEmptyRegular, ChatFilled, ChatRegular, CheckmarkFilled, CheckmarkRegular, ChessFilled, ChessRegular, ChevronDownFilled, ChevronDownRegular, ChevronLeftFilled, ChevronLeftRegular, ChevronRightFilled, ChevronRightRegular, ChevronUpFilled, ChevronUpRegular, CircleFilled, CircleRegular, ClipboardFilled, ClipboardRegular, ClockAlarmFilled, ClockAlarmRegular, ClockFilled, ClockRegular, CloudFilled, CloudRegular, CloverFilled, CloverRegular, CodeBlockFilled, CodeBlockRegular, CodeFilled, CodeRegular, CommaFilled, CommaRegular, CommentFilled, CommentRegular, ConeFilled, ConeRegular, ContrastFilled, ContrastRegular, ControlButtonFilled, ControlButtonRegular, CookieFilled, CookieRegular, CopyFilled, CopyRegular, CouchFilled, CouchRegular, CpuFilled, CpuRegular, CropFilled, CropRegular, CrownFilled, CrownRegular, CssFilled, CssRegular, CubeFilled, CubeRegular, CursorFilled, CursorRegular, CutFilled, CutRegular, DartFilled, DartRegular, DatabaseFilled, DatabaseRegular, DeleteFilled, DeleteOffFilled, DeleteOffRegular, DeleteRegular, DentistFilled, DentistRegular, DeskFilled, DeskRegular, DesktopFilled, DesktopMacFilled, DesktopMacRegular, DesktopRegular, DialpadFilled, DialpadRegular, DiamondFilled, DiamondRegular, DismissCircleFilled, DismissCircleRegular, DismissFilled, DismissRegular, DismissSquareFilled, DismissSquareRegular, DoctorFilled, DoctorRegular, DocumentBorderFilled, DocumentBorderRegular, DocumentFilled, DocumentRegular, DoorFilled, DoorRegular, DragFilled, DragRegular, DrawerFilled, DrawerRegular, DropFilled, DropRegular, DualScreenFilled, DualScreenRegular, DumbbellFilled, DumbbellRegular, DustFilled, DustRegular, EarthFilled, EarthRegular, EditFilled, EditOffFilled, EditOffRegular, EditRegular, ElevatorFilled, ElevatorRegular, EmojiAngryFilled, EmojiAngryRegular, EmojiCoolFilled, EmojiCoolRegular, EmojiFilled, EmojiGrimacingFilled, EmojiGrimacingRegular, EmojiLaughFilled, EmojiLaughRegular, EmojiMehFilled, EmojiMehRegular, EmojiRegular, EmojiSadFilled, EmojiSadRegular, EmojiSurpriseFilled, EmojiSurpriseRegular, EngineFilled, EngineRegular, EqualCircleFilled, EqualCircleRegular, EqualFilled, EqualOffFilled, EqualOffRegular, EqualRegular, ErrorCircleFilled, ErrorCircleRegular, EyeFilled, EyeOffFilled, EyeOffRegular, EyeRegular, EyedropperFilled, EyedropperOffFilled, EyedropperOffRegular, EyedropperRegular, FastForwardFilled, FastForwardRegular, FilmstripFilled, FilmstripOffFilled, FilmstripOffRegular, FilmstripRegular, FilterFilled, FilterRegular, FireFilled, FireRegular, FlagFilled, FlagOffFilled, FlagOffRegular, FlagRegular, FlashFilled, FlashOffFilled, FlashOffRegular, FlashRegular, FlashlightFilled, FlashlightOffFilled, FlashlightOffRegular, FlashlightRegular, FlipHorizontalFilled, FlipHorizontalRegular, FlipVerticialFilled, FlipVerticialRegular, FolderFilled, FolderOpenFilled, FolderOpenRegular, FolderRegular, FrameFilled, FrameRegular, FullScreenMaximizeFilled, FullScreenMaximizeRegular, FullScreenMinimizeFilled, FullScreenMinimizeRegular, GamesFilled, GamesRegular, GanttChartFilled, GanttChartRegular, GasFilled, GasRegular, GasStationFilled, GasStationRegular, GavelFilled, GavelRegular, GifFilled, GifRegular, GiftCardFilled, GiftCardRegular, GiftFilled, GiftRegular, GitFilled, GitRegular, GlassesFilled, GlassesRegular, GlobalFilled, GlobalRegular, GridFilled, GridRegular, GuestFilled, GuestRegular, GuitarFilled, GuitarRegular, HammerFilled, HammerRegular, HardDriveFilled, HardDriveRegular, HatGraduationFilled, HatGraduationRegular, HdFilled, HdRegular, HdrFilled, HdrOffFilled, HdrOffRegular, HdrRegular, HeadphonesFilled, HeadphonesMicFilled, HeadphonesMicRegular, HeadphonesRegular, HeadsetVrFilled, HeadsetVrRegular, HeartBrokenFilled, HeartBrokenRegular, HeartFilled, HeartRegular, HexagonFilled, HexagonRegular, HighlightFilled, HighlightRegular, HighwayFilled, HighwayRegular, HomeCheckmarkFilled, HomeCheckmarkRegular, HomeFilled, HomeRegular, HourglassFilled, HourglassHalfFilled, HourglassHalfRegular, HourglassOneQuarterFilled, HourglassOneQuarterRegular, HourglassRegular, HourglassThreeQuarterFilled, HourglassThreeQuarterRegular, HtmlFilled, HtmlRegular, iconUtils as IconUtils, ImageCircleFilled, ImageCircleRegular, ImageFilled, ImageRegular, ImportantFilled, ImportantRegular, IncognitoFilled, IncognitoRegular, InfoFilled, InfoRegular, IosArrowLtrFilled, IosArrowLtrRegular, IosArrowRtlFilled, IosArrowRtlRegular, IosChevronLtrFilled, IosChevronLtrRegular, IosChevronRtlFilled, IosChevronRtlRegular, IosFilled, IosRegular, IotFilled, IotRegular, JavascriptFilled, JavascriptRegular, JoystickFilled, JoystickRegular, JsonFileFilled, JsonFileRegular, JsonFilled, JsonRegular, KeyFilled, KeyMultipleFilled, KeyMultipleRegular, KeyRegular, KeyboardBackspaceFilled, KeyboardBackspaceRegular, KeyboardCommandFilled, KeyboardCommandRegular, KeyboardFilled, KeyboardLockFilled, KeyboardLockRegular, KeyboardOffFilled, KeyboardOffRegular, KeyboardOptionFilled, KeyboardOptionRegular, KeyboardRegular, KeyboardReturnFilled, KeyboardReturnRegular, KeyboardShiftFilled, KeyboardShiftRegular, KeyboardShiftUppercaseFilled, KeyboardShiftUppercaseRegular, KeyboardTabFilled, KeyboardTabRegular, KioskFilled, KioskRegular, KotlinFilled, KotlinRegular, LaptopFilled, LaptopRegular, LayerFilled, LayerRegular, LightbulbFilled, LightbulbRegular, LineDashesFilled, LineDashesRegular, LineFilled, LineHorizontal1DashesFilled, LineHorizontal1DashesRegular, LineHorizontal1Filled, LineHorizontal1Regular, LineRegular, LinkFilled, LinkRegular, LocalLanguageFilled, LocalLanguageRegular, LocationArrowFilled, LocationArrowRegular, LocationFilled, LocationRegular, LockClosedFilled, LockClosedRegular, LockOpenFilled, LockOpenRegular, LuggageFilled, LuggageRegular, MacosFilled, MacosRegular, MailFilled, MailReadFilled, MailReadRegular, MailRegular, MailboxFilled, MailboxRegular, MapFilled, MapRegular, MarkdownFilled, MarkdownRegular, MathSymbolsFilled, MathSymbolsRegular, MegaphoneFilled, MegaphoneRegular, MicFilled, MicRegular, MoonFilled, MoonRegular, MoreCircleFilled, MoreCircleRegular, MoreHorizontalFilled, MoreHorizontalRegular, MoreVerticialFilled, MoreVerticialRegular, MouseFilled, MouseRegular, MovieFilled, MovieRegular, NetworkCheckFilled, NetworkCheckRegular, NewsFilled, NewsRegular, NextFilled, NextRegular, NoteFilled, NoteRegular, NotebookFilled, NotebookRegular, NotepadFilled, NotepadRegular, NumberCircle0Filled, NumberCircle0Regular, NumberCircle1Filled, NumberCircle1Regular, NumberCircle2Filled, NumberCircle2Regular, NumberCircle3Filled, NumberCircle3Regular, NumberCircle4Filled, NumberCircle4Regular, NumberCircle5Filled, NumberCircle5Regular, NumberCircle6Filled, NumberCircle6Regular, NumberCircle7Filled, NumberCircle7Regular, NumberCircle8Filled, NumberCircle8Regular, NumberCircle9Filled, NumberCircle9Regular, NumberSymbolCircleFilled, NumberSymbolCircleRegular, NumberSymbolFilled, NumberSymbolRegular, NumberSymbolSquareFilled, NumberSymbolSquareRegular, OpacityFilled, OpacityRegular, OpenFilled, OpenOffFilled, OpenOffRegular, OpenRegular, OptionsFilled, OptionsRegular, OrganizationFilled, OrganizationHorizontalFilled, OrganizationHorizontalRegular, OrganizationRegular, OrientationFilled, OrientationRegular, OvalFilled, OvalRegular, OvenFilled, OvenRegular, PaddingFilled, PaddingRegular, PageFitFilled, PageFitRegular, PaintBrushFilled, PaintBrushRegular, PaintBucketFilled, PaintBucketRegular, ParallelogramFilled, ParallelogramRegular, PasswordFilled, PasswordRegular, PauseCircleFilled, PauseCircleRegular, PauseFilled, PauseRegular, PaymentFilled, PaymentRegular, PaymentWirelessFilled, PaymentWirelessRegular, PenFilled, PenOffFilled, PenOffRegular, PenRegular, PentagonFilled, PentagonRegular, PersonFilled, PersonRegular, PersonVoiceFilled, PersonVoiceRegular, PhoneFilled, PhoneRegular, PianoFilled, PianoRegular, PinFilled, PinRegular, PipelineFilled, PipelineRegular, PlayCircleFilled, PlayCircleRegular, PlayFilled, PlayRegular, PlaystoreFilled, PlaystoreRegular, PortHdmiFilled, PortHdmiRegular, PortMicroUsbFilled, PortMicroUsbRegular, PortUsbAFilled, PortUsbARegular, PortUsbCFilled, PortUsbCRegular, PowerFilled, PowerRegular, PreviewLinkFilled, PreviewLinkRegular, PreviousFilled, PreviousRegular, PrintFilled, PrintRegular, PulseCircleFilled, PulseCircleRegular, PulseFilled, PulseRegular, PulseSquareFilled, PulseSquareRegular, PythonFilled, PythonRegular, QrCodeFilled, QrCodeRegular, QuestionCircleFilled, QuestionCircleRegular, QuestionFilled, QuestionRegular, RadioButtonFilled, RadioButtonRegular, RamFilled, RamRegular, RecordFilled, RecordRegular, RecordStopFilled, RecordStopRegular, RectangleFilled, RectangleRegular, RefineuiFilled, RefineuiRegular, RewindFilled, RewindRegular, RhombusFilled, RhombusRegular, RibbonFilled, RibbonRegular, RoadConeFilled, RoadConeRegular, RoadFilled, RoadRegular, RocketFilled, RocketRegular, RotationFilled, RotationRegular, RouterFilled, RouterRegular, RssFilled, RssRegular, RulerFilled, RulerRegular, RunFilled, RunRegular, SaveFilled, SaveRegular, ScalesFilled, ScalesRegular, ScriptFilled, ScriptRegular, SearchFilled, SearchRegular, SendFilled, SendRegular, SerialPortFilled, SerialPortRegular, ServerFilled, ServerLinkFilled, ServerLinkRegular, ServerPlayFilled, ServerPlayRegular, ServerRegular, ServiceBellFilled, ServiceBellRegular, SettingsFilled, SettingsRegular, ShapeExcludeFilled, ShapeExcludeRegular, ShapeIntersectFilled, ShapeIntersectRegular, ShapeSubtractFilled, ShapeSubtractRegular, ShapeUnionFilled, ShapeUnionRegular, ShapesFilled, ShapesRegular, ShareAndroidFilled, ShareAndroidRegular, ShareFilled, ShareIosFilled, ShareIosRegular, ShareRegular, ShellScriptFilled, ShellScriptRegular, ShieldFilled, ShieldRegular, ShoppingBagFilled, ShoppingBagRegular, SimFilled, SimRegular, SlideAddFilled, SlideAddRegular, SlideContentFilled, SlideContentRegular, SlideEraserFilled, SlideEraserRegular, SlideGridFilled, SlideGridRegular, SlideHideFilled, SlideHideRegular, SlideLayoutFilled, SlideLayoutRegular, SmartwatchFilled, SmartwatchRegular, SoundSourceFilled, SoundSourceRegular, SpacebarFilled, SpacebarRegular, SportBaseballFilled, SportBaseballRegular, SportBasketballFilled, SportBasketballRegular, SportSoccerFilled, SportSoccerRegular, SprayCanFilled, SprayCanRegular, SquareFilled, SquareHintFilled, SquareHintRegular, SquareMultipleFilled, SquareMultipleRegular, SquareRegular, StarFilled, StarRegular, StopFilled, StopRegular, SubtractFilled, SubtractRegular, SwiftFilled, SwiftRegular, TabFilled, TabRegular, TabletFilled, TabletRegular, TagFilled, TagRegular, TargetFilled, TargetRegular, TemperatureFilled, TemperatureRegular, TentFilled, TentRegular, TextAlignCenterFilled, TextAlignCenterRegular, TextAlignJustifyFilled, TextAlignJustifyRegular, TextAlignLeftFilled, TextAlignLeftRegular, TextAlignRightFilled, TextAlignRightRegular, TextFilled, TextRegular, TextboxAlignBottomCenterFilled, TextboxAlignBottomCenterRegular, TextboxAlignBottomFilled, TextboxAlignBottomLeftFilled, TextboxAlignBottomLeftRegular, TextboxAlignBottomRegular, TextboxAlignBottomRightFilled, TextboxAlignBottomRightRegular, TextboxAlignCenterFilled, TextboxAlignCenterRegular, TextboxAlignMiddleFilled, TextboxAlignMiddleLeftFilled, TextboxAlignMiddleLeftRegular, TextboxAlignMiddleRegular, TextboxAlignMiddleRightFilled, TextboxAlignMiddleRightRegular, TextboxAlignTopCenterFilled, TextboxAlignTopCenterRegular, TextboxAlignTopFilled, TextboxAlignTopLeftFilled, TextboxAlignTopLeftRegular, TextboxAlignTopRegular, TextboxAlignTopRightFilled, TextboxAlignTopRightRegular, TextboxFilled, TextboxRegular, ThinkingFilled, ThinkingRegular, TicketFilled, TicketRegular, TimerFilled, TimerRegular, ToggleLeftFilled, ToggleLeftRegular, ToggleMultipleFilled, ToggleMultipleRegular, ToggleRightFilled, ToggleRightRegular, ToolboxFilled, ToolboxRegular, TrophyFilled, TrophyRegular, TvFilled, TvRegular, TypescriptFilled, TypescriptRegular, UmbrellaFilled, UmbrellaRegular, UsbCableFilled, UsbCableRegular, UsbFilled, UsbRegular, VerifiedFilled, VerifiedRegular, VideoClipFilled, VideoClipRegular, VideoFilled, VideoPlayPauseFilled, VideoPlayPauseRegular, VideoRegular, VoicemailFilled, VoicemailRegular, VoteFilled, VoteRegular, WalkieTalkieFilled, WalkieTalkieRegular, WalletFilled, WalletRegular, WandFilled, WandRegular, WarningFilled, WarningRegular, WasherFilled, WasherRegular, WaterFilled, WaterRegular, WeatherBlowingSnowFilled, WeatherBlowingSnowRegular, WeatherCloudyFilled, WeatherCloudyRegular, WeatherRainFilled, WeatherRainRegular, WeatherSnowFilled, WeatherSnowRegular, WeatherSnowflakeFilled, WeatherSnowflakeRegular, WeatherSunnyFilled, WeatherSunnyRegular, WeatherThunderstormFilled, WeatherThunderstormRegular, WebFilled, WebRegular, Wifi1Filled, Wifi1Regular, Wifi2Filled, Wifi2Regular, Wifi3Filled, Wifi3Regular, Wifi4Filled, Wifi4Regular, WindowsFilled, WindowsRegular, WrenchFilled, WrenchRegular, XrayFilled, XrayRegular, ZoomFilled, ZoomInFilled, ZoomInRegular, ZoomOutFilled, ZoomOutRegular, ZoomRegular, createIconURL, generateIconFileName, generateSampleSVG, getCDNBaseUrl, getIconURL, isValidIconSize, isValidIconStyle, mapIconName };
|
|
57831
58187
|
//# sourceMappingURL=index.esm.js.map
|