UNPKG

37.8 kBTypeScriptView Raw
1import * as React from 'react'
2
3// ======================================================
4// Alignments
5// ======================================================
6
7export type SemanticFLOATS = 'left' | 'right'
8export type SemanticTEXTALIGNMENTS = 'left' | 'center' | 'right' | 'justified'
9export type SemanticVERTICALALIGNMENTS = 'top' | 'middle' | 'bottom'
10
11// ======================================================
12// Common element's props
13// ======================================================
14
15export interface HtmlLabelProps extends StrictHtmlLabelProps {
16 [key: string]: any
17}
18
19export interface StrictHtmlLabelProps {
20 children?: React.ReactNode
21}
22
23export interface HtmlIframeProps extends StrictHtmlIframeProps {
24 [key: string]: any
25}
26
27export interface StrictHtmlIframeProps {
28 src?: string
29}
30
31export interface HtmlImageProps extends StrictHtmlImageProps {
32 [key: string]: any
33}
34
35export interface StrictHtmlImageProps {
36 src?: string
37}
38
39export interface HtmlInputrops extends StrictHtmlInputrops {
40 [key: string]: any
41}
42
43export interface StrictHtmlInputrops {
44 type?: string
45}
46
47export interface HtmlSpanProps extends StrictHtmlSpanProps {
48 [key: string]: any
49}
50
51export interface StrictHtmlSpanProps {
52 children?: React.ReactNode
53}
54
55// ======================================================
56// Types
57// ======================================================
58
59export type SemanticShorthandItemFunc<TProps> = (
60 component: React.ReactType<TProps>,
61 props: TProps,
62 children?: React.ReactNode | React.ReactNodeArray,
63) => React.ReactElement<any> | null
64
65export type SemanticShorthandCollection<TProps> = SemanticShorthandItem<TProps>[]
66export type SemanticShorthandContent = React.ReactNode
67export type SemanticShorthandItem<TProps> =
68 | React.ReactNode
69 | TProps
70 | SemanticShorthandItemFunc<TProps>
71
72// ======================================================
73// Styling
74// ======================================================
75
76export type SemanticCOLORS =
77 | 'red'
78 | 'orange'
79 | 'yellow'
80 | 'olive'
81 | 'green'
82 | 'teal'
83 | 'blue'
84 | 'violet'
85 | 'purple'
86 | 'pink'
87 | 'brown'
88 | 'grey'
89 | 'black'
90export type SemanticSIZES =
91 | 'mini'
92 | 'tiny'
93 | 'small'
94 | 'medium'
95 | 'large'
96 | 'big'
97 | 'huge'
98 | 'massive'
99
100// ======================================================
101// Transitions
102// ======================================================
103
104type SemanticDIRECTIONALTRANSITIONS =
105 | 'browse'
106 | 'browse right'
107 | 'drop'
108 | 'fade'
109 | 'fade up'
110 | 'fade down'
111 | 'fade left'
112 | 'fade right'
113 | 'fly up'
114 | 'fly down'
115 | 'fly left'
116 | 'fly right'
117 | 'horizontal flip'
118 | 'vertical flip'
119 | 'scale'
120 | 'slide up'
121 | 'slide down'
122 | 'slide left'
123 | 'slide right'
124 | 'swing up'
125 | 'swing down'
126 | 'swing left'
127 | 'swing right'
128 | 'zoom'
129type SemanticSTATICTRANSITIONS =
130 | 'jiggle'
131 | 'flash'
132 | 'shake'
133 | 'pulse'
134 | 'tada'
135 | 'bounce'
136 | 'glow'
137
138export type SemanticTRANSITIONS = SemanticDIRECTIONALTRANSITIONS | SemanticSTATICTRANSITIONS
139
140// ======================================================
141// Widths
142// ======================================================
143
144type SemanticWIDTHSNUMBER = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16
145type SemanticWIDTHSSTRING =
146 | '1'
147 | '2'
148 | '3'
149 | '4'
150 | '5'
151 | '6'
152 | '7'
153 | '8'
154 | '9'
155 | '10'
156 | '11'
157 | '12'
158 | '13'
159 | '14'
160 | '15'
161 | '16'
162 | 'one'
163 | 'two'
164 | 'three'
165 | 'four'
166 | 'five'
167 | 'six'
168 | 'seven'
169 | 'eight'
170 | 'nine'
171 | 'ten'
172 | 'eleven'
173 | 'twelve'
174 | 'thirteen'
175 | 'fourteen'
176 | 'fifteen'
177 | 'sixteen'
178
179export type SemanticWIDTHS = SemanticWIDTHSNUMBER | SemanticWIDTHSSTRING
180
181// ======================================================
182// Icon Names
183// ======================================================
184
185export type SemanticICONS =
186 | 'american sign language interpreting'
187 | 'assistive listening systems'
188 | 'audio description'
189 | 'blind'
190 | 'braille'
191 | 'closed captioning'
192 | 'closed captioning outline'
193 | 'deaf'
194 | 'low vision'
195 | 'phone volume'
196 | 'question circle'
197 | 'question circle outline'
198 | 'sign language'
199 | 'tty'
200 | 'universal access'
201 | 'wheelchair'
202 | 'angle double down'
203 | 'angle double left'
204 | 'angle double right'
205 | 'angle double up'
206 | 'angle down'
207 | 'angle left'
208 | 'angle right'
209 | 'angle up'
210 | 'arrow alternate circle down'
211 | 'arrow alternate circle down outline'
212 | 'arrow alternate circle left'
213 | 'arrow alternate circle left outline'
214 | 'arrow alternate circle right'
215 | 'arrow alternate circle right outline'
216 | 'arrow alternate circle up'
217 | 'arrow alternate circle up outline'
218 | 'arrow circle down'
219 | 'arrow circle left'
220 | 'arrow circle right'
221 | 'arrow circle up'
222 | 'arrow down'
223 | 'arrow left'
224 | 'arrow right'
225 | 'arrow up'
226 | 'arrows alternate'
227 | 'arrows alternate horizontal'
228 | 'arrows alternate vertical'
229 | 'caret down'
230 | 'caret left'
231 | 'caret right'
232 | 'caret square down'
233 | 'caret square down outline'
234 | 'caret square left'
235 | 'caret square left outline'
236 | 'caret square right'
237 | 'caret square right outline'
238 | 'caret square up'
239 | 'caret square up outline'
240 | 'caret up'
241 | 'cart arrow down'
242 | 'chart line'
243 | 'chevron circle down'
244 | 'chevron circle left'
245 | 'chevron circle right'
246 | 'chevron circle up'
247 | 'chevron down'
248 | 'chevron left'
249 | 'chevron right'
250 | 'chevron up'
251 | 'cloud download'
252 | 'cloud upload'
253 | 'download'
254 | 'exchange'
255 | 'expand arrows alternate'
256 | 'external alternate'
257 | 'external square alternate'
258 | 'hand point down'
259 | 'hand point down outline'
260 | 'hand point left'
261 | 'hand point left outline'
262 | 'hand point right'
263 | 'hand point right outline'
264 | 'hand point up'
265 | 'hand point up outline'
266 | 'hand pointer'
267 | 'hand pointer outline'
268 | 'history'
269 | 'level down alternate'
270 | 'level up alternate'
271 | 'location arrow'
272 | 'long arrow alternate down'
273 | 'long arrow alternate left'
274 | 'long arrow alternate right'
275 | 'long arrow alternate up'
276 | 'mouse pointer'
277 | 'play'
278 | 'random'
279 | 'recycle'
280 | 'redo'
281 | 'redo alternate'
282 | 'reply'
283 | 'reply all'
284 | 'retweet'
285 | 'share'
286 | 'share square'
287 | 'share square outline'
288 | 'sign-in'
289 | 'sign-out'
290 | 'sign-in alternate'
291 | 'sign-out alternate'
292 | 'sort'
293 | 'sort alphabet down'
294 | 'sort alphabet up'
295 | 'sort amount down'
296 | 'sort amount up'
297 | 'sort down'
298 | 'sort numeric down'
299 | 'sort numeric up'
300 | 'sort up'
301 | 'sync'
302 | 'sync alternate'
303 | 'text height'
304 | 'text width'
305 | 'undo'
306 | 'undo alternate'
307 | 'upload'
308 | 'zoom-in'
309 | 'zoom-out'
310 | 'audio description'
311 | 'backward'
312 | 'circle'
313 | 'circle outline'
314 | 'closed captioning'
315 | 'closed captioning outline'
316 | 'compress'
317 | 'eject'
318 | 'expand'
319 | 'expand arrows alternate'
320 | 'fast backward'
321 | 'fast forward'
322 | 'file audio'
323 | 'file audio outline'
324 | 'file video'
325 | 'file video outline'
326 | 'film'
327 | 'forward'
328 | 'headphones'
329 | 'microphone'
330 | 'microphone slash'
331 | 'music'
332 | 'pause'
333 | 'pause circle'
334 | 'pause circle outline'
335 | 'phone volume'
336 | 'play'
337 | 'play circle'
338 | 'play circle outline'
339 | 'podcast'
340 | 'random'
341 | 'redo'
342 | 'redo alternate'
343 | 'rss'
344 | 'rss square'
345 | 'step backward'
346 | 'step forward'
347 | 'stop'
348 | 'stop circle'
349 | 'stop circle outline'
350 | 'sync'
351 | 'sync alternate'
352 | 'undo'
353 | 'undo alternate'
354 | 'video'
355 | 'volume down'
356 | 'volume off'
357 | 'volume up'
358 | 'address book'
359 | 'address book outline'
360 | 'address card'
361 | 'address card outline'
362 | 'archive'
363 | 'balance scale'
364 | 'birthday cake'
365 | 'book'
366 | 'briefcase'
367 | 'building'
368 | 'building outline'
369 | 'bullhorn'
370 | 'bullseye'
371 | 'calculator'
372 | 'calendar'
373 | 'calendar outline'
374 | 'calendar alternate'
375 | 'calendar alternate outline'
376 | 'certificate'
377 | 'chart area'
378 | 'chart bar'
379 | 'chart bar outline'
380 | 'chart line'
381 | 'chart pie'
382 | 'clipboard'
383 | 'clipboard outline'
384 | 'coffee'
385 | 'columns'
386 | 'compass'
387 | 'compass outline'
388 | 'copy'
389 | 'copy outline'
390 | 'copyright'
391 | 'copyright outline'
392 | 'cut'
393 | 'edit'
394 | 'edit outline'
395 | 'envelope'
396 | 'envelope outline'
397 | 'envelope open'
398 | 'envelope open outline'
399 | 'envelope square'
400 | 'eraser'
401 | 'fax'
402 | 'file'
403 | 'file outline'
404 | 'file alternate'
405 | 'file alternate outline'
406 | 'folder'
407 | 'folder outline'
408 | 'folder open'
409 | 'folder open outline'
410 | 'globe'
411 | 'industry'
412 | 'paperclip'
413 | 'paste'
414 | 'pen square'
415 | 'pencil alternate'
416 | 'percent'
417 | 'phone'
418 | 'phone square'
419 | 'phone volume'
420 | 'registered'
421 | 'registered outline'
422 | 'save'
423 | 'save outline'
424 | 'sitemap'
425 | 'sticky note'
426 | 'sticky note outline'
427 | 'suitcase'
428 | 'table'
429 | 'tag'
430 | 'tags'
431 | 'tasks'
432 | 'thumbtack'
433 | 'trademark'
434 | 'chess'
435 | 'chess bishop'
436 | 'chess board'
437 | 'chess king'
438 | 'chess knight'
439 | 'chess pawn'
440 | 'chess queen'
441 | 'chess rook'
442 | 'square full'
443 | 'archive'
444 | 'barcode'
445 | 'bath'
446 | 'bug'
447 | 'code'
448 | 'code branch'
449 | 'coffee'
450 | 'file'
451 | 'file outline'
452 | 'file alternate'
453 | 'file alternate outline'
454 | 'file code'
455 | 'file code outline'
456 | 'filter'
457 | 'fire extinguisher'
458 | 'folder'
459 | 'folder outline'
460 | 'folder open'
461 | 'folder open outline'
462 | 'keyboard'
463 | 'keyboard outline'
464 | 'microchip'
465 | 'qrcode'
466 | 'shield alternate'
467 | 'sitemap'
468 | 'terminal'
469 | 'user secret'
470 | 'window close'
471 | 'window close outline'
472 | 'window maximize'
473 | 'window maximize outline'
474 | 'window minimize'
475 | 'window minimize outline'
476 | 'window restore'
477 | 'window restore outline'
478 | 'address book'
479 | 'address book outline'
480 | 'address card'
481 | 'address card outline'
482 | 'american sign language interpreting'
483 | 'assistive listening systems'
484 | 'at'
485 | 'bell'
486 | 'bell outline'
487 | 'bell slash'
488 | 'bell slash outline'
489 | 'bullhorn'
490 | 'comment'
491 | 'comment outline'
492 | 'comment alternate'
493 | 'comment alternate outline'
494 | 'comments'
495 | 'comments outline'
496 | 'envelope'
497 | 'envelope outline'
498 | 'envelope open'
499 | 'envelope open outline'
500 | 'envelope square'
501 | 'fax'
502 | 'inbox'
503 | 'language'
504 | 'microphone'
505 | 'microphone slash'
506 | 'mobile'
507 | 'mobile alternate'
508 | 'paper plane'
509 | 'paper plane outline'
510 | 'phone'
511 | 'phone square'
512 | 'phone volume'
513 | 'rss'
514 | 'rss square'
515 | 'tty'
516 | 'wifi'
517 | 'desktop'
518 | 'download'
519 | 'hdd'
520 | 'hdd outline'
521 | 'headphones'
522 | 'keyboard'
523 | 'keyboard outline'
524 | 'laptop'
525 | 'microchip'
526 | 'mobile'
527 | 'mobile alternate'
528 | 'plug'
529 | 'power off'
530 | 'print'
531 | 'save'
532 | 'save outline'
533 | 'server'
534 | 'tablet'
535 | 'tablet alternate'
536 | 'tv'
537 | 'upload'
538 | 'dollar sign'
539 | 'euro sign'
540 | 'lira sign'
541 | 'money bill alternate'
542 | 'money bill alternate outline'
543 | 'pound sign'
544 | 'ruble sign'
545 | 'rupee sign'
546 | 'shekel sign'
547 | 'won sign'
548 | 'yen sign'
549 | 'bell'
550 | 'bell outline'
551 | 'bell slash'
552 | 'bell slash outline'
553 | 'calendar'
554 | 'calendar outline'
555 | 'calendar alternate'
556 | 'calendar alternate outline'
557 | 'calendar check'
558 | 'calendar check outline'
559 | 'calendar minus'
560 | 'calendar minus outline'
561 | 'calendar plus'
562 | 'calendar plus outline'
563 | 'calendar times'
564 | 'calendar times outline'
565 | 'clock'
566 | 'clock outline'
567 | 'hourglass'
568 | 'hourglass outline'
569 | 'hourglass end'
570 | 'hourglass half'
571 | 'hourglass start'
572 | 'stopwatch'
573 | 'adjust'
574 | 'clone'
575 | 'clone outline'
576 | 'copy'
577 | 'copy outline'
578 | 'crop'
579 | 'crosshairs'
580 | 'cut'
581 | 'edit'
582 | 'edit outline'
583 | 'eraser'
584 | 'eye'
585 | 'eye dropper'
586 | 'eye slash'
587 | 'eye slash outline'
588 | 'object group'
589 | 'object group outline'
590 | 'object ungroup'
591 | 'object ungroup outline'
592 | 'paint brush'
593 | 'paste'
594 | 'pencil alternate'
595 | 'save'
596 | 'save outline'
597 | 'tint'
598 | 'align center'
599 | 'align justify'
600 | 'align left'
601 | 'align right'
602 | 'bold'
603 | 'clipboard'
604 | 'clipboard outline'
605 | 'clone'
606 | 'clone outline'
607 | 'columns'
608 | 'copy'
609 | 'copy outline'
610 | 'cut'
611 | 'edit'
612 | 'edit outline'
613 | 'eraser'
614 | 'file'
615 | 'file outline'
616 | 'file alternate'
617 | 'file alternate outline'
618 | 'font'
619 | 'heading'
620 | 'i cursor'
621 | 'indent'
622 | 'italic'
623 | 'linkify'
624 | 'list'
625 | 'list alternate'
626 | 'list alternate outline'
627 | 'list ol'
628 | 'list ul'
629 | 'outdent'
630 | 'paper plane'
631 | 'paper plane outline'
632 | 'paperclip'
633 | 'paragraph'
634 | 'paste'
635 | 'pencil alternate'
636 | 'print'
637 | 'quote left'
638 | 'quote right'
639 | 'redo'
640 | 'redo alternate'
641 | 'reply'
642 | 'reply all'
643 | 'share'
644 | 'strikethrough'
645 | 'subscript'
646 | 'superscript'
647 | 'sync'
648 | 'sync alternate'
649 | 'table'
650 | 'tasks'
651 | 'text height'
652 | 'text width'
653 | 'th'
654 | 'th large'
655 | 'th list'
656 | 'trash'
657 | 'trash alternate'
658 | 'trash alternate outline'
659 | 'underline'
660 | 'undo'
661 | 'undo alternate'
662 | 'unlink'
663 | 'archive'
664 | 'clone'
665 | 'clone outline'
666 | 'copy'
667 | 'copy outline'
668 | 'cut'
669 | 'file'
670 | 'file outline'
671 | 'file alternate'
672 | 'file alternate outline'
673 | 'file archive'
674 | 'file archive outline'
675 | 'file audio'
676 | 'file audio outline'
677 | 'file code'
678 | 'file code outline'
679 | 'file excel'
680 | 'file excel outline'
681 | 'file image'
682 | 'file image outline'
683 | 'file pdf'
684 | 'file pdf outline'
685 | 'file powerpoint'
686 | 'file powerpoint outline'
687 | 'file video'
688 | 'file video outline'
689 | 'file word'
690 | 'file word outline'
691 | 'folder'
692 | 'folder outline'
693 | 'folder open'
694 | 'folder open outline'
695 | 'paste'
696 | 'save'
697 | 'save outline'
698 | 'sticky note'
699 | 'sticky note outline'
700 | 'genderless'
701 | 'mars'
702 | 'mars double'
703 | 'mars stroke'
704 | 'mars stroke horizontal'
705 | 'mars stroke vertical'
706 | 'mercury'
707 | 'neuter'
708 | 'transgender'
709 | 'transgender alternate'
710 | 'venus'
711 | 'venus double'
712 | 'venus mars'
713 | 'hand lizard'
714 | 'hand lizard outline'
715 | 'hand paper'
716 | 'hand paper outline'
717 | 'hand peace'
718 | 'hand peace outline'
719 | 'hand point down'
720 | 'hand point down outline'
721 | 'hand point left'
722 | 'hand point left outline'
723 | 'hand point right'
724 | 'hand point right outline'
725 | 'hand point up'
726 | 'hand point up outline'
727 | 'hand pointer'
728 | 'hand pointer outline'
729 | 'hand rock'
730 | 'hand rock outline'
731 | 'hand scissors'
732 | 'hand scissors outline'
733 | 'hand spock'
734 | 'hand spock outline'
735 | 'handshake'
736 | 'handshake outline'
737 | 'thumbs down'
738 | 'thumbs down outline'
739 | 'thumbs up'
740 | 'thumbs up outline'
741 | 'ambulance'
742 | 'h square'
743 | 'heart'
744 | 'heart outline'
745 | 'heartbeat'
746 | 'hospital'
747 | 'hospital outline'
748 | 'medkit'
749 | 'plus square'
750 | 'plus square outline'
751 | 'stethoscope'
752 | 'user md'
753 | 'wheelchair'
754 | 'adjust'
755 | 'bolt'
756 | 'camera'
757 | 'camera retro'
758 | 'clone'
759 | 'clone outline'
760 | 'compress'
761 | 'expand'
762 | 'eye'
763 | 'eye dropper'
764 | 'eye slash'
765 | 'eye slash outline'
766 | 'file image'
767 | 'file image outline'
768 | 'film'
769 | 'id badge'
770 | 'id badge outline'
771 | 'id card'
772 | 'id card outline'
773 | 'image'
774 | 'image outline'
775 | 'images'
776 | 'images outline'
777 | 'sliders horizontal'
778 | 'tint'
779 | 'ban'
780 | 'barcode'
781 | 'bars'
782 | 'beer'
783 | 'bell'
784 | 'bell outline'
785 | 'bell slash'
786 | 'bell slash outline'
787 | 'bug'
788 | 'bullhorn'
789 | 'bullseye'
790 | 'calculator'
791 | 'calendar'
792 | 'calendar outline'
793 | 'calendar alternate'
794 | 'calendar alternate outline'
795 | 'calendar check'
796 | 'calendar check outline'
797 | 'calendar minus'
798 | 'calendar minus outline'
799 | 'calendar plus'
800 | 'calendar plus outline'
801 | 'calendar times'
802 | 'calendar times outline'
803 | 'certificate'
804 | 'check'
805 | 'check circle'
806 | 'check circle outline'
807 | 'check square'
808 | 'check square outline'
809 | 'circle'
810 | 'circle outline'
811 | 'clipboard'
812 | 'clipboard outline'
813 | 'clone'
814 | 'clone outline'
815 | 'cloud'
816 | 'cloud download'
817 | 'cloud upload'
818 | 'coffee'
819 | 'cog'
820 | 'cogs'
821 | 'copy'
822 | 'copy outline'
823 | 'cut'
824 | 'database'
825 | 'dot circle'
826 | 'dot circle outline'
827 | 'download'
828 | 'edit'
829 | 'edit outline'
830 | 'ellipsis horizontal'
831 | 'ellipsis vertical'
832 | 'envelope'
833 | 'envelope outline'
834 | 'envelope open'
835 | 'envelope open outline'
836 | 'eraser'
837 | 'exclamation'
838 | 'exclamation circle'
839 | 'exclamation triangle'
840 | 'external alternate'
841 | 'external square alternate'
842 | 'eye'
843 | 'eye slash'
844 | 'eye slash outline'
845 | 'file'
846 | 'file outline'
847 | 'file alternate'
848 | 'file alternate outline'
849 | 'filter'
850 | 'flag'
851 | 'flag outline'
852 | 'flag checkered'
853 | 'folder'
854 | 'folder outline'
855 | 'folder open'
856 | 'folder open outline'
857 | 'frown'
858 | 'frown outline'
859 | 'hashtag'
860 | 'heart'
861 | 'heart outline'
862 | 'history'
863 | 'home'
864 | 'i cursor'
865 | 'info'
866 | 'info circle'
867 | 'language'
868 | 'magic'
869 | 'meh'
870 | 'meh outline'
871 | 'microphone'
872 | 'microphone slash'
873 | 'minus'
874 | 'minus circle'
875 | 'minus square'
876 | 'minus square outline'
877 | 'paste'
878 | 'pencil alternate'
879 | 'plus'
880 | 'plus circle'
881 | 'plus square'
882 | 'plus square outline'
883 | 'qrcode'
884 | 'question'
885 | 'question circle'
886 | 'question circle outline'
887 | 'quote left'
888 | 'quote right'
889 | 'redo'
890 | 'redo alternate'
891 | 'reply'
892 | 'reply all'
893 | 'rss'
894 | 'rss square'
895 | 'save'
896 | 'save outline'
897 | 'search'
898 | 'search minus'
899 | 'search plus'
900 | 'share'
901 | 'share alternate'
902 | 'share alternate square'
903 | 'share square'
904 | 'share square outline'
905 | 'shield alternate'
906 | 'sign-in'
907 | 'sign-out'
908 | 'signal'
909 | 'sitemap'
910 | 'sliders horizontal'
911 | 'smile'
912 | 'smile outline'
913 | 'sort'
914 | 'sort alphabet down'
915 | 'sort alphabet up'
916 | 'sort amount down'
917 | 'sort amount up'
918 | 'sort down'
919 | 'sort numeric down'
920 | 'sort numeric up'
921 | 'sort up'
922 | 'star'
923 | 'star outline'
924 | 'star half'
925 | 'star half outline'
926 | 'sync'
927 | 'sync alternate'
928 | 'thumbs down'
929 | 'thumbs down outline'
930 | 'thumbs up'
931 | 'thumbs up outline'
932 | 'times'
933 | 'times circle'
934 | 'times circle outline'
935 | 'toggle off'
936 | 'toggle on'
937 | 'trash'
938 | 'trash alternate'
939 | 'trash alternate outline'
940 | 'trophy'
941 | 'undo'
942 | 'undo alternate'
943 | 'upload'
944 | 'user'
945 | 'user outline'
946 | 'user circle'
947 | 'user circle outline'
948 | 'wifi'
949 | 'box'
950 | 'boxes'
951 | 'clipboard check'
952 | 'clipboard list'
953 | 'dolly'
954 | 'dolly flatbed'
955 | 'pallet'
956 | 'shipping fast'
957 | 'truck'
958 | 'warehouse'
959 | 'ambulance'
960 | 'anchor'
961 | 'balance scale'
962 | 'bath'
963 | 'bed'
964 | 'beer'
965 | 'bell'
966 | 'bell outline'
967 | 'bell slash'
968 | 'bell slash outline'
969 | 'bicycle'
970 | 'binoculars'
971 | 'birthday cake'
972 | 'blind'
973 | 'bomb'
974 | 'book'
975 | 'bookmark'
976 | 'bookmark outline'
977 | 'briefcase'
978 | 'building'
979 | 'building outline'
980 | 'car'
981 | 'coffee'
982 | 'crosshairs'
983 | 'dollar sign'
984 | 'eye'
985 | 'eye slash'
986 | 'eye slash outline'
987 | 'fighter jet'
988 | 'fire'
989 | 'fire extinguisher'
990 | 'flag'
991 | 'flag outline'
992 | 'flag checkered'
993 | 'flask'
994 | 'gamepad'
995 | 'gavel'
996 | 'gift'
997 | 'glass martini'
998 | 'globe'
999 | 'graduation cap'
1000 | 'h square'
1001 | 'heart'
1002 | 'heart outline'
1003 | 'heartbeat'
1004 | 'home'
1005 | 'hospital'
1006 | 'hospital outline'
1007 | 'image'
1008 | 'image outline'
1009 | 'images'
1010 | 'images outline'
1011 | 'industry'
1012 | 'info'
1013 | 'info circle'
1014 | 'key'
1015 | 'leaf'
1016 | 'lemon'
1017 | 'lemon outline'
1018 | 'life ring'
1019 | 'life ring outline'
1020 | 'lightbulb'
1021 | 'lightbulb outline'
1022 | 'location arrow'
1023 | 'low vision'
1024 | 'magnet'
1025 | 'male'
1026 | 'map'
1027 | 'map outline'
1028 | 'map marker'
1029 | 'map marker alternate'
1030 | 'map pin'
1031 | 'map signs'
1032 | 'medkit'
1033 | 'money bill alternate'
1034 | 'money bill alternate outline'
1035 | 'motorcycle'
1036 | 'music'
1037 | 'newspaper'
1038 | 'newspaper outline'
1039 | 'paw'
1040 | 'phone'
1041 | 'phone square'
1042 | 'phone volume'
1043 | 'plane'
1044 | 'plug'
1045 | 'plus'
1046 | 'plus square'
1047 | 'plus square outline'
1048 | 'print'
1049 | 'recycle'
1050 | 'road'
1051 | 'rocket'
1052 | 'search'
1053 | 'search minus'
1054 | 'search plus'
1055 | 'ship'
1056 | 'shopping bag'
1057 | 'shopping basket'
1058 | 'shopping cart'
1059 | 'shower'
1060 | 'street view'
1061 | 'subway'
1062 | 'suitcase'
1063 | 'tag'
1064 | 'tags'
1065 | 'taxi'
1066 | 'thumbtack'
1067 | 'ticket alternate'
1068 | 'tint'
1069 | 'train'
1070 | 'tree'
1071 | 'trophy'
1072 | 'truck'
1073 | 'tty'
1074 | 'umbrella'
1075 | 'university'
1076 | 'utensil spoon'
1077 | 'utensils'
1078 | 'wheelchair'
1079 | 'wifi'
1080 | 'wrench'
1081 | 'ambulance'
1082 | 'band aid'
1083 | 'dna'
1084 | 'first aid'
1085 | 'heart'
1086 | 'heart outline'
1087 | 'heartbeat'
1088 | 'hospital'
1089 | 'hospital outline'
1090 | 'hospital symbol'
1091 | 'pills'
1092 | 'plus'
1093 | 'stethoscope'
1094 | 'syringe'
1095 | 'thermometer'
1096 | 'user md'
1097 | 'weight'
1098 | 'ambulance'
1099 | 'anchor'
1100 | 'archive'
1101 | 'balance scale'
1102 | 'bath'
1103 | 'bed'
1104 | 'beer'
1105 | 'bell'
1106 | 'bell outline'
1107 | 'bicycle'
1108 | 'binoculars'
1109 | 'birthday cake'
1110 | 'bomb'
1111 | 'book'
1112 | 'bookmark'
1113 | 'bookmark outline'
1114 | 'briefcase'
1115 | 'bug'
1116 | 'building'
1117 | 'building outline'
1118 | 'bullhorn'
1119 | 'bullseye'
1120 | 'bus'
1121 | 'calculator'
1122 | 'calendar'
1123 | 'calendar outline'
1124 | 'calendar alternate'
1125 | 'calendar alternate outline'
1126 | 'camera'
1127 | 'camera retro'
1128 | 'car'
1129 | 'clipboard'
1130 | 'clipboard outline'
1131 | 'cloud'
1132 | 'coffee'
1133 | 'cog'
1134 | 'cogs'
1135 | 'compass'
1136 | 'compass outline'
1137 | 'copy'
1138 | 'copy outline'
1139 | 'cube'
1140 | 'cubes'
1141 | 'cut'
1142 | 'envelope'
1143 | 'envelope outline'
1144 | 'envelope open'
1145 | 'envelope open outline'
1146 | 'eraser'
1147 | 'eye'
1148 | 'eye dropper'
1149 | 'fax'
1150 | 'fighter jet'
1151 | 'file'
1152 | 'file outline'
1153 | 'file alternate'
1154 | 'file alternate outline'
1155 | 'film'
1156 | 'fire'
1157 | 'fire extinguisher'
1158 | 'flag'
1159 | 'flag outline'
1160 | 'flag checkered'
1161 | 'flask'
1162 | 'futbol'
1163 | 'futbol outline'
1164 | 'gamepad'
1165 | 'gavel'
1166 | 'gem'
1167 | 'gem outline'
1168 | 'gift'
1169 | 'glass martini'
1170 | 'globe'
1171 | 'graduation cap'
1172 | 'hdd'
1173 | 'hdd outline'
1174 | 'headphones'
1175 | 'heart'
1176 | 'heart outline'
1177 | 'home'
1178 | 'hospital'
1179 | 'hospital outline'
1180 | 'hourglass'
1181 | 'hourglass outline'
1182 | 'image'
1183 | 'image outline'
1184 | 'images'
1185 | 'images outline'
1186 | 'industry'
1187 | 'key'
1188 | 'keyboard'
1189 | 'keyboard outline'
1190 | 'laptop'
1191 | 'leaf'
1192 | 'lemon'
1193 | 'lemon outline'
1194 | 'life ring'
1195 | 'life ring outline'
1196 | 'lightbulb'
1197 | 'lightbulb outline'
1198 | 'lock'
1199 | 'lock open'
1200 | 'magic'
1201 | 'magnet'
1202 | 'map'
1203 | 'map outline'
1204 | 'map marker'
1205 | 'map marker alternate'
1206 | 'map pin'
1207 | 'map signs'
1208 | 'medkit'
1209 | 'microchip'
1210 | 'microphone'
1211 | 'mobile'
1212 | 'mobile alternate'
1213 | 'money bill alternate'
1214 | 'money bill alternate outline'
1215 | 'moon'
1216 | 'moon outline'
1217 | 'motorcycle'
1218 | 'newspaper'
1219 | 'newspaper outline'
1220 | 'paint brush'
1221 | 'paper plane'
1222 | 'paper plane outline'
1223 | 'paperclip'
1224 | 'paste'
1225 | 'paw'
1226 | 'pencil alternate'
1227 | 'phone'
1228 | 'plane'
1229 | 'plug'
1230 | 'print'
1231 | 'puzzle piece'
1232 | 'road'
1233 | 'rocket'
1234 | 'save'
1235 | 'save outline'
1236 | 'search'
1237 | 'shield alternate'
1238 | 'shopping bag'
1239 | 'shopping basket'
1240 | 'shopping cart'
1241 | 'shower'
1242 | 'snowflake'
1243 | 'snowflake outline'
1244 | 'space shuttle'
1245 | 'star'
1246 | 'star outline'
1247 | 'sticky note'
1248 | 'sticky note outline'
1249 | 'stopwatch'
1250 | 'subway'
1251 | 'suitcase'
1252 | 'sun'
1253 | 'sun outline'
1254 | 'tablet'
1255 | 'tablet alternate'
1256 | 'tachometer alternate'
1257 | 'tag'
1258 | 'tags'
1259 | 'taxi'
1260 | 'thumbtack'
1261 | 'ticket alternate'
1262 | 'train'
1263 | 'trash'
1264 | 'trash alternate'
1265 | 'trash alternate outline'
1266 | 'tree'
1267 | 'trophy'
1268 | 'truck'
1269 | 'tv'
1270 | 'umbrella'
1271 | 'university'
1272 | 'unlock'
1273 | 'unlock alternate'
1274 | 'utensil spoon'
1275 | 'utensils'
1276 | 'wheelchair'
1277 | 'wrench'
1278 | 'bell'
1279 | 'bell outline'
1280 | 'bookmark'
1281 | 'bookmark outline'
1282 | 'bullhorn'
1283 | 'camera'
1284 | 'camera retro'
1285 | 'cart arrow down'
1286 | 'cart plus'
1287 | 'certificate'
1288 | 'credit card'
1289 | 'credit card outline'
1290 | 'gem'
1291 | 'gem outline'
1292 | 'gift'
1293 | 'handshake'
1294 | 'handshake outline'
1295 | 'heart'
1296 | 'heart outline'
1297 | 'key'
1298 | 'shopping bag'
1299 | 'shopping basket'
1300 | 'shopping cart'
1301 | 'star'
1302 | 'star outline'
1303 | 'tag'
1304 | 'tags'
1305 | 'thumbs down'
1306 | 'thumbs down outline'
1307 | 'thumbs up'
1308 | 'thumbs up outline'
1309 | 'trophy'
1310 | 'bookmark'
1311 | 'bookmark outline'
1312 | 'calendar'
1313 | 'calendar outline'
1314 | 'certificate'
1315 | 'circle'
1316 | 'circle outline'
1317 | 'cloud'
1318 | 'comment'
1319 | 'comment outline'
1320 | 'file'
1321 | 'file outline'
1322 | 'folder'
1323 | 'folder outline'
1324 | 'heart'
1325 | 'heart outline'
1326 | 'map marker'
1327 | 'play'
1328 | 'square'
1329 | 'square outline'
1330 | 'star'
1331 | 'star outline'
1332 | 'asterisk'
1333 | 'certificate'
1334 | 'circle notch'
1335 | 'cog'
1336 | 'compass'
1337 | 'compass outline'
1338 | 'crosshairs'
1339 | 'life ring'
1340 | 'life ring outline'
1341 | 'snowflake'
1342 | 'snowflake outline'
1343 | 'spinner'
1344 | 'sun'
1345 | 'sun outline'
1346 | 'sync'
1347 | 'baseball ball'
1348 | 'basketball ball'
1349 | 'bowling ball'
1350 | 'football ball'
1351 | 'futbol'
1352 | 'futbol outline'
1353 | 'golf ball'
1354 | 'hockey puck'
1355 | 'quidditch'
1356 | 'table tennis'
1357 | 'volleyball ball'
1358 | 'ban'
1359 | 'battery empty'
1360 | 'battery full'
1361 | 'battery half'
1362 | 'battery quarter'
1363 | 'battery three quarters'
1364 | 'bell'
1365 | 'bell outline'
1366 | 'bell slash'
1367 | 'bell slash outline'
1368 | 'calendar'
1369 | 'calendar outline'
1370 | 'calendar alternate'
1371 | 'calendar alternate outline'
1372 | 'calendar check'
1373 | 'calendar check outline'
1374 | 'calendar minus'
1375 | 'calendar minus outline'
1376 | 'calendar plus'
1377 | 'calendar plus outline'
1378 | 'calendar times'
1379 | 'calendar times outline'
1380 | 'cart arrow down'
1381 | 'cart plus'
1382 | 'exclamation'
1383 | 'exclamation circle'
1384 | 'exclamation triangle'
1385 | 'eye'
1386 | 'eye slash'
1387 | 'eye slash outline'
1388 | 'file'
1389 | 'file outline'
1390 | 'file alternate'
1391 | 'file alternate outline'
1392 | 'folder'
1393 | 'folder outline'
1394 | 'folder open'
1395 | 'folder open outline'
1396 | 'info'
1397 | 'info circle'
1398 | 'lock'
1399 | 'lock open'
1400 | 'minus'
1401 | 'minus circle'
1402 | 'minus square'
1403 | 'minus square outline'
1404 | 'plus'
1405 | 'plus circle'
1406 | 'plus square'
1407 | 'plus square outline'
1408 | 'question'
1409 | 'question circle'
1410 | 'question circle outline'
1411 | 'shield alternate'
1412 | 'shopping cart'
1413 | 'sign in alternate'
1414 | 'sign out alternate'
1415 | 'thermometer empty'
1416 | 'thermometer full'
1417 | 'thermometer half'
1418 | 'thermometer quarter'
1419 | 'thermometer three quarters'
1420 | 'thumbs down'
1421 | 'thumbs down outline'
1422 | 'thumbs up'
1423 | 'thumbs up outline'
1424 | 'toggle off'
1425 | 'toggle on'
1426 | 'unlock'
1427 | 'unlock alternate'
1428 | 'address book'
1429 | 'address book outline'
1430 | 'address card'
1431 | 'address card outline'
1432 | 'bed'
1433 | 'blind'
1434 | 'child'
1435 | 'female'
1436 | 'frown'
1437 | 'frown outline'
1438 | 'id badge'
1439 | 'id badge outline'
1440 | 'id card'
1441 | 'id card outline'
1442 | 'male'
1443 | 'meh'
1444 | 'meh outline'
1445 | 'power off'
1446 | 'smile'
1447 | 'smile outline'
1448 | 'street view'
1449 | 'user'
1450 | 'user outline'
1451 | 'user circle'
1452 | 'user circle outline'
1453 | 'user md'
1454 | 'user plus'
1455 | 'user secret'
1456 | 'user times'
1457 | 'users'
1458 | 'wheelchair'
1459 | 'ambulance'
1460 | 'bicycle'
1461 | 'bus'
1462 | 'car'
1463 | 'fighter jet'
1464 | 'motorcycle'
1465 | 'paper plane'
1466 | 'paper plane outline'
1467 | 'plane'
1468 | 'rocket'
1469 | 'ship'
1470 | 'shopping cart'
1471 | 'space shuttle'
1472 | 'subway'
1473 | 'taxi'
1474 | 'train'
1475 | 'truck'
1476 | 'wheelchair'
1477 | 'archive'
1478 | 'book'
1479 | 'bookmark'
1480 | 'bookmark outline'
1481 | 'edit'
1482 | 'edit outline'
1483 | 'envelope'
1484 | 'envelope outline'
1485 | 'envelope open'
1486 | 'envelope open outline'
1487 | 'eraser'
1488 | 'file'
1489 | 'file outline'
1490 | 'file alternate'
1491 | 'file alternate outline'
1492 | 'folder'
1493 | 'folder outline'
1494 | 'folder open'
1495 | 'folder open outline'
1496 | 'keyboard'
1497 | 'keyboard outline'
1498 | 'newspaper'
1499 | 'newspaper outline'
1500 | 'paper plane'
1501 | 'paper plane outline'
1502 | 'paperclip'
1503 | 'paragraph'
1504 | 'pen square'
1505 | 'pencil alternate'
1506 | 'quote left'
1507 | 'quote right'
1508 | 'sticky note'
1509 | 'sticky note outline'
1510 | 'thumbtack'
1511 | '500px'
1512 | 'accessible'
1513 | 'accusoft'
1514 | 'adn'
1515 | 'adversal'
1516 | 'affiliatetheme'
1517 | 'algolia'
1518 | 'amazon'
1519 | 'amazon pay'
1520 | 'amilia'
1521 | 'android'
1522 | 'angellist'
1523 | 'angrycreative'
1524 | 'angular'
1525 | 'app store'
1526 | 'app store ios'
1527 | 'apper'
1528 | 'apple'
1529 | 'apple pay'
1530 | 'asymmetrik'
1531 | 'audible'
1532 | 'autoprefixer'
1533 | 'avianex'
1534 | 'aviato'
1535 | 'aws'
1536 | 'bandcamp'
1537 | 'behance'
1538 | 'behance square'
1539 | 'bimobject'
1540 | 'bitbucket'
1541 | 'bitcoin'
1542 | 'bity'
1543 | 'black tie'
1544 | 'blackberry'
1545 | 'blogger'
1546 | 'blogger b'
1547 | 'bluetooth'
1548 | 'bluetooth b'
1549 | 'btc'
1550 | 'buromobelexperte'
1551 | 'buysellads'
1552 | 'cc amazon pay'
1553 | 'cc amex'
1554 | 'cc apple pay'
1555 | 'cc diners club'
1556 | 'cc discover'
1557 | 'cc jcb'
1558 | 'cc mastercard'
1559 | 'cc paypal'
1560 | 'cc stripe'
1561 | 'cc visa'
1562 | 'centercode'
1563 | 'chrome'
1564 | 'cloudscale'
1565 | 'cloudsmith'
1566 | 'cloudversify'
1567 | 'codepen'
1568 | 'codiepie'
1569 | 'connectdevelop'
1570 | 'contao'
1571 | 'cpanel'
1572 | 'creative commons'
1573 | 'css3'
1574 | 'css3 alternate'
1575 | 'cuttlefish'
1576 | 'd and d'
1577 | 'dashcube'
1578 | 'delicious'
1579 | 'deploydog'
1580 | 'deskpro'
1581 | 'deviantart'
1582 | 'digg'
1583 | 'digital ocean'
1584 | 'discord'
1585 | 'discourse'
1586 | 'dochub'
1587 | 'docker'
1588 | 'draft2digital'
1589 | 'dribbble'
1590 | 'dribbble square'
1591 | 'dropbox'
1592 | 'drupal'
1593 | 'dyalog'
1594 | 'earlybirds'
1595 | 'edge'
1596 | 'elementor'
1597 | 'ember'
1598 | 'empire'
1599 | 'envira'
1600 | 'erlang'
1601 | 'ethereum'
1602 | 'etsy'
1603 | 'expeditedssl'
1604 | 'facebook'
1605 | 'facebook f'
1606 | 'facebook messenger'
1607 | 'facebook square'
1608 | 'firefox'
1609 | 'first order'
1610 | 'firstdraft'
1611 | 'flickr'
1612 | 'flipboard'
1613 | 'fly'
1614 | 'font awesome'
1615 | 'font awesome alternate'
1616 | 'font awesome flag'
1617 | 'fonticons'
1618 | 'fonticons fi'
1619 | 'fort awesome'
1620 | 'fort awesome alternate'
1621 | 'forumbee'
1622 | 'foursquare'
1623 | 'free code camp'
1624 | 'freebsd'
1625 | 'get pocket'
1626 | 'gg'
1627 | 'gg circle'
1628 | 'git'
1629 | 'git square'
1630 | 'github'
1631 | 'github alternate'
1632 | 'github square'
1633 | 'gitkraken'
1634 | 'gitlab'
1635 | 'gitter'
1636 | 'glide'
1637 | 'glide g'
1638 | 'gofore'
1639 | 'goodreads'
1640 | 'goodreads g'
1641 | 'google'
1642 | 'google drive'
1643 | 'google play'
1644 | 'google plus'
1645 | 'google plus g'
1646 | 'google plus square'
1647 | 'google wallet'
1648 | 'gratipay'
1649 | 'grav'
1650 | 'gripfire'
1651 | 'grunt'
1652 | 'gulp'
1653 | 'hacker news'
1654 | 'hacker news square'
1655 | 'hips'
1656 | 'hire a helper'
1657 | 'hooli'
1658 | 'hotjar'
1659 | 'houzz'
1660 | 'html5'
1661 | 'hubspot'
1662 | 'imdb'
1663 | 'instagram'
1664 | 'internet explorer'
1665 | 'ioxhost'
1666 | 'itunes'
1667 | 'itunes note'
1668 | 'jenkins'
1669 | 'joget'
1670 | 'joomla'
1671 | 'js'
1672 | 'js square'
1673 | 'jsfiddle'
1674 | 'keycdn'
1675 | 'kickstarter'
1676 | 'kickstarter k'
1677 | 'korvue'
1678 | 'laravel'
1679 | 'lastfm'
1680 | 'lastfm square'
1681 | 'leanpub'
1682 | 'less'
1683 | 'linechat'
1684 | 'linkedin'
1685 | 'linkedin alternate'
1686 | 'linode'
1687 | 'linux'
1688 | 'lyft'
1689 | 'magento'
1690 | 'maxcdn'
1691 | 'medapps'
1692 | 'medium'
1693 | 'medium m'
1694 | 'medrt'
1695 | 'meetup'
1696 | 'microsoft'
1697 | 'mix'
1698 | 'mixcloud'
1699 | 'mizuni'
1700 | 'modx'
1701 | 'monero'
1702 | 'napster'
1703 | 'nintendo switch'
1704 | 'node'
1705 | 'node js'
1706 | 'npm'
1707 | 'ns8'
1708 | 'nutritionix'
1709 | 'odnoklassniki'
1710 | 'odnoklassniki square'
1711 | 'opencart'
1712 | 'openid'
1713 | 'opera'
1714 | 'optin monster'
1715 | 'osi'
1716 | 'page4'
1717 | 'pagelines'
1718 | 'palfed'
1719 | 'patreon'
1720 | 'paypal'
1721 | 'periscope'
1722 | 'phabricator'
1723 | 'phoenix framework'
1724 | 'php'
1725 | 'pied piper'
1726 | 'pied piper alternate'
1727 | 'pied piper pp'
1728 | 'pinterest'
1729 | 'pinterest p'
1730 | 'pinterest square'
1731 | 'playstation'
1732 | 'product hunt'
1733 | 'pushed'
1734 | 'python'
1735 | 'qq'
1736 | 'quinscape'
1737 | 'quora'
1738 | 'ravelry'
1739 | 'react'
1740 | 'rebel'
1741 | 'redriver'
1742 | 'reddit'
1743 | 'reddit alien'
1744 | 'reddit square'
1745 | 'rendact'
1746 | 'renren'
1747 | 'replyd'
1748 | 'resolving'
1749 | 'rocketchat'
1750 | 'rockrms'
1751 | 'safari'
1752 | 'sass'
1753 | 'schlix'
1754 | 'scribd'
1755 | 'searchengin'
1756 | 'sellcast'
1757 | 'sellsy'
1758 | 'servicestack'
1759 | 'shirtsinbulk'
1760 | 'simplybuilt'
1761 | 'sistrix'
1762 | 'skyatlas'
1763 | 'skype'
1764 | 'slack'
1765 | 'slack hash'
1766 | 'slideshare'
1767 | 'snapchat'
1768 | 'snapchat ghost'
1769 | 'snapchat square'
1770 | 'soundcloud'
1771 | 'speakap'
1772 | 'spotify'
1773 | 'stack exchange'
1774 | 'stack overflow'
1775 | 'staylinked'
1776 | 'steam'
1777 | 'steam square'
1778 | 'steam symbol'
1779 | 'sticker mule'
1780 | 'strava'
1781 | 'stripe'
1782 | 'stripe s'
1783 | 'studiovinari'
1784 | 'stumbleupon'
1785 | 'stumbleupon circle'
1786 | 'superpowers'
1787 | 'supple'
1788 | 'telegram'
1789 | 'telegram plane'
1790 | 'tencent weibo'
1791 | 'themeisle'
1792 | 'trello'
1793 | 'tripadvisor'
1794 | 'tumblr'
1795 | 'tumblr square'
1796 | 'twitch'
1797 | 'twitter'
1798 | 'twitter square'
1799 | 'typo3'
1800 | 'uber'
1801 | 'uikit'
1802 | 'uniregistry'
1803 | 'untappd'
1804 | 'usb'
1805 | 'ussunnah'
1806 | 'vaadin'
1807 | 'viacoin'
1808 | 'viadeo'
1809 | 'viadeo square'
1810 | 'viber'
1811 | 'vimeo'
1812 | 'vimeo square'
1813 | 'vimeo v'
1814 | 'vine'
1815 | 'vk'
1816 | 'vnv'
1817 | 'vuejs'
1818 | 'wechat'
1819 | 'weibo'
1820 | 'weixin'
1821 | 'whatsapp'
1822 | 'whatsapp square'
1823 | 'whmcs'
1824 | 'wikipedia w'
1825 | 'windows'
1826 | 'wordpress'
1827 | 'wordpress simple'
1828 | 'wpbeginner'
1829 | 'wpexplorer'
1830 | 'wpforms'
1831 | 'xbox'
1832 | 'xing'
1833 | 'xing square'
1834 | 'y combinator'
1835 | 'yahoo'
1836 | 'yandex'
1837 | 'yandex international'
1838 | 'yelp'
1839 | 'yoast'
1840 | 'youtube'
1841 | 'youtube square'
1842 | 'chess rock'
1843 | 'ordered list'
1844 | 'unordered list'
1845 | 'user doctor'
1846 | 'shield'
1847 | 'puzzle'
1848 | 'add circle'
1849 | 'add square'
1850 | 'add to calendar'
1851 | 'add to cart'
1852 | 'add user'
1853 | 'add'
1854 | 'alarm mute'
1855 | 'alarm'
1856 | 'ald'
1857 | 'als'
1858 | 'announcement'
1859 | 'area chart'
1860 | 'area graph'
1861 | 'arrow down cart'
1862 | 'asexual'
1863 | 'asl interpreting'
1864 | 'asl'
1865 | 'assistive listening devices'
1866 | 'attach'
1867 | 'attention'
1868 | 'balance'
1869 | 'bar'
1870 | 'bathtub'
1871 | 'battery four'
1872 | 'battery high'
1873 | 'battery low'
1874 | 'battery one'
1875 | 'battery three'
1876 | 'battery two'
1877 | 'battery zero'
1878 | 'birthday'
1879 | 'block layout'
1880 | 'bluetooth alternative'
1881 | 'broken chain'
1882 | 'browser'
1883 | 'call square'
1884 | 'call'
1885 | 'cancel'
1886 | 'cart'
1887 | 'cc'
1888 | 'chain'
1889 | 'chat'
1890 | 'checked calendar'
1891 | 'checkmark'
1892 | 'circle notched'
1893 | 'close'
1894 | 'cny'
1895 | 'cocktail'
1896 | 'commenting'
1897 | 'computer'
1898 | 'configure'
1899 | 'content'
1900 | 'deafness'
1901 | 'delete calendar'
1902 | 'delete'
1903 | 'detective'
1904 | 'discussions'
1905 | 'doctor'
1906 | 'dollar'
1907 | 'dont'
1908 | 'drivers license'
1909 | 'dropdown'
1910 | 'emergency'
1911 | 'envira gallery'
1912 | 'erase'
1913 | 'eur'
1914 | 'euro'
1915 | 'eyedropper'
1916 | 'factory'
1917 | 'favorite'
1918 | 'feed'
1919 | 'female homosexual'
1920 | 'file text'
1921 | 'file text outline'
1922 | 'find'
1923 | 'first aid'
1924 | 'fork'
1925 | 'game'
1926 | 'gay'
1927 | 'gbp'
1928 | 'google plus circle'
1929 | 'google plus official'
1930 | 'grab'
1931 | 'graduation'
1932 | 'grid layout'
1933 | 'group'
1934 | 'h'
1935 | 'hand victory'
1936 | 'handicap'
1937 | 'hard of hearing'
1938 | 'header'
1939 | 'help circle'
1940 | 'help'
1941 | 'heterosexual'
1942 | 'hide'
1943 | 'hotel'
1944 | 'hourglass four'
1945 | 'hourglass full'
1946 | 'hourglass one'
1947 | 'hourglass three'
1948 | 'hourglass two'
1949 | 'idea'
1950 | 'ils'
1951 | 'in cart'
1952 | 'inr'
1953 | 'intergender'
1954 | 'intersex'
1955 | 'jpy'
1956 | 'krw'
1957 | 'lab'
1958 | 'law'
1959 | 'legal'
1960 | 'lesbian'
1961 | 'lightning'
1962 | 'like'
1963 | 'line graph'
1964 | 'linkedin square'
1965 | 'linkify'
1966 | 'lira'
1967 | 'list layout'
1968 | 'magnify'
1969 | 'mail forward'
1970 | 'mail outline'
1971 | 'mail square'
1972 | 'mail'
1973 | 'male homosexual'
1974 | 'man'
1975 | 'marker'
1976 | 'mars alternate'
1977 | 'mars horizontal'
1978 | 'mars vertical'
1979 | 'microsoft edge'
1980 | 'military'
1981 | 'ms edge'
1982 | 'mute'
1983 | 'new pied piper'
1984 | 'non binary transgender'
1985 | 'numbered list'
1986 | 'options'
1987 | 'other gender horizontal'
1988 | 'other gender vertical'
1989 | 'other gender'
1990 | 'payment'
1991 | 'paypal card'
1992 | 'pencil square'
1993 | 'photo'
1994 | 'picture'
1995 | 'pie chart'
1996 | 'pie graph'
1997 | 'pied piper hat'
1998 | 'pin'
1999 | 'plus cart'
2000 | 'point'
2001 | 'pointing down'
2002 | 'pointing left'
2003 | 'pointing right'
2004 | 'pointing up'
2005 | 'pound'
2006 | 'power cord'
2007 | 'power'
2008 | 'privacy'
2009 | 'r circle'
2010 | 'rain'
2011 | 'record'
2012 | 'refresh'
2013 | 'remove circle'
2014 | 'remove from calendar'
2015 | 'remove user'
2016 | 'remove'
2017 | 'repeat'
2018 | 'rmb'
2019 | 'rouble'
2020 | 'rub'
2021 | 'ruble'
2022 | 'rupee'
2023 | 's15'
2024 | 'selected radio'
2025 | 'send'
2026 | 'setting'
2027 | 'settings'
2028 | 'shekel'
2029 | 'sheqel'
2030 | 'shipping'
2031 | 'shop'
2032 | 'shuffle'
2033 | 'shutdown'
2034 | 'sidebar'
2035 | 'signing'
2036 | 'signup'
2037 | 'sliders'
2038 | 'soccer'
2039 | 'sort alphabet ascending'
2040 | 'sort alphabet descending'
2041 | 'sort ascending'
2042 | 'sort content ascending'
2043 | 'sort content descending'
2044 | 'sort descending'
2045 | 'sort numeric ascending'
2046 | 'sort numeric descending'
2047 | 'sound'
2048 | 'spy'
2049 | 'stripe card'
2050 | 'student'
2051 | 'talk'
2052 | 'target'
2053 | 'teletype'
2054 | 'television'
2055 | 'text cursor'
2056 | 'text telephone'
2057 | 'theme'
2058 | 'thermometer'
2059 | 'thumb tack'
2060 | 'time'
2061 | 'tm'
2062 | 'toggle down'
2063 | 'toggle left'
2064 | 'toggle right'
2065 | 'toggle up'
2066 | 'translate'
2067 | 'travel'
2068 | 'treatment'
2069 | 'triangle down'
2070 | 'triangle left'
2071 | 'triangle right'
2072 | 'triangle up'
2073 | 'try'
2074 | 'unhide'
2075 | 'unlinkify'
2076 | 'unmute'
2077 | 'usd'
2078 | 'user cancel'
2079 | 'user close'
2080 | 'user delete'
2081 | 'user x'
2082 | 'vcard'
2083 | 'video camera'
2084 | 'video play'
2085 | 'volume control phone'
2086 | 'wait'
2087 | 'warning circle'
2088 | 'warning sign'
2089 | 'warning'
2090 | 'wi-fi'
2091 | 'winner'
2092 | 'wizard'
2093 | 'woman'
2094 | 'won'
2095 | 'wordpress beginner'
2096 | 'wordpress forms'
2097 | 'world'
2098 | 'write square'
2099 | 'x'
2100 | 'yen'
2101 | 'zip'
2102 | 'zoom in'
2103 | 'zoom out'
2104 | 'zoom'
2105 | 'bitbucket square'
2106 | 'checkmark box'
2107 | 'circle thin'
2108 | 'cloud download'
2109 | 'cloud upload'
2110 | 'compose'
2111 | 'conversation'
2112 | 'credit card alternative'
2113 | 'currency'
2114 | 'dashboard'
2115 | 'diamond'
2116 | 'disk'
2117 | 'exchange'
2118 | 'external share'
2119 | 'external square'
2120 | 'external'
2121 | 'facebook official'
2122 | 'food'
2123 | 'hourglass zero'
2124 | 'level down'
2125 | 'level up'
2126 | 'log out'
2127 | 'meanpath'
2128 | 'money'
2129 | 'move'
2130 | 'pencil'
2131 | 'protect'
2132 | 'radio'
2133 | 'remove bookmark'
2134 | 'resize horizontal'
2135 | 'resize vertical'
2136 | 'sign in'
2137 | 'sign out'
2138 | 'spoon'
2139 | 'star half empty'
2140 | 'star half full'
2141 | 'ticket'
2142 | 'times rectangle'
2143 | 'write'
2144 | 'youtube play'