-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvgsIcon.tsx
1598 lines (1550 loc) · 112 KB
/
svgsIcon.tsx
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
/** @format */
import { JSX } from 'react'
const moon = (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
>
<defs>
<filter id="filter-1">
<feColorMatrix
in="SourceGraphic"
type="matrix"
values="0 0 0 0 0.002548 0 0 0 0 0.002367 0 0 0 0 0.002367 0 0 0 1.000000 0"
></feColorMatrix>
</filter>
</defs>
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g
id="月亮"
transform="translate(-878.000000, -22.000000)"
filter="url(#filter-1)"
>
<g transform="translate(878.000000, 22.000000)">
<g id="编组-16" transform="translate(0.008511, 0.001793)">
<path
d="M15.678042,7 C18.7357203,7.7699021 21,10.5385734 21,13.8359161 C21,17.7288951 17.844028,20.8848671 13.951049,20.8848671 C10.4586853,20.8848671 7.55960839,18.3452867 7,15.0119161 C7.70293706,15.2645035 8.46109091,15.4023497 9.25174825,15.4023497 C12.9285594,15.4023497 15.9090909,12.4218182 15.9090909,8.74500699 C15.9090909,8.15367832 15.8319441,7.57958042 15.687049,7.03367832 L15.6776503,7 L15.678042,7 Z M17.1489231,8.90634965 L17.0823497,8.86405594 L17.0827413,8.87972028 C17.0106853,13.1431608 13.5324196,16.5771748 9.25174825,16.5771748 C9.11116084,16.5771748 8.97135664,16.5732587 8.83194406,16.5662098 L8.74422378,16.5599441 L8.78064336,16.6284755 C9.78540167,18.4848414 11.708006,19.6603143 13.8182937,19.7084755 L13.951049,19.710042 C17.1951329,19.710042 19.8251748,17.08 19.8251748,13.8359161 C19.8251748,11.7944615 18.7748811,9.96290909 17.1489231,8.90634965 L17.1489231,8.90634965 Z"
id="形状"
fill="currentColor"
fillRule="nonzero"
></path>
<rect
id="矩形备份-2"
strokeOpacity="0.2"
stroke="currentColor"
strokeWidth="0.5"
x="0.25"
y="0.25"
width="27.5"
height="27.5"
rx="5"
></rect>
</g>
</g>
</g>
</g>
</svg>
)
const sun = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
>
<g
id="页面-1"
stroke="none"
strokeWidth="1"
fill="#ffffff"
fillRule="evenodd"
>
<g
id="切图"
transform="translate(-801.000000, -94.000000)"
fill="#ffffff"
fillRule="nonzero"
>
<path
fill="#ffffff"
d="M814.924528,113.584906 C815.237087,113.584906 815.490566,113.838384 815.490566,114.150943 L815.490566,115.283019 C815.490566,115.595578 815.237087,115.849057 814.924528,115.849057 C814.611969,115.849057 814.358491,115.595578 814.358491,115.283019 L814.358491,114.150943 C814.358491,113.838384 814.611969,113.584906 814.924528,113.584906 Z M819.893455,112.092866 L820.528125,112.727535 C820.749233,112.948644 820.749233,113.30684 820.528125,113.527948 C820.422046,113.634254 820.278009,113.693956 820.12783,113.693868 C819.98296,113.693868 819.83809,113.638679 819.727712,113.527948 L819.093042,112.893278 C818.871934,112.67217 818.871934,112.313974 819.093042,112.092866 C819.314151,111.871757 819.672347,111.871757 819.893455,112.092866 Z M810.756191,112.092866 C810.9773,112.313974 810.9773,112.67217 810.756191,112.893278 L810.121521,113.527948 C810.015479,113.634311 809.871419,113.694023 809.721226,113.693868 C809.576356,113.693868 809.431486,113.638679 809.321108,113.527948 C809.1,113.30684 809.1,112.948644 809.321108,112.727535 L809.955778,112.092866 C810.176887,111.871757 810.535083,111.871757 810.756191,112.092866 Z M814.924528,103.396226 C817.425531,103.396226 819.45283,105.423703 819.45283,107.924528 C819.45283,110.425354 817.425531,112.45283 814.924528,112.45283 C812.423526,112.45283 810.396226,110.425354 810.396226,107.924528 C810.396226,105.423703 812.423526,103.396226 814.924528,103.396226 Z M814.924528,104.528302 C813.051828,104.528302 811.528302,106.051828 811.528302,107.924528 C811.528302,109.797229 813.051828,111.320755 814.924528,111.320755 C816.797229,111.320755 818.320755,109.797229 818.320755,107.924528 C818.320755,106.051828 816.797229,104.528302 814.924528,104.528302 Z M808.698113,107.358491 C809.010672,107.358491 809.264151,107.611969 809.264151,107.924528 C809.264151,108.237087 809.010672,108.490566 808.698113,108.490566 L807.566038,108.490566 C807.253479,108.490566 807,108.237087 807,107.924528 C807,107.611969 807.253479,107.358491 807.566038,107.358491 L808.698113,107.358491 Z M822.283019,107.358491 C822.595578,107.358491 822.849057,107.611969 822.849057,107.924528 C822.849057,108.237087 822.595578,108.490566 822.283019,108.490566 L821.150943,108.490566 C820.838384,108.490566 820.584906,108.237087 820.584906,107.924528 C820.584906,107.611969 820.838384,107.358491 821.150943,107.358491 L822.283019,107.358491 Z M810.121521,102.320932 L810.756191,102.955601 C810.9773,103.17671 810.9773,103.534906 810.756191,103.756014 C810.65013,103.862348 810.506082,103.922056 810.355896,103.921934 C810.211026,103.921934 810.066156,103.866745 809.955778,103.756014 L809.321108,103.121344 C809.1,102.900236 809.1,102.54204 809.321108,102.320932 C809.542217,102.099823 809.900413,102.099823 810.121521,102.320932 Z M820.528125,102.320932 C820.749233,102.54204 820.749233,102.900236 820.528125,103.121344 L819.893455,103.756014 C819.787413,103.862377 819.643353,103.922089 819.49316,103.921934 C819.34829,103.921934 819.20342,103.866745 819.093042,103.756014 C818.871934,103.534906 818.871934,103.17671 819.093042,102.955601 L819.727712,102.320932 C819.948821,102.099823 820.307017,102.099823 820.528125,102.320932 Z M814.924528,100 C815.237087,100 815.490566,100.253479 815.490566,100.566038 L815.490566,101.698113 C815.490566,102.010672 815.237087,102.264151 814.924528,102.264151 C814.611969,102.264151 814.358491,102.010672 814.358491,101.698113 L814.358491,100.566038 C814.358491,100.253479 814.611969,100 814.924528,100 Z"
id="形状结合"
/>
</g>
</g>
</svg>
)
const network = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
>
<g
id="页面-1"
stroke="none"
strokeWidth="1"
fill="currentColor"
fillRule="evenodd"
>
<g
id="切图"
transform="translate(-761.000000, -94.000000)"
fill="currentColor"
fillRule="nonzero"
>
<path
d="M774.981383,101 C771.124867,101 768,104.124867 768,107.981383 C768,111.837899 771.124867,114.962766 774.981383,114.962766 C778.837899,114.962766 781.962766,111.837899 781.962766,107.981383 C781.962766,104.124867 778.837899,101 774.981383,101 Z M780.998404,107.515957 L779.154388,107.515957 C779.074335,105.500665 778.486037,103.719947 777.596144,102.53125 C779.492287,103.442553 780.828059,105.314495 780.998404,107.515957 Z M778.21609,107.515957 L775.446809,107.515957 L775.446809,101.999734 C776.942686,102.398138 778.098803,104.684309 778.21609,107.515957 Z M774.515957,101.999734 L774.515957,107.515957 L771.746676,107.515957 C771.863963,104.684309 773.02008,102.398138 774.515957,101.999734 Z M772.367553,102.53125 C771.476729,103.719947 770.889362,105.500665 770.809309,107.515957 L768.964362,107.515957 C769.134707,105.314495 770.470479,103.442553 772.367553,102.53125 Z M768.964362,108.446809 L770.808378,108.446809 C770.888431,110.462101 771.476729,112.242819 772.366622,113.431516 C770.470479,112.520213 769.134707,110.648271 768.964362,108.446809 Z M771.746676,108.446809 L774.515957,108.446809 L774.515957,113.963032 C773.02008,113.564628 771.863963,111.278457 771.746676,108.446809 Z M775.446809,113.963032 L775.446809,108.446809 L778.21609,108.446809 C778.098803,111.278457 776.942686,113.564628 775.446809,113.963032 Z M777.595213,113.431516 C778.486037,112.242819 779.073404,110.462101 779.153457,108.446809 L780.997473,108.446809 C780.828059,110.648271 779.492287,112.520213 777.595213,113.431516 Z"
id="形状"
fill="currentColor"
/>
</g>
</g>
</svg>
)
const downIcon = (
<svg
width="12px"
height="8px"
viewBox="0 0 10 6"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
>
<g
id="页面-1"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
opacity="0.6"
>
<g
id="切图"
transform="translate(-706.000000, -87.000000)"
stroke="currentColor"
strokeWidth="1.3"
>
<polyline id="路径-2" points="707 88 710.94397 92 715 88"></polyline>
</g>
</g>
</svg>
)
const uploadIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="14px"
height="14px"
viewBox="0 0 14 14"
version="1.1"
>
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="所需icon" transform="translate(-12.000000, -62.000000)">
<g id="上传icon" transform="translate(12.000000, 62.000000)">
<rect id="矩形" x="0" y="0" width="14" height="14" />
<path
d="M7.44997704,7.82275886 L9.24986364,9.62264545 C9.49837671,9.87115853 9.49837671,10.2740778 9.24986364,10.5225909 C9.00133464,10.7711199 8.59840311,10.771164 8.34981973,10.5226894 L7.63636364,9.80954545 L7.63636364,12.7272727 C7.63636364,13.0787267 7.35145393,13.3636364 7,13.3636364 C6.64854607,13.3636364 6.36363636,13.0787267 6.36363636,12.7272727 L6.36363636,9.80827273 L5.64992037,10.5224454 C5.42640008,10.7461087 5.07778549,10.7685794 4.82913048,10.5897855 L4.75011409,10.5225909 L4.75011409,10.5225909 C4.52645259,10.298931 4.50408528,9.9502019 4.68301297,9.70152686 L4.75011462,9.62264598 L4.75011462,9.62264598 L6.55002084,7.82275674 C6.79853876,7.5742454 7.20146029,7.57424635 7.44997704,7.82275886 Z M7,0.636363636 C9.22812685,0.636363636 11.1168375,2.25177142 11.5737502,4.44325021 L11.5842746,4.50163636 L11.6335958,4.52125169 C12.9947944,5.09534487 13.9356156,6.44585801 13.9968246,7.99905299 L14,8.16042781 C14,10.3311727 12.2949704,12.0909091 10.1917098,12.0909091 C9.85118194,12.0909091 9.57512953,11.8059994 9.57512953,11.4545455 C9.57512953,11.1030915 9.85118194,10.8181818 10.1917098,10.8181818 C11.6139146,10.8181818 12.7668394,9.62826482 12.7668394,8.16042781 C12.7668394,6.99974908 12.0394719,5.98711253 10.9948271,5.63408188 L10.8729065,5.59630393 L10.4704891,5.48273419 L10.4229694,5.05495967 C10.2247798,3.27084899 8.75512838,1.90909091 7,1.90909091 C5.29226976,1.90909091 3.85491264,3.19825644 3.59619078,4.91123361 L3.57737842,5.05494421 L3.52991371,5.48286195 L3.12735575,5.59641601 C2.01759469,5.90945882 1.23316062,6.95505583 1.23316062,8.16042781 C1.23316062,9.62826482 2.38608539,10.8181818 3.80829016,10.8181818 C4.14881806,10.8181818 4.42487047,11.1030915 4.42487047,11.4545455 C4.42487047,11.8059994 4.14881806,12.0909091 3.80829016,12.0909091 C1.70502958,12.0909091 0,10.3311727 0,8.16042781 C0,6.53982126 0.958360642,5.11506416 2.36673733,4.52128609 L2.41510881,4.50163636 L2.42650167,4.44343195 C2.87247264,2.30284002 4.68471416,0.711815178 6.84510781,0.638971725 L7,0.636363636 Z"
id="形状"
fill="currentColor"
fillRule="nonzero"
/>
</g>
</g>
</g>
</svg>
)
const closeIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="12px"
height="12px"
viewBox="0 0 12 12"
version="1.1"
>
<g
id="20220814"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
opacity="0.6"
strokeLinecap="square"
>
<g
id="切图"
transform="translate(-76.000000, -330.000000)"
stroke="#000000"
strokeWidth="1.2"
>
<g id="编组-3" transform="translate(77.000000, 331.000000)">
<path d="M9.5,0.5 L0.5,9.5 M0.5,0.5 L9.5,9.5" id="形状结合" />
</g>
</g>
</g>
</svg>
)
const addIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="13px"
height="14px"
viewBox="0 0 13 14"
version="1.1"
>
<title>形状结合</title>
<g
id="20220814"
stroke="none"
strokeWidth="1"
fill="currentColor"
fillRule="evenodd"
>
<g
id="切图"
transform="translate(-46.000000, -273.000000)"
fill="currentColor"
fillRule="nonzero"
>
<path
d="M56.8981,273 C58.0576062,273 59,273.942394 59,275.1019 L59,283.923272 C59,285.081205 58.0576062,286.023599 56.8981,286.023599 L48.1019,286.023599 C46.9423938,286.023599 46,285.081205 46,283.923272 L46,275.1019 C46,273.942394 46.9423938,273 48.1019,273 L56.8981,273 Z M56.8981,274.408084 L48.1019,274.408084 C47.7195934,274.408084 47.4080842,274.719593 47.4080842,275.1019 L47.4080842,283.923272 C47.4080842,284.305579 47.7195934,284.617088 48.1019,284.617088 L56.8981,284.617088 C57.2804066,284.617088 57.5919158,284.305579 57.5919158,283.923272 L57.5919158,275.1019 C57.5919158,274.719593 57.2804066,274.408084 56.8981,274.408084 Z M52.5306789,276.181169 C52.9192787,276.181169 53.2339403,276.495825 53.2339403,276.884425 L53.233,278.709 L55.0589374,278.709428 C55.4475372,278.709428 55.7621929,279.024083 55.7621929,279.412683 C55.7621929,279.801283 55.4475372,280.115939 55.0589374,280.115939 L53.233,280.115 L53.2339403,281.939368 C53.2355077,282.327968 52.9192787,282.642624 52.5306789,282.642624 C52.1420791,282.642624 51.8274235,282.327968 51.8274235,281.939368 L51.827,280.115 L50.0039937,280.115939 C49.6153939,280.115939 49.3007382,279.801283 49.3007382,279.412683 C49.3007382,279.024083 49.6153939,278.709428 50.0039937,278.709428 L51.827,278.709 L51.8274235,276.884425 C51.8274235,276.495825 52.1420791,276.181169 52.5306789,276.181169 Z"
id="形状结合"
/>
</g>
</g>
</svg>
)
const successIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="14px"
height="14px"
viewBox="0 0 14 14"
version="1.1"
>
<title>成功icon</title>
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="所需icon" transform="translate(-12.000000, -9.000000)">
<g id="成功" transform="translate(12.000000, 9.000000)">
<circle id="椭圆形" fill="#40A291" cx="7" cy="7" r="7" />
<path
d="M6.14630333,9.95510386 C5.96024123,9.95510386 5.78199687,9.88161715 5.65065892,9.7502792 L3.47732857,7.57694885 C3.20370784,7.30332812 3.20370784,6.86084432 3.47732857,6.58722359 C3.7509493,6.31360286 4.1934331,6.31360286 4.46705383,6.58722359 L6.14630333,8.26490954 L9.53294617,4.8782667 C9.8065669,4.60464597 10.2490507,4.60464597 10.5226714,4.8782667 C10.7962922,5.15188742 10.7962922,5.59437123 10.5226714,5.86799196 L6.64038419,9.7502792 C6.50904624,9.88161715 6.33236542,9.95510386 6.14630333,9.95510386 Z"
id="路径"
fill="#FFFFFF"
fillRule="nonzero"
/>
</g>
</g>
</g>
</svg>
)
const pendingIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="14px"
height="14px"
viewBox="0 0 14 14"
version="1.1"
>
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="所需icon" transform="translate(-183.000000, -9.000000)">
<g id="编组-3" transform="translate(183.000000, 9.000000)">
<circle
id="椭圆形"
fill="#000000"
opacity="0.1"
cx="7"
cy="7"
r="7"
/>
<path
d="M7,3.3 C7.35438271,3.3 7.64725823,3.56334362 7.69360983,3.90501415 L7.7,4 L7.699,6.798 L10.727887,6.79829608 C11.0822697,6.79829608 11.3751452,7.0616397 11.4214968,7.40331023 L11.427887,7.49829608 C11.427887,7.8526788 11.1645434,8.14555431 10.8228728,8.19190591 L10.727887,8.19829608 L7.6,8.19829608 C6.92690296,8.19829608 6.37328475,7.68674643 6.30671175,7.03121353 L6.3,6.89829608 L6.3,4 C6.3,3.61340068 6.61340068,3.3 7,3.3 Z"
id="路径-5"
fill="#FFFFFF"
fillRule="nonzero"
/>
</g>
</g>
</g>
</svg>
)
const errorIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="14px"
height="14px"
viewBox="0 0 14 14"
version="1.1"
>
<title>失败icon</title>
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="所需icon" transform="translate(-72.000000, -62.000000)">
<g id="失败icon" transform="translate(72.000000, 62.000000)">
<rect id="矩形" fill="#FFFFFF" x="0" y="0" width="14" height="14" />
<path
d="M7,0 C10.86596,0 14,3.134005 14,7 C14,10.86596 10.86596,14 7,14 C3.134005,14 0,10.86596 0,7 C0,3.134005 3.134005,0 7,0 Z"
id="路径"
fill="#E15252"
fillRule="nonzero"
/>
<path
d="M7,6.10005455 L8.34991977,4.75011568 C8.59842933,4.50160261 9.00134579,4.50159976 9.24985886,4.75010932 C9.24986045,4.75011091 9.24986205,4.7501125 9.24986364,4.75011409 C9.49837735,4.99862957 9.49837771,5.40155079 9.24986443,5.6500667 L7.89994545,7 L7.89994545,7 L9.24986364,8.34991818 C9.49837671,8.59843126 9.49837671,9.00135056 9.24986364,9.24986364 C9.00135056,9.49837671 8.59843126,9.49837671 8.34991818,9.24986364 L7,7.89994545 L7,7.89994545 L5.6500667,9.24986443 C5.40155079,9.49837771 4.99862957,9.49837735 4.75011409,9.24986364 C4.50160189,9.0013532 4.50160047,8.59843674 4.75011091,8.34992455 C4.7501125,8.34992295 4.75011409,8.34992136 4.75011568,8.34991977 L6.10005455,7 L6.10005455,7 L4.75011489,5.65006511 C4.50160005,5.40155116 4.50159934,4.99862972 4.7501133,4.75011489 C4.75011356,4.75011462 4.75011383,4.75011436 4.75011409,4.75011409 C4.99862848,4.5015997 5.40154993,4.5015997 5.65006432,4.75011409 C5.65006458,4.75011436 5.65006485,4.75011462 5.65006511,4.75011489 L7,6.10005455 L7,6.10005455 Z"
id="路径"
fill="#FFFFFF"
fillRule="nonzero"
/>
</g>
</g>
</g>
</svg>
)
const account_panel = (
<svg
xmlns="http://www.w3.org/2000/svg"
height="16"
viewBox="0 0 16 16"
width="16"
fill="currentColor"
>
<g>
<path d="m9.56594136 5.6h2.46811724c.4230178 0 .7659414.34292363.7659414.76594136 0 .42301774-.3429236.76594137-.7659414.76594137h-2.46811724c-.42301773 0-.76594136-.34292363-.76594136-.76594137 0-.42301773.34292363-.76594136.76594136-.76594136zm.01090997 3.24629733h2.44629737c.4290431 0 .7768513.34780819.7768513.77685134 0 .42904313-.3478082.77685133-.7768513.77685133h-2.44629737c-.42904314 0-.77685133-.3478082-.77685133-.77685133 0-.42904315.34780819-.77685134.77685133-.77685134zm-3.97685133-3.24629733v2.4h2.4c0 1.32552-1.07448 2.4-2.4 2.4-1.32548 0-2.4-1.07448-2.4-2.4s1.07452-2.4 2.4-2.4z" />
<rect height="2.4" rx=".77" width="1.54" x="7.2" y="13.6" />
<path d="m13.6 2.4h-11.2c-1.3254834 0-2.4 1.0745166-2.4 2.4v7.2c0 1.3254834 1.0745166 2.4 2.4 2.4h11.2c1.3254834 0 2.4-1.0745166 2.4-2.4v-7.2c0-1.3254834-1.0745166-2.4-2.4-2.4zm-11.2 1.6h11.2c.4418278 0 .8.3581722.8.8v7.2c0 .4418278-.3581722.8-.8.8h-11.2c-.4418278 0-.8-.3581722-.8-.8v-7.2c0-.4418278.3581722-.8.8-.8z" />
<path d="m15.2 0c.4418278 0 .8.34474074.8.77 0 .3948836-.3088322.72034051-.7067031.76481965l-.0932969.00518035h-14.4c-.4418278 0-.8-.34474074-.8-.77 0-.3948836.30883215-.72034051.7067031-.76481965l.0932969-.00518035z" />
</g>
</svg>
)
const account_overview = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="16px"
height="16px"
viewBox="0 0 16 16"
version="1.1"
>
<g id="会员" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="编组-6备份-2">
<rect
id="矩形"
fill="#FFFFFF"
opacity="0"
x="0"
y="0"
width="16"
height="16"
/>
<path
d="M14.2256381,13.8363478 C14.657456,13.8363478 15.0075451,14.1805217 15.0075451,14.6050435 C15.0075451,15.0295652 14.6572791,15.3737391 14.2254612,15.3737391 L1.7768784,15.3737391 C1.34506053,15.3737391 0.994847108,15.0295652 0.994847108,14.6050435 C0.994847108,14.1805217 1.34506053,13.8363478 1.7768784,13.8363478 L14.2256381,13.8363478 Z M13.6852174,0 C14.9613913,0 16,1.03843478 16,2.3146087 L16,10.1532174 C16,11.4293913 14.9613913,12.468 13.6852174,12.468 L2.31478261,12.468 C1.0386087,12.468 0,11.4293913 0,10.1532174 L0,2.3146087 C0,1.03843478 1.0386087,0 2.31478261,0 L13.6852174,0 Z M13.6852174,1.5373913 L2.31478261,1.5373913 C1.88608696,1.53756522 1.5373913,1.88608696 1.5373913,2.31478261 L1.5373913,10.1533913 C1.5373913,10.582087 1.88608696,10.9307826 2.31478261,10.9307826 L13.6852174,10.9307826 C14.113913,10.9307826 14.4626087,10.582087 14.4626087,10.1533913 L14.4626087,2.3146087 C14.4626087,1.88591304 14.113913,1.5373913 13.6852174,1.5373913 Z M11.7175652,4.24052174 C12.017913,4.54034783 12.017913,5.02730435 11.7175652,5.32747826 L8.81808696,8.22730435 C8.67396109,8.37147632 8.47846606,8.45252174 8.2746087,8.45252174 C8.07078261,8.45252174 7.87530435,8.37147826 7.73113043,8.22730435 L6.30817391,6.80434783 L5.3693913,7.74313043 C5.06904348,8.04347826 4.5826087,8.04347826 4.28243478,7.74313043 C3.98208696,7.44278261 3.98208696,6.95634783 4.28243478,6.65617391 L5.76469565,5.17391304 C6.06504348,4.87356522 6.55147826,4.87356522 6.85165217,5.17391304 L8.2746087,6.59686957 L10.6306087,4.24052174 C10.9309565,3.94017391 11.4173913,3.94017391 11.7175652,4.24052174 Z"
id="形状结合"
fill="currentColor"
fillRule="nonzero"
/>
</g>
</g>
</svg>
)
const account_miners = (
<svg
xmlns="http://www.w3.org/2000/svg"
height="16"
viewBox="0 0 16 16"
width="16"
>
<g fill="none" fillRule="evenodd">
<path d="m0 0h16v16h-16z" fill="currentColor" opacity="0" />
<path
d="m12.5775785 8.59372197c1.8869955 0 3.4224215 1.53542603 3.4224215 3.42242153s-1.535426 3.4224215-3.4206278 3.4224215h-9.15695068c-1.88699551 0-3.42242152-1.535426-3.42242152-3.4224215s1.53542601-3.42242153 3.42242152-3.42242153zm0 1.60179373h-9.15515698c-1.0044843 0-1.82242152.8179372-1.82242152 1.8224215s.81793722 1.8224215 1.82242152 1.8224215h9.15515698c1.0044843 0 1.8224215-.8179372 1.8224215-1.8224215s-.8179372-1.8224215-1.8224215-1.8224215zm-.0717489.7156951c.6102375 0 1.1049327.4946952 1.1049327 1.1049327s-.4946952 1.1049327-1.1049327 1.1049327-1.1049327-.4946952-1.1049327-1.1049327.4946952-1.1049327 1.1049327-1.1049327zm.0717489-10.1112108c1.8869955 0 3.4224215 1.53542601 3.4224215 3.42242152 0 1.88699552-1.535426 3.42242153-3.4206278 3.42242153h-9.15695068c-1.88699551 0-3.42242152-1.53542601-3.42242152-3.42242153 0-1.88699551 1.53542601-3.42242152 3.42242152-3.42242152zm0 1.60179372h-9.15515698c-1.0044843 0-1.82242152.81793722-1.82242152 1.82242153 0 1.0044843.81793722 1.82242152 1.82242152 1.82242152h9.15515698c1.0044843 0 1.8224215-.81793722 1.8224215-1.82242152 0-1.00448431-.8179372-1.82242153-1.8224215-1.82242153zm-9.11569509.7103139c.6102375 0 1.10493273.49469524 1.10493273 1.10493274s-.49469523 1.10493273-1.10493273 1.10493273-1.10493274-.49469523-1.10493274-1.10493273.49469524-1.10493274 1.10493274-1.10493274z"
fill="currentColor"
fillRule="nonzero"
/>
</g>
</svg>
)
const account_personal = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="16px"
height="16px"
viewBox="0 0 16 16"
version="1.1"
>
<g id="会员" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="编组-7备份">
<rect
id="矩形"
fill="#FFFFFF"
opacity="0"
x="0"
y="0"
width="16"
height="16"
/>
<path
d="M8.10303126,0 C11.2142915,0 13.7458804,2.53158895 13.7458804,5.64284916 C13.7458804,7.32979868 13.0016204,8.84633107 11.8242424,9.88130422 C13.5164132,10.3467299 14.8721868,11.6168748 15.3292417,13.2805546 C15.5027853,13.91211 15.3721803,14.5776585 14.9696308,15.1036565 C14.5420338,15.6654367 13.8532269,16 13.1268488,16 L3.07921375,16 C2.35104647,16 1.66223958,15.6654367 1.23464258,15.1054456 C0.832093098,14.5776585 0.701488155,13.9138991 0.875031709,13.2823437 C1.33217675,11.6169292 2.68839506,10.3463107 4.38116049,9.87912387 C3.20401776,8.84546619 2.46018211,7.32931766 2.46018211,5.64284916 C2.46018211,2.53158895 4.99177106,0 8.10303126,0 Z M10.3787777,11.2856983 L5.82549576,11.2856983 C4.20993051,11.2856983 2.80905832,12.2804428 2.41724349,13.7063625 C2.36535934,13.8960081 2.43692369,14.0445041 2.50669893,14.1357486 C2.63372566,14.3021357 2.84662961,14.4005367 3.07742464,14.4005367 L13.1268488,14.4005367 C13.3576438,14.4005367 13.5723369,14.3021357 13.6975745,14.1357486 C13.7673497,14.0445041 13.8389141,13.8960081 13.7870299,13.7063625 C13.3952151,12.2804428 11.9943429,11.2856983 10.3787777,11.2856983 Z M8.10303126,1.59946327 C5.8738017,1.59946327 4.06143448,3.41361959 4.06143448,5.64284916 C4.06143448,7.87207872 5.87559081,9.68444594 8.10303126,9.68444594 C10.3304717,9.68444594 12.1464172,7.87028961 12.1464172,5.64284916 C12.144628,3.41361959 10.3322608,1.59946327 8.10303126,1.59946327 Z M7.21742241,6.14558873 C7.39812239,6.46226099 7.73805307,6.66085206 8.10303126,6.66085206 C8.45906391,6.66085206 8.78468171,6.47836297 8.97253814,6.17421447 C9.20333317,5.79850162 9.69533809,5.67863133 10.0728401,5.91121548 C10.450342,6.14201051 10.5666341,6.63580454 10.335839,7.01151739 C9.85456878,7.79335793 9.01905497,8.26031533 8.10303126,8.26031533 C7.16553825,8.26031533 6.29245316,7.75399754 5.82728487,6.93816393 C5.60901359,6.55350554 5.74140765,6.06507883 6.12606604,5.84680756 C6.51072443,5.62853629 6.99915113,5.76093034 7.21742241,6.14558873 Z"
id="形状结合"
fill="currentColor"
fillRule="nonzero"
/>
</g>
</g>
</svg>
)
const account_logout = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="12px"
height="13px"
viewBox="0 0 12 13"
version="1.1"
>
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="切图" transform="translate(-882.000000, -464.000000)">
<rect
id="矩形"
fill="transparent"
x="0"
y="0"
width="1507"
height="1024"
/>
<path
d="M888.05,464 C888.139,464 888.224,464.034 888.288,464.097 C888.351,464.161 888.386,464.247 888.386,464.335 L888.386,464.335 L888.386,464.906 C888.386,464.994 888.351,465.081 888.289,465.143 C888.224,465.207 888.139,465.242 888.05,465.242 L888.05,465.242 L883.194,465.242 L883.243,474.906 L888.05,474.856 C888.139,474.856 888.224,474.891 888.288,474.955 C888.351,475.017 888.386,475.104 888.386,475.192 L888.386,475.192 L888.386,475.763 C888.386,475.851 888.351,475.938 888.288,476.001 C888.224,476.064 888.139,476.099 888.05,476.099 L888.05,476.099 L883.194,476.099 C882.557,476.099 882.033,475.601 882.002,474.965 L882.002,474.965 L882,465.192 C882,464.555 882.498,464.033 883.133,464.001 L883.133,464.001 Z M890.4557,466.8557 C890.5437,466.8557 890.6277,466.8907 890.6917,466.9547 L890.6917,466.9547 L893.1447,469.4077 C893.4817,469.7437 893.4987,470.2887 893.1867,470.6467 L893.1867,470.6467 L890.6917,473.1427 C890.6277,473.2067 890.5437,473.2417 890.4557,473.2417 C890.3657,473.2417 890.2817,473.2067 890.2177,473.1427 L890.2177,473.1427 L889.8137,472.7387 C889.6827,472.6087 889.6827,472.3957 889.8137,472.2647 L889.8137,472.2647 L891.4927,470.5857 L885.7647,470.6707 C885.6757,470.6707 885.5907,470.6357 885.5277,470.5727 C885.4637,470.5097 885.4297,470.4257 885.4297,470.3347 L885.4297,470.3347 L885.4297,469.7627 C885.4297,469.6737 885.4637,469.5897 885.5277,469.5257 C885.5907,469.4627 885.6747,469.4277 885.7647,469.4277 L885.7647,469.4277 L891.5277,469.4277 L889.8137,467.8327 C889.6827,467.7027 889.6827,467.4897 889.8137,467.3587 L889.8137,467.3587 L890.2177,466.9547 C890.2817,466.8907 890.3657,466.8557 890.4557,466.8557 Z"
id="形状结合"
fill="currentColor"
/>
</g>
</g>
</svg>
)
const legendIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
width="20px"
height="8px"
viewBox="0 0 20 8"
version="1.1"
>
<title>2</title>
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g
id="切图"
transform="translate(-302.000000, -130.000000)"
fill="currentColor"
>
<g id="2" transform="translate(302.000000, 131.000000)">
<polygon
id="矩形"
points="-4.37150316e-16 2 20 2 20 3.5 -4.37150316e-16 3.5"
/>
<circle
id="椭圆形"
stroke="#FFFFFF"
strokeWidth="2"
cx="10"
cy="3"
r="3"
/>
</g>
</g>
</g>
</svg>
)
const no_nodes = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="92px"
height="80px"
viewBox="0 0 92 80"
version="1.1"
>
<title>形状结合</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stopColor="#000000" offset="0%" />
<stop stopColor="#000000" offset="100%" />
</linearGradient>
</defs>
<g
id="20220814"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<g
id="切图"
transform="translate(-144.000000, -214.000000)"
fill="currentColor"
>
<path
d="M228.347553,214.043156 C231.329471,214.168236 233.529946,215.579465 234.888023,218.237834 C235.127941,218.7067 235.289594,219.24798 235.460756,219.820713 C235.529025,220.049416 235.599245,220.284702 235.676292,220.520232 L235.676292,228.886182 C235.640695,228.960059 235.605585,229.048322 235.580227,229.150726 C234.529851,233.408066 231.907324,235.478341 227.563184,235.479073 L196.861623,235.47956 L199.667015,237.276269 C202.126671,238.851346 203.991649,240.571496 205.535761,242.689072 C205.948792,243.25449 206.718287,243.298865 206.944552,243.298865 L208.262887,243.299353 C210.591855,243.299353 212.920822,243.296671 215.249547,243.293989 C217.577783,243.291307 219.90602,243.288625 222.234012,243.288625 C224.233092,243.288625 226.23144,243.290575 228.231007,243.296427 C230.115979,243.301547 231.828326,243.976441 233.319773,245.301602 C234.456949,246.312236 235.207427,247.665924 235.676292,249.556016 L235.676292,258.140428 C235.627528,258.234055 235.576326,258.35182 235.544142,258.49031 C234.638351,262.393135 231.702028,264.72893 227.689239,264.738683 C226.514759,264.741609 225.33979,264.743072 224.16531,264.743072 C222.96596,264.743072 221.766853,264.741609 220.567259,264.738683 C219.376443,264.736001 218.185382,264.732344 216.994566,264.728686 C214.591964,264.721372 212.189363,264.714057 209.786761,264.714057 C208.81075,264.714057 207.834983,264.715276 206.859215,264.718202 C206.242351,264.72064 205.645236,265.137572 205.326807,265.549628 C203.826095,267.493117 202.165194,269.044055 200.249501,270.291438 C200.076633,270.403839 199.948383,270.525993 199.812576,270.655705 C199.756253,270.709345 199.692129,270.770544 199.614106,270.840033 L197.712798,272.54214 L216.637857,272.539945 C220.401705,272.539945 224.16531,272.541164 227.929158,272.545553 C231.233406,272.549454 233.912743,274.279113 235.096732,277.172036 C235.263261,277.579459 235.388097,278.019798 235.520004,278.485738 C235.571206,278.666409 235.622408,278.847079 235.676292,279.027018 L235.676292,287.418569 C235.65825,287.462212 235.640939,287.510733 235.626553,287.563885 C234.375269,292.135021 231.934144,294 227.201112,294 L151.745915,294 C149.353798,294 147.419574,293.1498 145.833038,291.40088 C144.813871,290.27687 144.344518,288.885389 144,287.538284 L144,279.124302 C144.03194,279.055789 144.063881,278.974353 144.088019,278.881214 C145.209591,274.557068 147.817489,272.542627 152.295242,272.542383 L181.972515,272.54214 L179.793253,270.804435 C179.419477,270.506243 179.053747,270.225607 178.697282,269.952041 C177.944366,269.374187 177.2329,268.828031 176.604576,268.234329 C176.076462,267.73523 175.59638,267.182246 175.087528,266.597322 C174.717166,266.171125 174.334369,265.730542 173.928408,265.308978 C173.459786,264.822313 172.739055,264.74868 172.351137,264.747948 L169.747384,264.74551 L169.747384,264.74551 C168.15841,264.74551 166.568948,264.747704 164.979973,264.750142 C163.39173,264.752337 161.803731,264.754531 160.215976,264.754531 L158.960461,264.754013 C156.111709,264.751583 153.807931,264.740542 151.618397,264.719421 C148.434841,264.688456 146.086611,263.138005 144.63954,260.110981 C144.450823,259.716724 144.315503,259.27029 144.172381,258.797767 C144.115814,258.611976 144.059736,258.426429 144,258.242589 L144,249.655495 C144.04657,249.550652 144.098259,249.411675 144.12191,249.246852 C144.548107,246.27737 147.314488,243.270826 151.776637,243.270826 L151.84003,243.27107 C154.81829,243.290575 157.714871,243.293257 160.155508,243.293257 L166.637949,243.290575 C168.526334,243.290575 170.413744,243.292526 172.301642,243.299353 C173.131605,243.299353 173.716041,243.002624 174.208557,242.33724 C175.522503,240.562474 177.152195,239.026896 179.051796,237.77293 C179.218813,237.66248 179.353402,237.547153 179.509203,237.41354 C179.579423,237.353316 179.658177,237.285534 179.751803,237.208731 L181.857189,235.47956 L162.947978,235.481998 C159.213632,235.481998 155.479774,235.480779 151.745184,235.475903 C148.494089,235.472002 145.748677,233.698456 144.57956,230.847957 C144.412543,230.440778 144.287951,230.000927 144.155801,229.534987 C144.104599,229.35456 144.05364,229.174377 144,228.994682 L144,220.573385 C144.012679,220.540226 144.02487,220.504384 144.035842,220.466104 C145.367098,215.828406 147.759216,214.022188 152.567345,214.022188 L222.359823,214.022431 C222.963521,214.022431 223.567707,214.017067 224.171649,214.011216 C224.769739,214.005852 225.36783,214 225.96592,214 C226.889754,214 227.646571,214.013898 228.347553,214.043156 Z M227.500523,276.44399 L170.84238,276.443258 C164.529882,276.443258 158.219334,276.443746 151.906836,276.445697 C149.368427,276.446184 147.908921,277.907397 147.902094,280.454096 C147.898437,281.760727 147.899492,283.067846 147.900387,284.374721 L147.901119,285.758886 C147.90185,288.759578 149.234814,290.097906 152.222583,290.097906 L194.818168,290.09815 L211.317219,290.098637 C216.816577,290.098637 222.316423,290.09815 227.816026,290.096199 C230.288116,290.095468 231.767859,288.61353 231.774198,286.131687 C231.777612,284.839929 231.776619,283.547927 231.776619,282.256413 L231.775174,280.735708 C231.774198,277.807919 230.416121,276.444234 227.500523,276.44399 Z M163.65369,281.315293 L163.859718,281.317975 L163.859718,281.317975 C163.939447,281.319194 164.01942,281.320657 164.098906,281.320657 L178.857082,281.320413 C188.16954,281.320413 197.480292,281.320901 206.79275,281.322363 L207.116543,281.321388 C207.383769,281.321388 207.59955,281.32919 207.782415,281.366007 C208.752818,281.562038 209.434295,282.484653 209.334329,283.466272 C209.232412,284.467397 208.410739,285.202026 207.380844,285.212754 C206.44555,285.222751 205.430772,285.227627 204.187046,285.227627 C203.45705,285.227627 202.727053,285.226164 201.9973,285.224458 C201.266084,285.222995 200.534868,285.221532 199.803408,285.221532 L185.449973,285.221532 L173.473782,285.223482 C170.213422,285.223482 166.953549,285.222263 163.693433,285.216899 C162.913941,285.21568 162.244411,284.887498 161.856737,284.317204 C161.509294,283.805669 161.45029,283.189293 161.689965,282.581206 C161.990595,281.819512 162.528705,281.421354 163.383294,281.326996 C163.455465,281.319194 163.541289,281.315293 163.65369,281.315293 Z M154.814023,281.226786 C155.938033,281.227517 156.758,282.017982 156.765558,283.106394 C156.768971,283.625243 156.571234,284.112639 156.207942,284.478369 C155.838555,284.850438 155.340918,285.055247 154.807196,285.055247 L154.79208,285.055247 C153.741459,285.047688 152.888577,284.176763 152.89101,283.114196 C152.89321,282.020664 153.701961,281.226786 154.814023,281.226786 Z M216.323573,281.211937 C217.402964,281.233881 218.268525,282.09676 218.25292,283.135433 C218.236828,284.193855 217.353225,285.054539 216.283343,285.054539 L216.229703,285.053808 C215.170305,285.026012 214.353021,284.154112 214.368625,283.06887 C214.383742,282.010204 215.205415,281.21145 216.279442,281.21145 L216.323573,281.211937 Z M225.115013,281.211937 C226.23122,281.217789 227.062646,282.037268 227.059728,283.118609 C227.057039,284.178982 226.191965,285.047225 225.131593,285.053808 L225.117939,285.053808 C224.060735,285.053808 223.186153,284.204096 223.168355,283.159327 C223.159577,282.631701 223.349269,282.143086 223.703052,281.783207 C224.065368,281.414796 224.566662,281.211937 225.115013,281.211937 Z M189.726233,238.451969 C185.592266,238.451969 181.702607,240.068983 178.773598,243.004818 C175.845321,245.940167 174.232939,249.838116 174.233427,253.980372 C174.234402,262.525773 181.183758,269.478055 189.72477,269.478055 C193.871659,269.477323 197.768633,267.863235 200.702031,264.933983 C203.63616,262.003999 205.250735,258.11312 205.248786,253.97769 C205.244884,245.416929 198.28163,238.451969 189.726233,238.451969 Z M189.862748,243.284748 C190.899958,243.296939 191.741624,244.133973 191.779172,245.189957 C191.803067,245.870702 191.797946,246.57461 191.792826,247.255112 C191.790632,247.560374 191.788194,247.865637 191.788437,248.170899 L191.788681,252.061778 L192.763961,252.061778 C193.37156,252.061778 193.972576,252.059827 194.568716,252.057877 C195.153884,252.055926 195.734175,252.053976 196.312516,252.053976 C197.21465,252.053976 197.953912,252.058852 198.63929,252.068605 C199.549226,252.081771 200.265325,252.651822 200.507194,253.556394 C200.719561,254.34954 200.370411,255.226317 199.69503,255.596192 C199.330519,255.79588 198.814596,255.924617 198.315741,255.940953 C197.629631,255.963384 196.87574,255.973625 195.943373,255.973625 C195.433058,255.973625 194.919329,255.970699 194.398774,255.967773 C193.861394,255.964603 193.317432,255.961678 192.763961,255.961678 L191.788681,255.961678 L191.788681,261.344246 C191.788681,261.493952 191.789657,261.643657 191.790876,261.79385 C191.793314,262.13276 191.795752,262.452895 191.784536,262.771324 C191.744794,263.889482 190.908979,264.734319 189.84056,264.736513 L189.836903,264.736513 C188.767265,264.736513 187.91487,263.885338 187.896584,262.798632 C187.874152,261.480785 187.879273,260.174154 187.884393,258.790476 C187.886831,258.182633 187.889269,257.566013 187.889269,256.936957 L187.889269,255.961678 L182.798553,255.961434 C182.605691,255.961434 182.424289,255.96314 182.242887,255.964603 L181.716724,255.968017 L181.716724,255.968017 C181.442183,255.968017 181.219331,255.963872 181.01501,255.954607 C179.956832,255.90755 179.121261,255.061007 179.113147,254.027454 C179.104437,252.950258 179.945616,252.090549 181.027445,252.070312 C181.693073,252.057877 182.410879,252.052025 183.286437,252.052025 C183.863802,252.052025 184.446532,252.054219 185.038283,252.056901 C185.652465,252.059583 186.2764,252.062265 186.914965,252.062265 L187.890244,252.062265 L187.890244,251.086986 C187.890244,250.464026 187.887562,249.850087 187.88488,249.242244 C187.878785,247.844668 187.872689,246.524871 187.899022,245.18825 C187.919747,244.120563 188.771653,243.284504 189.838122,243.284504 L189.862748,243.284748 Z M220.056147,247.182692 L215.55069,247.182933 C215.46905,247.182966 215.386684,247.183 215.30373,247.183035 L213.271303,247.183952 C213.187856,247.183991 213.104935,247.184031 213.022679,247.18407 L211.247438,247.18495 C211.184726,247.184982 211.123792,247.185013 211.064776,247.185043 L209.998397,247.185599 L209.998397,247.185599 C209.819677,247.185599 209.655586,247.199496 209.481742,247.21437 C209.404451,247.220709 209.321553,247.228023 209.230364,247.234119 L208.031501,247.316774 L208.358952,248.472968 C209.401526,252.154405 209.397868,255.86632 208.348224,259.505576 L208.070513,260.466958 L209.039209,260.719799 C209.072125,260.728333 209.100408,260.737598 209.125278,260.7454 C209.232315,260.779291 209.393967,260.830249 209.598776,260.830249 L213.929018,260.834151 C215.963208,260.836345 217.997397,260.838539 220.031343,260.838539 L221.341911,260.838196 C223.899218,260.836823 226.08682,260.831329 228.143476,260.821716 C230.150114,260.811719 231.741526,259.194462 231.767128,257.13906 C231.789071,255.352835 231.782102,253.540034 231.775661,251.787212 L231.771272,250.547876 C231.767371,249.230516 231.073947,248.171607 229.868502,247.641786 C229.226036,247.359442 228.495796,247.202179 227.812368,247.199253 C225.489395,247.189615 223.039758,247.184276 220.056147,247.182692 Z M154.824142,247.177309 C153.57871,247.177309 152.558567,247.181698 151.614252,247.191207 C149.328197,247.214613 147.905508,248.660953 147.90185,250.966027 C147.898437,252.885865 147.898681,254.805947 147.90185,256.725785 C147.905751,259.337828 149.41329,260.836345 152.038012,260.83732 L155.578886,260.838417 L155.578886,260.838417 L159.119761,260.838783 C162.485208,260.838783 165.849923,260.837808 169.215369,260.836589 C169.437245,260.836345 169.646687,260.824154 169.868807,260.811719 C169.970236,260.805624 170.076054,260.799528 170.187723,260.794408 L171.342454,260.741255 L170.364005,256.26082 L169.829308,256.088927 C169.813703,256.084051 169.800781,256.078443 169.789077,256.074298 C169.700571,256.039676 169.535261,255.975795 169.317774,255.974819 C168.588021,255.972137 167.858755,255.971162 167.12949,255.970187 C166.002066,255.96848 164.874399,255.966773 163.746976,255.959703 C162.452048,255.951657 161.551865,255.1451 161.557961,253.998659 C161.564056,252.845878 162.454486,252.067361 163.773552,252.061997 C164.515252,252.058828 165.256709,252.058096 166.003042,252.058096 L170.294029,252.060291 L171.334408,247.183648 L159.363581,247.183648 C158.607739,247.183648 157.851654,247.182185 157.095812,247.180479 C156.338507,247.178772 155.581447,247.177309 154.824142,247.177309 Z M154.794957,252.074773 C155.367933,252.074773 155.869715,252.277144 156.232519,252.645068 C156.583376,253.000558 156.772336,253.482346 156.765509,254.001195 C156.75088,255.04962 155.857524,255.935662 154.814462,255.93615 C153.779934,255.93615 152.899257,255.046938 152.890967,253.99388 C152.882839,252.963102 153.624859,252.16564 154.640181,252.081919 L154.794957,252.074773 Z M225.105626,252.068678 C226.214519,252.068678 227.049114,252.880842 227.059842,253.958039 C227.064963,254.460795 226.852596,254.966478 226.476869,255.346105 C226.105287,255.721344 225.610089,255.936393 225.118061,255.936393 L225.09246,255.93615 C224.049154,255.921033 223.167989,255.022069 223.16872,253.973399 C223.169452,252.893765 224.002097,252.075017 225.105626,252.068678 Z M216.291048,252.067971 C217.379216,252.067971 218.238925,252.901347 218.252823,253.965378 C218.259406,254.448872 218.046064,254.946021 217.667655,255.32955 C217.28754,255.714786 216.790391,255.935686 216.30397,255.935686 L216.274224,255.935443 C215.201417,255.915693 214.363895,255.051839 214.368267,253.968791 C214.372429,252.869895 215.181423,252.070165 216.291048,252.067971 Z M170.879196,217.923306 C164.556946,217.923306 158.234695,217.923794 151.912444,217.925501 C149.371109,217.926232 147.909409,219.385495 147.902094,221.929024 C147.898193,223.224927 147.899407,224.52083 147.900387,225.816733 L147.901119,227.234058 C147.90185,230.237919 149.233351,231.57771 152.218194,231.577954 L191.522454,231.578198 L209.666558,231.578685 C215.714511,231.578685 221.762464,231.578198 227.810662,231.576247 C230.285678,231.575516 231.767615,230.095285 231.774198,227.616855 C231.777612,226.324853 231.776619,225.033096 231.776619,223.741094 L231.775174,222.220876 C231.774198,219.289429 230.41734,217.924038 227.505155,217.924038 L170.879196,217.923306 Z M154.867883,222.880873 C155.974826,222.910131 156.790159,223.739363 156.765046,224.809732 C156.739201,225.895218 155.909238,226.713234 154.833992,226.713234 L154.813999,226.713234 C153.739484,226.702994 152.894405,225.854744 152.890492,224.78218 C152.888797,224.26065 153.07922,223.7813 153.427395,223.431906 C153.781909,223.076172 154.272231,222.880141 154.808635,222.880141 L154.867883,222.880873 Z M216.285099,222.862854 C217.401062,222.87407 218.255164,223.715249 218.252488,224.77806 C218.249556,225.826729 217.350835,226.712771 216.290219,226.712771 L216.248282,226.712283 C215.163283,226.68912 214.355264,225.846966 214.368674,224.75319 C214.38184,223.675506 215.205708,222.862854 216.285099,222.862854 Z M225.10153,222.862586 L225.151025,222.863074 C226.257968,222.888919 227.078665,223.724002 227.060135,224.805831 C227.041605,225.874981 226.18726,226.712747 225.115184,226.712747 L225.101286,226.712747 C224.021164,226.705676 223.172183,225.86084 223.168511,224.789251 C223.166575,224.268939 223.36285,223.784469 223.720777,223.425566 C224.082362,223.062275 224.572684,222.862586 225.10153,222.862586 Z M166.085038,222.797535 C166.451743,222.798998 166.818692,222.800217 167.185641,222.800217 L178.624453,222.800217 C188.006888,222.800217 197.388591,222.800461 206.771269,222.802411 L207.138218,222.800705 C207.354487,222.800705 207.580995,222.805825 207.769468,222.842398 C208.707443,223.023556 209.396235,223.915693 209.338206,224.873174 C209.277738,225.866253 208.461429,226.663056 207.480054,226.687194 C206.808818,226.703774 206.079308,226.711576 205.183514,226.711576 C204.659545,226.711576 204.135332,226.708894 203.611363,226.706456 C203.084225,226.704018 202.557086,226.701336 202.029947,226.701336 L173.3616,226.70353 C170.145615,226.70353 166.930606,226.702311 163.714865,226.697435 C162.931471,226.696459 162.258528,226.372423 161.869148,225.808955 C161.518047,225.301322 161.45246,224.682019 161.684332,224.065155 C161.979842,223.279079 162.657905,222.819723 163.545166,222.805337 C164.026954,222.797047 164.50923,222.795097 164.991262,222.795097 C165.355773,222.795097 165.720284,222.796072 166.085038,222.797535 Z"
id="形状结合"
/>
</g>
</g>
</svg>
)
const editIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
>
<g
id="20220814"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<g id="切图" transform="translate(-41.000000, -393.000000)">
<g id="编组-4备份-2" transform="translate(41.000000, 393.000000)">
<path
d="M17.8221813,7.31303085 L20.6883098,10.1791594 C21.1324022,10.6232518 21.0977567,11.3807286 20.6111448,11.8673405 L18.6753706,13.8044691 C18.6664099,13.8146207 18.6570778,13.8245571 18.6473743,13.8342606 L13.7308616,18.7476238 C13.4473983,19.031087 13.0820457,19.2263617 12.7009451,19.2988023 L9.0552926,19.9854133 C8.99859995,19.9964369 8.9419073,20.0027361 8.88521464,20.0027361 C8.64899526,20.0027361 8.42222465,19.9113979 8.25687109,19.7444696 C8.05057282,19.5381713 7.96080946,19.2389601 8.01592732,18.9444733 L8.70253832,15.3003956 C8.77497893,14.9177202 8.97025362,14.5523675 9.25371688,14.2689043 L14.1605635,9.36214986 C14.1627168,9.3599352 14.1648889,9.35773222 14.16708,9.35554111 L16.1340001,7.38862105 C16.620612,6.90200912 17.3780888,6.86736361 17.8221813,7.31303085 Z M14.661,10.703 L10.1733977,15.1901599 C10.0726107,15.2909468 10.0048945,15.4153557 9.98127258,15.5429141 L9.40489729,18.5980182 L12.4600013,18.0216429 C12.5875598,17.9980209 12.7119686,17.9287299 12.8127556,17.8295178 L17.3,13.342 L14.661,10.703 Z M17.0190354,8.34767175 L15.58,9.783 L18.218,12.42 L19.6552437,10.9838801 L17.0190354,8.34767175 Z"
id="形状结合"
fill="currentColor"
fillRule="nonzero"
/>
<rect
id="矩形备份-2"
strokeOpacity="0.2"
stroke="currentColor"
strokeWidth="0.5"
x="0.25"
y="0.25"
width="27.5"
height="27.5"
rx="5"
/>
</g>
</g>
</g>
</svg>
)
const downloadIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="12px"
height="12px"
viewBox="0 0 12 12"
version="1.1"
>
<title>形状结合</title>
<g
id="20220814"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<g
id="切图"
transform="translate(-80.000000, -226.000000)"
fill="currentColor"
fillRule="nonzero"
>
<path
d="M91.4004672,233.168812 C91.7324936,233.168812 92,233.437659 92,233.768341 L92,235.43385 C92.0013408,236.362717 91.2082415,237.119522 90.232326,237.119522 L81.7690148,237.119522 C80.7930994,237.119522 80,236.362717 80,235.43385 L80,233.768341 C80,233.436315 80.2688472,233.168812 80.5995293,233.168812 C80.9302115,233.168812 81.1990587,233.437659 81.1990587,233.768341 L81.1990587,235.43385 C81.1990587,235.701353 81.4544636,235.919119 81.7690148,235.919119 L90.232326,235.919119 C90.545533,235.919119 90.8009379,235.701353 90.8009379,235.43385 L90.8009379,233.768341 C90.8009379,233.436315 91.0697851,233.168812 91.4004672,233.168812 Z M87.0357323,226 C87.8866338,226 88.5789155,226.754117 88.5789155,227.680295 L88.5789155,229.876777 L89.139462,229.876777 C89.5669291,229.876777 89.9406267,230.133526 90.1140332,230.546207 C90.300882,230.991149 90.209474,231.495238 89.8801361,231.832641 L87.0935344,234.678389 C86.8031794,234.974121 86.4241048,235.138118 86.0248667,235.138118 C86.0235224,235.139462 86.0235224,235.139462 86.0221782,235.139462 C85.6242843,235.139462 85.2452097,234.976809 84.9548546,234.682422 L82.1292701,231.817854 C81.798588,231.481795 81.7044915,230.976362 81.8913403,230.53142 C82.0647468,230.117395 82.4384445,229.860646 82.8659116,229.860646 L83.4210811,229.860646 L83.4210811,227.680295 C83.4210811,226.754117 84.1133628,226 84.9642643,226 L87.0357323,226 Z M87.0370765,227.200403 L84.9656085,227.200403 C84.7827924,227.200403 84.6228283,227.42489 84.6228283,227.680295 L84.6228283,230.458831 C84.6228283,230.790858 84.3539811,231.058361 84.023299,231.058361 L83.0648585,231.058361 L83.0648585,231.059705 L85.8097889,233.839586 C85.8743122,233.904109 85.946901,233.939059 86.0221782,233.939059 C86.0974554,233.939059 86.1713884,233.904109 86.2345675,233.839586 L88.9391708,231.078524 L87.9793861,231.078524 C87.6473598,231.078524 87.3798568,230.809677 87.3798568,230.478995 L87.3798568,227.680295 C87.3798568,227.42489 87.2198927,227.200403 87.0370765,227.200403 Z"
id="形状结合"
/>
</g>
</g>
</svg>
)
const dateArrowIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="10px"
height="4px"
viewBox="0 0 10 4"
version="1.1"
>
<g
id="20220814"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<g
id="切图"
transform="translate(-82.000000, -252.000000)"
stroke="currentColor"
strokeWidth="1.2"
>
<polyline
id="路径-5"
points="82 254.860465 90 254.860465 88.0668178 253"
/>
</g>
</g>
</svg>
)
const dateIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="12px"
height="12px"
viewBox="0 0 12 12"
version="1.1"
>
<g
id="20220814"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<g
id="切图"
transform="translate(-46.000000, -248.000000)"
fill="currentColor"
fillRule="nonzero"
>
<path
d="M54.5113689,248 C54.8426914,248 55.1113689,248.268677 55.1113689,248.6 L55.111,248.868 L55.7726218,248.868677 C56.7540603,248.868677 57.5531323,249.667749 57.5531323,250.649188 L57.5531323,258.21949 C57.5531323,259.200928 56.7540603,260 55.7726218,260 L47.7805104,260 C46.7990719,260 46,259.200928 46,258.21949 L46,250.649188 C46,249.667749 46.7990719,248.868677 47.7805104,248.868677 L48.586,248.868 L48.5865429,248.6 C48.5865429,248.268677 48.8552204,248 49.1865429,248 C49.5178654,248 49.7865429,248.268677 49.7865429,248.6 L49.786,248.868 L53.911,248.868 L53.9113689,248.6 C53.9113689,248.268677 54.1800464,248 54.5113689,248 Z M56.353,253.106 L47.2,253.106 L47.2,258.21949 C47.2,258.539675 47.4603248,258.8 47.7805104,258.8 L55.7726218,258.8 C56.0928074,258.8 56.3531323,258.539675 56.3531323,258.21949 L56.353,253.106 Z M52.0723898,256.287239 C52.4037123,256.287239 52.6723898,256.555916 52.6723898,256.887239 C52.6723898,257.218561 52.4037123,257.487239 52.0723898,257.487239 L51.4793503,257.487239 C51.1480278,257.487239 50.8793503,257.218561 50.8793503,256.887239 C50.8793503,256.555916 51.1480278,256.287239 51.4793503,256.287239 L52.0723898,256.287239 Z M49.2700696,256.287239 C49.6013921,256.287239 49.8700696,256.555916 49.8700696,256.887239 C49.8700696,257.218561 49.6013921,257.487239 49.2700696,257.487239 L48.6770302,257.487239 C48.3457077,257.487239 48.0770302,257.218561 48.0770302,256.887239 C48.0770302,256.555916 48.3457077,256.287239 48.6770302,256.287239 L49.2700696,256.287239 Z M52.0723898,254.218561 C52.4037123,254.218561 52.6723898,254.487239 52.6723898,254.818561 C52.6723898,255.149884 52.4037123,255.418561 52.0723898,255.418561 L51.4793503,255.418561 C51.1480278,255.418561 50.8793503,255.149884 50.8793503,254.818561 C50.8793503,254.487239 51.1480278,254.218561 51.4793503,254.218561 L52.0723898,254.218561 Z M49.2700696,254.218561 C49.6013921,254.218561 49.8700696,254.487239 49.8700696,254.818561 C49.8700696,255.149884 49.6013921,255.418561 49.2700696,255.418561 L48.6770302,255.418561 C48.3457077,255.418561 48.0770302,255.149884 48.0770302,254.818561 C48.0770302,254.487239 48.3457077,254.218561 48.6770302,254.218561 L49.2700696,254.218561 Z M54.8064965,254.218561 C55.137819,254.218561 55.4064965,254.487239 55.4064965,254.818561 C55.4064965,255.149884 55.1392111,255.418561 54.8064965,255.418561 L54.2134571,255.418561 C53.8821346,255.418561 53.6134571,255.149884 53.6134571,254.818561 C53.6134571,254.487239 53.8821346,254.218561 54.2134571,254.218561 L54.8064965,254.218561 Z M55.7726218,250.068677 L55.111,250.068 L55.1113689,250.334571 C55.1113689,250.667285 54.8426914,250.935963 54.5113689,250.935963 C54.1800464,250.935963 53.9113689,250.667285 53.9113689,250.335963 L53.911,250.068 L49.786,250.068 L49.7865429,250.334571 C49.7865429,250.667285 49.5178654,250.935963 49.1865429,250.935963 C48.8552204,250.935963 48.5865429,250.667285 48.5865429,250.335963 L48.586,250.068 L47.7805104,250.068677 C47.4603248,250.068677 47.2,250.329002 47.2,250.649188 L47.2,251.906 L56.353,251.906 L56.3531323,250.649188 C56.3531323,250.329002 56.0928074,250.068677 55.7726218,250.068677 Z"
id="形状结合"
/>
</g>
</g>
</svg>
)
const openAllIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="14px"
height="14px"
viewBox="0 0 14 14"
version="1.1"
>
<g
id="节点仪表盘"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<g
id="切图"
transform="translate(-53.000000, -439.000000)"
fill="currentColor"
fillRule="nonzero"
>
<path
d="M60.0037631,447.731199 C60.3279685,447.731199 60.5901117,447.993342 60.5901117,448.317548 L60.59,451.432 L61.2866902,450.737046 C61.5154866,450.50825 61.8878596,450.50825 62.116656,450.737046 C62.3454524,450.965843 62.3445261,451.337289 62.1157297,451.566086 L61.157008,452.524808 C60.8454663,452.836349 60.4372819,452.994479 60.0276626,452.998864 C60.0201038,452.999743 60.0119535,452.999953 60.0037631,453 L59.9764596,452.998612 C59.5725745,452.990301 59.1711516,452.832473 58.8634863,452.524808 L57.9056909,451.567012 C57.6768946,451.338216 57.6768946,450.965843 57.9056909,450.737046 C58.1344873,450.50825 58.5068604,450.50825 58.7356568,450.737046 L59.417,451.418 L59.4174144,448.317548 C59.4174144,447.993342 59.680484,447.730273 60.0037631,447.731199 Z M65.5745382,443.898165 L66.5332599,444.856887 C66.8441991,445.167826 67.0018706,445.575034 67.0064953,445.983745 C67.0073031,445.992197 67.0075261,446.001602 67.0075261,446.011058 L67.0060541,446.044552 C66.9956879,446.44587 66.8377113,446.844104 66.5323336,447.149482 L65.5736119,448.108204 C65.3448156,448.337 64.9724425,448.337 64.7436461,448.108204 C64.5148497,447.879407 64.5148497,447.507034 64.7436461,447.278238 L65.425,446.596 L62.3139582,446.591849 C61.9897528,446.591849 61.7276095,446.327853 61.7276095,446.003647 C61.7276095,445.679442 61.9916054,445.417299 62.3148845,445.418225 L65.438,445.421 L64.7445724,444.728131 C64.515776,444.499334 64.515776,444.126961 64.7445724,443.898165 C64.9733688,443.669368 65.3457419,443.669368 65.5745382,443.898165 Z M55.2694378,443.891681 C55.4982342,444.120477 55.4982342,444.49285 55.2694378,444.721647 L54.581,445.409 L57.6898628,445.413594 C58.0140682,445.413594 58.2762114,445.677589 58.2762114,446.001795 C58.2762114,446.162971 58.210444,446.310253 58.1048457,446.415851 C57.9983211,446.522376 57.8510392,446.588143 57.6898628,446.588143 L54.582,446.583 L55.2694378,447.270827 C55.4982342,447.499624 55.4982342,447.871997 55.2694378,448.100793 C55.0406415,448.32959 54.6682684,448.32959 54.439472,448.100793 L53.4816766,447.142998 C53.1933838,446.854705 53.0364606,446.484282 53.0109068,446.10658 C53.0036924,446.070491 53,446.032861 53,445.994384 C53,445.955195 53.0038574,445.916912 53.0112108,445.879891 C53.0378506,445.504918 53.1946583,445.136494 53.4816766,444.849476 L54.439472,443.891681 C54.6682684,443.662884 55.0406415,443.662884 55.2694378,443.891681 Z M60.0037631,438.999884 L60.0174719,439.000056 C60.4281069,439.003468 60.8377607,439.161387 61.1505239,439.47415 L62.1092456,440.432872 C62.338042,440.661669 62.3371157,441.033115 62.1083193,441.261912 C61.8795229,441.490708 61.5071498,441.490708 61.2783535,441.261912 L60.59,440.574 L60.5901117,443.693452 C60.5901117,443.854629 60.5243443,444.001911 60.418746,444.107509 C60.3122214,444.214034 60.1658658,444.278875 60.0037631,444.279801 C59.6795577,444.279801 59.4174144,444.017658 59.4174144,443.693452 L59.417,440.573 L58.7282464,441.262838 C58.49945,441.491634 58.1270769,441.491634 57.8982805,441.262838 C57.6694841,441.034042 57.6694841,440.661669 57.8982805,440.432872 L58.8570022,439.47415 C59.1693075,439.161845 59.5787298,439.003705 59.9893596,439.000064 C59.994221,438.999941 59.9989853,438.999884 60.0037631,438.999884 Z"
id="形状结合"
/>
</g>
</g>
</svg>
)
const deleteIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
>
<g
id="节点仪表盘"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<g id="切图" transform="translate(-89.000000, -393.000000)">
<g id="编组-4备份-6" transform="translate(89.000000, 393.000000)">
<rect
id="矩形备份-2"
strokeOpacity="0.2"
stroke="currentColor"
strokeWidth="0.5"
x="0.25"
y="0.25"
width="27.5"
height="27.5"
rx="5"
/>
<path
d="M13.5040232,7 C14.8654293,7 15.9798656,8.07661043 16.0407426,9.42324165 L18.2525704,9.42355834 L18.284,9.425 L19.3039785,9.42512293 C19.6919982,9.42512293 20.0064819,9.73960662 20.0064819,10.1276263 C20.0064819,10.515646 19.6935628,10.8301296 19.3055431,10.8301296 L18.955,10.83 L18.9550754,18.459097 C18.9566384,19.8609745 17.8176129,21 16.4173,21 L10.5891819,21 C9.18886902,21 8.04984354,19.8609745 8.04984354,18.4606616 L8.049,10.83 L7.70250335,10.8301296 C7.31448368,10.8301296 7,10.515646 7,10.1276263 C7,9.73960662 7.31448368,9.42512293 7.70250335,9.42512293 L8.71985071,9.42429639 C8.73062127,9.42380613 8.74145511,9.42355834 8.75234689,9.42355834 L10.968,9.423 L10.970096,9.3726112 C11.0562249,8.04972588 12.1597228,7 13.5040232,7 Z M17.5500671,10.8301296 L9.45641484,10.8301296 L9.45641484,18.4606616 C9.45641484,19.0849352 9.96490836,19.5934287 10.5891819,19.5934287 L16.4173,19.5934287 C17.0415735,19.5934287 17.5500671,19.0849352 17.5500671,18.4606616 L17.5500671,10.8301296 Z M11.9894949,13.0925346 C12.3775145,13.0925346 12.692004,13.4070183 12.692004,13.795038 L12.692004,16.6598122 C12.6935628,17.0478319 12.3790791,17.3623156 11.9894949,17.3623156 C11.6014752,17.3623156 11.2869915,17.0478319 11.2869915,16.6598122 L11.2869915,13.795038 C11.2869915,13.4070183 11.6014752,13.0925346 11.9894949,13.0925346 Z M15.016987,13.0925346 C15.4050067,13.0925346 15.7194962,13.4070183 15.7194962,13.795038 L15.7194962,16.6598122 C15.721055,17.0478319 15.4065713,17.3623156 15.016987,17.3623156 C14.6289674,17.3623156 14.3144837,17.0478319 14.3144837,16.6598122 L14.3144837,13.795038 C14.3144837,13.4070183 14.6289674,13.0925346 15.016987,13.0925346 Z M13.5040232,8.4065713 C12.9173,8.4065713 12.43384,8.852481 12.3759499,9.42355834 L14.630532,9.42355834 C14.5726419,8.852481 14.0891819,8.4065713 13.5040232,8.4065713 Z"
id="形状结合"
fill="currentColor"
fillRule="nonzero"
/>
</g>
</g>
</g>
</svg>
)
const tip = (
<svg
viewBox="64 64 896 896"
focusable="false"
data-icon="exclamation-circle"
width="1em"
height="1em"
fill="currentColor"
aria-hidden="true"
>
<path d="M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"></path>
<path d="M464 688a48 48 0 1096 0 48 48 0 10-96 0zm24-112h48c4.4 0 8-3.6 8-8V296c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v272c0 4.4 3.6 8 8 8z"></path>
</svg>
)
const fileIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="14px"
height="14px"
viewBox="0 0 14 14"
version="1.1"
>
<g
id="页面-1"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
opacity="0.6"
>
<g id="所需icon" transform="translate(-33.000000, -62.000000)">
<g id="文件icon" transform="translate(33.000000, 62.000000)">
<rect id="矩形" x="0" y="0" width="14" height="14" />
<path
d="M10.8181818,0.636363636 C11.8725436,0.636363636 12.7272727,1.49109275 12.7272727,2.54545455 L12.7272727,2.54545455 L12.7272727,11.4545455 C12.7272727,12.5089072 11.8725436,13.3636364 10.8181818,13.3636364 L10.8181818,13.3636364 L3.18181818,13.3636364 C2.12745639,13.3636364 1.27272727,12.5089072 1.27272727,11.4545455 L1.27272727,11.4545455 L1.27272727,2.54545455 C1.27272727,1.49109275 2.12745639,0.636363636 3.18181818,0.636363636 L3.18181818,0.636363636 Z M10.8181818,1.90909091 L3.18181818,1.90909091 C2.83036425,1.90909091 2.54545455,2.19400061 2.54545455,2.54545455 L2.54545455,2.54545455 L2.54545455,11.4545455 C2.54545455,11.8059994 2.83036425,12.0909091 3.18181818,12.0909091 L3.18181818,12.0909091 L10.8181818,12.0909091 C11.1696357,12.0909091 11.4545455,11.8059994 11.4545455,11.4545455 L11.4545455,11.4545455 L11.4545455,2.54545455 C11.4545455,2.19400061 11.1696357,1.90909091 10.8181818,1.90909091 L10.8181818,1.90909091 Z M8.90909091,8.90909091 C9.26054484,8.90909091 9.54545455,9.19400061 9.54545455,9.54545455 C9.54545455,9.89690848 9.26054484,10.1818182 8.90909091,10.1818182 L5.09090909,10.1818182 C4.73945516,10.1818182 4.45454545,9.89690848 4.45454545,9.54545455 C4.45454545,9.19400061 4.73945516,8.90909091 5.09090909,8.90909091 L8.90909091,8.90909091 Z M8.90909091,6.36363636 C9.26054484,6.36363636 9.54545455,6.64854607 9.54545455,7 C9.54545455,7.35145393 9.26054484,7.63636364 8.90909091,7.63636364 L5.09090909,7.63636364 C4.73945516,7.63636364 4.45454545,7.35145393 4.45454545,7 C4.45454545,6.64854607 4.73945516,6.36363636 5.09090909,6.36363636 L8.90909091,6.36363636 Z M7,3.81818182 C7.35145393,3.81818182 7.63636364,4.10309152 7.63636364,4.45454545 C7.63636364,4.80599939 7.35145393,5.09090909 7,5.09090909 L5.09090909,5.09090909 C4.73945516,5.09090909 4.45454545,4.80599939 4.45454545,4.45454545 C4.45454545,4.10309152 4.73945516,3.81818182 5.09090909,3.81818182 L7,3.81818182 Z"
id="形状结合"
fill="currentColor"
fillRule="nonzero"
/>
</g>
</g>
</g>
</svg>
)
const outlook = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
>
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="切图" transform="translate(-840.000000, -204.000000)">
<g id="编组-10" transform="translate(840.000000, 204.000000)">
<rect
id="矩形"
fill="#FFFFFF"
x="0"
y="0"
width="28"
height="28"
rx="5"
/>
<g
id="邮件-(1)"
transform="translate(6.000000, 8.000000)"
fill="#222121"
fillRule="nonzero"
>
<path
d="M13.9397335,0.307183141 C14.1610283,0.138241429 14.1154582,0 13.8384666,0 L1.80604123,0 C1.52904963,0 1.48340846,0.138331502 1.70459668,0.307399328 L7.4163336,4.67312928 C7.63752181,4.84219711 7.99954207,4.84230521 8.22083687,4.6733635 L13.9397335,0.307183141 Z"
id="路径"
/>
<path
d="M10.7495963,4.20171574 C10.5271454,4.36583374 10.5148406,4.64908914 10.7222542,4.83114688 L14.4089991,8.06740618 C14.6163949,8.24944642 14.5935712,8.27907762 14.358244,8.13321439 L9.9292461,5.38785642 C9.69391892,5.24199319 9.31941706,5.25695757 9.09694832,5.42105807 L8.22648601,6.0633008 C8.00403512,6.2274188 7.64012362,6.22731379 7.41777987,6.06307327 L6.53883455,5.41381216 C6.31649082,5.24957165 5.94209612,5.23464227 5.70685822,5.38061051 L1.27157398,8.13300436 C1.0363361,8.2790076 1.01403028,8.25000648 1.2220333,8.06857881 L4.92979812,4.83448979 C5.13778327,4.65307962 5.1260321,4.3702793 4.90368835,4.20603877 L0.404272692,0.882461061 C0.181928961,0.718220549 0,0.807096654 0,1.07997323 L0,10.7038655 C0,10.9767246 0.22780857,11.2 0.506247219,11.2 L15.1381972,11.2 C15.4166359,11.2 15.6444444,10.9767246 15.6444444,10.7038655 L15.6444444,1.08632652 C15.6444444,0.813449928 15.4624619,0.724468807 15.240011,0.888586823 L10.7495963,4.20171574 Z"
id="路径"
/>
</g>
</g>
</g>
</g>
</svg>
)
const telegram = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
>
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="切图" transform="translate(-802.000000, -204.000000)">
<g id="编组-12" transform="translate(802.000000, 204.000000)">
<rect
id="矩形"
fill="#FFFFFF"
x="0"
y="0"
width="28"
height="28"
rx="5"
/>
<g
id="bxl-telegram"
transform="translate(5.300000, 7.400000)"
fill="#222121"
fillRule="nonzero"
>
<path
d="M14.9200247,0.0882308616 L0.747101326,5.55355953 C-0.220142748,5.94205591 -0.214547115,6.48163421 0.569640018,6.72224617 L4.2083962,7.85735903 L12.6274165,2.54551041 C13.0255054,2.30329971 13.3892211,2.43359788 13.0902548,2.69899046 L6.26918563,8.85497936 L6.26758689,8.85497936 L6.26918563,8.85577874 L6.01818181,12.6064475 C6.38589443,12.6064475 6.54816761,12.4377793 6.75440642,12.2387348 L8.52182513,10.520078 L12.198152,13.2355558 C12.8760222,13.6088641 13.3628417,13.417014 13.5315099,12.6080462 L15.9448238,1.23453499 C16.1918308,0.244109038 15.5667193,-0.204340485 14.9200247,0.0882308616 Z"
id="路径"
/>
</g>
</g>
</g>
</g>
</svg>
)
const twitter = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
>
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="切图" transform="translate(-764.000000, -204.000000)">
<g id="编组-13" transform="translate(764.000000, 204.000000)">
<rect
id="矩形"
fill="#FFFFFF"
x="0"
y="0"
width="28"
height="28"
rx="5"
/>
<path
d="M23,9.53509331 C22.4116092,9.78743741 21.7713015,9.9690487 21.1117654,10.0397815 C21.7924528,9.63641329 22.3096984,8.99981793 22.5538998,8.24278562 C21.9251292,8.61556668 21.2136762,8.88893946 20.4733806,9.0304051 C19.8734527,8.39380974 19.021632,8 18.0775147,8 C16.2604254,8 14.7990626,9.46436049 14.7990626,11.2613564 C14.7990626,11.5137005 14.8298281,11.7660446 14.8798221,12.0088302 C12.1589953,11.8673646 9.7323639,10.5750569 8.11909626,8.5964497 C7.83451508,9.08202094 7.67299603,9.63641329 7.67299603,10.2424215 C7.67299603,11.3741466 8.25177262,12.3720528 9.13435885,12.958944 C8.59596202,12.9379153 8.08833073,12.7868912 7.65184473,12.5441056 L7.65184473,12.5842513 C7.65184473,14.1690487 8.77863238,15.4823851 10.280375,15.7844333 C10.005408,15.8551661 9.71121259,15.8953118 9.41701719,15.8953118 C9.2035813,15.8953118 9.00168249,15.8742831 8.79786083,15.8456076 C9.21319553,17.1379153 10.4226655,18.0765589 11.8628771,18.1071461 C10.7360894,18.9846154 9.32472059,19.5007738 7.79221247,19.5007738 C7.51724552,19.5007738 7.26342988,19.4912153 7,19.4606281 C8.45367143,20.3878015 10.1784641,20.9230769 12.0359332,20.9230769 C18.0659776,20.9230769 21.3655811,15.9564861 21.3655811,11.6456076 C21.3655811,11.504142 21.3655811,11.3626764 21.3559668,11.2212107 C21.9943516,10.7566682 22.5538998,10.1812472 23,9.53509331 Z"
id="路径"
fill="#222121"
fillRule="nonzero"
/>
</g>
</g>
</g>
</svg>
)
const block_chain = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="16px"
height="16px"
viewBox="0 0 16 16"
version="1.1"
>
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="统计—FIL相关备份" transform="translate(-124.000000, -482.000000)">
<g id="编组" transform="translate(105.000000, 190.000000)">
<g id="编组-5" transform="translate(19.000000, 292.000000)">
<rect
id="矩形"
x="0"
y="0"
width="16"
height="16"
rx="0.777777778"
/>
<g
id="编组"
transform="translate(1.500000, 2.000000)"
fill="currentColor"
fillRule="nonzero"
>
<path
d="M0.65,0 L12.35,0 C12.708995,0 13,0.29848 13,0.666666667 L13,11.3333333 C13,11.7015333 12.708995,12 12.35,12 L0.65,12 C0.291018,12 0,11.7015333 0,11.3333333 L0,0.666666667 C0,0.29848 0.291018,0 0.65,0 Z M1.3,1.33333333 L1.3,10.6666667 L11.7,10.6666667 L11.7,1.33333333 L1.3,1.33333333 Z M3.25,6.66666667 L4.55,6.66666667 L4.55,9.33333333 L3.25,9.33333333 L3.25,6.66666667 Z M5.85,2.66666667 L7.15,2.66666667 L7.15,9.33333333 L5.85,9.33333333 L5.85,2.66666667 Z M8.45,4.66666667 L9.75,4.66666667 L9.75,9.33333333 L8.45,9.33333333 L8.45,4.66666667 Z"
id="形状"
/>
</g>
</g>
</g>
</g>
</g>
</svg>
)
const copyIcon = (
<svg
height="14"
viewBox="0 0 13 14"
width="13"
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
>
<filter id="a">
<feColorMatrix
in="SourceGraphic"
type="matrix"
values="0 0 0 0 0.141176 0 0 0 0 0.450980 0 0 0 0 0.980392 0 0 0 1.000000 0"
/>
</filter>
<g
fill="none"
fillRule="evenodd"
filter="url(#a)"
transform="translate(-213 -138)"
>
<g fill="currentColor" fillRule="nonzero" transform="translate(213 138)">
<path d="m9.38888889 1.94444444h-8.18518519c-.66445724.00080357-1.20290778.54443153-1.2037037 1.21527778v9.23611108c0 .6703473.54022222 1.2152778 1.2037037 1.2152778h8.18518519c.66396301 0 1.20370371-.5449305 1.20370371-1.2152778v-9.23611108c0-.66986111-.5397407-1.21527778-1.20370371-1.21527778zm.24074074 10.45138886c0 .1336806-.10833333.2430556-.24074074.2430556h-8.18518519c-.13295744 0-.24074074-.1088197-.24074074-.2430556v-9.23611108c0-.13423587.1077833-.24305555.24074074-.24305555h8.18518519c.13295744 0 .24074074.10881968.24074074.24305555z" />
<path d="m11.3148148 0h-8.18518517c-.26591488 0-.48148148.21763936-.48148148.48611111 0 .26847176.2155666.48611111.48148148.48611111h8.18518517c.1329575 0 .2407408.10881968.2407408.24305556v9.23611112c0 .2684717.2155666.4861111.4814814.4861111.2659149 0 .4814815-.2176394.4814815-.4861111v-9.23611112c0-.66986111-.5397407-1.21527778-1.2037037-1.21527778z" />
<path d="m7.7037037 5.58541667h-4.81481481c-.26591488 0-.48148148.21763935-.48148148.48611111 0 .26847175.2155666.48611111.48148148.48611111h4.81481481c.26591488 0 .48148149-.21763936.48148149-.48611111 0-.26847176-.21556661-.48611111-.48148149-.48611111zm-1.92592592 2.97402777h-2.88888889c-.26591488 0-.48148148.21763936-.48148148.48611112 0 .26847175.2155666.48611111.48148148.48611111h2.88888889c.26591488 0 .48148148-.21763936.48148148-.48611111 0-.26847176-.2155666-.48611112-.48148148-.48611112z" />
</g>
</g>
</svg>
)
const edit = (
<svg
xmlns="http://www.w3.org/2000/svg"
height="14"
viewBox="0 0 14 14"
width="14"
>
<path
d="m614.380141 274.356566 3.264812 3.264738c.505867.505855.466402 1.368679-.087899 1.922967l-2.240522 2.238678c-.094638.095818-.209559.159653-.330873.192017l-4.640086 4.635271c-.313869.313874-.71841.530098-1.140389.61031l-4.036697.760272c-.062774.012206-.125548.019181-.188321.019181-.261557 0-.512652-.101137-.695742-.285974-.228427-.22843-.327818-.559741-.266788-.885821l.760259-4.03502c.080211-.42373.296431-.828278.6103-1.142151l4.637383-4.637821c.032571-.120999.096247-.235292.19103-.330073l2.240522-2.240471c.554301-.554288 1.417144-.593752 1.923011-.086103zm-2.815141 3.155434-5.158477 5.159123c-.111597.111599-.186577.249355-.212733.390598l-.638199 3.382861 3.382805-.63821c.14124-.026156.278994-.102881.390592-.212737l5.158012-5.159635zm1.900276-1.976899-.993276.989899 3.004 3.004.992186-.991058z"
transform="translate(-604 -274)"
fill="currentColor"
/>
</svg>
)
const search = (
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
width="14px"
height="15px"
viewBox="0 0 14 15"
version="1.1"
>
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="search" fill="currentColor" fillRule="nonzero">
<path
d="M13.7936732,12.8829925 L11.0125641,10.1018833 C11.9075435,9.0008232 12.3962493,7.63676473 12.3962493,6.19812465 C12.3962493,4.54359043 11.7524922,2.98718991 10.5807758,1.8154735 C9.41102207,0.645719763 7.85462155,0 6.19812465,0 C4.54359043,0 2.98718991,0.643757089 1.8154735,1.8154735 C0.645719763,2.98522723 0,4.54162775 0,6.19812465 C0,7.85462155 0.643757089,9.4090594 1.8154735,10.5807758 C2.98522723,11.7505295 4.54162775,12.3962493 6.19812465,12.3962493 C7.5935859,12.3962493 8.92035356,11.9369836 10.0037496,11.0910711 L12.7946721,13.8819936 C12.9320593,14.0193807 13.1126253,14.0880743 13.295154,14.0880743 C13.4776827,14.0880743 13.656286,14.0193807 13.7956359,13.8819936 C14.0684476,13.6072192 14.0684476,13.1597295 13.7936732,12.8829925 Z M1.41508799,6.20008733 C1.41508799,3.5622534 3.56029073,1.41705066 6.19812465,1.41705066 C8.83595858,1.41705066 10.9811613,3.5622534 10.9811613,6.20008733 C10.9811613,8.83792125 8.83595858,10.983124 6.19812465,10.983124 C3.56029073,10.983124 1.41508799,8.83792125 1.41508799,6.20008733 Z"
id="形状"
/>
</g>
</g>
</svg>
)
const fil_overview = (
<svg
xmlns="http://www.w3.org/2000/svg"
height="16"
viewBox="0 0 16 16"
width="16"
>
<g fill="none" fillRule="evenodd">
<rect height="16" rx=".583333" width="16" />
<path
d="m13.3333341 2c.3681996 0 .6666659.29848.6666659.66666667v10.66666663c0 .3682-.2984663.6666667-.6666659.6666667h-10.66666817c-.36819293 0-.66666593-.2984667-.66666593-.6666667v-10.66666663c0-.36818667.298473-.66666667.66666593-.66666667zm-.666666 1.33333333h-9.33333625v9.33333337h9.33333625zm-2.66667254 1.33333334c.36818494 0 .66666144.29847683.66666144.66666666 0 .36818984-.2984765.66666667-.66666144.66666667h-2.66666815v1.33333333h1.99999778c.36818942 0 .66667037.29847684.66667037.66666667s-.29848095.66666667-.66667037.66666667h-2.00066445l.00066667 2.00000003c0 .3681898-.2984765.6666666-.66666593.6666666-.36818942 0-.66666592-.2984768-.66666592-.6666666v-5.33333337c0-.36818983.2984765-.66666666.66666592-.66666666z"