-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.d.ts
1206 lines (1206 loc) · 134 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/// <reference types="svelte" />
import {SvelteComponentTyped} from "svelte/internal"
export class Uil0Plus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class Uil10Plus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class Uil12Plus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class Uil13Plus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class Uil16Plus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class Uil17Plus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class Uil18Plus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class Uil21Plus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class Uil3Plus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class Uil500px extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class Uil6Plus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAbacus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAccessibleIconAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAdjust extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAdjustAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAdjustCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAdjustHalf extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAdobe extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAdobeAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAirplay extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAlign extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAlignAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAlignCenter extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAlignCenterAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAlignCenterH extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAlignCenterJustify extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAlignCenterV extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAlignJustify extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAlignLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAlignLeftJustify extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAlignLetterRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAlignRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAlignRightJustify extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAmazon extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAmbulance extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAnalysis extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAnalytics extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAnchor extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAndroid extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAndroidAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAndroidPhoneSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAngleDoubleDown extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAngleDoubleLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAngleDoubleRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAngleDoubleUp extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAngleDown extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAngleLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAngleLeftB extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAngleRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAngleRightB extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAngleUp extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAngry extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAnkh extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAnnoyed extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAnnoyedAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilApple extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAppleAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilApps extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArchive extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArchiveAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArchway extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrow extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowBreak extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowCircleDown extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowCircleLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowCircleRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowCircleUp extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowCompressH extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowDown extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowDownLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowDownRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowFromRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowFromTop extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowGrowth extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowRandom extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowResizeDiagonal extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowToBottom extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowToRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowUp extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowUpLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowUpRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsH extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsHAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsLeftDown extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsMaximize extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsMerge extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsResize extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsResizeH extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsResizeV extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsRightDown extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsShrinkH extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsShrinkV extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsUpRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsV extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilArrowsVAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAssistiveListeningSystems extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAsterisk extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAtom extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAutoFlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAward extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilAwardAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBabyCarriage extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBackpack extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBackspace extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBackward extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBag extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBagAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBagSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBalanceScale extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBan extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBandAid extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBars extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBaseballBall extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBasketball extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBasketballHoop extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBath extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBatteryBolt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBatteryEmpty extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBed extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBedDouble extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBehance extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBehanceAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBell extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBellSchool extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBellSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBill extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBing extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBitcoin extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBitcoinAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBitcoinCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBitcoinSign extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBlackBerry extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBlogger extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBloggerAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBluetoothB extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBold extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBolt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBoltAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBoltSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBook extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBookAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBookMedical extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBookOpen extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBookReader extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBookmark extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBookmarkFull extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBooks extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBoombox extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBorderAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBorderBottom extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBorderClear extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBorderHorizontal extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBorderInner extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBorderLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBorderOut extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBorderRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBorderTop extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBorderVertical extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBowlingBall extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBox extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBracketsCurly extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBrain extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBriefcase extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBriefcaseAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBright extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBrightness extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBrightnessEmpty extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBrightnessHalf extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBrightnessLow extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBrightnessMinus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBrightnessPlus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBringBottom extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBringFront extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBrowser extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBrushAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBug extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBuilding extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBullseye extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBusAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilBusSchool extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCalculator extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCalculatorAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCalendarAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCalendarSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCalender extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCalling extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCamera extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCameraChange extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCameraPlus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCameraSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCancel extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCapsule extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCapture extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCar extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCarSideview extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCarSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCarWash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCardAtm extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCaretRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCell extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCelsius extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChannel extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChannelAdd extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChart extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChartBar extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChartBarAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChartDown extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChartGrowth extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChartGrowthAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChartLine extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChartPie extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChartPieAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChat extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChatBubbleUser extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilChatInfo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCheck extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCheckCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCheckSquare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCircleLayer extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCircuit extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClapperBoard extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClinicMedical extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClipboard extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClipboardAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClipboardBlank extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClipboardNotes extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClockEight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClockFive extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClockNine extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClockSeven extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClockTen extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClockThree extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClockTwo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClosedCaptioning extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClosedCaptioningSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloud extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudBlock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudBookmark extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudCheck extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudComputing extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudDataConnection extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudDatabaseTree extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudDownload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudDrizzle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudExclamation extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudHail extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudHeart extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudInfo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudLock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudMeatball extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudMoon extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudMoonHail extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudMoonMeatball extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudMoonRain extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudMoonShowers extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudQuestion extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudRain extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudRainSun extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudRedo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudShare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudShield extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudShowers extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudShowersAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudShowersHeavy extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudSun extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudSunHail extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudSunMeatball extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudSunRain extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudSunRainAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudSunTear extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudTimes extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudUnlock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudUpload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudWifi extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCloudWind extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClouds extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilClub extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCodeBranch extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCoffee extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCog extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCoins extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilColumns extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilComment extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAdd extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltBlock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltChartLines extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltCheck extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltDots extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltDownload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltEdit extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltExclamation extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltHeart extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltImage extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltInfo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltLines extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltLock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltMedical extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltMessage extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltNotes extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltPlus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltQuestion extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltRedo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltSearch extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltShare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltShield extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltUpload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentAltVerify extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentBlock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentChartLine extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentCheck extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentDots extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentDownload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentEdit extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentExclamation extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentHeart extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentImage extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentInfo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentInfoAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentLines extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentLock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentMedical extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentMessage extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentNotes extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentPlus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentQuestion extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentRedo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentSearch extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentShare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentShield extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentUpload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentVerify extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilComments extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCommentsAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCompactDisc extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilComparison extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCompass extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCompress extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCompressAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCompressAltLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCompressArrows extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCompressLines extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCompressPoint extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCompressV extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilConfused extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilConstructor extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCopy extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCopyAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCopyLandscape extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCopyright extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCornerDownLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCornerDownRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCornerDownRightAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCornerLeftDown extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCornerRightDown extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCornerUpLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCornerUpLeftAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCornerUpRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCornerUpRightAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCoronavirus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCreateDashboard extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCreativeCommonsPd extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCreditCard extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCreditCardSearch extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCrockery extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCropAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCropAltRotateLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCropAltRotateRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCrosshair extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCrosshairAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCrosshairs extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCss3Simple extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilCube extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDashboard extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDataSharing extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDatabase extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDatabaseAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDesert extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDesktop extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDesktopAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDesktopAltSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDesktopCloudAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDesktopSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDialpad extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDialpadAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDiamond extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDiary extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDiaryAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDiceFive extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDiceFour extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDiceOne extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDiceSix extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDiceThree extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDiceTwo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDirection extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDirections extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDiscord extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDizzyMeh extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDna extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDocker extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDocumentInfo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDocumentLayoutCenter extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDocumentLayoutLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDocumentLayoutRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDollarAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDollarSign extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDollarSignAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDownloadAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDraggabledots extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDribbble extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDrill extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDropbox extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilDumbbell extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEar extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEdit extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEditAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilElipsisDoubleVAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEllipsisH extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEllipsisV extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEmoji extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnglishToChinese extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnter extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelope extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeAdd extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeBlock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeBookmark extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeCheck extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeDownload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeDownloadAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeEdit extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeExclamation extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeHeart extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeInfo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeLock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeMinus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeOpen extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeQuestion extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeReceive extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeRedo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeSearch extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeSend extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeShare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeShield extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeStar extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeTimes extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeUpload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopeUploadAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEnvelopes extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEqualCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEstate extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEuro extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEuroCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExchange extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExchangeAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExclamation extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExclamationCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExclamationOctagon extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExclamationTriangle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExclude extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExpandAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExpandArrows extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExpandArrowsAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExpandFromCorner extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExpandLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExpandRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExport extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExposureAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExposureIncrease extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilExternalLinkAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEye extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilEyeSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFacebook extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFacebookF extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFacebookMessenger extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFacebookMessengerAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFahrenheit extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFastMail extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFastMailAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFavorite extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFeedback extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFidgetSpinner extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFile extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileBlank extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileBlockAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileBookmarkAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileCheck extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileCheckAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileContract extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileContractDollar extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileCopyAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileDownload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileDownloadAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileEditAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileExclamation extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileExclamationAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileExport extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileGraph extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileHeart extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileImport extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileInfoAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileLandscape extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileLandscapeAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileLanscapeSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileLockAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileMedical extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileMedicalAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileMinus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileMinusAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileNetwork extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFilePlus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFilePlusAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileQuestion extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileQuestionAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileRedoAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileSearchAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileShareAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileShieldAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileTimes extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileTimesAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileUpload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFileUploadAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFilesLandscapes extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFilesLandscapesAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFilm extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFilter extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFilterSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFire extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFlask extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFlaskPotion extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFlipH extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFlipHAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFlipV extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFlipVAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFlower extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFocus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFocusAdd extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFocusTarget extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolder extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderCheck extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderDownload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderExclamation extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderHeart extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderInfo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderLock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderMedical extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderMinus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderNetwork extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderOpen extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderPlus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderQuestion extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderTimes extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFolderUpload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFont extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFootball extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFootballAmerican extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFootballBall extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilForecastcloudMoonTear extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilForwadedCall extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilForward extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilFrown extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGameStructure extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGift extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGithub extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGithubAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGitlab extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGlass extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGlassMartini extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGlassMartiniAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGlassMartiniAltSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGlassTea extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGlobe extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGold extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGolfBall extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGoogle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGoogleDrive extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGoogleDriveAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGoogleHangouts extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGoogleHangoutsAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGooglePlay extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGraduationCap extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGraphBar extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGrid extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGrids extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGrin extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGrinTongueWink extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGrinTongueWinkAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilGripHorizontalLine extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHardHat extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHdd extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHeadSide extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHeadSideCough extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHeadSideMask extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHeadphoneSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHeadphones extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHeadphonesAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHeart extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHeartAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHeartBreak extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHeartMedical extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHeartRate extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHeartSign extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHeartbeat extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHindiToChinese extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHipchat extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHistory extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHistoryAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHome extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHorizontalAlignCenter extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHorizontalAlignLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHorizontalAlignRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHorizontalDistributionCenter extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHorizontalDistributionLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHorizontalDistributionRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHospital extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHospitalSquareSign extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHospitalSymbol extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHourglass extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHouseUser extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHtml3 extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHtml3Alt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHtml5 extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHtml5Alt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilHunting extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilIcons extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilIllustration extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImage extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageAltSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageBlock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageBroken extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageCheck extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageDownload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageEdit extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageLock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageMinus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImagePlus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageQuestion extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageRedo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageResizeLandscape extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageResizeSquare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageSearch extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageShare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageShield extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageTimes extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageUpload extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImageV extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImages extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilImport extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilInbox extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilIncomingCall extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilInfo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilInfoCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilInstagram extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilInstagramAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilIntercom extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilIntercomAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilInvoice extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilItalic extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilJackhammer extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilJavaScript extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilKayak extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilKeySkeleton extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilKeySkeletonAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilKeyboard extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilKeyboardAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilKeyboardHide extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilKeyboardShow extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilKeyholeCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilKeyholeSquare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilKeyholeSquareFull extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilKid extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLabel extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLabelAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLamp extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLanguage extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLaptop extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLaptopCloud extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLaptopConnection extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLaughing extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLayerGroup extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLayerGroupSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLayers extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLayersAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLayersSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLeftArrowFromLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLeftArrowToLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLeftIndent extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLeftIndentAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLeftToRightTextDirection extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLetterChineseA extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLetterEnglishA extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLetterHindiA extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLetterJapaneseA extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLifeRing extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLightbulb extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLightbulbAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLine extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLineAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLineSpacing extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLink extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLinkAdd extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLinkAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLinkBroken extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLinkH extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLinkedin extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLinkedinAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLinux extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLiraSign extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilListOl extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilListOlAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilListUiAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilListUl extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLocationArrow extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLocationArrowAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLocationPinAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLocationPoint extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLockAccess extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLockAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLockOpenAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLockSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLottiefiles extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLottiefilesAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilLuggageCart extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMailbox extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMailboxAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMap extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMapMarker extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMapMarkerAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMapMarkerEdit extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMapMarkerInfo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMapMarkerMinus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMapMarkerPlus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMapMarkerQuestion extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMapMarkerShield extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMapMarkerSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMapPin extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMapPinAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMars extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMasterCard extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMaximizeLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMedal extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMedicalDrip extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMedicalSquare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMedicalSquareFull extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMediumM extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMedkit extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMeetingBoard extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMegaphone extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMeh extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMehAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMehClosedEye extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMessage extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMetro extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMicrophone extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMicrophoneSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMicroscope extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMicrosoft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMinus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMinusCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMinusPath extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMinusSquare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMinusSquareFull extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMissedCall extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMobileAndroid extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMobileAndroidAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMobileVibrate extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilModem extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMoneyBill extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMoneyBillSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMoneyBillStack extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMoneyInsert extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMoneyStack extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMoneyWithdraw extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMoneyWithdrawal extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMoneybag extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMoneybagAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMonitor extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMonitorHeartRate extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMoon extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMoonEclipse extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMoonset extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMountains extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMountainsSun extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMouse extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMouseAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMouseAlt2 extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMultiply extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMusic extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMusicNote extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilMusicTuneSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilNA extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilNavigator extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilNerd extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilNewspaper extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilNinja extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilNoEntry extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilNotebooks extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilNotes extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilObjectGroup extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilObjectUngroup extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilOctagon extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilOkta extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilOpera extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilOperaAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilOutgoingCall extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPackage extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPadlock extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPagelines extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPagerduty extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPaintTool extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPalette extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPanelAdd extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPanoramaH extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPanoramaHAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPanoramaV extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPaperclip extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilParagraph extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilParcel extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilParkingCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilParkingSquare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPathfinder extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPathfinderUnite extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPause extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPauseCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPaypal extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPen extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPentagon extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPercentage extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPhone extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPhoneAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPhonePause extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPhoneSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPhoneTimes extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPhoneVolume extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPicture extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPizzaSlice extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPlane extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPlaneArrival extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPlaneDeparture extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPlaneFly extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPlay extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPlayCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPlug extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPlus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPlusCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPlusSquare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPodium extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPolygon extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPostStamp extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPostcard extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPound extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPoundCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPower extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPrescriptionBottle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPresentation extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPresentationCheck extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPresentationEdit extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPresentationLine extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPresentationLinesAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPresentationMinus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPresentationPlay extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPresentationPlus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPresentationTimes extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPrevious extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPricetagAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPrint extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPrintSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilProcess extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilProcessor extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilProgrammingLanguage extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPump extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilPuzzlePiece extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilQrcodeScan extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilQuestion extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilQuestionCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRainbow extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRaindrops extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRaindropsAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilReact extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilReceipt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilReceiptAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRecordAudio extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRedditAlienAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRedo extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRefresh extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRegistered extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRepeat extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRestaurant extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRightIndentAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRightToLeftTextDirection extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRobot extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRocket extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRopeWay extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRotate360 extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRss extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRssAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRssInterface extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRuler extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRulerCombined extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilRupeeSign extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSad extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSadCry extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSadCrying extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSadDizzy extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSadSquint extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSanitizer extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSanitizerAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSave extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilScalingLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilScalingRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilScenery extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSchedule extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilScrew extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilScroll extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilScrollH extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSearch extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSearchAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSearchMinus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSearchPlus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSelfie extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilServer extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilServerAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilServerConnection extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilServerNetwork extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilServerNetworkAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilServers extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilServicemark extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSetting extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShareAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShield extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShieldCheck extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShieldExclamation extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShieldPlus extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShieldQuestion extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShieldSlash extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShip extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShop extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShoppingBag extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShoppingBasket extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShoppingCart extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShoppingCartAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShovel extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShrink extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShuffle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShutter extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilShutterAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSick extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSigma extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSignAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSignInAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSignLeft extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSignOutAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSignRight extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSignal extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSignalAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSignalAlt3 extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSignin extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSignout extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSilence extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSilentSquint extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSimCard extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSitemap extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSkipForward extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSkipForwardAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSkipForwardCircle extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSkype extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSkypeAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSlack extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSlackAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSliderH extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSliderHRange extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSlidersV extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSlidersVAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSmile extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSmileBeam extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSmileDizzy extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSmileSquintWink extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSmileSquintWinkAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSmileWink extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSmileWinkAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSnapchatAlt extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSnapchatGhost extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}
export class UilSnapchatSquare extends SvelteComponentTyped<{size?: string, strokeWidth?: number, class?: string}> {}