zuicon-ant 0.3.1

Wrapper of ant design icons for yew framework
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
// Auto Generated! DO NOT EDIT!

#![deny(
    warnings,
    clippy::all,
    clippy::cargo,
    clippy::nursery,
    clippy::pedantic
)]

mod account_book;
pub use account_book::AccountBook;

mod aim;
pub use aim::Aim;

mod alert;
pub use alert::Alert;

mod alibaba;
pub use alibaba::Alibaba;

mod align_center;
pub use align_center::AlignCenter;

mod align_left;
pub use align_left::AlignLeft;

mod align_right;
pub use align_right::AlignRight;

mod alipay;
pub use alipay::Alipay;

mod alipay_circle;
pub use alipay_circle::AlipayCircle;

mod aliwangwang;
pub use aliwangwang::Aliwangwang;

mod aliyun;
pub use aliyun::Aliyun;

mod amazon;
pub use amazon::Amazon;

mod android;
pub use android::Android;

mod ant_cloud;
pub use ant_cloud::AntCloud;

mod ant_design;
pub use ant_design::AntDesign;

mod apartment;
pub use apartment::Apartment;

mod api;
pub use api::Api;

mod apple;
pub use apple::Apple;

mod appstore;
pub use appstore::Appstore;

mod appstore_add;
pub use appstore_add::AppstoreAdd;

mod area_chart;
pub use area_chart::AreaChart;

mod arrow_down;
pub use arrow_down::ArrowDown;

mod arrow_left;
pub use arrow_left::ArrowLeft;

mod arrow_right;
pub use arrow_right::ArrowRight;

mod arrow_up;
pub use arrow_up::ArrowUp;

mod arrows_alt;
pub use arrows_alt::ArrowsAlt;

mod audio;
pub use audio::Audio;

mod audio_muted;
pub use audio_muted::AudioMuted;

mod audit;
pub use audit::Audit;

mod backward;
pub use backward::Backward;

mod baidu;
pub use baidu::Baidu;

mod bank;
pub use bank::Bank;

mod bar_chart;
pub use bar_chart::BarChart;

mod barcode;
pub use barcode::Barcode;

mod bars;
pub use bars::Bars;

mod behance;
pub use behance::Behance;

mod behance_square;
pub use behance_square::BehanceSquare;

mod bell;
pub use bell::Bell;

mod bg_colors;
pub use bg_colors::BgColors;

mod bilibili;
pub use bilibili::Bilibili;

mod block;
pub use block::Block;

mod bold;
pub use bold::Bold;

mod book;
pub use book::Book;

mod border;
pub use border::Border;

mod border_bottom;
pub use border_bottom::BorderBottom;

mod border_horizontal;
pub use border_horizontal::BorderHorizontal;

mod border_inner;
pub use border_inner::BorderInner;

mod border_left;
pub use border_left::BorderLeft;

mod border_outer;
pub use border_outer::BorderOuter;

mod border_right;
pub use border_right::BorderRight;

mod border_top;
pub use border_top::BorderTop;

mod border_verticle;
pub use border_verticle::BorderVerticle;

mod borderless_table;
pub use borderless_table::BorderlessTable;

mod box_plot;
pub use box_plot::BoxPlot;

mod branches;
pub use branches::Branches;

mod bug;
pub use bug::Bug;

mod build;
pub use build::Build;

mod bulb;
pub use bulb::Bulb;

mod calculator;
pub use calculator::Calculator;

mod calendar;
pub use calendar::Calendar;

mod camera;
pub use camera::Camera;

mod car;
pub use car::Car;

mod caret_down;
pub use caret_down::CaretDown;

mod caret_left;
pub use caret_left::CaretLeft;

mod caret_right;
pub use caret_right::CaretRight;

mod caret_up;
pub use caret_up::CaretUp;

mod carry_out;
pub use carry_out::CarryOut;

mod check;
pub use check::Check;

mod check_circle;
pub use check_circle::CheckCircle;

mod check_square;
pub use check_square::CheckSquare;

mod chrome;
pub use chrome::Chrome;

mod ci;
pub use ci::Ci;

mod ci_circle;
pub use ci_circle::CiCircle;

mod clear;
pub use clear::Clear;

mod clock_circle;
pub use clock_circle::ClockCircle;

mod close;
pub use close::Close;

mod close_circle;
pub use close_circle::CloseCircle;

mod close_square;
pub use close_square::CloseSquare;

mod cloud;
pub use cloud::Cloud;

mod cloud_download;
pub use cloud_download::CloudDownload;

mod cloud_server;
pub use cloud_server::CloudServer;

mod cloud_sync;
pub use cloud_sync::CloudSync;

mod cloud_upload;
pub use cloud_upload::CloudUpload;

mod cluster;
pub use cluster::Cluster;

mod code;
pub use code::Code;

mod code_sandbox;
pub use code_sandbox::CodeSandbox;

mod codepen;
pub use codepen::Codepen;

mod codepen_circle;
pub use codepen_circle::CodepenCircle;

mod coffee;
pub use coffee::Coffee;

mod column_height;
pub use column_height::ColumnHeight;

mod column_width;
pub use column_width::ColumnWidth;

mod comment;
pub use comment::Comment;

mod compass;
pub use compass::Compass;

mod compress;
pub use compress::Compress;

mod console_sql;
pub use console_sql::ConsoleSql;

mod contacts;
pub use contacts::Contacts;

mod container;
pub use container::Container;

mod control;
pub use control::Control;

mod copy;
pub use copy::Copy;

mod copyright;
pub use copyright::Copyright;

mod copyright_circle;
pub use copyright_circle::CopyrightCircle;

mod credit_card;
pub use credit_card::CreditCard;

mod crown;
pub use crown::Crown;

mod customer_service;
pub use customer_service::CustomerService;

mod dash;
pub use dash::Dash;

mod dashboard;
pub use dashboard::Dashboard;

mod database;
pub use database::Database;

mod delete;
pub use delete::Delete;

mod delete_column;
pub use delete_column::DeleteColumn;

mod delete_row;
pub use delete_row::DeleteRow;

mod delivered_procedure;
pub use delivered_procedure::DeliveredProcedure;

mod deployment_unit;
pub use deployment_unit::DeploymentUnit;

mod desktop;
pub use desktop::Desktop;

mod diff;
pub use diff::Diff;

mod dingding;
pub use dingding::Dingding;

mod dingtalk;
pub use dingtalk::Dingtalk;

mod disconnect;
pub use disconnect::Disconnect;

mod discord;
pub use discord::Discord;

mod dislike;
pub use dislike::Dislike;

mod docker;
pub use docker::Docker;

mod dollar;
pub use dollar::Dollar;

mod dollar_circle;
pub use dollar_circle::DollarCircle;

mod dot_chart;
pub use dot_chart::DotChart;

mod dot_net;
pub use dot_net::DotNet;

mod double_left;
pub use double_left::DoubleLeft;

mod double_right;
pub use double_right::DoubleRight;

mod down;
pub use down::Down;

mod down_circle;
pub use down_circle::DownCircle;

mod down_square;
pub use down_square::DownSquare;

mod download;
pub use download::Download;

mod drag;
pub use drag::Drag;

mod dribbble;
pub use dribbble::Dribbble;

mod dribbble_square;
pub use dribbble_square::DribbbleSquare;

mod dropbox;
pub use dropbox::Dropbox;

mod edit;
pub use edit::Edit;

mod ellipsis;
pub use ellipsis::Ellipsis;

mod enter;
pub use enter::Enter;

mod environment;
pub use environment::Environment;

mod euro;
pub use euro::Euro;

mod euro_circle;
pub use euro_circle::EuroCircle;

mod exception;
pub use exception::Exception;

mod exclamation;
pub use exclamation::Exclamation;

mod exclamation_circle;
pub use exclamation_circle::ExclamationCircle;

mod expand;
pub use expand::Expand;

mod expand_alt;
pub use expand_alt::ExpandAlt;

mod experiment;
pub use experiment::Experiment;

mod export;
pub use export::Export;

mod eye;
pub use eye::Eye;

mod eye_invisible;
pub use eye_invisible::EyeInvisible;

mod facebook;
pub use facebook::Facebook;

mod fall;
pub use fall::Fall;

mod fast_backward;
pub use fast_backward::FastBackward;

mod fast_forward;
pub use fast_forward::FastForward;

mod field_binary;
pub use field_binary::FieldBinary;

mod field_number;
pub use field_number::FieldNumber;

mod field_string;
pub use field_string::FieldString;

mod field_time;
pub use field_time::FieldTime;

mod file;
pub use file::File;

mod file_add;
pub use file_add::FileAdd;

mod file_done;
pub use file_done::FileDone;

mod file_excel;
pub use file_excel::FileExcel;

mod file_exclamation;
pub use file_exclamation::FileExclamation;

mod file_gif;
pub use file_gif::FileGif;

mod file_image;
pub use file_image::FileImage;

mod file_jpg;
pub use file_jpg::FileJpg;

mod file_markdown;
pub use file_markdown::FileMarkdown;

mod file_pdf;
pub use file_pdf::FilePdf;

mod file_ppt;
pub use file_ppt::FilePpt;

mod file_protect;
pub use file_protect::FileProtect;

mod file_search;
pub use file_search::FileSearch;

mod file_sync;
pub use file_sync::FileSync;

mod file_text;
pub use file_text::FileText;

mod file_unknown;
pub use file_unknown::FileUnknown;

mod file_word;
pub use file_word::FileWord;

mod file_zip;
pub use file_zip::FileZip;

mod filter;
pub use filter::Filter;

mod fire;
pub use fire::Fire;

mod flag;
pub use flag::Flag;

mod folder;
pub use folder::Folder;

mod folder_add;
pub use folder_add::FolderAdd;

mod folder_open;
pub use folder_open::FolderOpen;

mod folder_view;
pub use folder_view::FolderView;

mod font_colors;
pub use font_colors::FontColors;

mod font_size;
pub use font_size::FontSize;

mod fork;
pub use fork::Fork;

mod form;
pub use form::Form;

mod format_painter;
pub use format_painter::FormatPainter;

mod forward;
pub use forward::Forward;

mod frown;
pub use frown::Frown;

mod fullscreen;
pub use fullscreen::Fullscreen;

mod fullscreen_exit;
pub use fullscreen_exit::FullscreenExit;

mod function;
pub use function::Function;

mod fund;
pub use fund::Fund;

mod fund_projection_screen;
pub use fund_projection_screen::FundProjectionScreen;

mod fund_view;
pub use fund_view::FundView;

mod funnel_plot;
pub use funnel_plot::FunnelPlot;

mod gateway;
pub use gateway::Gateway;

mod gif;
pub use gif::Gif;

mod gift;
pub use gift::Gift;

mod github;
pub use github::Github;

mod gitlab;
pub use gitlab::Gitlab;

mod global;
pub use global::Global;

mod gold;
pub use gold::Gold;

mod google;
pub use google::Google;

mod google_plus;
pub use google_plus::GooglePlus;

mod group;
pub use group::Group;

mod harmony_o_s;
pub use harmony_o_s::HarmonyOS;

mod hdd;
pub use hdd::Hdd;

mod heart;
pub use heart::Heart;

mod heat_map;
pub use heat_map::HeatMap;

mod highlight;
pub use highlight::Highlight;

mod history;
pub use history::History;

mod holder;
pub use holder::Holder;

mod home;
pub use home::Home;

mod hourglass;
pub use hourglass::Hourglass;

mod html5;
pub use html5::Html5;

mod idcard;
pub use idcard::Idcard;

mod ie;
pub use ie::Ie;

mod import;
pub use import::Import;

mod inbox;
pub use inbox::Inbox;

mod info;
pub use info::Info;

mod info_circle;
pub use info_circle::InfoCircle;

mod insert_row_above;
pub use insert_row_above::InsertRowAbove;

mod insert_row_below;
pub use insert_row_below::InsertRowBelow;

mod insert_row_left;
pub use insert_row_left::InsertRowLeft;

mod insert_row_right;
pub use insert_row_right::InsertRowRight;

mod instagram;
pub use instagram::Instagram;

mod insurance;
pub use insurance::Insurance;

mod interaction;
pub use interaction::Interaction;

mod issues_close;
pub use issues_close::IssuesClose;

mod italic;
pub use italic::Italic;

mod java;
pub use java::Java;

mod java_script;
pub use java_script::JavaScript;

mod key;
pub use key::Key;

mod kubernetes;
pub use kubernetes::Kubernetes;

mod laptop;
pub use laptop::Laptop;

mod layout;
pub use layout::Layout;

mod left;
pub use left::Left;

mod left_circle;
pub use left_circle::LeftCircle;

mod left_square;
pub use left_square::LeftSquare;

mod like;
pub use like::Like;

mod line;
pub use line::Line;

mod line_chart;
pub use line_chart::LineChart;

mod line_height;
pub use line_height::LineHeight;

mod link;
pub use link::Link;

mod linkedin;
pub use linkedin::Linkedin;

mod linux;
pub use linux::Linux;

mod loading;
pub use loading::Loading;

mod loading_3_quarters;
pub use loading_3_quarters::Loading3Quarters;

mod lock;
pub use lock::Lock;

mod login;
pub use login::Login;

mod logout;
pub use logout::Logout;

mod mac_command;
pub use mac_command::MacCommand;

mod mail;
pub use mail::Mail;

mod man;
pub use man::Man;

mod medicine_box;
pub use medicine_box::MedicineBox;

mod medium;
pub use medium::Medium;

mod medium_workmark;
pub use medium_workmark::MediumWorkmark;

mod meh;
pub use meh::Meh;

mod menu;
pub use menu::Menu;

mod menu_fold;
pub use menu_fold::MenuFold;

mod menu_unfold;
pub use menu_unfold::MenuUnfold;

mod merge;
pub use merge::Merge;

mod merge_cells;
pub use merge_cells::MergeCells;

mod message;
pub use message::Message;

mod minus;
pub use minus::Minus;

mod minus_circle;
pub use minus_circle::MinusCircle;

mod minus_square;
pub use minus_square::MinusSquare;

mod mobile;
pub use mobile::Mobile;

mod money_collect;
pub use money_collect::MoneyCollect;

mod monitor;
pub use monitor::Monitor;

mod moon;
pub use moon::Moon;

mod more;
pub use more::More;

mod muted;
pub use muted::Muted;

mod node_collapse;
pub use node_collapse::NodeCollapse;

mod node_expand;
pub use node_expand::NodeExpand;

mod node_index;
pub use node_index::NodeIndex;

mod notification;
pub use notification::Notification;

mod number;
pub use number::Number;

mod one_to_one;
pub use one_to_one::OneToOne;

mod open_a_i;
pub use open_a_i::OpenAI;

mod ordered_list;
pub use ordered_list::OrderedList;

mod paper_clip;
pub use paper_clip::PaperClip;

mod partition;
pub use partition::Partition;

mod pause;
pub use pause::Pause;

mod pause_circle;
pub use pause_circle::PauseCircle;

mod pay_circle;
pub use pay_circle::PayCircle;

mod percentage;
pub use percentage::Percentage;

mod phone;
pub use phone::Phone;

mod pic_center;
pub use pic_center::PicCenter;

mod pic_left;
pub use pic_left::PicLeft;

mod pic_right;
pub use pic_right::PicRight;

mod picture;
pub use picture::Picture;

mod pie_chart;
pub use pie_chart::PieChart;

mod pinterest;
pub use pinterest::Pinterest;

mod play_circle;
pub use play_circle::PlayCircle;

mod play_square;
pub use play_square::PlaySquare;

mod plus;
pub use plus::Plus;

mod plus_circle;
pub use plus_circle::PlusCircle;

mod plus_square;
pub use plus_square::PlusSquare;

mod pound;
pub use pound::Pound;

mod pound_circle;
pub use pound_circle::PoundCircle;

mod poweroff;
pub use poweroff::Poweroff;

mod printer;
pub use printer::Printer;

mod product;
pub use product::Product;

mod profile;
pub use profile::Profile;

mod project;
pub use project::Project;

mod property_safety;
pub use property_safety::PropertySafety;

mod pull_request;
pub use pull_request::PullRequest;

mod pushpin;
pub use pushpin::Pushpin;

mod python;
pub use python::Python;

mod qq;
pub use qq::Qq;

mod qrcode;
pub use qrcode::Qrcode;

mod question;
pub use question::Question;

mod question_circle;
pub use question_circle::QuestionCircle;

mod radar_chart;
pub use radar_chart::RadarChart;

mod radius_bottomleft;
pub use radius_bottomleft::RadiusBottomleft;

mod radius_bottomright;
pub use radius_bottomright::RadiusBottomright;

mod radius_setting;
pub use radius_setting::RadiusSetting;

mod radius_upleft;
pub use radius_upleft::RadiusUpleft;

mod radius_upright;
pub use radius_upright::RadiusUpright;

mod read;
pub use read::Read;

mod reconciliation;
pub use reconciliation::Reconciliation;

mod red_envelope;
pub use red_envelope::RedEnvelope;

mod reddit;
pub use reddit::Reddit;

mod redo;
pub use redo::Redo;

mod reload;
pub use reload::Reload;

mod rest;
pub use rest::Rest;

mod retweet;
pub use retweet::Retweet;

mod right;
pub use right::Right;

mod right_circle;
pub use right_circle::RightCircle;

mod right_square;
pub use right_square::RightSquare;

mod rise;
pub use rise::Rise;

mod robot;
pub use robot::Robot;

mod rocket;
pub use rocket::Rocket;

mod rollback;
pub use rollback::Rollback;

mod rotate_left;
pub use rotate_left::RotateLeft;

mod rotate_right;
pub use rotate_right::RotateRight;

mod ruby;
pub use ruby::Ruby;

mod safety;
pub use safety::Safety;

mod safety_certificate;
pub use safety_certificate::SafetyCertificate;

mod save;
pub use save::Save;

mod scan;
pub use scan::Scan;

mod schedule;
pub use schedule::Schedule;

mod scissor;
pub use scissor::Scissor;

mod search;
pub use search::Search;

mod security_scan;
pub use security_scan::SecurityScan;

mod select;
pub use select::Select;

mod send;
pub use send::Send;

mod setting;
pub use setting::Setting;

mod shake;
pub use shake::Shake;

mod share_alt;
pub use share_alt::ShareAlt;

mod shop;
pub use shop::Shop;

mod shopping;
pub use shopping::Shopping;

mod shopping_cart;
pub use shopping_cart::ShoppingCart;

mod shrink;
pub use shrink::Shrink;

mod signature;
pub use signature::Signature;

mod sisternode;
pub use sisternode::Sisternode;

mod sketch;
pub use sketch::Sketch;

mod skin;
pub use skin::Skin;

mod skype;
pub use skype::Skype;

mod slack;
pub use slack::Slack;

mod slack_square;
pub use slack_square::SlackSquare;

mod sliders;
pub use sliders::Sliders;

mod small_dash;
pub use small_dash::SmallDash;

mod smile;
pub use smile::Smile;

mod snippets;
pub use snippets::Snippets;

mod solution;
pub use solution::Solution;

mod sort_ascending;
pub use sort_ascending::SortAscending;

mod sort_descending;
pub use sort_descending::SortDescending;

mod sound;
pub use sound::Sound;

mod split_cells;
pub use split_cells::SplitCells;

mod spotify;
pub use spotify::Spotify;

mod star;
pub use star::Star;

mod step_backward;
pub use step_backward::StepBackward;

mod step_forward;
pub use step_forward::StepForward;

mod stock;
pub use stock::Stock;

mod stop;
pub use stop::Stop;

mod strikethrough;
pub use strikethrough::Strikethrough;

mod subnode;
pub use subnode::Subnode;

mod sun;
pub use sun::Sun;

mod swap;
pub use swap::Swap;

mod swap_left;
pub use swap_left::SwapLeft;

mod swap_right;
pub use swap_right::SwapRight;

mod switcher;
pub use switcher::Switcher;

mod sync;
pub use sync::Sync;

mod table;
pub use table::Table;

mod tablet;
pub use tablet::Tablet;

mod tag;
pub use tag::Tag;

mod tags;
pub use tags::Tags;

mod taobao;
pub use taobao::Taobao;

mod taobao_circle;
pub use taobao_circle::TaobaoCircle;

mod team;
pub use team::Team;

mod thunderbolt;
pub use thunderbolt::Thunderbolt;

mod tik_tok;
pub use tik_tok::TikTok;

mod to_top;
pub use to_top::ToTop;

mod tool;
pub use tool::Tool;

mod trademark;
pub use trademark::Trademark;

mod trademark_circle;
pub use trademark_circle::TrademarkCircle;

mod transaction;
pub use transaction::Transaction;

mod translation;
pub use translation::Translation;

mod trophy;
pub use trophy::Trophy;

mod truck;
pub use truck::Truck;

mod twitch;
pub use twitch::Twitch;

mod twitter;
pub use twitter::Twitter;

mod underline;
pub use underline::Underline;

mod undo;
pub use undo::Undo;

mod ungroup;
pub use ungroup::Ungroup;

mod unlock;
pub use unlock::Unlock;

mod unordered_list;
pub use unordered_list::UnorderedList;

mod up;
pub use up::Up;

mod up_circle;
pub use up_circle::UpCircle;

mod up_square;
pub use up_square::UpSquare;

mod upload;
pub use upload::Upload;

mod usb;
pub use usb::Usb;

mod user;
pub use user::User;

mod user_add;
pub use user_add::UserAdd;

mod user_delete;
pub use user_delete::UserDelete;

mod user_switch;
pub use user_switch::UserSwitch;

mod usergroup_add;
pub use usergroup_add::UsergroupAdd;

mod usergroup_delete;
pub use usergroup_delete::UsergroupDelete;

mod verified;
pub use verified::Verified;

mod vertical_align_bottom;
pub use vertical_align_bottom::VerticalAlignBottom;

mod vertical_align_middle;
pub use vertical_align_middle::VerticalAlignMiddle;

mod vertical_align_top;
pub use vertical_align_top::VerticalAlignTop;

mod vertical_left;
pub use vertical_left::VerticalLeft;

mod vertical_right;
pub use vertical_right::VerticalRight;

mod video_camera;
pub use video_camera::VideoCamera;

mod video_camera_add;
pub use video_camera_add::VideoCameraAdd;

mod wallet;
pub use wallet::Wallet;

mod warning;
pub use warning::Warning;

mod wechat;
pub use wechat::Wechat;

mod wechat_work;
pub use wechat_work::WechatWork;

mod weibo;
pub use weibo::Weibo;

mod weibo_circle;
pub use weibo_circle::WeiboCircle;

mod weibo_square;
pub use weibo_square::WeiboSquare;

mod whats_app;
pub use whats_app::WhatsApp;

mod wifi;
pub use wifi::Wifi;

mod windows;
pub use windows::Windows;

mod woman;
pub use woman::Woman;

mod x;
pub use x::X;

mod yahoo;
pub use yahoo::Yahoo;

mod youtube;
pub use youtube::Youtube;

mod yuque;
pub use yuque::Yuque;

mod zhihu;
pub use zhihu::Zhihu;

mod zoom_in;
pub use zoom_in::ZoomIn;

mod zoom_out;
pub use zoom_out::ZoomOut;