-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Expand file tree
/
Copy pathTools.tsx
More file actions
3659 lines (3607 loc) · 112 KB
/
Tools.tsx
File metadata and controls
3659 lines (3607 loc) · 112 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import React from 'react';
import type { IconProps } from '../types';
export const ToolLayout = (props: IconProps) => (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g
id="tool-layout"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<rect
id="Rectangle"
x="0"
y="0"
width="28"
height="28"
></rect>
<g
id="Group"
transform="translate(0.5, 4)"
strokeLinecap="round"
>
<g
id="Group-3"
transform="translate(0, 0)"
stroke="currentColor"
strokeWidth="1.25"
>
<path
d="M5.45696821e-12,9.49450549 L5.45696821e-12,17.3947362 C5.45710348e-12,18.4993057 0.8954305,19.3947362 2,19.3947362 L13.2443085,19.3947362 L13.2443085,19.3947362"
id="Path-3"
></path>
<path
d="M9.49450549,0 L9.49450549,4.91369247 L9.49450549,6 C9.49450549,7.1045695 10.389936,8 11.4945055,8 L19.195248,8 L19.195248,8"
id="Path-3"
transform="translate(14.3449, 4) rotate(180) translate(-14.3449, -4)"
></path>
<path
d="M0.0997440877,-0.0997440877 L0.0997440877,7.80048659 C0.0997440877,8.90505609 0.995174588,9.80048659 2.09974409,9.80048659 L9.80048659,9.80048659 L9.80048659,9.80048659"
id="Path-3"
transform="translate(4.9501, 4.8504) rotate(90) translate(-4.9501, -4.8504)"
></path>
</g>
<g
id="Group-10"
opacity="0.550000012"
transform="translate(2, 2)"
stroke="currentColor"
strokeWidth="1.5"
>
<line
x1="7.5"
y1="14.5"
x2="7.5"
y2="0.5"
id="Line-2"
></line>
<line
x1="7"
y1="14"
x2="7"
y2="1"
id="Line-2"
transform="translate(7, 7.5) rotate(90) translate(-7, -7.5)"
></line>
</g>
<g
id="gear"
transform="translate(21.0876, 17.2796) rotate(-20) translate(-21.0876, -17.2796)translate(15.9634, 11.5127)"
stroke="#348CFD"
strokeLinejoin="round"
strokeWidth="1.25"
>
<circle
id="Oval"
cx="5.12378058"
cy="5.76719178"
r="1.28158482"
></circle>
<path
d="M6.21361819,0.80762797 L6.59086967,2.04907966 C6.72061095,2.47639719 7.15892721,2.73042581 7.59419808,2.63056421 L8.85259487,2.33893009 C9.34216301,2.22858155 9.84650092,2.45011894 10.0964357,2.88530436 C10.3463705,3.32048979 10.2835655,3.86774756 9.94154064,4.23499782 L9.06128718,5.18481538 C8.75980718,5.51248709 8.75980718,6.0165454 9.06128718,6.3442171 L9.94154064,7.29403466 C10.2835655,7.66128493 10.3463705,8.2085427 10.0964357,8.64372812 C9.84650092,9.07891354 9.34216301,9.30045094 8.85259487,9.1901024 L7.59419808,8.89846827 C7.15663131,8.79632613 6.71524652,9.05279063 6.58730228,9.48352022 L6.2100508,10.7249719 C6.0649735,11.2053044 5.62242271,11.5339347 5.12065911,11.5339347 C4.61889551,11.5339347 4.17634472,11.2053044 4.03126742,10.7249719 L3.65669148,9.48352022 C3.52807698,9.05567912 3.08963152,8.80095947 2.65425492,8.90114382 L1.39585813,9.19277794 C0.90628999,9.30312648 0.401952083,9.08158909 0.152017275,8.64640366 C-0.0979175321,8.21121824 -0.035112502,7.66396047 0.306912358,7.29671021 L1.18716582,6.34689264 C1.48864582,6.01922094 1.48864582,5.51516263 1.18716582,5.18749093 L0.306912358,4.23767336 C-0.035112502,3.8704231 -0.0979175321,3.32316533 0.152017275,2.88797991 C0.401952083,2.45279448 0.90628999,2.23125709 1.39585813,2.34160563 L2.65425492,2.63323975 C3.08937078,2.73350334 3.52770594,2.47923776 3.65669148,2.0517552 L4.03483481,0.810303513 C4.17932126,0.32979188 4.62146882,0.000617032116 5.12323309,0 C5.62499736,-0.000615299293 6.06795204,0.327472644 6.21361819,0.80762797 Z"
id="Path"
></path>
</g>
</g>
</g>
</svg>
);
export const ToolClickSegment = (props: IconProps) => (
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
{...props}
>
<path
d="M18.7855 10.7063C19.0677 8.68223 18.754 6.39013 17.3334 4.86666C15.7881 3.20953 13.3171 2.78346 11.098 3.09398C9.51269 3.31581 7.93737 4.03721 6.63198 5.25454C5.24718 6.54592 4.39791 8.17926 4.11016 9.84527C3.74697 11.9481 4.27832 14.1031 5.75643 15.6882C7.30168 17.3453 9.54033 18.0136 11.7594 17.7031"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
/>
<path
d="M15.0003 18.562L15.0714 12.3038C15.0714 12.1629 15.1293 12.0689 15.2452 12.0219C15.3663 11.9749 15.4769 12.0036 15.577 12.108L19.8981 16.502C20.0034 16.6169 20.0271 16.7318 19.9692 16.8467C19.9165 16.9615 19.8164 17.0216 19.669 17.0268L17.9627 17.0973L19.353 20.2929C19.3899 20.366 19.3951 20.4391 19.3688 20.5123C19.3477 20.5854 19.303 20.6376 19.2345 20.6689L18.4445 20.9822C18.3708 21.0083 18.2997 21.0057 18.2312 20.9744C18.1628 20.943 18.1128 20.8908 18.0812 20.8177L16.754 17.5673L15.5533 18.7656C15.4532 18.8648 15.3347 18.8935 15.1978 18.8518C15.0609 18.81 14.995 18.7134 15.0003 18.562Z"
fill="currentColor"
/>
</svg>
);
export const ToolLength = (props: IconProps) => (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g
id="tool-length"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<rect
id="Rectangle"
x="0"
y="0"
width="28"
height="28"
></rect>
<g
id="ruler"
transform="translate(2, 2.5)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<rect
id="Rectangle"
strokeWidth="1.5"
transform="translate(11.5003, 11.5005) rotate(-45.001) translate(-11.5003, -11.5005)"
x="-0.874220029"
y="7.6109894"
width="24.749"
height="7.779"
rx="1"
></rect>
<line
x1="5.11737261"
y1="12.3844231"
x2="7.13237261"
y2="14.3684231"
id="Path"
></line>
<line
x1="7.68571234"
y1="9.81508336"
x2="10.1857123"
y2="12.3150834"
id="Path"
></line>
<line
x1="10.1225521"
y1="7.37924362"
x2="11.8725521"
y2="9.12924362"
id="Path"
></line>
<line
x1="12.5583918"
y1="4.94240389"
x2="15.0583918"
y2="7.44240389"
id="Path"
></line>
<line
x1="15.1127315"
y1="2.38806416"
x2="17.1277315"
y2="4.37406416"
id="Path"
></line>
<line
x1="2.56403288"
y1="14.9377628"
x2="5.06403288"
y2="17.4377628"
id="Path"
></line>
</g>
</g>
</svg>
);
export const Tool3DRotate = (props: IconProps) => (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g
id="tool-3d-rotate"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<rect
id="Rectangle"
x="0"
y="0"
width="28"
height="28"
/>
<g
id="Group"
transform="translate(4, 3)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="1.5"
>
<g id="group">
<polyline
id="Path"
points="6 21.996 8.5 19.998 6 17.996"
/>
<path
d="M8.5,19.998 C5.038,20.652 1,18.498 0,14.998"
id="Path"
/>
<polyline
id="Path"
points="14 0 11.5 1.998 14 4"
/>
<path
d="M11.5,1.998 C14.962,1.344 19,3.498 20,6.998"
id="Path"
/>
</g>
<g
id="3d"
transform="translate(5, 5.75)"
>
<polygon
id="Path"
points="5 0 0 2.1875 5 4.375 10 2.1875"
/>
<polyline
id="Path"
points="0 2.1875 0 8.125 5 10.3125 10 8.125 10 2.1875"
/>
<line
x1="5"
y1="4.375"
x2="5"
y2="10.3125"
id="Path"
/>
</g>
</g>
</g>
</svg>
);
export const ToolAngle = (props: IconProps) => (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g
id="tool-angle"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<rect
id="Rectangle"
x="0"
y="0"
width="28"
height="28"
/>
<g
id="Group-6"
transform="translate(2.4559, 6)"
stroke="currentColor"
strokeLinecap="round"
strokeWidth="1.5"
>
<line
x1="2.5"
y1="14.5"
x2="20.6875"
y2="14.4375"
id="Line-4"
/>
<line
x1="1"
y1="13.3775095"
x2="13.0650095"
y2="1.3125"
id="Line-4"
transform="translate(7.0325, 7.345) rotate(-10) translate(-7.0325, -7.345)"
/>
</g>
<path
d="M19.3390559,17.0930296 C19.4124327,13.0930296 17.4130821,11.0930296 13.3410041,11.0930296"
id="Path-4"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeDasharray="1,2.7"
transform="translate(16.341, 14.093) rotate(12) translate(-16.341, -14.093)"
/>
</g>
</svg>
);
export const ToolAnnotate = (props: IconProps) => (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g
id="tool-annotate"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<rect
id="Rectangle"
x="0"
y="0"
width="28"
height="28"
/>
<g
id="Group"
transform="translate(4, 3.3899)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="1.5"
>
<polyline
id="Path"
points="8.59335038 20.2520716 -6.1284311e-14 20.2520716 -6.1284311e-14 11.6587212"
/>
<line
x1="-4.08562073e-14"
y1="20.2520716"
x2="19.6419437"
y2="0.610127877"
id="Path"
/>
</g>
</g>
</svg>
);
export const ToolBidirectional = (props: IconProps) => (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g
id="tool-bidirectional"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<rect
id="Rectangle"
x="0"
y="0"
width="28"
height="28"
></rect>
<g
id="group"
transform="translate(2.5, 2.5)"
stroke="currentColor"
>
<g
id="Group-5"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="M19.7288691,-0.335661423 C20.1766848,-0.335701004 20.6245155,-0.164922663 20.9661629,0.176604012 L22.785192,1.99444856 C23.0988548,2.30800052 23.2685446,2.7110041 23.2944775,3.12134197 C23.3217954,3.55359523 23.188997,3.99381095 22.8972982,4.34658876 L4.09686309,23.1566959 C3.72728287,23.5261645 3.24294798,23.7108988 2.75861309,23.7108988 C2.2742782,23.7108988 1.78994331,23.5261645 1.420283,23.1566158 L-0.19579707,21.5405357 C-0.56526569,21.1709555 -0.75,20.6866206 -0.75,20.2022857 C-0.75,19.7179508 -0.56526569,19.2336159 -0.195713448,18.8639521 L18.4915869,0.176901703 C18.833253,-0.16476434 19.2810535,-0.335621842 19.7288691,-0.335661423 Z"
id="Path"
strokeWidth="1.5"
></path>
<line
x1="4.1448988"
y1="18.9142857"
x2="5.71632738"
y2="20.4765714"
id="Path"
></line>
<line
x1="6.5688988"
y1="16.4902857"
x2="8.14261309"
y2="18.0502857"
id="Path"
></line>
<line
x1="8.9928988"
y1="14.0662857"
x2="10.5654702"
y2="15.6274286"
id="Path"
></line>
<line
x1="11.4168988"
y1="11.6422857"
x2="12.9917559"
y2="13.2011429"
id="Path"
></line>
<line
x1="13.8408988"
y1="9.21714286"
x2="15.4066131"
y2="10.7874286"
id="Path"
></line>
<line
x1="16.1345622"
y1="6.9234795"
x2="17.7002765"
y2="8.49376521"
id="Path"
></line>
<line
x1="18.5589283"
y1="4.49911339"
x2="20.1246426"
y2="6.0693991"
id="Path"
></line>
</g>
<path
d="M9.21155442,3 L3.86096848,3 C3.30868373,3 2.86096848,3.44771525 2.86096848,4 L2.86096848,6.5 C2.86096848,7.05228475 3.30868373,7.5 3.86096848,7.5 L9.21155442,7.5 L9.21155442,7.5"
id="Path-6"
strokeWidth="1.5"
transform="translate(6.0363, 5.25) rotate(-315) translate(-6.0363, -5.25)"
></path>
<path
d="M21.0115544,14.7862614 L15.6609685,14.7862614 C15.1086837,14.7862614 14.6609685,15.2339767 14.6609685,15.7862614 L14.6609685,18.2862614 C14.6609685,18.8385462 15.1086837,19.2862614 15.6609685,19.2862614 L21.0115544,19.2862614 L21.0115544,19.2862614"
id="Path-6"
strokeWidth="1.5"
transform="translate(17.8363, 17.0363) rotate(-135) translate(-17.8363, -17.0363)"
></path>
</g>
</g>
</svg>
);
export const ToolCalibrate = (props: IconProps) => (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g
id="tool-calibrate"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<rect
id="Rectangle"
x="0"
y="0"
width="28"
height="28"
></rect>
<g
id="calibrate"
transform="translate(2.5, 16.5)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="1.25"
>
<polyline
id="Path"
points="20 6 23 3 20 0"
></polyline>
<line
x1="1"
y1="3"
x2="22"
y2="3"
id="Path"
></line>
<polyline
id="Path"
points="3 6 0 3 3 0"
></polyline>
</g>
<rect
id="Rectangle"
stroke="currentColor"
strokeWidth="1.25"
x="2"
y="5"
width="24"
height="6"
rx="2"
></rect>
<line
x1="6.5"
y1="10.5"
x2="6.5"
y2="8.5"
id="Line-5"
stroke="currentColor"
strokeLinecap="round"
></line>
<line
x1="9.5"
y1="10.5"
x2="9.5"
y2="8.5"
id="Line-5"
stroke="currentColor"
strokeLinecap="round"
></line>
<line
x1="12.5"
y1="10.5"
x2="12.5"
y2="8.5"
id="Line-5"
stroke="currentColor"
strokeLinecap="round"
></line>
<line
x1="15.5"
y1="10.5"
x2="15.5"
y2="8.5"
id="Line-5"
stroke="currentColor"
strokeLinecap="round"
></line>
<line
x1="18.5"
y1="10.5"
x2="18.5"
y2="8.5"
id="Line-5"
stroke="currentColor"
strokeLinecap="round"
></line>
<line
x1="21.5"
y1="10.5"
x2="21.5"
y2="8.5"
id="Line-5"
stroke="currentColor"
strokeLinecap="round"
></line>
</g>
</svg>
);
export const ToolCapture = (props: IconProps) => (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g
id="tool-"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<rect
id="Rectangle"
x="0"
y="0"
width="28"
height="28"
></rect>
<path
d="M8.64381845,8.55555556 C9.05021618,8.5340019 9.43897503,8.38261884 9.75292956,8.12366667 L11.6057073,6.43188889 C11.919523,6.17269999 12.308363,6.02128533 12.7148185,6 L15.6179296,6 C16.0208348,6.0234362 16.4057732,6.17472593 16.7168185,6.43188889 L18.5695962,8.12366667 C18.8835508,8.38261884 19.2723096,8.5340019 19.6787073,8.55555556 L23.1057073,8.55555556 C24.2042675,8.66849081 25.0354336,9.60050503 25.0225258,10.7047778 L25.0225258,19.4166667 C25.0225258,20.4752124 24.1642531,21.3333333 23.1057073,21.3333333 L5.21681845,21.3333333 C4.15827268,21.3333333 3.3,20.4752124 3.3,19.4166667 L3.3,10.7047778 C3.28709219,9.60050503 4.11825826,8.66849081 5.21681845,8.55555556 L8.64381845,8.55555556 Z"
id="Path"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
></path>
<circle
id="Oval"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
cx="14.1612629"
cy="13.9861111"
r="3.51388889"
></circle>
<path
d="M21.8279296,11.4305556 C22.0043539,11.4305556 22.147374,11.5735757 22.147374,11.75 C22.147374,11.9264243 22.0043539,12.0694444 21.8279296,12.0694444 C21.6515053,12.0694444 21.5084851,11.9264243 21.5084851,11.75 C21.5084851,11.5735757 21.6515053,11.4305556 21.8279296,11.4305556"
id="Path"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</g>
</svg>
);
export const ToolCine = (props: IconProps) => (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g
id="tool-cine"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<rect
id="Rectangle"
x="0"
y="0"
width="28"
height="28"
></rect>
<circle
id="Oval"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
cx="14"
cy="13.9990833"
r="10.5416667"
></circle>
<path
d="M11.5416667,11.7236444 L17.3036401,14.0295711 L11.5416667,16.9105578 L11.5416667,11.7236444 Z"
id="Path"
stroke="currentColor"
strokeWidth="1.5"
fill="currentColor"
></path>
</g>
</svg>
);
export const ToolCircle = (props: IconProps) => (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g
id="tool-circle"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<rect
id="Rectangle"
x="0"
y="0"
width="28"
height="28"
></rect>
<circle
id="Oval"
stroke="currentColor"
strokeWidth="1.5"
cx="14"
cy="14"
r="9.5"
></circle>
</g>
</svg>
);
export const ToolCobbAngle = (props: IconProps) => (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g
id="tool-cobb-angle"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<rect
id="Rectangle"
x="0"
y="0"
width="28"
height="28"
></rect>
<g
id="Group"
transform="translate(6.5, 0.68)"
fill="currentColor"
>
<path
d="M8.5,10.1817844 C9.88071187,10.1817844 11,11.3010725 11,12.6817844 L11,13.6817844 C11,15.0624963 9.88071187,16.1817844 8.5,16.1817844 L2.5,16.1817844 C1.11928813,16.1817844 0,15.0624963 0,13.6817844 L0,12.6817844 C0,11.3010725 1.11928813,10.1817844 2.5,10.1817844 L8.5,10.1817844 Z M8.5,11.6817844 L2.5,11.6817844 C1.94771525,11.6817844 1.5,12.1294997 1.5,12.6817844 L1.5,13.6817844 C1.5,14.2340692 1.94771525,14.6817844 2.5,14.6817844 L8.5,14.6817844 C9.05228475,14.6817844 9.5,14.2340692 9.5,13.6817844 L9.5,12.6817844 C9.5,12.1294997 9.05228475,11.6817844 8.5,11.6817844 Z"
id="Rectangle"
fillRule="nonzero"
></path>
<circle
id="Oval"
cx="6.5"
cy="8.6976195"
r="1"
></circle>
<circle
id="Oval"
cx="6.5"
cy="17.6976195"
r="1"
></circle>
<path
d="M11.5,1.70018865 C12.8807119,1.70018865 14,2.81947678 14,4.20018865 L14,5.20018865 C14,6.58090053 12.8807119,7.70018865 11.5,7.70018865 L5.5,7.70018865 C4.11928813,7.70018865 3,6.58090053 3,5.20018865 L3,4.20018865 C3,2.81947678 4.11928813,1.70018865 5.5,1.70018865 L11.5,1.70018865 Z M11.5,3.20018865 L5.5,3.20018865 C4.94771525,3.20018865 4.5,3.6479039 4.5,4.20018865 L4.5,5.20018865 C4.5,5.7524734 4.94771525,6.20018865 5.5,6.20018865 L11.5,6.20018865 C12.0522847,6.20018865 12.5,5.7524734 12.5,5.20018865 L12.5,4.20018865 C12.5,3.6479039 12.0522847,3.20018865 11.5,3.20018865 Z"
id="Rectangle"
fillRule="nonzero"
transform="translate(8.5, 4.7002) rotate(20) translate(-8.5, -4.7002)"
></path>
<path
d="M11.5,18.7001887 C12.8807119,18.7001887 14,19.8194768 14,21.2001887 L14,22.2001887 C14,23.5809005 12.8807119,24.7001887 11.5,24.7001887 L5.5,24.7001887 C4.11928813,24.7001887 3,23.5809005 3,22.2001887 L3,21.2001887 C3,19.8194768 4.11928813,18.7001887 5.5,18.7001887 L11.5,18.7001887 Z M11.5,20.2001887 L5.5,20.2001887 C4.94771525,20.2001887 4.5,20.6479039 4.5,21.2001887 L4.5,22.2001887 C4.5,22.7524734 4.94771525,23.2001887 5.5,23.2001887 L11.5,23.2001887 C12.0522847,23.2001887 12.5,22.7524734 12.5,22.2001887 L12.5,21.2001887 C12.5,20.6479039 12.0522847,20.2001887 11.5,20.2001887 Z"
id="Rectangle"
fillRule="nonzero"
transform="translate(8.5, 21.7002) rotate(-20) translate(-8.5, -21.7002)"
></path>
</g>
</g>
</svg>
);
export const ToolCreateThreshold = (props: IconProps) => (
<svg
width="25px"
height="25px"
viewBox="0 0 25 25"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g
id="create-threshold"
stroke="currentColor"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<polyline
id="Path-3"
stroke="currentColor"
strokeWidth="1.75"
strokeLinecap="round"
strokeLinejoin="round"
points="18.85656 16.2174437 21.3536565 13.7203472 23.850753 16.2174437"
></polyline>
<polyline
id="Path-3"
stroke="currentColor"
strokeWidth="1.75"
strokeLinecap="round"
strokeLinejoin="round"
transform="translate(21.353657, 21.471076) scale(1, -1) translate(-21.353657, -21.471076) "
points="18.85656 22.7196245 21.3536565 20.222528 23.850753 22.7196245"
></polyline>
<path
d="M21.8903104,6.56040847 L11.830485,16.6215711 C11.7372012,16.7144344 11.6185826,16.7776976 11.4894966,16.8034316 L7.65571758,17.5696525 C7.43667607,17.6132586 7.21032569,17.5446155 7.05240058,17.3866904 C6.89447547,17.2287653 6.8258324,17.0024149 6.86943853,16.7833734 L7.63565944,12.9509316 C7.66176759,12.8216917 7.72550512,12.7030561 7.81885711,12.6099433 L17.8786825,2.54878063 C18.9836118,1.44420272 20.7746834,1.44420272 21.8796127,2.54878063 L21.8903104,2.56081551 C22.9947353,3.66528595 22.9947353,5.45593803 21.8903104,6.56040847 Z"
id="Path"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
></path>
<line
x1="9.60946699"
y1="12.6534866"
x2="11.9466763"
y2="14.9906958"
id="Line"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="square"
></line>
<path
d="M-5.52848657,13.180889 L-5.52848657,15.180889 C-5.52848657,16.7687077 -4.24130523,18.055889 -2.65348657,18.055889 L-1.21495403,18.055889 C-0.731704876,18.055889 -0.339954032,17.6641382 -0.339954032,17.180889 C-0.339954032,16.6976399 -0.731704876,16.305889 -1.21495403,16.305889 L-2.65348657,16.305889 C-3.27480692,16.305889 -3.77848657,15.8022094 -3.77848657,15.180889 L-3.77848657,13.180889 C-3.77848657,12.6976399 -4.17023742,12.305889 -4.65348657,12.305889 C-5.13673573,12.305889 -5.52848657,12.6976399 -5.52848657,13.180889 Z M3.03504597,18.055889 L9.53504597,18.055889 C10.0182951,18.055889 10.410046,17.6641382 10.410046,17.180889 C10.410046,16.6976399 10.0182951,16.305889 9.53504597,16.305889 L3.03504597,16.305889 C2.55179681,16.305889 2.16004597,16.6976399 2.16004597,17.180889 C2.16004597,17.6641382 2.55179681,18.055889 3.03504597,18.055889 Z M13.785046,18.055889 L15.180889,18.055889 C16.7687077,18.055889 18.055889,16.7687077 18.055889,15.180889 L18.055889,13.1381996 C18.055889,12.6549504 17.6641382,12.2631996 17.180889,12.2631996 C16.6976399,12.2631996 16.305889,12.6549504 16.305889,13.1381996 L16.305889,15.180889 C16.305889,15.8022094 15.8022094,16.305889 15.180889,16.305889 L13.785046,16.305889 C13.3017968,16.305889 12.910046,16.6976399 12.910046,17.180889 C12.910046,17.6641382 13.3017968,18.055889 13.785046,18.055889 Z M18.055889,8.88819957 L18.055889,6.65348657 C18.055889,6.17023742 17.6641382,5.77848657 17.180889,5.77848657 C16.6976399,5.77848657 16.305889,6.17023742 16.305889,6.65348657 L16.305889,8.88819957 C16.305889,9.37144872 16.6976399,9.76319957 17.180889,9.76319957 C17.6641382,9.76319957 18.055889,9.37144872 18.055889,8.88819957 Z"
id="Path-4"
fill="currentColor"
fillRule="nonzero"
transform="translate(6.263701, 11.917188) scale(1, -1) rotate(90.000000) translate(-6.263701, -11.917188) "
></path>
</g>
</svg>
);
export const ToolCrosshair = (props: IconProps) => (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g
id="tool-crosshair"
stroke="none"
strokeWidth="1"
fill="none"
fillRule="evenodd"
>
<rect
id="Rectangle"
x="0"
y="0"
width="28"
height="28"
></rect>
<g
id="cursor-target-2"
transform="translate(3, 3)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="1.5"
>
<line
x1="11"
y1="-8.8817842e-16"
x2="11"
y2="6"
id="Path"
></line>
<line
x1="0"
y1="11"
x2="6"
y2="11"
id="Path"
></line>
<line
x1="11"
y1="22"
x2="11"
y2="16"
id="Path"
></line>
<line
x1="22"
y1="11"
x2="16"
y2="11"
id="Path"
></line>
<circle
id="Oval"
cx="11.001"
cy="11.001"
r="2"
></circle>
</g>
</g>
</svg>
);
export const ToolCrosshairChecked = (props: IconProps) => (
<svg
width="28"
height="28"
viewBox="0 0 28 28"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g clipPath="url(#clip0_tool_crosshair_checked)">
<path
d="M14 3V9"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M3 14H9"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M14 25V19"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M25 14H19"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M14.001 16.001C15.1056 16.001 16.001 15.1056 16.001 14.001C16.001 12.8964 15.1056 12.001 14.001 12.001C12.8964 12.001 12.001 12.8964 12.001 14.001C12.001 15.1056 12.8964 16.001 14.001 16.001Z"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M22 17C24.7614 17 27 19.2386 27 22C27 24.7614 24.7614 27 22 27C19.2386 27 17 24.7614 17 22C17 19.2386 19.2386 17 22 17ZM24.7998 19.7998C24.5789 19.6344 24.2652 19.6796 24.0996 19.9004L21.4453 23.4385L19.8535 21.8467C19.6583 21.6514 19.3417 21.6514 19.1465 21.8467C18.9513 22.0419 18.9513 22.3585 19.1465 22.5537L21.1465 24.5537C21.2489 24.6561 21.3907 24.7094 21.5352 24.6992C21.6797 24.6889 21.8134 24.6159 21.9004 24.5L24.9004 20.5C25.0658 20.2791 25.0205 19.9654 24.7998 19.7998Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_tool_crosshair_checked">
<rect
width="28"
height="28"
fill="white"
/>
</clipPath>
</defs>
</svg>
);
export const ToolDicomTagBrowser = (props: IconProps) => (
<svg
width="28px"
height="28px"
viewBox="0 0 28 28"
version="1.1"