-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathgeneric.d.ts
2150 lines (2123 loc) · 37.4 KB
/
generic.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
import * as React from 'react'
// ======================================================
// Alignments
// ======================================================
export type SemanticFLOATS = 'left' | 'right'
export type SemanticTEXTALIGNMENTS = 'left' | 'center' | 'right' | 'justified'
export type SemanticVERTICALALIGNMENTS = 'top' | 'middle' | 'bottom'
// ======================================================
// Common element's props
// ======================================================
export interface HtmlLabelProps extends StrictHtmlLabelProps {
[key: string]: any
}
export interface StrictHtmlLabelProps {
children?: React.ReactNode
}
export interface HtmlIframeProps extends StrictHtmlIframeProps {
[key: string]: any
}
export interface StrictHtmlIframeProps {
src?: string
}
export interface HtmlImageProps extends StrictHtmlImageProps {
[key: string]: any
}
export interface StrictHtmlImageProps {
src?: string
}
export interface HtmlInputrops extends StrictHtmlInputrops {
[key: string]: any
}
export interface StrictHtmlInputrops {
type?: string
}
export interface HtmlSpanProps extends StrictHtmlSpanProps {
[key: string]: any
}
export interface StrictHtmlSpanProps {
children?: React.ReactNode
}
// ======================================================
// Types
// ======================================================
/**
* @deprecated Will be removed in v3
*/
export type SemanticShorthandItemFunc<TProps> = (
component: React.ElementType<TProps>,
props: TProps,
children?: React.ReactNode | React.ReactNodeArray,
) => React.ReactElement<any> | null
export type ShorthandRenderFunction<C extends React.ElementType, P> = (
Component: C,
props: P,
) => React.ReactNode
export type SemanticShorthandCollection<TProps> = SemanticShorthandItem<TProps>[]
export type SemanticShorthandContent = React.ReactNode
export type SemanticShorthandItem<TProps extends Record<string, any>> =
| React.ReactNode
| SemanticShorthandItemFunc<TProps>
| (Omit<TProps, 'children'> & {
// Not all TProps can have `children`, without this condition it will match to "any"
children?: TProps extends { children: any }
? TProps['children'] | ShorthandRenderFunction<React.ElementType<TProps>, TProps>
: ShorthandRenderFunction<React.ElementType<TProps>, TProps>
})
// ======================================================
// Styling
// ======================================================
export type SemanticCOLORS =
| 'red'
| 'orange'
| 'yellow'
| 'olive'
| 'green'
| 'teal'
| 'blue'
| 'violet'
| 'purple'
| 'pink'
| 'brown'
| 'grey'
| 'black'
export type SemanticSIZES =
| 'mini'
| 'tiny'
| 'small'
| 'medium'
| 'large'
| 'big'
| 'huge'
| 'massive'
// ======================================================
// Transitions
// ======================================================
type SemanticDIRECTIONALTRANSITIONS =
| 'browse'
| 'browse right'
| 'drop'
| 'fade'
| 'fade up'
| 'fade down'
| 'fade left'
| 'fade right'
| 'fly up'
| 'fly down'
| 'fly left'
| 'fly right'
| 'horizontal flip'
| 'vertical flip'
| 'scale'
| 'slide up'
| 'slide down'
| 'slide left'
| 'slide right'
| 'swing up'
| 'swing down'
| 'swing left'
| 'swing right'
| 'zoom'
type SemanticSTATICTRANSITIONS = 'jiggle' | 'flash' | 'shake' | 'pulse' | 'tada' | 'bounce' | 'glow'
export type SemanticTRANSITIONS = SemanticDIRECTIONALTRANSITIONS | SemanticSTATICTRANSITIONS
// ======================================================
// Widths
// ======================================================
type SemanticWIDTHSNUMBER = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16
type SemanticWIDTHSSTRING =
| '1'
| '2'
| '3'
| '4'
| '5'
| '6'
| '7'
| '8'
| '9'
| '10'
| '11'
| '12'
| '13'
| '14'
| '15'
| '16'
| 'one'
| 'two'
| 'three'
| 'four'
| 'five'
| 'six'
| 'seven'
| 'eight'
| 'nine'
| 'ten'
| 'eleven'
| 'twelve'
| 'thirteen'
| 'fourteen'
| 'fifteen'
| 'sixteen'
export type SemanticWIDTHS = SemanticWIDTHSNUMBER | SemanticWIDTHSSTRING
// ======================================================
// Icon Names
// ======================================================
export type SemanticICONS =
| 'american sign language interpreting'
| 'assistive listening systems'
| 'audio description'
| 'blind'
| 'braille'
| 'closed captioning'
| 'closed captioning outline'
| 'deaf'
| 'low vision'
| 'phone volume'
| 'question circle'
| 'question circle outline'
| 'sign language'
| 'tty'
| 'universal access'
| 'wheelchair'
| 'angle double down'
| 'angle double left'
| 'angle double right'
| 'angle double up'
| 'angle down'
| 'angle left'
| 'angle right'
| 'angle up'
| 'arrow alternate circle down'
| 'arrow alternate circle down outline'
| 'arrow alternate circle left'
| 'arrow alternate circle left outline'
| 'arrow alternate circle right'
| 'arrow alternate circle right outline'
| 'arrow alternate circle up'
| 'arrow alternate circle up outline'
| 'arrow circle down'
| 'arrow circle left'
| 'arrow circle right'
| 'arrow circle up'
| 'arrow down'
| 'arrow left'
| 'arrow right'
| 'arrow up'
| 'arrows alternate'
| 'arrows alternate horizontal'
| 'arrows alternate vertical'
| 'caret down'
| 'caret left'
| 'caret right'
| 'caret square down'
| 'caret square down outline'
| 'caret square left'
| 'caret square left outline'
| 'caret square right'
| 'caret square right outline'
| 'caret square up'
| 'caret square up outline'
| 'caret up'
| 'cart arrow down'
| 'chart line'
| 'chevron circle down'
| 'chevron circle left'
| 'chevron circle right'
| 'chevron circle up'
| 'chevron down'
| 'chevron left'
| 'chevron right'
| 'chevron up'
| 'cloud download'
| 'cloud upload'
| 'download'
| 'exchange'
| 'expand arrows alternate'
| 'external alternate'
| 'external square alternate'
| 'hand point down'
| 'hand point down outline'
| 'hand point left'
| 'hand point left outline'
| 'hand point right'
| 'hand point right outline'
| 'hand point up'
| 'hand point up outline'
| 'hand pointer'
| 'hand pointer outline'
| 'history'
| 'level down alternate'
| 'level up alternate'
| 'location arrow'
| 'long arrow alternate down'
| 'long arrow alternate left'
| 'long arrow alternate right'
| 'long arrow alternate up'
| 'mouse pointer'
| 'play'
| 'random'
| 'recycle'
| 'redo'
| 'redo alternate'
| 'reply'
| 'reply all'
| 'retweet'
| 'share'
| 'share square'
| 'share square outline'
| 'sign-in'
| 'sign-out'
| 'sign-in alternate'
| 'sign-out alternate'
| 'sort'
| 'sort alphabet down'
| 'sort alphabet up'
| 'sort amount down'
| 'sort amount up'
| 'sort down'
| 'sort numeric down'
| 'sort numeric up'
| 'sort up'
| 'sync'
| 'sync alternate'
| 'text height'
| 'text width'
| 'undo'
| 'undo alternate'
| 'upload'
| 'zoom-in'
| 'zoom-out'
| 'audio description'
| 'backward'
| 'circle'
| 'circle outline'
| 'closed captioning'
| 'closed captioning outline'
| 'compress'
| 'eject'
| 'expand'
| 'expand arrows alternate'
| 'fast backward'
| 'fast forward'
| 'file audio'
| 'file audio outline'
| 'file video'
| 'file video outline'
| 'film'
| 'forward'
| 'headphones'
| 'microphone'
| 'microphone slash'
| 'music'
| 'pause'
| 'pause circle'
| 'pause circle outline'
| 'phone volume'
| 'play'
| 'play circle'
| 'play circle outline'
| 'podcast'
| 'random'
| 'redo'
| 'redo alternate'
| 'rss'
| 'rss square'
| 'step backward'
| 'step forward'
| 'stop'
| 'stop circle'
| 'stop circle outline'
| 'sync'
| 'sync alternate'
| 'undo'
| 'undo alternate'
| 'video'
| 'volume down'
| 'volume off'
| 'volume up'
| 'address book'
| 'address book outline'
| 'address card'
| 'address card outline'
| 'archive'
| 'balance scale'
| 'birthday cake'
| 'book'
| 'briefcase'
| 'building'
| 'building outline'
| 'bullhorn'
| 'bullseye'
| 'calculator'
| 'calendar'
| 'calendar outline'
| 'calendar alternate'
| 'calendar alternate outline'
| 'certificate'
| 'chart area'
| 'chart bar'
| 'chart bar outline'
| 'chart line'
| 'chart pie'
| 'clipboard'
| 'clipboard outline'
| 'coffee'
| 'columns'
| 'compass'
| 'compass outline'
| 'copy'
| 'copy outline'
| 'copyright'
| 'copyright outline'
| 'cut'
| 'edit'
| 'edit outline'
| 'envelope'
| 'envelope outline'
| 'envelope open'
| 'envelope open outline'
| 'envelope square'
| 'eraser'
| 'fax'
| 'file'
| 'file outline'
| 'file alternate'
| 'file alternate outline'
| 'folder'
| 'folder outline'
| 'folder open'
| 'folder open outline'
| 'globe'
| 'industry'
| 'paperclip'
| 'paste'
| 'pen square'
| 'pencil alternate'
| 'percent'
| 'phone'
| 'phone square'
| 'phone volume'
| 'registered'
| 'registered outline'
| 'save'
| 'save outline'
| 'sitemap'
| 'sticky note'
| 'sticky note outline'
| 'suitcase'
| 'table'
| 'tag'
| 'tags'
| 'tasks'
| 'thumbtack'
| 'trademark'
| 'chess'
| 'chess bishop'
| 'chess board'
| 'chess king'
| 'chess knight'
| 'chess pawn'
| 'chess queen'
| 'chess rook'
| 'square full'
| 'archive'
| 'barcode'
| 'bath'
| 'bug'
| 'code'
| 'code branch'
| 'coffee'
| 'file'
| 'file outline'
| 'file alternate'
| 'file alternate outline'
| 'file code'
| 'file code outline'
| 'filter'
| 'fire extinguisher'
| 'folder'
| 'folder outline'
| 'folder open'
| 'folder open outline'
| 'keyboard'
| 'keyboard outline'
| 'microchip'
| 'qrcode'
| 'shield alternate'
| 'sitemap'
| 'terminal'
| 'user secret'
| 'window close'
| 'window close outline'
| 'window maximize'
| 'window maximize outline'
| 'window minimize'
| 'window minimize outline'
| 'window restore'
| 'window restore outline'
| 'address book'
| 'address book outline'
| 'address card'
| 'address card outline'
| 'american sign language interpreting'
| 'assistive listening systems'
| 'at'
| 'bell'
| 'bell outline'
| 'bell slash'
| 'bell slash outline'
| 'bullhorn'
| 'comment'
| 'comment outline'
| 'comment alternate'
| 'comment alternate outline'
| 'comments'
| 'comments outline'
| 'envelope'
| 'envelope outline'
| 'envelope open'
| 'envelope open outline'
| 'envelope square'
| 'fax'
| 'inbox'
| 'language'
| 'microphone'
| 'microphone slash'
| 'mobile'
| 'mobile alternate'
| 'paper plane'
| 'paper plane outline'
| 'phone'
| 'phone square'
| 'phone volume'
| 'rss'
| 'rss square'
| 'tty'
| 'wifi'
| 'desktop'
| 'download'
| 'hdd'
| 'hdd outline'
| 'headphones'
| 'keyboard'
| 'keyboard outline'
| 'laptop'
| 'microchip'
| 'mobile'
| 'mobile alternate'
| 'plug'
| 'power off'
| 'print'
| 'save'
| 'save outline'
| 'server'
| 'tablet'
| 'tablet alternate'
| 'tv'
| 'upload'
| 'dollar sign'
| 'euro sign'
| 'lira sign'
| 'money bill alternate'
| 'money bill alternate outline'
| 'pound sign'
| 'ruble sign'
| 'rupee sign'
| 'shekel sign'
| 'won sign'
| 'yen sign'
| 'bell'
| 'bell outline'
| 'bell slash'
| 'bell slash outline'
| 'calendar'
| 'calendar outline'
| 'calendar alternate'
| 'calendar alternate outline'
| 'calendar check'
| 'calendar check outline'
| 'calendar minus'
| 'calendar minus outline'
| 'calendar plus'
| 'calendar plus outline'
| 'calendar times'
| 'calendar times outline'
| 'clock'
| 'clock outline'
| 'hourglass'
| 'hourglass outline'
| 'hourglass end'
| 'hourglass half'
| 'hourglass start'
| 'stopwatch'
| 'adjust'
| 'clone'
| 'clone outline'
| 'copy'
| 'copy outline'
| 'crop'
| 'crosshairs'
| 'cut'
| 'edit'
| 'edit outline'
| 'eraser'
| 'eye'
| 'eye dropper'
| 'eye slash'
| 'eye slash outline'
| 'object group'
| 'object group outline'
| 'object ungroup'
| 'object ungroup outline'
| 'paint brush'
| 'paste'
| 'pencil alternate'
| 'save'
| 'save outline'
| 'tint'
| 'align center'
| 'align justify'
| 'align left'
| 'align right'
| 'bold'
| 'clipboard'
| 'clipboard outline'
| 'clone'
| 'clone outline'
| 'columns'
| 'copy'
| 'copy outline'
| 'cut'
| 'edit'
| 'edit outline'
| 'eraser'
| 'file'
| 'file outline'
| 'file alternate'
| 'file alternate outline'
| 'font'
| 'heading'
| 'i cursor'
| 'indent'
| 'italic'
| 'linkify'
| 'list'
| 'list alternate'
| 'list alternate outline'
| 'list ol'
| 'list ul'
| 'outdent'
| 'paper plane'
| 'paper plane outline'
| 'paperclip'
| 'paragraph'
| 'paste'
| 'pencil alternate'
| 'print'
| 'quote left'
| 'quote right'
| 'redo'
| 'redo alternate'
| 'reply'
| 'reply all'
| 'share'
| 'strikethrough'
| 'subscript'
| 'superscript'
| 'sync'
| 'sync alternate'
| 'table'
| 'tasks'
| 'text height'
| 'text width'
| 'th'
| 'th large'
| 'th list'
| 'trash'
| 'trash alternate'
| 'trash alternate outline'
| 'underline'
| 'undo'
| 'undo alternate'
| 'unlink'
| 'archive'
| 'clone'
| 'clone outline'
| 'copy'
| 'copy outline'
| 'cut'
| 'file'
| 'file outline'
| 'file alternate'
| 'file alternate outline'
| 'file archive'
| 'file archive outline'
| 'file audio'
| 'file audio outline'
| 'file code'
| 'file code outline'
| 'file excel'
| 'file excel outline'
| 'file image'
| 'file image outline'
| 'file pdf'
| 'file pdf outline'
| 'file powerpoint'
| 'file powerpoint outline'
| 'file video'
| 'file video outline'
| 'file word'
| 'file word outline'
| 'folder'
| 'folder outline'
| 'folder open'
| 'folder open outline'
| 'paste'
| 'save'
| 'save outline'
| 'sticky note'
| 'sticky note outline'
| 'genderless'
| 'mars'
| 'mars double'
| 'mars stroke'
| 'mars stroke horizontal'
| 'mars stroke vertical'
| 'mercury'
| 'neuter'
| 'transgender'
| 'transgender alternate'
| 'venus'
| 'venus double'
| 'venus mars'
| 'hand lizard'
| 'hand lizard outline'
| 'hand paper'
| 'hand paper outline'
| 'hand peace'
| 'hand peace outline'
| 'hand point down'
| 'hand point down outline'
| 'hand point left'
| 'hand point left outline'
| 'hand point right'
| 'hand point right outline'
| 'hand point up'
| 'hand point up outline'
| 'hand pointer'
| 'hand pointer outline'
| 'hand rock'
| 'hand rock outline'
| 'hand scissors'
| 'hand scissors outline'
| 'hand spock'
| 'hand spock outline'
| 'handshake'
| 'handshake outline'
| 'thumbs down'
| 'thumbs down outline'
| 'thumbs up'
| 'thumbs up outline'
| 'ambulance'
| 'h square'
| 'heart'
| 'heart outline'
| 'heartbeat'
| 'hospital'
| 'hospital outline'
| 'medkit'
| 'plus square'
| 'plus square outline'
| 'stethoscope'
| 'user md'
| 'wheelchair'
| 'adjust'
| 'bolt'
| 'camera'
| 'camera retro'
| 'clone'
| 'clone outline'
| 'compress'
| 'expand'
| 'eye'
| 'eye dropper'
| 'eye slash'
| 'eye slash outline'
| 'file image'
| 'file image outline'
| 'film'
| 'id badge'
| 'id badge outline'
| 'id card'
| 'id card outline'
| 'image'
| 'image outline'
| 'images'
| 'images outline'
| 'sliders horizontal'
| 'tint'
| 'ban'
| 'barcode'
| 'bars'
| 'beer'
| 'bell'
| 'bell outline'
| 'bell slash'
| 'bell slash outline'
| 'bug'
| 'bullhorn'
| 'bullseye'
| 'calculator'
| 'calendar'
| 'calendar outline'
| 'calendar alternate'
| 'calendar alternate outline'
| 'calendar check'
| 'calendar check outline'
| 'calendar minus'
| 'calendar minus outline'
| 'calendar plus'
| 'calendar plus outline'
| 'calendar times'
| 'calendar times outline'
| 'certificate'
| 'check'
| 'check circle'
| 'check circle outline'
| 'check square'
| 'check square outline'
| 'circle'
| 'circle outline'
| 'clipboard'
| 'clipboard outline'
| 'clone'
| 'clone outline'
| 'cloud'
| 'cloud download'
| 'cloud upload'
| 'coffee'
| 'cog'
| 'cogs'
| 'copy'
| 'copy outline'
| 'cut'
| 'database'
| 'dot circle'
| 'dot circle outline'
| 'download'
| 'edit'
| 'edit outline'
| 'ellipsis horizontal'
| 'ellipsis vertical'
| 'envelope'
| 'envelope outline'
| 'envelope open'
| 'envelope open outline'
| 'eraser'
| 'exclamation'
| 'exclamation circle'
| 'exclamation triangle'
| 'external alternate'
| 'external square alternate'
| 'eye'
| 'eye slash'
| 'eye slash outline'
| 'file'
| 'file outline'
| 'file alternate'
| 'file alternate outline'
| 'filter'
| 'flag'
| 'flag outline'
| 'flag checkered'
| 'folder'
| 'folder outline'
| 'folder open'
| 'folder open outline'
| 'frown'
| 'frown outline'
| 'hashtag'
| 'heart'
| 'heart outline'
| 'history'
| 'home'
| 'i cursor'
| 'info'
| 'info circle'
| 'language'
| 'magic'
| 'meh'
| 'meh outline'
| 'microphone'
| 'microphone slash'
| 'minus'
| 'minus circle'
| 'minus square'
| 'minus square outline'
| 'paste'
| 'pencil alternate'
| 'plus'
| 'plus circle'
| 'plus square'
| 'plus square outline'
| 'qrcode'
| 'question'
| 'question circle'
| 'question circle outline'
| 'quote left'
| 'quote right'
| 'redo'
| 'redo alternate'
| 'reply'
| 'reply all'
| 'rss'
| 'rss square'
| 'save'
| 'save outline'
| 'search'
| 'search minus'
| 'search plus'
| 'share'
| 'share alternate'
| 'share alternate square'
| 'share square'
| 'share square outline'
| 'shield alternate'
| 'sign-in'
| 'sign-out'
| 'signal'
| 'sitemap'
| 'sliders horizontal'
| 'smile'
| 'smile outline'
| 'sort'
| 'sort alphabet down'
| 'sort alphabet up'
| 'sort amount down'
| 'sort amount up'
| 'sort down'
| 'sort numeric down'
| 'sort numeric up'
| 'sort up'
| 'star'
| 'star outline'
| 'star half'
| 'star half outline'
| 'sync'
| 'sync alternate'
| 'thumbs down'
| 'thumbs down outline'
| 'thumbs up'
| 'thumbs up outline'
| 'times'
| 'times circle'
| 'times circle outline'
| 'toggle off'
| 'toggle on'
| 'trash'
| 'trash alternate'
| 'trash alternate outline'
| 'trophy'
| 'undo'
| 'undo alternate'
| 'upload'
| 'user'
| 'user outline'
| 'user circle'
| 'user circle outline'
| 'wifi'
| 'box'
| 'boxes'
| 'clipboard check'
| 'clipboard list'
| 'dolly'
| 'dolly flatbed'
| 'pallet'
| 'shipping fast'
| 'truck'
| 'warehouse'
| 'ambulance'
| 'anchor'
| 'balance scale'
| 'bath'
| 'bed'
| 'beer'
| 'bell'
| 'bell outline'
| 'bell slash'
| 'bell slash outline'
| 'bicycle'
| 'binoculars'
| 'birthday cake'
| 'blind'
| 'bomb'
| 'book'
| 'bookmark'
| 'bookmark outline'
| 'briefcase'
| 'building'
| 'building outline'
| 'car'
| 'coffee'
| 'crosshairs'
| 'dollar sign'
| 'eye'
| 'eye slash'
| 'eye slash outline'
| 'fighter jet'
| 'fire'
| 'fire extinguisher'
| 'flag'
| 'flag outline'
| 'flag checkered'
| 'flask'
| 'gamepad'