-
Notifications
You must be signed in to change notification settings - Fork 24
/
icons.json
1437 lines (1437 loc) · 287 KB
/
icons.json
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
[
[
"IconArrowDownCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconArrowDownCircle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15575)\"><path d=\"M5.33337 7.99992L8.00004 10.6666M8.00004 10.6666L10.6667 7.99992M8.00004 10.6666V5.33325M14.6667 7.99992C14.6667 11.6818 11.6819 14.6666 8.00004 14.6666C4.31814 14.6666 1.33337 11.6818 1.33337 7.99992C1.33337 4.31802 4.31814 1.33325 8.00004 1.33325C11.6819 1.33325 14.6667 4.31802 14.6667 7.99992Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15575\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconArrowDownCircle, \"<FIGMA_ICONS_BASE>?node-id=4039:13031\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconArrowDownCircle size={size} /> });"
],
[
"IconAnchor",
"import { IconProps, Icon } from \"primitives\";\nexport const IconAnchor = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15569)\"><path d=\"M8.00001 5.33325C9.10458 5.33325 10 4.43782 10 3.33325C10 2.22868 9.10458 1.33325 8.00001 1.33325C6.89544 1.33325 6.00001 2.22868 6.00001 3.33325C6.00001 4.43782 6.89544 5.33325 8.00001 5.33325ZM8.00001 5.33325V14.6666M8.00001 14.6666C6.2319 14.6666 4.53621 13.9642 3.28596 12.714C2.03572 11.4637 1.33334 9.76803 1.33334 7.99992H3.33334M8.00001 14.6666C9.76812 14.6666 11.4638 13.9642 12.7141 12.714C13.9643 11.4637 14.6667 9.76803 14.6667 7.99992H12.6667\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15569\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconAnchor, \"<FIGMA_ICONS_BASE>?node-id=4039:13027\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconAnchor size={size} /> });"
],
[
"IconBell",
"import { IconProps, Icon } from \"primitives\";\nexport const IconBell = (props: IconProps) => (\n <Icon {...props}><path d=\"M9.15333 13.9999C9.03613 14.202 8.86789 14.3697 8.66548 14.4863C8.46307 14.6029 8.23359 14.6642 8 14.6642C7.76641 14.6642 7.53693 14.6029 7.33452 14.4863C7.1321 14.3697 6.96387 14.202 6.84667 13.9999M12 5.33325C12 4.27239 11.5786 3.25497 10.8284 2.50482C10.0783 1.75468 9.06087 1.33325 8 1.33325C6.93913 1.33325 5.92172 1.75468 5.17157 2.50482C4.42143 3.25497 4 4.27239 4 5.33325C4 9.99992 2 11.3333 2 11.3333H14C14 11.3333 12 9.99992 12 5.33325Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconBell, \"<FIGMA_ICONS_BASE>?node-id=4039:13048\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconBell size={size} /> });"
],
[
"IconAlignCenter",
"import { IconProps, Icon } from \"primitives\";\nexport const IconAlignCenter = (props: IconProps) => (\n <Icon {...props}><path d=\"M12 6.66667H4M14 4H2M14 9.33333H2M12 12H4\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconAlignCenter, \"<FIGMA_ICONS_BASE>?node-id=4039:13023\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconAlignCenter size={size} /> });"
],
[
"IconArrowUpLeft",
"import { IconProps, Icon } from \"primitives\";\nexport const IconArrowUpLeft = (props: IconProps) => (\n <Icon {...props}><path d=\"M11.3333 11.3334L4.66663 4.66675M4.66663 4.66675V11.3334M4.66663 4.66675H11.3333\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconArrowUpLeft, \"<FIGMA_ICONS_BASE>?node-id=4039:13039\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconArrowUpLeft size={size} /> });"
],
[
"IconBold",
"import { IconProps, Icon } from \"primitives\";\nexport const IconBold = (props: IconProps) => (\n <Icon {...props}><path d=\"M4 8.00008H9.33333C10.0406 8.00008 10.7189 7.71913 11.219 7.21903C11.719 6.71894 12 6.04066 12 5.33341C12 4.62617 11.719 3.94789 11.219 3.4478C10.7189 2.9477 10.0406 2.66675 9.33333 2.66675H4V8.00008ZM4 8.00008H10C10.7072 8.00008 11.3855 8.28103 11.8856 8.78113C12.3857 9.28123 12.6667 9.9595 12.6667 10.6667C12.6667 11.374 12.3857 12.0523 11.8856 12.5524C11.3855 13.0525 10.7072 13.3334 10 13.3334H4V8.00008Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconBold, \"<FIGMA_ICONS_BASE>?node-id=4039:13050\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconBold size={size} /> });"
],
[
"IconCameraOff",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCameraOff = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15631)\"><path d=\"M0.666748 0.666626L15.3334 15.3333M14.0001 14H2.00008C1.64646 14 1.30732 13.8595 1.05727 13.6094C0.807224 13.3594 0.666748 13.0202 0.666748 12.6666V5.33329C0.666748 4.97967 0.807224 4.64053 1.05727 4.39048C1.30732 4.14044 1.64646 3.99996 2.00008 3.99996H4.00008M6.00008 1.99996H10.0001L11.3334 3.99996H14.0001C14.3537 3.99996 14.6928 4.14044 14.9429 4.39048C15.1929 4.64053 15.3334 4.97967 15.3334 5.33329V11.56M10.1867 10.1866C9.96548 10.51 9.67567 10.7806 9.33794 10.9793C9.00021 11.1779 8.62285 11.2997 8.23271 11.336C7.84257 11.3722 7.44923 11.322 7.08068 11.189C6.71213 11.056 6.37742 10.8434 6.10036 10.5663C5.8233 10.2893 5.6107 9.95458 5.47768 9.58602C5.34467 9.21747 5.2945 8.82414 5.33075 8.434C5.367 8.04385 5.48879 7.6665 5.68743 7.32876C5.88608 6.99103 6.15672 6.70123 6.48008 6.47996\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15631\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCameraOff, \"<FIGMA_ICONS_BASE>?node-id=4039:13059\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCameraOff size={size} /> });"
],
[
"IconCheckCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCheckCircle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15637)\"><path d=\"M14.6668 7.38662V7.99995C14.666 9.43756 14.2005 10.8364 13.3397 11.9878C12.4789 13.1393 11.269 13.9816 9.8904 14.3892C8.51178 14.7968 7.03834 14.7479 5.68981 14.2497C4.34128 13.7515 3.18993 12.8307 2.40747 11.6247C1.62501 10.4186 1.25336 8.99199 1.34795 7.55749C1.44254 6.12299 1.9983 4.7575 2.93235 3.66467C3.8664 2.57183 5.12869 1.81021 6.53096 1.49338C7.93323 1.17656 9.40034 1.32151 10.7135 1.90662M14.6668 2.66662L8.00017 9.33995L6.00017 7.33995\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15637\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCheckCircle, \"<FIGMA_ICONS_BASE>?node-id=4039:13060\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCheckCircle size={size} /> });"
],
[
"IconArrowUpRight",
"import { IconProps, Icon } from \"primitives\";\nexport const IconArrowUpRight = (props: IconProps) => (\n <Icon {...props}><path d=\"M4.66675 11.3334L11.3334 4.66675M11.3334 4.66675H4.66675M11.3334 4.66675V11.3334\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconArrowUpRight, \"<FIGMA_ICONS_BASE>?node-id=4039:13041\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconArrowUpRight size={size} /> });"
],
[
"IconActivity",
"import { IconProps, Icon } from \"primitives\";\nexport const IconActivity = (props: IconProps) => (\n <Icon {...props}><path d=\"M14.6666 8H12L9.99998 14L5.99998 2L3.99998 8H1.33331\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconActivity, \"<FIGMA_ICONS_BASE>?node-id=4039:13018\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconActivity size={size} /> });"
],
[
"IconAlignJustify",
"import { IconProps, Icon } from \"primitives\";\nexport const IconAlignJustify = (props: IconProps) => (\n <Icon {...props}><path d=\"M14 6.66667H2M14 4H2M14 9.33333H2M14 12H2\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconAlignJustify, \"<FIGMA_ICONS_BASE>?node-id=4039:13025\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconAlignJustify size={size} /> });"
],
[
"IconCast",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCast = (props: IconProps) => (\n <Icon {...props}><path d=\"M1.33325 10.7333C1.97385 10.8639 2.56188 11.1801 3.02417 11.6424C3.48647 12.1047 3.80261 12.6927 3.93325 13.3333M1.33325 8.03329C2.68711 8.18387 3.94944 8.79066 4.91266 9.75388C5.87589 10.7171 6.48268 11.9794 6.63325 13.3333M1.33325 5.33329V3.99996C1.33325 3.64634 1.47373 3.3072 1.72378 3.05715C1.97382 2.8071 2.31296 2.66663 2.66659 2.66663H13.3333C13.6869 2.66663 14.026 2.8071 14.2761 3.05715C14.5261 3.3072 14.6666 3.64634 14.6666 3.99996V12C14.6666 12.3536 14.5261 12.6927 14.2761 12.9428C14.026 13.1928 13.6869 13.3333 13.3333 13.3333H9.33325M1.33325 13.3333H1.33992\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCast, \"<FIGMA_ICONS_BASE>?node-id=4039:13061\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCast size={size} /> });"
],
[
"IconBarChart2",
"import { IconProps, Icon } from \"primitives\";\nexport const IconBarChart2 = (props: IconProps) => (\n <Icon {...props}><path d=\"M12 13.3334V6.66675M8 13.3334V2.66675M4 13.3334V9.33342\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconBarChart2, \"<FIGMA_ICONS_BASE>?node-id=4039:13045\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconBarChart2 size={size} /> });"
],
[
"IconAward",
"import { IconProps, Icon } from \"primitives\";\nexport const IconAward = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15601)\"><path d=\"M5.4735 9.26008L4.66683 15.3334L8.00016 13.3334L11.3335 15.3334L10.5268 9.25341M12.6668 5.33341C12.6668 7.91074 10.5775 10.0001 8.00016 10.0001C5.42283 10.0001 3.3335 7.91074 3.3335 5.33341C3.3335 2.75609 5.42283 0.666748 8.00016 0.666748C10.5775 0.666748 12.6668 2.75609 12.6668 5.33341Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15601\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconAward, \"<FIGMA_ICONS_BASE>?node-id=4039:13042\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconAward size={size} /> });"
],
[
"IconAirplay",
"import { IconProps, Icon } from \"primitives\";\nexport const IconAirplay = (props: IconProps) => (\n <Icon {...props}><path d=\"M3.33331 11.3333H2.66665C2.31302 11.3333 1.97389 11.1929 1.72384 10.9428C1.47379 10.6928 1.33331 10.3536 1.33331 10V3.33333C1.33331 2.97971 1.47379 2.64057 1.72384 2.39052C1.97389 2.14048 2.31302 2 2.66665 2H13.3333C13.6869 2 14.0261 2.14048 14.2761 2.39052C14.5262 2.64057 14.6666 2.97971 14.6666 3.33333V10C14.6666 10.3536 14.5262 10.6928 14.2761 10.9428C14.0261 11.1929 13.6869 11.3333 13.3333 11.3333H12.6666M7.99998 10L11.3333 14H4.66665L7.99998 10Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconAirplay, \"<FIGMA_ICONS_BASE>?node-id=4039:13019\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconAirplay size={size} /> });"
],
[
"IconBattery",
"import { IconProps, Icon } from \"primitives\";\nexport const IconBattery = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15609)\"><path d=\"M15.3333 8.66667V7.33333M1.99996 4H11.3333C12.0697 4 12.6666 4.59695 12.6666 5.33333V10.6667C12.6666 11.403 12.0697 12 11.3333 12H1.99996C1.26358 12 0.666626 11.403 0.666626 10.6667V5.33333C0.666626 4.59695 1.26358 4 1.99996 4Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15609\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconBattery, \"<FIGMA_ICONS_BASE>?node-id=4039:13047\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconBattery size={size} /> });"
],
[
"IconAlertTriangle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconAlertTriangle = (props: IconProps) => (\n <Icon {...props}><path d=\"M8.00001 5.99989V8.66656M8.00001 11.3332H8.00668M6.86001 2.57323L1.21335 11.9999C1.09693 12.2015 1.03533 12.4301 1.03467 12.6629C1.03402 12.8957 1.09434 13.1246 1.20963 13.3269C1.32492 13.5292 1.49116 13.6977 1.69182 13.8158C1.89247 13.9339 2.12055 13.9973 2.35335 13.9999H13.6467C13.8795 13.9973 14.1076 13.9339 14.3082 13.8158C14.5089 13.6977 14.6751 13.5292 14.7904 13.3269C14.9057 13.1246 14.966 12.8957 14.9654 12.6629C14.9647 12.4301 14.9031 12.2015 14.7867 11.9999L9.14001 2.57323C9.02117 2.3773 8.85383 2.21531 8.65414 2.10288C8.45446 1.99046 8.22917 1.9314 8.00001 1.9314C7.77086 1.9314 7.54557 1.99046 7.34588 2.10288C7.1462 2.21531 6.97886 2.3773 6.86001 2.57323Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconAlertTriangle, \"<FIGMA_ICONS_BASE>?node-id=4039:13022\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconAlertTriangle size={size} /> });"
],
[
"IconFilm",
"import { IconProps, Icon } from \"primitives\";\nexport const IconFilm = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15769)\"><path d=\"M4.66665 1.33333V14.6667M11.3333 1.33333V14.6667M1.33331 8H14.6666M1.33331 4.66667H4.66665M1.33331 11.3333H4.66665M11.3333 11.3333H14.6666M11.3333 4.66667H14.6666M2.78665 1.33333H13.2133C14.016 1.33333 14.6666 1.98401 14.6666 2.78667V13.2133C14.6666 14.016 14.016 14.6667 13.2133 14.6667H2.78665C1.98399 14.6667 1.33331 14.016 1.33331 13.2133V2.78667C1.33331 1.98401 1.98399 1.33333 2.78665 1.33333Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15769\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconFilm, \"<FIGMA_ICONS_BASE>?node-id=4049:13502\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconFilm size={size} /> });"
],
[
"IconGitCommit",
"import { IconProps, Icon } from \"primitives\";\nexport const IconGitCommit = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15789)\"><path d=\"M0.699951 8.00001H4.66662M11.34 8.00001H15.3066M10.6666 8.00001C10.6666 9.47277 9.47271 10.6667 7.99995 10.6667C6.52719 10.6667 5.33328 9.47277 5.33328 8.00001C5.33328 6.52725 6.52719 5.33334 7.99995 5.33334C9.47271 5.33334 10.6666 6.52725 10.6666 8.00001Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15789\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconGitCommit, \"<FIGMA_ICONS_BASE>?node-id=4049:13512\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconGitCommit size={size} /> });"
],
[
"IconCopy",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCopy = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15693)\"><path d=\"M3.3335 10H2.66683C2.31321 10 1.97407 9.85956 1.72402 9.60952C1.47397 9.35947 1.3335 9.02033 1.3335 8.66671V2.66671C1.3335 2.31309 1.47397 1.97395 1.72402 1.7239C1.97407 1.47385 2.31321 1.33337 2.66683 1.33337H8.66683C9.02045 1.33337 9.35959 1.47385 9.60964 1.7239C9.85969 1.97395 10.0002 2.31309 10.0002 2.66671V3.33337M7.3335 6.00004H13.3335C14.0699 6.00004 14.6668 6.59699 14.6668 7.33337V13.3334C14.6668 14.0698 14.0699 14.6667 13.3335 14.6667H7.3335C6.59712 14.6667 6.00016 14.0698 6.00016 13.3334V7.33337C6.00016 6.59699 6.59712 6.00004 7.3335 6.00004Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15693\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCopy, \"<FIGMA_ICONS_BASE>?node-id=4039:13464\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCopy size={size} /> });"
],
[
"IconGitMerge",
"import { IconProps, Icon } from \"primitives\";\nexport const IconGitMerge = (props: IconProps) => (\n <Icon {...props}><path d=\"M10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12ZM10 12C8.4087 12 6.88258 11.3679 5.75736 10.2426C4.63214 9.11742 4 7.5913 4 6M4 6C5.10457 6 6 5.10457 6 4C6 2.89543 5.10457 2 4 2C2.89543 2 2 2.89543 2 4C2 5.10457 2.89543 6 4 6ZM4 6L4 14\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconGitMerge, \"<FIGMA_ICONS_BASE>?node-id=4049:13515\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconGitMerge size={size} /> });"
],
[
"IconChevronsDown",
"import { IconProps, Icon } from \"primitives\";\nexport const IconChevronsDown = (props: IconProps) => (\n <Icon {...props}><path d=\"M4.66675 8.66667L8.00008 12L11.3334 8.66667M4.66675 4L8.00008 7.33333L11.3334 4\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconChevronsDown, \"<FIGMA_ICONS_BASE>?node-id=4039:13168\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconChevronsDown size={size} /> });"
],
[
"IconEye",
"import { IconProps, Icon } from \"primitives\";\nexport const IconEye = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15751)\"><path d=\"M0.666687 8C0.666687 8 3.33335 2.66667 8.00002 2.66667C12.6667 2.66667 15.3334 8 15.3334 8C15.3334 8 12.6667 13.3333 8.00002 13.3333C3.33335 13.3333 0.666687 8 0.666687 8Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.00002 10C9.10459 10 10 9.10457 10 8C10 6.89544 9.10459 6 8.00002 6C6.89545 6 6.00002 6.89544 6.00002 8C6.00002 9.10457 6.89545 10 8.00002 10Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15751\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconEye, \"<FIGMA_ICONS_BASE>?node-id=4049:13495\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconEye size={size} /> });"
],
[
"IconChevronUp",
"import { IconProps, Icon } from \"primitives\";\nexport const IconChevronUp = (props: IconProps) => (\n <Icon {...props}><path d=\"M12 10L8 6L4 10\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconChevronUp, \"<FIGMA_ICONS_BASE>?node-id=4039:13166\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconChevronUp size={size} /> });"
],
[
"IconGitPullRequest",
"import { IconProps, Icon } from \"primitives\";\nexport const IconGitPullRequest = (props: IconProps) => (\n <Icon {...props}><path d=\"M12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10ZM12 10L12 5.33333C12 4.97971 11.8595 4.64057 11.6095 4.39052C11.3594 4.14048 11.0203 4 10.6667 4H8.66667M4 6C5.10457 6 6 5.10457 6 4C6 2.89543 5.10457 2 4 2C2.89543 2 2 2.89543 2 4C2 5.10457 2.89543 6 4 6ZM4 6L4 14\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconGitPullRequest, \"<FIGMA_ICONS_BASE>?node-id=4049:13514\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconGitPullRequest size={size} /> });"
],
[
"IconCornerLeftDown",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCornerLeftDown = (props: IconProps) => (\n <Icon {...props}><path d=\"M9.33329 10L5.99996 13.3334M5.99996 13.3334L2.66663 10M5.99996 13.3334V5.33335C5.99996 4.62611 6.28091 3.94783 6.78101 3.44774C7.2811 2.94764 7.95938 2.66669 8.66663 2.66669H13.3333\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCornerLeftDown, \"<FIGMA_ICONS_BASE>?node-id=4039:13469\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCornerLeftDown size={size} /> });"
],
[
"IconChrome",
"import { IconProps, Icon } from \"primitives\";\nexport const IconChrome = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15659)\"><path d=\"M8.00001 5.33337C6.52725 5.33337 5.33334 6.52728 5.33334 8.00004C5.33334 9.4728 6.52725 10.6667 8.00001 10.6667C9.47277 10.6667 10.6667 9.4728 10.6667 8.00004C10.6667 6.52728 9.47277 5.33337 8.00001 5.33337ZM8.00001 5.33337H14.1133M2.63334 4.04004L5.69334 9.33337M7.25334 14.6267L10.3067 9.33337M14.6667 8.00004C14.6667 11.6819 11.6819 14.6667 8.00001 14.6667C4.31811 14.6667 1.33334 11.6819 1.33334 8.00004C1.33334 4.31814 4.31811 1.33337 8.00001 1.33337C11.6819 1.33337 14.6667 4.31814 14.6667 8.00004Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15659\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconChrome, \"<FIGMA_ICONS_BASE>?node-id=4039:13172\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconChrome size={size} /> });"
],
[
"IconDownload",
"import { IconProps, Icon } from \"primitives\";\nexport const IconDownload = (props: IconProps) => (\n <Icon {...props}><path d=\"M14 10V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H3.33333C2.97971 14 2.64057 13.8595 2.39052 13.6095C2.14048 13.3594 2 13.0203 2 12.6667V10M4.66667 6.66667L8 10M8 10L11.3333 6.66667M8 10V2\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconDownload, \"<FIGMA_ICONS_BASE>?node-id=4049:13487\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconDownload size={size} /> });"
],
[
"IconDatabase",
"import { IconProps, Icon } from \"primitives\";\nexport const IconDatabase = (props: IconProps) => (\n <Icon {...props}><path d=\"M14 3.33331C14 4.43788 11.3137 5.33331 8 5.33331C4.68629 5.33331 2 4.43788 2 3.33331M14 3.33331C14 2.22874 11.3137 1.33331 8 1.33331C4.68629 1.33331 2 2.22874 2 3.33331M14 3.33331V12.6666C14 13.7733 11.3333 14.6666 8 14.6666C4.66667 14.6666 2 13.7733 2 12.6666V3.33331M14 7.99998C14 9.10665 11.3333 9.99998 8 9.99998C4.66667 9.99998 2 9.10665 2 7.99998\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconDatabase, \"<FIGMA_ICONS_BASE>?node-id=4049:13478\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconDatabase size={size} /> });"
],
[
"IconCornerDownRight",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCornerDownRight = (props: IconProps) => (\n <Icon {...props}><path d=\"M10 6.66669L13.3334 10M13.3334 10L10 13.3334M13.3334 10H5.33335C4.62611 10 3.94783 9.71907 3.44774 9.21897C2.94764 8.71887 2.66669 8.0406 2.66669 7.33335V2.66669\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCornerDownRight, \"<FIGMA_ICONS_BASE>?node-id=4039:13466\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCornerDownRight size={size} /> });"
],
[
"IconCornerRightUp",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCornerRightUp = (props: IconProps) => (\n <Icon {...props}><path d=\"M6.66675 6.00002L10.0001 2.66669M10.0001 2.66669L13.3334 6.00002M10.0001 2.66669V10.6667C10.0001 11.3739 9.71913 12.0522 9.21903 12.5523C8.71893 13.0524 8.04066 13.3334 7.33341 13.3334H2.66675\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCornerRightUp, \"<FIGMA_ICONS_BASE>?node-id=4039:13470\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCornerRightUp size={size} /> });"
],
[
"IconDivideCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconDivideCircle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15725)\"><path d=\"M5.33325 7.99998H10.6666M8.66659 10.6666C8.66659 11.0348 8.36811 11.3333 7.99992 11.3333C7.63173 11.3333 7.33325 11.0348 7.33325 10.6666C7.33325 10.2985 7.63173 9.99998 7.99992 9.99998C8.36811 9.99998 8.66659 10.2985 8.66659 10.6666ZM8.66659 5.33331C8.66659 5.7015 8.36811 5.99998 7.99992 5.99998C7.63173 5.99998 7.33325 5.7015 7.33325 5.33331C7.33325 4.96512 7.63173 4.66665 7.99992 4.66665C8.36811 4.66665 8.66659 4.96512 8.66659 5.33331ZM14.6666 7.99998C14.6666 11.6819 11.6818 14.6666 7.99992 14.6666C4.31802 14.6666 1.33325 11.6819 1.33325 7.99998C1.33325 4.31808 4.31802 1.33331 7.99992 1.33331C11.6818 1.33331 14.6666 4.31808 14.6666 7.99998Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15725\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconDivideCircle, \"<FIGMA_ICONS_BASE>?node-id=4049:13481\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconDivideCircle size={size} /> });"
],
[
"IconDivide",
"import { IconProps, Icon } from \"primitives\";\nexport const IconDivide = (props: IconProps) => (\n <Icon {...props}><path d=\"M3.3335 8.00002H12.6668M9.3335 4.00002C9.3335 4.7364 8.73654 5.33335 8.00016 5.33335C7.26378 5.33335 6.66683 4.7364 6.66683 4.00002C6.66683 3.26364 7.26378 2.66669 8.00016 2.66669C8.73654 2.66669 9.3335 3.26364 9.3335 4.00002ZM9.3335 12C9.3335 12.7364 8.73654 13.3334 8.00016 13.3334C7.26378 13.3334 6.66683 12.7364 6.66683 12C6.66683 11.2636 7.26378 10.6667 8.00016 10.6667C8.73654 10.6667 9.3335 11.2636 9.3335 12Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconDivide, \"<FIGMA_ICONS_BASE>?node-id=4049:13482\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconDivide size={size} /> });"
],
[
"IconCornerUpLeft",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCornerUpLeft = (props: IconProps) => (\n <Icon {...props}><path d=\"M6.00008 9.33335L2.66675 6.00002M2.66675 6.00002L6.00008 2.66669M2.66675 6.00002H10.6667C11.374 6.00002 12.0523 6.28097 12.5524 6.78107C13.0525 7.28117 13.3334 7.95944 13.3334 8.66669V13.3334\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCornerUpLeft, \"<FIGMA_ICONS_BASE>?node-id=4039:13473\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCornerUpLeft size={size} /> });"
],
[
"IconDollarSign",
"import { IconProps, Icon } from \"primitives\";\nexport const IconDollarSign = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15731)\"><path d=\"M8 0.666656V15.3333M11.3333 3.33332H6.33333C5.71449 3.33332 5.121 3.57916 4.68342 4.01674C4.24583 4.45433 4 5.04782 4 5.66666C4 6.2855 4.24583 6.87899 4.68342 7.31657C5.121 7.75416 5.71449 7.99999 6.33333 7.99999H9.66667C10.2855 7.99999 10.879 8.24582 11.3166 8.68341C11.7542 9.12099 12 9.71448 12 10.3333C12 10.9522 11.7542 11.5457 11.3166 11.9832C10.879 12.4208 10.2855 12.6667 9.66667 12.6667H4\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15731\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconDollarSign, \"<FIGMA_ICONS_BASE>?node-id=4049:13485\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconDollarSign size={size} /> });"
],
[
"IconHeadphones",
"import { IconProps, Icon } from \"primitives\";\nexport const IconHeadphones = (props: IconProps) => (\n <Icon {...props}><path d=\"M2 12V8C2 6.4087 2.63214 4.88258 3.75736 3.75736C4.88258 2.63214 6.4087 2 8 2C9.5913 2 11.1174 2.63214 12.2426 3.75736C13.3679 4.88258 14 6.4087 14 8V12M14 12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H12C11.6464 14 11.3072 13.8595 11.0572 13.6095C10.8071 13.3594 10.6667 13.0203 10.6667 12.6667V10.6667C10.6667 10.313 10.8071 9.97391 11.0572 9.72386C11.3072 9.47381 11.6464 9.33333 12 9.33333H14V12.6667ZM2 12.6667C2 13.0203 2.14048 13.3594 2.39052 13.6095C2.64057 13.8595 2.97971 14 3.33333 14H4C4.35362 14 4.69276 13.8595 4.94281 13.6095C5.19286 13.3594 5.33333 13.0203 5.33333 12.6667V10.6667C5.33333 10.313 5.19286 9.97391 4.94281 9.72386C4.69276 9.47381 4.35362 9.33333 4 9.33333H2V12.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconHeadphones, \"<FIGMA_ICONS_BASE>?node-id=4049:13523\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconHeadphones size={size} /> });"
],
[
"IconGithub",
"import { IconProps, Icon } from \"primitives\";\nexport const IconGithub = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15795)\"><path d=\"M5.99992 12.6667C2.66659 13.6667 2.66659 11 1.33325 10.6667M10.6666 14.6667V12.0867C10.6916 11.7688 10.6486 11.4492 10.5406 11.1492C10.4325 10.8492 10.2619 10.5756 10.0399 10.3467C12.1333 10.1133 14.3333 9.32 14.3333 5.68C14.3331 4.74922 13.975 3.85413 13.3333 3.18C13.6372 2.36567 13.6157 1.46557 13.2733 0.666666C13.2733 0.666666 12.4866 0.433332 10.6666 1.65333C9.13859 1.23921 7.52791 1.23921 5.99992 1.65333C4.17992 0.433332 3.39325 0.666666 3.39325 0.666666C3.05084 1.46557 3.02935 2.36567 3.33325 3.18C2.68667 3.85913 2.32827 4.76231 2.33325 5.7C2.33325 9.31333 4.53325 10.1067 6.62659 10.3667C6.40725 10.5933 6.23809 10.8636 6.13012 11.1599C6.02215 11.4563 5.97779 11.772 5.99992 12.0867V14.6667\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15795\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconGithub, \"<FIGMA_ICONS_BASE>?node-id=4049:13517\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconGithub size={size} /> });"
],
[
"IconItalic",
"import { IconProps, Icon } from \"primitives\";\nexport const IconItalic = (props: IconProps) => (\n <Icon {...props}><path d=\"M12.6667 2.66669H6.66671M9.33337 13.3334H3.33337M10 2.66669L6.00004 13.3334\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconItalic, \"<FIGMA_ICONS_BASE>?node-id=4049:13530\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconItalic size={size} /> });"
],
[
"IconFigma",
"import { IconProps, Icon } from \"primitives\";\nexport const IconFigma = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15759)\"><path d=\"M7.99992 1.33333H5.66659C5.04775 1.33333 4.45425 1.57916 4.01667 2.01675C3.57908 2.45433 3.33325 3.04782 3.33325 3.66666C3.33325 4.2855 3.57908 4.87899 4.01667 5.31658C4.45425 5.75416 5.04775 5.99999 5.66659 5.99999M7.99992 1.33333V5.99999M7.99992 1.33333H10.3333C10.6397 1.33333 10.9431 1.39368 11.2262 1.51094C11.5093 1.6282 11.7665 1.80008 11.9832 2.01675C12.1998 2.23342 12.3717 2.49064 12.489 2.77373C12.6062 3.05683 12.6666 3.36024 12.6666 3.66666C12.6666 3.97308 12.6062 4.2765 12.489 4.55959C12.3717 4.84268 12.1998 5.09991 11.9832 5.31658C11.7665 5.53325 11.5093 5.70512 11.2262 5.82238C10.9431 5.93964 10.6397 5.99999 10.3333 5.99999M7.99992 5.99999H5.66659M7.99992 5.99999H10.3333M7.99992 5.99999V10.6667M5.66659 5.99999C5.04775 5.99999 4.45425 6.24583 4.01667 6.68341C3.57908 7.121 3.33325 7.71449 3.33325 8.33333C3.33325 8.95217 3.57908 9.54566 4.01667 9.98324C4.45425 10.4208 5.04775 10.6667 5.66659 10.6667M10.3333 5.99999C10.0268 5.99999 9.72342 6.06035 9.44032 6.17761C9.15723 6.29487 8.90001 6.46674 8.68334 6.68341C8.46667 6.90008 8.29479 7.15731 8.17753 7.4404C8.06027 7.72349 7.99992 8.02691 7.99992 8.33333C7.99992 8.63975 8.06027 8.94316 8.17753 9.22626C8.29479 9.50935 8.46667 9.76657 8.68334 9.98324C8.90001 10.1999 9.15723 10.3718 9.44032 10.489C9.72342 10.6063 10.0268 10.6667 10.3333 10.6667C10.6397 10.6667 10.9431 10.6063 11.2262 10.489C11.5093 10.3718 11.7665 10.1999 11.9832 9.98324C12.1998 9.76657 12.3717 9.50935 12.489 9.22626C12.6062 8.94316 12.6666 8.63975 12.6666 8.33333C12.6666 8.02691 12.6062 7.72349 12.489 7.4404C12.3717 7.15731 12.1998 6.90008 11.9832 6.68341C11.7665 6.46674 11.5093 6.29487 11.2262 6.17761C10.9431 6.06035 10.6397 5.99999 10.3333 5.99999ZM5.66659 10.6667C5.04775 10.6667 4.45425 10.9125 4.01667 11.3501C3.57908 11.7877 3.33325 12.3812 3.33325 13C3.33325 13.6188 3.57908 14.2123 4.01667 14.6499C4.45425 15.0875 5.04775 15.3333 5.66659 15.3333C6.28542 15.3333 6.87892 15.0875 7.3165 14.6499C7.75409 14.2123 7.99992 13.6188 7.99992 13V10.6667M5.66659 10.6667H7.99992\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15759\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconFigma, \"<FIGMA_ICONS_BASE>?node-id=4049:13498\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconFigma size={size} /> });"
],
[
"IconInstagram",
"import { IconProps, Icon } from \"primitives\";\nexport const IconInstagram = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15823)\"><path d=\"M11.6666 4.33331H11.6733M4.66665 1.33331H11.3333C13.1743 1.33331 14.6666 2.8257 14.6666 4.66665V11.3333C14.6666 13.1743 13.1743 14.6666 11.3333 14.6666H4.66665C2.8257 14.6666 1.33331 13.1743 1.33331 11.3333V4.66665C1.33331 2.8257 2.8257 1.33331 4.66665 1.33331ZM10.6666 7.57998C10.7489 8.13481 10.6542 8.70146 10.3958 9.19932C10.1375 9.69719 9.72874 10.1009 9.22773 10.3531C8.72672 10.6053 8.15894 10.693 7.60517 10.6039C7.0514 10.5148 6.53982 10.2534 6.14321 9.85675C5.74659 9.46014 5.48513 8.94856 5.39602 8.39479C5.30691 7.84102 5.39469 7.27324 5.64686 6.77223C5.89904 6.27122 6.30277 5.86247 6.80064 5.60414C7.2985 5.34581 7.86515 5.25104 8.41998 5.33331C8.98593 5.41724 9.50988 5.68096 9.91444 6.08552C10.319 6.49008 10.5827 7.01403 10.6666 7.57998Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15823\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconInstagram, \"<FIGMA_ICONS_BASE>?node-id=4049:13531\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconInstagram size={size} /> });"
],
[
"IconFastForward",
"import { IconProps, Icon } from \"primitives\";\nexport const IconFastForward = (props: IconProps) => (\n <Icon {...props}><path d=\"M8.66671 12.6667L14.6667 7.99999L8.66671 3.33333V12.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M1.33337 12.6667L7.33337 7.99999L1.33337 3.33333V12.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconFastForward, \"<FIGMA_ICONS_BASE>?node-id=4049:13497\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconFastForward size={size} /> });"
],
[
"IconExternalLink",
"import { IconProps, Icon } from \"primitives\";\nexport const IconExternalLink = (props: IconProps) => (\n <Icon {...props}><path d=\"M12 8.66667V12.6667C12 13.0203 11.8595 13.3594 11.6095 13.6095C11.3594 13.8595 11.0203 14 10.6667 14H3.33333C2.97971 14 2.64057 13.8595 2.39052 13.6095C2.14048 13.3594 2 13.0203 2 12.6667V5.33333C2 4.97971 2.14048 4.64057 2.39052 4.39052C2.64057 4.14048 2.97971 4 3.33333 4H7.33333M10 2H14M14 2V6M14 2L6.66667 9.33333\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconExternalLink, \"<FIGMA_ICONS_BASE>?node-id=4049:13493\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconExternalLink size={size} /> });"
],
[
"IconFolderMinus",
"import { IconProps, Icon } from \"primitives\";\nexport const IconFolderMinus = (props: IconProps) => (\n <Icon {...props}><path d=\"M5.99992 9.33333H9.99992M14.6666 12.6667C14.6666 13.0203 14.5261 13.3594 14.2761 13.6095C14.026 13.8595 13.6869 14 13.3333 14H2.66659C2.31296 14 1.97382 13.8595 1.72378 13.6095C1.47373 13.3594 1.33325 13.0203 1.33325 12.6667V3.33333C1.33325 2.97971 1.47373 2.64057 1.72378 2.39052C1.97382 2.14048 2.31296 2 2.66659 2H5.99992L7.33325 4H13.3333C13.6869 4 14.026 4.14048 14.2761 4.39052C14.5261 4.64057 14.6666 4.97971 14.6666 5.33333V12.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconFolderMinus, \"<FIGMA_ICONS_BASE>?node-id=4049:13507\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconFolderMinus size={size} /> });"
],
[
"IconEdit3",
"import { IconProps, Icon } from \"primitives\";\nexport const IconEdit3 = (props: IconProps) => (\n <Icon {...props}><path d=\"M8 13.3333H14M11 2.33334C11.2652 2.06813 11.6249 1.91913 12 1.91913C12.1857 1.91913 12.3696 1.95571 12.5412 2.02678C12.7128 2.09785 12.8687 2.20202 13 2.33334C13.1313 2.46466 13.2355 2.62057 13.3066 2.79215C13.3776 2.96373 13.4142 3.14762 13.4142 3.33334C13.4142 3.51906 13.3776 3.70296 13.3066 3.87454C13.2355 4.04612 13.1313 4.20202 13 4.33334L4.66667 12.6667L2 13.3333L2.66667 10.6667L11 2.33334Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconEdit3, \"<FIGMA_ICONS_BASE>?node-id=4049:13491\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconEdit3 size={size} /> });"
],
[
"IconFolder",
"import { IconProps, Icon } from \"primitives\";\nexport const IconFolder = (props: IconProps) => (\n <Icon {...props}><path d=\"M14.6666 12.6667C14.6666 13.0203 14.5261 13.3594 14.2761 13.6095C14.026 13.8595 13.6869 14 13.3333 14H2.66659C2.31296 14 1.97382 13.8595 1.72378 13.6095C1.47373 13.3594 1.33325 13.0203 1.33325 12.6667V3.33333C1.33325 2.97971 1.47373 2.64057 1.72378 2.39052C1.97382 2.14048 2.31296 2 2.66659 2H5.99992L7.33325 4H13.3333C13.6869 4 14.026 4.14048 14.2761 4.39052C14.5261 4.64057 14.6666 4.97971 14.6666 5.33333V12.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconFolder, \"<FIGMA_ICONS_BASE>?node-id=4049:13509\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconFolder size={size} /> });"
],
[
"IconCommand",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCommand = (props: IconProps) => (\n <Icon {...props}><path d=\"M12 2C11.4696 2 10.9609 2.21071 10.5858 2.58579C10.2107 2.96086 10 3.46957 10 4V12C10 12.5304 10.2107 13.0391 10.5858 13.4142C10.9609 13.7893 11.4696 14 12 14C12.5304 14 13.0391 13.7893 13.4142 13.4142C13.7893 13.0391 14 12.5304 14 12C14 11.4696 13.7893 10.9609 13.4142 10.5858C13.0391 10.2107 12.5304 10 12 10H4C3.46957 10 2.96086 10.2107 2.58579 10.5858C2.21071 10.9609 2 11.4696 2 12C2 12.5304 2.21071 13.0391 2.58579 13.4142C2.96086 13.7893 3.46957 14 4 14C4.53043 14 5.03914 13.7893 5.41421 13.4142C5.78929 13.0391 6 12.5304 6 12V4C6 3.46957 5.78929 2.96086 5.41421 2.58579C5.03914 2.21071 4.53043 2 4 2C3.46957 2 2.96086 2.21071 2.58579 2.58579C2.21071 2.96086 2 3.46957 2 4C2 4.53043 2.21071 5.03914 2.58579 5.41421C2.96086 5.78929 3.46957 6 4 6H12C12.5304 6 13.0391 5.78929 13.4142 5.41421C13.7893 5.03914 14 4.53043 14 4C14 3.46957 13.7893 2.96086 13.4142 2.58579C13.0391 2.21071 12.5304 2 12 2Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCommand, \"<FIGMA_ICONS_BASE>?node-id=4039:13463\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCommand size={size} /> });"
],
[
"IconCornerUpRight",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCornerUpRight = (props: IconProps) => (\n <Icon {...props}><path d=\"M9.99984 9.33335L13.3332 6.00002M13.3332 6.00002L9.99984 2.66669M13.3332 6.00002H5.33317C4.62593 6.00002 3.94765 6.28097 3.44755 6.78107C2.94746 7.28117 2.6665 7.95944 2.6665 8.66669V13.3334\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCornerUpRight, \"<FIGMA_ICONS_BASE>?node-id=4039:13472\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCornerUpRight size={size} /> });"
],
[
"IconFolderPlus",
"import { IconProps, Icon } from \"primitives\";\nexport const IconFolderPlus = (props: IconProps) => (\n <Icon {...props}><path d=\"M7.99992 7.33333V11.3333M5.99992 9.33333H9.99992M14.6666 12.6667C14.6666 13.0203 14.5261 13.3594 14.2761 13.6095C14.026 13.8595 13.6869 14 13.3333 14H2.66659C2.31296 14 1.97382 13.8595 1.72378 13.6095C1.47373 13.3594 1.33325 13.0203 1.33325 12.6667V3.33333C1.33325 2.97971 1.47373 2.64057 1.72378 2.39052C1.97382 2.14048 2.31296 2 2.66659 2H5.99992L7.33325 4H13.3333C13.6869 4 14.026 4.14048 14.2761 4.39052C14.5261 4.64057 14.6666 4.97971 14.6666 5.33333V12.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconFolderPlus, \"<FIGMA_ICONS_BASE>?node-id=4049:13506\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconFolderPlus size={size} /> });"
],
[
"IconFileMinus",
"import { IconProps, Icon } from \"primitives\";\nexport const IconFileMinus = (props: IconProps) => (\n <Icon {...props}><path d=\"M9.33341 1.33333H4.00008C3.64646 1.33333 3.30732 1.4738 3.05727 1.72385C2.80722 1.9739 2.66675 2.31304 2.66675 2.66666V13.3333C2.66675 13.687 2.80722 14.0261 3.05727 14.2761C3.30732 14.5262 3.64646 14.6667 4.00008 14.6667H12.0001C12.3537 14.6667 12.6928 14.5262 12.9429 14.2761C13.1929 14.0261 13.3334 13.687 13.3334 13.3333V5.33333M9.33341 1.33333L13.3334 5.33333M9.33341 1.33333L9.33341 5.33333H13.3334M6.00008 9.99999H10.0001\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconFileMinus, \"<FIGMA_ICONS_BASE>?node-id=4049:13499\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconFileMinus size={size} /> });"
],
[
"IconHelpCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconHelpCircle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15811)\"><path d=\"M6.05992 5.99998C6.21665 5.55442 6.52602 5.17872 6.93322 4.9394C7.34042 4.70009 7.81918 4.61261 8.2847 4.69245C8.75022 4.7723 9.17246 5.01433 9.47664 5.37566C9.78081 5.737 9.94729 6.19433 9.94659 6.66665C9.94659 7.99998 7.94659 8.66665 7.94659 8.66665M7.99992 11.3333H8.00659M14.6666 7.99998C14.6666 11.6819 11.6818 14.6666 7.99992 14.6666C4.31802 14.6666 1.33325 11.6819 1.33325 7.99998C1.33325 4.31808 4.31802 1.33331 7.99992 1.33331C11.6818 1.33331 14.6666 4.31808 14.6666 7.99998Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15811\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconHelpCircle, \"<FIGMA_ICONS_BASE>?node-id=4049:13524\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconHelpCircle size={size} /> });"
],
[
"IconHardDrive",
"import { IconProps, Icon } from \"primitives\";\nexport const IconHardDrive = (props: IconProps) => (\n <Icon {...props}><path d=\"M14.6667 8.00002H1.33334M14.6667 8.00002V12C14.6667 12.3536 14.5262 12.6928 14.2762 12.9428C14.0261 13.1929 13.687 13.3334 13.3333 13.3334H2.66668C2.31305 13.3334 1.97392 13.1929 1.72387 12.9428C1.47382 12.6928 1.33334 12.3536 1.33334 12V8.00002M14.6667 8.00002L12.3667 3.40669C12.2563 3.18455 12.0861 2.9976 11.8753 2.86687C11.6645 2.73615 11.4214 2.66682 11.1733 2.66669H4.82668C4.57862 2.66682 4.33552 2.73615 4.12471 2.86687C3.91389 2.9976 3.74373 3.18455 3.63334 3.40669L1.33334 8.00002M4.00001 10.6667H4.00668M6.66668 10.6667H6.67334\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconHardDrive, \"<FIGMA_ICONS_BASE>?node-id=4049:13520\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconHardDrive size={size} /> });"
],
[
"IconImage",
"import { IconProps, Icon } from \"primitives\";\nexport const IconImage = (props: IconProps) => (\n <Icon {...props}><path d=\"M3.33333 14H12.6667C13.403 14 14 13.403 14 12.6667V3.33333C14 2.59695 13.403 2 12.6667 2H3.33333C2.59695 2 2 2.59695 2 3.33333V12.6667C2 13.403 2.59695 14 3.33333 14ZM3.33333 14L10.6667 6.66667L14 10M6.66667 5.66667C6.66667 6.21895 6.21895 6.66667 5.66667 6.66667C5.11438 6.66667 4.66667 6.21895 4.66667 5.66667C4.66667 5.11438 5.11438 4.66667 5.66667 4.66667C6.21895 4.66667 6.66667 5.11438 6.66667 5.66667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconImage, \"<FIGMA_ICONS_BASE>?node-id=4049:13526\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconImage size={size} /> });"
],
[
"IconEdit",
"import { IconProps, Icon } from \"primitives\";\nexport const IconEdit = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15745)\"><path d=\"M7.3335 2.66665H2.66683C2.31321 2.66665 1.97407 2.80713 1.72402 3.05718C1.47397 3.30723 1.3335 3.64637 1.3335 3.99999V13.3333C1.3335 13.6869 1.47397 14.0261 1.72402 14.2761C1.97407 14.5262 2.31321 14.6667 2.66683 14.6667H12.0002C12.3538 14.6667 12.6929 14.5262 12.943 14.2761C13.193 14.0261 13.3335 13.6869 13.3335 13.3333V8.66665M12.3335 1.66665C12.5987 1.40144 12.9584 1.25244 13.3335 1.25244C13.7086 1.25244 14.0683 1.40144 14.3335 1.66665C14.5987 1.93187 14.7477 2.29158 14.7477 2.66665C14.7477 3.04173 14.5987 3.40144 14.3335 3.66665L8.00016 9.99999L5.3335 10.6667L6.00016 7.99999L12.3335 1.66665Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15745\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconEdit, \"<FIGMA_ICONS_BASE>?node-id=4049:13490\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconEdit size={size} /> });"
],
[
"IconHeart",
"import { IconProps, Icon } from \"primitives\";\nexport const IconHeart = (props: IconProps) => (\n <Icon {...props}><path d=\"M13.8933 3.07333C13.5528 2.73267 13.1485 2.46243 12.7036 2.27805C12.2586 2.09368 11.7817 1.99878 11.3 1.99878C10.8183 1.99878 10.3414 2.09368 9.89643 2.27805C9.45146 2.46243 9.04717 2.73267 8.70667 3.07333L8 3.78L7.29333 3.07333C6.60554 2.38554 5.67269 1.99914 4.7 1.99914C3.72731 1.99914 2.79446 2.38554 2.10666 3.07333C1.41887 3.76112 1.03247 4.69397 1.03247 5.66666C1.03247 6.63935 1.41887 7.5722 2.10666 8.26L8 14.1533L13.8933 8.26C14.234 7.91949 14.5042 7.51521 14.6886 7.07023C14.873 6.62526 14.9679 6.14832 14.9679 5.66666C14.9679 5.185 14.873 4.70807 14.6886 4.26309C14.5042 3.81812 14.234 3.41383 13.8933 3.07333Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconHeart, \"<FIGMA_ICONS_BASE>?node-id=4049:13522\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconHeart size={size} /> });"
],
[
"IconHash",
"import { IconProps, Icon } from \"primitives\";\nexport const IconHash = (props: IconProps) => (\n <Icon {...props}><path d=\"M2.66669 6H13.3334M2.66669 10H13.3334M6.66669 2L5.33335 14M10.6667 2L9.33335 14\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconHash, \"<FIGMA_ICONS_BASE>?node-id=4049:13521\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconHash size={size} /> });"
],
[
"IconLifeBuoy",
"import { IconProps, Icon } from \"primitives\";\nexport const IconLifeBuoy = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15833)\"><path d=\"M3.28658 3.28665L6.11325 6.11331M9.88659 9.88665L12.7133 12.7133M12.7133 3.28665L9.88659 6.11331L12.2399 3.75998M3.28658 12.7133L6.11325 9.88665M14.6666 7.99998C14.6666 11.6819 11.6818 14.6666 7.99992 14.6666C4.31802 14.6666 1.33325 11.6819 1.33325 7.99998C1.33325 4.31808 4.31802 1.33331 7.99992 1.33331C11.6818 1.33331 14.6666 4.31808 14.6666 7.99998ZM10.6666 7.99998C10.6666 9.47274 9.47268 10.6666 7.99992 10.6666C6.52716 10.6666 5.33325 9.47274 5.33325 7.99998C5.33325 6.52722 6.52716 5.33331 7.99992 5.33331C9.47268 5.33331 10.6666 6.52722 10.6666 7.99998Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15833\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconLifeBuoy, \"<FIGMA_ICONS_BASE>?node-id=4049:13534\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconLifeBuoy size={size} /> });"
],
[
"IconDribbble",
"import { IconProps, Icon } from \"primitives\";\nexport const IconDribbble = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15737)\"><path d=\"M5.70671 1.83334C8.62004 5.85334 9.72004 8.11334 11.06 13.6467M12.7534 3.39334C10.2734 6.29334 6.79337 7.16668 1.50004 7.29334M14.5 8.56001C12.1667 7.94001 10.08 8.01334 8.54004 8.56001C6.82004 9.17334 5.20004 10.4667 3.58004 12.7733M14.6667 8.00001C14.6667 11.6819 11.6819 14.6667 8.00004 14.6667C4.31814 14.6667 1.33337 11.6819 1.33337 8.00001C1.33337 4.31811 4.31814 1.33334 8.00004 1.33334C11.6819 1.33334 14.6667 4.31811 14.6667 8.00001Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15737\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconDribbble, \"<FIGMA_ICONS_BASE>?node-id=4049:13486\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconDribbble size={size} /> });"
],
[
"IconInfo",
"import { IconProps, Icon } from \"primitives\";\nexport const IconInfo = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15821)\"><path d=\"M8.00001 10.6666V7.99998M8.00001 5.33331H8.00668M14.6667 7.99998C14.6667 11.6819 11.6819 14.6666 8.00001 14.6666C4.31811 14.6666 1.33334 11.6819 1.33334 7.99998C1.33334 4.31808 4.31811 1.33331 8.00001 1.33331C11.6819 1.33331 14.6667 4.31808 14.6667 7.99998Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15821\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconInfo, \"<FIGMA_ICONS_BASE>?node-id=4049:13528\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconInfo size={size} /> });"
],
[
"IconMaximize",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMaximize = (props: IconProps) => (\n <Icon {...props}><path d=\"M5.33333 2H3.33333C2.97971 2 2.64057 2.14048 2.39052 2.39052C2.14048 2.64057 2 2.97971 2 3.33333V5.33333M14 5.33333V3.33333C14 2.97971 13.8595 2.64057 13.6095 2.39052C13.3594 2.14048 13.0203 2 12.6667 2H10.6667M10.6667 14H12.6667C13.0203 14 13.3594 13.8595 13.6095 13.6095C13.8595 13.3594 14 13.0203 14 12.6667V10.6667M2 10.6667V12.6667C2 13.0203 2.14048 13.3594 2.39052 13.6095C2.64057 13.8595 2.97971 14 3.33333 14H5.33333\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMaximize, \"<FIGMA_ICONS_BASE>?node-id=4049:13548\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMaximize size={size} /> });"
],
[
"IconMic",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMic = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15871)\"><path d=\"M12.6668 6.66663V7.99996C12.6668 9.23764 12.1752 10.4246 11.3 11.2998C10.4248 12.175 9.23784 12.6666 8.00016 12.6666M8.00016 12.6666C6.76249 12.6666 5.5755 12.175 4.70033 11.2998C3.82516 10.4246 3.3335 9.23764 3.3335 7.99996V6.66663M8.00016 12.6666V15.3333M5.3335 15.3333H10.6668M8.00016 0.666626C7.46973 0.666626 6.96102 0.87734 6.58595 1.25241C6.21088 1.62749 6.00016 2.13619 6.00016 2.66663V7.99996C6.00016 8.53039 6.21088 9.0391 6.58595 9.41417C6.96102 9.78925 7.46973 9.99996 8.00016 9.99996C8.5306 9.99996 9.0393 9.78925 9.41438 9.41417C9.78945 9.0391 10.0002 8.53039 10.0002 7.99996V2.66663C10.0002 2.13619 9.78945 1.62749 9.41438 1.25241C9.0393 0.87734 8.5306 0.666626 8.00016 0.666626Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15871\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconMic, \"<FIGMA_ICONS_BASE>?node-id=4049:13555\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMic size={size} /> });"
],
[
"IconMail",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMail = (props: IconProps) => (\n <Icon {...props}><path d=\"M14.6666 3.99996C14.6666 3.26663 14.0666 2.66663 13.3333 2.66663H2.66659C1.93325 2.66663 1.33325 3.26663 1.33325 3.99996M14.6666 3.99996V12C14.6666 12.7333 14.0666 13.3333 13.3333 13.3333H2.66659C1.93325 13.3333 1.33325 12.7333 1.33325 12V3.99996M14.6666 3.99996L7.99992 8.66663L1.33325 3.99996\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMail, \"<FIGMA_ICONS_BASE>?node-id=4049:13544\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMail size={size} /> });"
],
[
"IconGitBranch",
"import { IconProps, Icon } from \"primitives\";\nexport const IconGitBranch = (props: IconProps) => (\n <Icon {...props}><path d=\"M4 2V10M4 10C2.89543 10 2 10.8954 2 12C2 13.1046 2.89543 14 4 14C5.10457 14 6 13.1046 6 12M4 10C5.10457 10 6 10.8954 6 12M12 6C13.1046 6 14 5.10457 14 4C14 2.89543 13.1046 2 12 2C10.8954 2 10 2.89543 10 4C10 5.10457 10.8954 6 12 6ZM12 6C12 7.5913 11.3679 9.11742 10.2426 10.2426C9.11742 11.3679 7.5913 12 6 12\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconGitBranch, \"<FIGMA_ICONS_BASE>?node-id=4049:13513\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconGitBranch size={size} /> });"
],
[
"IconDroplet",
"import { IconProps, Icon } from \"primitives\";\nexport const IconDroplet = (props: IconProps) => (\n <Icon {...props}><path d=\"M7.99992 1.79333L11.7733 5.56667C12.5195 6.31241 13.0278 7.26271 13.2339 8.29737C13.4399 9.33203 13.3345 10.4046 12.9309 11.3793C12.5274 12.3541 11.8438 13.1872 10.9667 13.7734C10.0895 14.3596 9.05824 14.6725 8.00326 14.6725C6.94828 14.6725 5.91699 14.3596 5.03985 13.7734C4.16272 13.1872 3.47913 12.3541 3.07557 11.3793C2.672 10.4046 2.56659 9.33203 2.77266 8.29737C2.97873 7.26271 3.48703 6.31241 4.23326 5.56667L7.99992 1.79333Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconDroplet, \"<FIGMA_ICONS_BASE>?node-id=4049:13488\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconDroplet size={size} /> });"
],
[
"IconLock",
"import { IconProps, Icon } from \"primitives\";\nexport const IconLock = (props: IconProps) => (\n <Icon {...props}><path d=\"M4.66667 7.33337V4.66671C4.66667 3.78265 5.01786 2.93481 5.64298 2.30968C6.2681 1.68456 7.11595 1.33337 8 1.33337C8.88406 1.33337 9.7319 1.68456 10.357 2.30968C10.9821 2.93481 11.3333 3.78265 11.3333 4.66671V7.33337M3.33333 7.33337H12.6667C13.403 7.33337 14 7.93033 14 8.66671V13.3334C14 14.0698 13.403 14.6667 12.6667 14.6667H3.33333C2.59695 14.6667 2 14.0698 2 13.3334V8.66671C2 7.93033 2.59695 7.33337 3.33333 7.33337Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconLock, \"<FIGMA_ICONS_BASE>?node-id=4049:13540\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconLock size={size} /> });"
],
[
"IconMinimize",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMinimize = (props: IconProps) => (\n <Icon {...props}><path d=\"M5.33333 2V4C5.33333 4.35362 5.19286 4.69276 4.94281 4.94281C4.69276 5.19286 4.35362 5.33333 4 5.33333H2M14 5.33333H12C11.6464 5.33333 11.3072 5.19286 11.0572 4.94281C10.8071 4.69276 10.6667 4.35362 10.6667 4V2M10.6667 14V12C10.6667 11.6464 10.8071 11.3072 11.0572 11.0572C11.3072 10.8071 11.6464 10.6667 12 10.6667H14M2 10.6667H4C4.35362 10.6667 4.69276 10.8071 4.94281 11.0572C5.19286 11.3072 5.33333 11.6464 5.33333 12V14\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMinimize, \"<FIGMA_ICONS_BASE>?node-id=4049:13557\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMinimize size={size} /> });"
],
[
"IconGift",
"import { IconProps, Icon } from \"primitives\";\nexport const IconGift = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15785)\"><path d=\"M13.3333 8.00001V14.6667H2.66668V8.00001M8.00001 14.6667V4.66668M8.00001 4.66668H5.00001C4.55798 4.66668 4.13406 4.49108 3.8215 4.17852C3.50894 3.86596 3.33334 3.44204 3.33334 3.00001C3.33334 2.55798 3.50894 2.13406 3.8215 1.8215C4.13406 1.50894 4.55798 1.33334 5.00001 1.33334C7.33334 1.33334 8.00001 4.66668 8.00001 4.66668ZM8.00001 4.66668H11C11.442 4.66668 11.866 4.49108 12.1785 4.17852C12.4911 3.86596 12.6667 3.44204 12.6667 3.00001C12.6667 2.55798 12.4911 2.13406 12.1785 1.8215C11.866 1.50894 11.442 1.33334 11 1.33334C8.66668 1.33334 8.00001 4.66668 8.00001 4.66668ZM1.33334 4.66668H14.6667V8.00001H1.33334V4.66668Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15785\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconGift, \"<FIGMA_ICONS_BASE>?node-id=4049:13510\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconGift size={size} /> });"
],
[
"IconMenu",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMenu = (props: IconProps) => (\n <Icon {...props}><path d=\"M2 8H14M2 4H14M2 12H14\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMenu, \"<FIGMA_ICONS_BASE>?node-id=4049:13551\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMenu size={size} /> });"
],
[
"IconFrown",
"import { IconProps, Icon } from \"primitives\";\nexport const IconFrown = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15783)\"><path d=\"M10.6668 10.6667C10.6668 10.6667 9.66683 9.33333 8.00016 9.33333C6.3335 9.33333 5.3335 10.6667 5.3335 10.6667M6.00016 6H6.00683M10.0002 6H10.0068M14.6668 8C14.6668 11.6819 11.6821 14.6667 8.00016 14.6667C4.31826 14.6667 1.3335 11.6819 1.3335 8C1.3335 4.3181 4.31826 1.33333 8.00016 1.33333C11.6821 1.33333 14.6668 4.3181 14.6668 8Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15783\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconFrown, \"<FIGMA_ICONS_BASE>?node-id=4049:13511\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconFrown size={size} /> });"
],
[
"IconDisc",
"import { IconProps, Icon } from \"primitives\";\nexport const IconDisc = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15723)\"><path d=\"M7.99992 14.6666C11.6818 14.6666 14.6666 11.6819 14.6666 7.99998C14.6666 4.31808 11.6818 1.33331 7.99992 1.33331C4.31802 1.33331 1.33325 4.31808 1.33325 7.99998C1.33325 11.6819 4.31802 14.6666 7.99992 14.6666Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.99992 9.99998C9.10449 9.99998 9.99992 9.10455 9.99992 7.99998C9.99992 6.89541 9.10449 5.99998 7.99992 5.99998C6.89535 5.99998 5.99992 6.89541 5.99992 7.99998C5.99992 9.10455 6.89535 9.99998 7.99992 9.99998Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15723\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconDisc, \"<FIGMA_ICONS_BASE>?node-id=4049:13480\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconDisc size={size} /> });"
],
[
"IconMinus",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMinus = (props: IconProps) => (\n <Icon {...props}><path d=\"M3.33337 8H12.6667\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMinus, \"<FIGMA_ICONS_BASE>?node-id=4049:13558\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMinus size={size} /> });"
],
[
"IconNavigation2",
"import { IconProps, Icon } from \"primitives\";\nexport const IconNavigation2 = (props: IconProps) => (\n <Icon {...props}><path d=\"M8.00004 1.33337L12.6667 14L8.00004 11.3334L3.33337 14L8.00004 1.33337Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconNavigation2, \"<FIGMA_ICONS_BASE>?node-id=4049:13566\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconNavigation2 size={size} /> });"
],
[
"IconKey",
"import { IconProps, Icon } from \"primitives\";\nexport const IconKey = (props: IconProps) => (\n <Icon {...props}><path d=\"M14.0001 1.33331L12.6667 2.66665M12.6667 2.66665L14.6667 4.66665L12.3334 6.99998L10.3334 4.99998M12.6667 2.66665L10.3334 4.99998M7.59339 7.73998C7.93762 8.07962 8.21126 8.484 8.39856 8.92984C8.58586 9.37567 8.68313 9.85416 8.68475 10.3377C8.68637 10.8213 8.59231 11.3004 8.408 11.7475C8.22369 12.1946 7.95277 12.6008 7.61082 12.9427C7.26888 13.2847 6.86268 13.5556 6.4156 13.7399C5.96852 13.9242 5.48939 14.0183 5.00582 14.0167C4.52224 14.015 4.04376 13.9178 3.59792 13.7305C3.15209 13.5432 2.74771 13.2695 2.40806 12.9253C1.74015 12.2338 1.37057 11.3076 1.37892 10.3462C1.38728 9.38479 1.7729 8.46514 2.45273 7.78531C3.13256 7.10548 4.0522 6.71986 5.01359 6.71151C5.97498 6.70315 6.90119 7.07273 7.59273 7.74065L7.59339 7.73998ZM7.59339 7.73998L10.3334 4.99998\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconKey, \"<FIGMA_ICONS_BASE>?node-id=4049:13533\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconKey size={size} /> });"
],
[
"IconLink2",
"import { IconProps, Icon } from \"primitives\";\nexport const IconLink2 = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15835)\"><path d=\"M9.99984 4.66669H11.9998C12.4376 4.66669 12.871 4.75291 13.2754 4.92042C13.6799 5.08794 14.0473 5.33347 14.3569 5.643C14.6664 5.95253 14.9119 6.31999 15.0794 6.72441C15.247 7.12883 15.3332 7.56228 15.3332 8.00002C15.3332 8.43776 15.247 8.87121 15.0794 9.27563C14.9119 9.68005 14.6664 10.0475 14.3569 10.357C14.0473 10.6666 13.6799 10.9121 13.2754 11.0796C12.871 11.2471 12.4376 11.3334 11.9998 11.3334H9.99984M5.99984 11.3334H3.99984C3.5621 11.3334 3.12864 11.2471 2.72423 11.0796C2.31981 10.9121 1.95234 10.6666 1.64281 10.357C1.01769 9.73192 0.666504 8.88408 0.666504 8.00002C0.666504 7.11597 1.01769 6.26812 1.64281 5.643C2.26794 5.01788 3.11578 4.66669 3.99984 4.66669H5.99984M5.33317 8.00002H10.6665\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15835\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconLink2, \"<FIGMA_ICONS_BASE>?node-id=4049:13537\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconLink2 size={size} /> });"
],
[
"IconFramer",
"import { IconProps, Icon } from \"primitives\";\nexport const IconFramer = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15781)\"><path d=\"M3.3335 10.6667V6H12.6668V1.33333H3.3335L12.6668 10.6667H8.00016M3.3335 10.6667L8.00016 15.3333V10.6667M3.3335 10.6667H8.00016\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15781\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconFramer, \"<FIGMA_ICONS_BASE>?node-id=4049:13508\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconFramer size={size} /> });"
],
[
"IconEyeOff",
"import { IconProps, Icon } from \"primitives\";\nexport const IconEyeOff = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15749)\"><path d=\"M11.96 11.96C10.8204 12.8287 9.43273 13.3099 7.99999 13.3333C3.33332 13.3333 0.666656 8 0.666656 8C1.49592 6.4546 2.64608 5.10441 4.03999 4.04001M6.59999 2.82667C7.05888 2.71926 7.5287 2.66556 7.99999 2.66667C12.6667 2.66667 15.3333 8 15.3333 8C14.9286 8.75708 14.446 9.46983 13.8933 10.1267M9.41332 9.41334C9.23022 9.60984 9.00942 9.76744 8.76409 9.87675C8.51876 9.98607 8.25392 10.0448 7.98538 10.0496C7.71684 10.0543 7.4501 10.0049 7.20106 9.90433C6.95203 9.80374 6.7258 9.65402 6.53589 9.46411C6.34597 9.27419 6.19625 9.04797 6.09566 8.79893C5.99507 8.5499 5.94567 8.28315 5.95041 8.01461C5.95515 7.74607 6.01393 7.48123 6.12324 7.2359C6.23255 6.99057 6.39016 6.76977 6.58666 6.58667M0.666656 0.666672L15.3333 15.3333\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15749\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconEyeOff, \"<FIGMA_ICONS_BASE>?node-id=4049:13492\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconEyeOff size={size} /> });"
],
[
"IconMaximize2",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMaximize2 = (props: IconProps) => (\n <Icon {...props}><path d=\"M10 2H14M14 2V6M14 2L9.33333 6.66667M6 14H2M2 14V10M2 14L6.66667 9.33333\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMaximize2, \"<FIGMA_ICONS_BASE>?node-id=4049:13546\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMaximize2 size={size} /> });"
],
[
"IconNavigation",
"import { IconProps, Icon } from \"primitives\";\nexport const IconNavigation = (props: IconProps) => (\n <Icon {...props}><path d=\"M2 7.33337L14.6667 1.33337L8.66667 14L7.33333 8.66671L2 7.33337Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconNavigation, \"<FIGMA_ICONS_BASE>?node-id=4049:13568\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconNavigation size={size} /> });"
],
[
"IconGlobe",
"import { IconProps, Icon } from \"primitives\";\nexport const IconGlobe = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15799)\"><path d=\"M14.6668 8.00001C14.6668 11.6819 11.6821 14.6667 8.00016 14.6667M14.6668 8.00001C14.6668 4.31811 11.6821 1.33334 8.00016 1.33334M14.6668 8.00001H1.3335M8.00016 14.6667C4.31826 14.6667 1.3335 11.6819 1.3335 8.00001M8.00016 14.6667C9.66768 12.8411 10.6153 10.472 10.6668 8.00001C10.6153 5.52803 9.66768 3.15891 8.00016 1.33334M8.00016 14.6667C6.33264 12.8411 5.38499 10.472 5.3335 8.00001C5.38499 5.52803 6.33264 3.15891 8.00016 1.33334M1.3335 8.00001C1.3335 4.31811 4.31826 1.33334 8.00016 1.33334\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15799\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconGlobe, \"<FIGMA_ICONS_BASE>?node-id=4049:13519\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconGlobe size={size} /> });"
],
[
"IconLoader",
"import { IconProps, Icon } from \"primitives\";\nexport const IconLoader = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15843)\"><path d=\"M8.00004 1.33337V4.00004M8.00004 12V14.6667M3.28671 3.28671L5.17337 5.17337M10.8267 10.8267L12.7134 12.7134M1.33337 8.00004H4.00004M12 8.00004H14.6667M3.28671 12.7134L5.17337 10.8267M10.8267 5.17337L12.7134 3.28671\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15843\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconLoader, \"<FIGMA_ICONS_BASE>?node-id=4049:13541\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconLoader size={size} /> });"
],
[
"IconGitlab",
"import { IconProps, Icon } from \"primitives\";\nexport const IconGitlab = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15797)\"><path d=\"M15.1001 9.59334L8.0001 14.7533L0.900096 9.59334C0.804913 9.52334 0.734309 9.42502 0.698386 9.31247C0.662463 9.19991 0.663061 9.07887 0.700096 8.96667L1.51343 6.44667L3.1401 1.44C3.15587 1.39921 3.18099 1.36268 3.21343 1.33334C3.26626 1.28509 3.33522 1.25833 3.40676 1.25833C3.47831 1.25833 3.54727 1.28509 3.6001 1.33334C3.63435 1.36645 3.65959 1.40775 3.67343 1.45334L5.3001 6.44667H10.7001L12.3268 1.44C12.3425 1.39921 12.3677 1.36268 12.4001 1.33334C12.4529 1.28509 12.5219 1.25833 12.5934 1.25833C12.665 1.25833 12.7339 1.28509 12.7868 1.33334C12.821 1.36645 12.8463 1.40775 12.8601 1.45334L14.4868 6.46L15.3334 8.96667C15.3671 9.08233 15.3626 9.20576 15.3206 9.31865C15.2785 9.43155 15.2012 9.52787 15.1001 9.59334Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15797\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconGitlab, \"<FIGMA_ICONS_BASE>?node-id=4049:13516\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconGitlab size={size} /> });"
],
[
"IconHome",
"import { IconProps, Icon } from \"primitives\";\nexport const IconHome = (props: IconProps) => (\n <Icon {...props}><path d=\"M6 14.6666V7.99998H10V14.6666M2 5.99998L8 1.33331L14 5.99998V13.3333C14 13.6869 13.8595 14.0261 13.6095 14.2761C13.3594 14.5262 13.0203 14.6666 12.6667 14.6666H3.33333C2.97971 14.6666 2.64057 14.5262 2.39052 14.2761C2.14048 14.0261 2 13.6869 2 13.3333V5.99998Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconHome, \"<FIGMA_ICONS_BASE>?node-id=4049:13527\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconHome size={size} /> });"
],
[
"IconList",
"import { IconProps, Icon } from \"primitives\";\nexport const IconList = (props: IconProps) => (\n <Icon {...props}><path d=\"M5.33333 4H14M5.33333 8H14M5.33333 12H14M2 4H2.00667M2 8H2.00667M2 12H2.00667\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconList, \"<FIGMA_ICONS_BASE>?node-id=4049:13538\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconList size={size} /> });"
],
[
"IconOctagon",
"import { IconProps, Icon } from \"primitives\";\nexport const IconOctagon = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15901)\"><path d=\"M5.23992 1.33337H10.7599L14.6666 5.24004V10.76L10.7599 14.6667H5.23992L1.33325 10.76V5.24004L5.23992 1.33337Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15901\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconOctagon, \"<FIGMA_ICONS_BASE>?node-id=4049:13569\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconOctagon size={size} /> });"
],
[
"IconMessageCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMessageCircle = (props: IconProps) => (\n <Icon {...props}><path d=\"M14 7.66669C14.0023 8.5466 13.7967 9.41461 13.4 10.2C12.9296 11.1412 12.2065 11.9328 11.3116 12.4862C10.4168 13.0396 9.3855 13.3329 8.33333 13.3334C7.45342 13.3356 6.58541 13.1301 5.8 12.7334L2 14L3.26667 10.2C2.86995 9.41461 2.66437 8.5466 2.66667 7.66669C2.66707 6.61452 2.96041 5.58325 3.51381 4.68839C4.06722 3.79352 4.85884 3.0704 5.8 2.60002C6.58541 2.20331 7.45342 1.99772 8.33333 2.00002H8.66667C10.0562 2.07668 11.3687 2.66319 12.3528 3.64726C13.3368 4.63132 13.9233 5.94379 14 7.33335V7.66669Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMessageCircle, \"<FIGMA_ICONS_BASE>?node-id=4049:13550\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMessageCircle size={size} /> });"
],
[
"IconMoreHorizontal",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMoreHorizontal = (props: IconProps) => (\n <Icon {...props}><path d=\"M8.00008 8.66671C8.36827 8.66671 8.66675 8.36823 8.66675 8.00004C8.66675 7.63185 8.36827 7.33337 8.00008 7.33337C7.63189 7.33337 7.33341 7.63185 7.33341 8.00004C7.33341 8.36823 7.63189 8.66671 8.00008 8.66671Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.6667 8.66671C13.0349 8.66671 13.3334 8.36823 13.3334 8.00004C13.3334 7.63185 13.0349 7.33337 12.6667 7.33337C12.2986 7.33337 12.0001 7.63185 12.0001 8.00004C12.0001 8.36823 12.2986 8.66671 12.6667 8.66671Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.33341 8.66671C3.7016 8.66671 4.00008 8.36823 4.00008 8.00004C4.00008 7.63185 3.7016 7.33337 3.33341 7.33337C2.96522 7.33337 2.66675 7.63185 2.66675 8.00004C2.66675 8.36823 2.96522 8.66671 3.33341 8.66671Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMoreHorizontal, \"<FIGMA_ICONS_BASE>?node-id=4049:13563\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMoreHorizontal size={size} /> });"
],
[
"IconMinusCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMinusCircle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15877)\"><path d=\"M5.33331 8.00004H10.6666M14.6666 8.00004C14.6666 11.6819 11.6819 14.6667 7.99998 14.6667C4.31808 14.6667 1.33331 11.6819 1.33331 8.00004C1.33331 4.31814 4.31808 1.33337 7.99998 1.33337C11.6819 1.33337 14.6666 4.31814 14.6666 8.00004Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15877\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconMinusCircle, \"<FIGMA_ICONS_BASE>?node-id=4049:13556\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMinusCircle size={size} /> });"
],
[
"IconPhoneCall",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPhoneCall = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15915)\"><path d=\"M10.0334 3.33329C10.6845 3.46034 11.283 3.7788 11.7521 4.24792C12.2212 4.71703 12.5397 5.31547 12.6667 5.96663M10.0334 0.666626C11.3862 0.816917 12.6478 1.42274 13.6109 2.38463C14.574 3.34652 15.1814 4.6073 15.3334 5.95996M14.6667 11.28V13.28C14.6675 13.4656 14.6294 13.6494 14.555 13.8195C14.4807 13.9896 14.3716 14.1424 14.2348 14.2679C14.0979 14.3934 13.9364 14.4889 13.7605 14.5484C13.5847 14.6079 13.3983 14.63 13.2134 14.6133C11.1619 14.3904 9.19137 13.6894 7.46004 12.5666C5.84926 11.5431 4.48359 10.1774 3.46004 8.56663C2.33336 6.82743 1.6322 4.84729 1.41337 2.78663C1.39671 2.60227 1.41862 2.41647 1.4777 2.24104C1.53679 2.06562 1.63175 1.90442 1.75655 1.76771C1.88134 1.63099 2.03324 1.52177 2.20256 1.44697C2.37189 1.37218 2.55493 1.33347 2.74004 1.33329H4.74004C5.06357 1.33011 5.37723 1.44468 5.62254 1.65565C5.86786 1.86662 6.02809 2.15959 6.07337 2.47996C6.15779 3.12 6.31434 3.74844 6.54004 4.35329C6.62973 4.59191 6.64914 4.85124 6.59597 5.10055C6.5428 5.34986 6.41928 5.5787 6.24004 5.75996L5.39337 6.60663C6.34241 8.27566 7.72434 9.65759 9.39337 10.6066L10.24 9.75996C10.4213 9.58072 10.6501 9.45719 10.8994 9.40402C11.1488 9.35085 11.4081 9.37026 11.6467 9.45996C12.2516 9.68566 12.88 9.84221 13.52 9.92663C13.8439 9.97231 14.1396 10.1354 14.3511 10.385C14.5625 10.6345 14.6748 10.953 14.6667 11.28Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15915\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPhoneCall, \"<FIGMA_ICONS_BASE>?node-id=4049:13577\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPhoneCall size={size} /> });"
],
[
"IconMeh",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMeh = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15861)\"><path d=\"M5.33337 10H10.6667M6.00004 6.00004H6.00671M10 6.00004H10.0067M14.6667 8.00004C14.6667 11.6819 11.6819 14.6667 8.00004 14.6667C4.31814 14.6667 1.33337 11.6819 1.33337 8.00004C1.33337 4.31814 4.31814 1.33337 8.00004 1.33337C11.6819 1.33337 14.6667 4.31814 14.6667 8.00004Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15861\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconMeh, \"<FIGMA_ICONS_BASE>?node-id=4049:13549\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMeh size={size} /> });"
],
[
"IconPackage",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPackage = (props: IconProps) => (\n <Icon {...props}><path d=\"M11 6.26668L5 2.80668M2.18 4.64002L8 8.00668L13.82 4.64002M8 14.72V8.00002M14 10.6667V5.33335C13.9998 5.09953 13.938 4.86989 13.821 4.66746C13.704 4.46503 13.5358 4.29692 13.3333 4.18002L8.66667 1.51335C8.46397 1.39633 8.23405 1.33472 8 1.33472C7.76595 1.33472 7.53603 1.39633 7.33333 1.51335L2.66667 4.18002C2.46417 4.29692 2.29599 4.46503 2.17897 4.66746C2.06196 4.86989 2.00024 5.09953 2 5.33335V10.6667C2.00024 10.9005 2.06196 11.1301 2.17897 11.3326C2.29599 11.535 2.46417 11.7031 2.66667 11.82L7.33333 14.4867C7.53603 14.6037 7.76595 14.6653 8 14.6653C8.23405 14.6653 8.46397 14.6037 8.66667 14.4867L13.3333 11.82C13.5358 11.7031 13.704 11.535 13.821 11.3326C13.938 11.1301 13.9998 10.9005 14 10.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconPackage, \"<FIGMA_ICONS_BASE>?node-id=4049:13571\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPackage size={size} /> });"
],
[
"IconPercent",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPercent = (props: IconProps) => (\n <Icon {...props}><path d=\"M12.6667 3.33329L3.33335 12.6666M6.00002 4.33329C6.00002 5.25377 5.25383 5.99996 4.33335 5.99996C3.41288 5.99996 2.66669 5.25377 2.66669 4.33329C2.66669 3.41282 3.41288 2.66663 4.33335 2.66663C5.25383 2.66663 6.00002 3.41282 6.00002 4.33329ZM13.3334 11.6666C13.3334 12.5871 12.5872 13.3333 11.6667 13.3333C10.7462 13.3333 10 12.5871 10 11.6666C10 10.7462 10.7462 9.99996 11.6667 9.99996C12.5872 9.99996 13.3334 10.7462 13.3334 11.6666Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconPercent, \"<FIGMA_ICONS_BASE>?node-id=4049:13575\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPercent size={size} /> });"
],
[
"IconMusic",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMusic = (props: IconProps) => (\n <Icon {...props}><path d=\"M6 12V3.33333L14 2V10.6667M6 12C6 13.1046 5.10457 14 4 14C2.89543 14 2 13.1046 2 12C2 10.8954 2.89543 10 4 10C5.10457 10 6 10.8954 6 12ZM14 10.6667C14 11.7712 13.1046 12.6667 12 12.6667C10.8954 12.6667 10 11.7712 10 10.6667C10 9.5621 10.8954 8.66667 12 8.66667C13.1046 8.66667 14 9.5621 14 10.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMusic, \"<FIGMA_ICONS_BASE>?node-id=4049:13567\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMusic size={size} /> });"
],
[
"IconFlag",
"import { IconProps, Icon } from \"primitives\";\nexport const IconFlag = (props: IconProps) => (\n <Icon {...props}><path d=\"M2.66663 10C2.66663 10 3.33329 9.33333 5.33329 9.33333C7.33329 9.33333 8.66663 10.6667 10.6666 10.6667C12.6666 10.6667 13.3333 10 13.3333 10V2C13.3333 2 12.6666 2.66667 10.6666 2.66667C8.66663 2.66667 7.33329 1.33333 5.33329 1.33333C3.33329 1.33333 2.66663 2 2.66663 2V10ZM2.66663 10V14.6667\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconFlag, \"<FIGMA_ICONS_BASE>?node-id=4049:13504\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconFlag size={size} /> });"
],
[
"IconPenTool",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPenTool = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15911)\"><path d=\"M1.33334 1.33337L11 3.66671L12 8.66671L8.66668 12L3.66668 11L1.33334 1.33337ZM1.33334 1.33337L6.39068 6.39071M8.00001 12.6667L12.6667 8.00004L14.6667 10L10 14.6667L8.00001 12.6667ZM8.66668 7.33337C8.66668 8.06975 8.06972 8.66671 7.33334 8.66671C6.59696 8.66671 6.00001 8.06975 6.00001 7.33337C6.00001 6.59699 6.59696 6.00004 7.33334 6.00004C8.06972 6.00004 8.66668 6.59699 8.66668 7.33337Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15911\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPenTool, \"<FIGMA_ICONS_BASE>?node-id=4049:13576\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPenTool size={size} /> });"
],
[
"IconMove",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMove = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15893)\"><path d=\"M3.33334 6.00004L1.33334 8.00004M1.33334 8.00004L3.33334 10M1.33334 8.00004H14.6667M6.00001 3.33337L8.00001 1.33337M8.00001 1.33337L10 3.33337M8.00001 1.33337V14.6667M10 12.6667L8.00001 14.6667M8.00001 14.6667L6.00001 12.6667M12.6667 6.00004L14.6667 8.00004M14.6667 8.00004L12.6667 10\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15893\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconMove, \"<FIGMA_ICONS_BASE>?node-id=4049:13564\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMove size={size} /> });"
],
[
"IconLayers",
"import { IconProps, Icon } from \"primitives\";\nexport const IconLayers = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15829)\"><path d=\"M1.33325 11.3333L7.99992 14.6666L14.6666 11.3333M1.33325 7.99998L7.99992 11.3333L14.6666 7.99998M7.99992 1.33331L1.33325 4.66665L7.99992 7.99998L14.6666 4.66665L7.99992 1.33331Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15829\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconLayers, \"<FIGMA_ICONS_BASE>?node-id=4049:13532\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconLayers size={size} /> });"
],
[
"IconMoon",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMoon = (props: IconProps) => (\n <Icon {...props}><path d=\"M13.9999 8.52667C13.8951 9.66147 13.4692 10.7429 12.7721 11.6445C12.075 12.5461 11.1356 13.2305 10.0637 13.6177C8.99188 14.0049 7.83192 14.0787 6.7196 13.8307C5.60728 13.5827 4.5886 13.023 3.78275 12.2172C2.97691 11.4113 2.41723 10.3927 2.16921 9.28033C1.92118 8.16801 1.99508 7.00806 2.38224 5.9362C2.7694 4.86434 3.45382 3.92491 4.35541 3.22784C5.257 2.53076 6.33846 2.10487 7.47327 2C6.80888 2.89884 6.48917 4.0063 6.57229 5.12094C6.65541 6.23559 7.13584 7.28337 7.9262 8.07373C8.71656 8.86409 9.76435 9.34452 10.879 9.42764C11.9936 9.51077 13.1011 9.19106 13.9999 8.52667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMoon, \"<FIGMA_ICONS_BASE>?node-id=4049:13560\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMoon size={size} /> });"
],
[
"IconPaperclip",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPaperclip = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15905)\"><path d=\"M14.2934 7.36665L8.1667 13.4933C7.41613 14.2439 6.39815 14.6655 5.3367 14.6655C4.27524 14.6655 3.25726 14.2439 2.5067 13.4933C1.75613 12.7428 1.33447 11.7248 1.33447 10.6633C1.33447 9.60186 1.75613 8.58388 2.5067 7.83332L8.63336 1.70665C9.13374 1.20628 9.81239 0.925171 10.52 0.925171C11.2277 0.925171 11.9063 1.20628 12.4067 1.70665C12.9071 2.20703 13.1882 2.88568 13.1882 3.59332C13.1882 4.30096 12.9071 4.97961 12.4067 5.47999L6.27336 11.6067C6.02318 11.8568 5.68385 11.9974 5.33003 11.9974C4.97621 11.9974 4.63688 11.8568 4.3867 11.6067C4.13651 11.3565 3.99596 11.0171 3.99596 10.6633C3.99596 10.3095 4.13651 9.97017 4.3867 9.71999L10.0467 4.06665\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15905\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPaperclip, \"<FIGMA_ICONS_BASE>?node-id=4049:13570\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPaperclip size={size} /> });"
],
[
"IconLinkedin",
"import { IconProps, Icon } from \"primitives\";\nexport const IconLinkedin = (props: IconProps) => (\n <Icon {...props}><path d=\"M10.6667 5.33337C11.7275 5.33337 12.745 5.7548 13.4951 6.50495C14.2452 7.25509 14.6667 8.27251 14.6667 9.33337V14H12V9.33337C12 8.97975 11.8595 8.64061 11.6095 8.39057C11.3594 8.14052 11.0203 8.00004 10.6667 8.00004C10.3131 8.00004 9.97392 8.14052 9.72387 8.39057C9.47382 8.64061 9.33334 8.97975 9.33334 9.33337V14H6.66668V9.33337C6.66668 8.27251 7.0881 7.25509 7.83825 6.50495C8.58839 5.7548 9.60581 5.33337 10.6667 5.33337Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.00001 6.00004H1.33334V14H4.00001V6.00004Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.66668 4.00004C3.40306 4.00004 4.00001 3.40309 4.00001 2.66671C4.00001 1.93033 3.40306 1.33337 2.66668 1.33337C1.9303 1.33337 1.33334 1.93033 1.33334 2.66671C1.33334 3.40309 1.9303 4.00004 2.66668 4.00004Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconLinkedin, \"<FIGMA_ICONS_BASE>?node-id=4049:13539\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconLinkedin size={size} /> });"
],
[
"IconLink",
"import { IconProps, Icon } from \"primitives\";\nexport const IconLink = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15837)\"><path d=\"M6.6668 8.66666C6.9531 9.04942 7.31837 9.36612 7.73783 9.59529C8.15729 9.82446 8.62114 9.96074 9.0979 9.99489C9.57466 10.029 10.0532 9.96024 10.501 9.79318C10.9489 9.62613 11.3555 9.36471 11.6935 9.02666L13.6935 7.02666C14.3007 6.39799 14.6366 5.55598 14.629 4.68199C14.6215 3.808 14.2709 2.97196 13.6529 2.35394C13.0348 1.73591 12.1988 1.38535 11.3248 1.37775C10.4508 1.37016 9.60881 1.70614 8.98013 2.31333L7.83347 3.45333M9.33347 7.33333C9.04716 6.95058 8.68189 6.63388 8.26243 6.4047C7.84297 6.17553 7.37913 6.03925 6.90237 6.00511C6.4256 5.97096 5.94708 6.03975 5.49924 6.20681C5.0514 6.37387 4.64472 6.63528 4.3068 6.97333L2.3068 8.97333C1.69961 9.602 1.36363 10.444 1.37122 11.318C1.37881 12.192 1.72938 13.028 2.3474 13.6461C2.96543 14.2641 3.80147 14.6146 4.67546 14.6222C5.54945 14.6298 6.39146 14.2939 7.02013 13.6867L8.16013 12.5467\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15837\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconLink, \"<FIGMA_ICONS_BASE>?node-id=4049:13536\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconLink size={size} /> });"
],
[
"IconPhoneForwarded",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPhoneForwarded = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15917)\"><path d=\"M12.6667 0.666626L15.3334 3.33329M15.3334 3.33329L12.6667 5.99996M15.3334 3.33329L10 3.33329M14.6667 11.28V13.28C14.6675 13.4656 14.6294 13.6494 14.555 13.8195C14.4807 13.9896 14.3716 14.1424 14.2348 14.2679C14.0979 14.3934 13.9364 14.4889 13.7605 14.5484C13.5847 14.6079 13.3983 14.63 13.2134 14.6133C11.1619 14.3904 9.19137 13.6894 7.46004 12.5666C5.84926 11.5431 4.48359 10.1774 3.46004 8.56663C2.33336 6.82743 1.6322 4.84729 1.41337 2.78663C1.39671 2.60227 1.41862 2.41647 1.4777 2.24104C1.53679 2.06562 1.63175 1.90442 1.75655 1.76771C1.88134 1.63099 2.03324 1.52177 2.20256 1.44697C2.37189 1.37218 2.55493 1.33347 2.74004 1.33329H4.74004C5.06357 1.33011 5.37723 1.44468 5.62254 1.65565C5.86786 1.86662 6.02809 2.15959 6.07337 2.47996C6.15779 3.12 6.31434 3.74844 6.54004 4.35329C6.62973 4.59191 6.64914 4.85124 6.59597 5.10055C6.5428 5.34986 6.41928 5.5787 6.24004 5.75996L5.39337 6.60663C6.34241 8.27566 7.72434 9.65759 9.39337 10.6066L10.24 9.75996C10.4213 9.58072 10.6501 9.45719 10.8994 9.40402C11.1488 9.35085 11.4081 9.37026 11.6467 9.45996C12.2516 9.68566 12.88 9.84221 13.52 9.92663C13.8439 9.97231 14.1396 10.1354 14.3511 10.385C14.5625 10.6345 14.6748 10.953 14.6667 11.28Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15917\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPhoneForwarded, \"<FIGMA_ICONS_BASE>?node-id=4049:13578\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPhoneForwarded size={size} /> });"
],
[
"IconMinusSquare",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMinusSquare = (props: IconProps) => (\n <Icon {...props}><path d=\"M5.33333 8H10.6667M3.33333 2H12.6667C13.403 2 14 2.59695 14 3.33333V12.6667C14 13.403 13.403 14 12.6667 14H3.33333C2.59695 14 2 13.403 2 12.6667V3.33333C2 2.59695 2.59695 2 3.33333 2Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMinusSquare, \"<FIGMA_ICONS_BASE>?node-id=4049:13559\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMinusSquare size={size} /> });"
],
[
"IconMoreVertical",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMoreVertical = (props: IconProps) => (\n <Icon {...props}><path d=\"M8.00016 8.66663C8.36835 8.66663 8.66683 8.36815 8.66683 7.99996C8.66683 7.63177 8.36835 7.33329 8.00016 7.33329C7.63197 7.33329 7.3335 7.63177 7.3335 7.99996C7.3335 8.36815 7.63197 8.66663 8.00016 8.66663Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.00016 3.99996C8.36835 3.99996 8.66683 3.70148 8.66683 3.33329C8.66683 2.9651 8.36835 2.66663 8.00016 2.66663C7.63197 2.66663 7.3335 2.9651 7.3335 3.33329C7.3335 3.70148 7.63197 3.99996 8.00016 3.99996Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.00016 13.3333C8.36835 13.3333 8.66683 13.0348 8.66683 12.6666C8.66683 12.2984 8.36835 12 8.00016 12C7.63197 12 7.3335 12.2984 7.3335 12.6666C7.3335 13.0348 7.63197 13.3333 8.00016 13.3333Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMoreVertical, \"<FIGMA_ICONS_BASE>?node-id=4049:13562\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMoreVertical size={size} /> });"
],
[
"IconLogIn",
"import { IconProps, Icon } from \"primitives\";\nexport const IconLogIn = (props: IconProps) => (\n <Icon {...props}><path d=\"M10 2H12.6667C13.0203 2 13.3594 2.14048 13.6095 2.39052C13.8595 2.64057 14 2.97971 14 3.33333V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H10M6.66667 11.3333L10 8M10 8L6.66667 4.66667M10 8H2\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconLogIn, \"<FIGMA_ICONS_BASE>?node-id=4049:13542\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconLogIn size={size} /> });"
],
[
"IconLogOut",
"import { IconProps, Icon } from \"primitives\";\nexport const IconLogOut = (props: IconProps) => (\n <Icon {...props}><path d=\"M6 14H3.33333C2.97971 14 2.64057 13.8595 2.39052 13.6095C2.14048 13.3594 2 13.0203 2 12.6667V3.33333C2 2.97971 2.14048 2.64057 2.39052 2.39052C2.64057 2.14048 2.97971 2 3.33333 2H6M10.6667 11.3333L14 8M14 8L10.6667 4.66667M14 8H6\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconLogOut, \"<FIGMA_ICONS_BASE>?node-id=4049:13543\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconLogOut size={size} /> });"
],
[
"IconMicOff",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMicOff = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15869)\"><path d=\"M0.666748 0.666687L15.3334 15.3334M6.00008 6.00002V8.00002C6.00043 8.39533 6.11792 8.78167 6.3377 9.11024C6.55749 9.43882 6.86972 9.69489 7.23495 9.84612C7.60019 9.99735 8.00205 10.037 8.38978 9.95993C8.77751 9.8829 9.13372 9.6927 9.41341 9.41335M10.0001 6.22669V2.66669C10.0006 2.17071 9.81677 1.69223 9.48433 1.32415C9.15189 0.956074 8.69455 0.724648 8.20108 0.674803C7.70761 0.624958 7.21322 0.760249 6.81389 1.05441C6.41456 1.34858 6.13878 1.78063 6.04008 2.26669M11.3334 11.3C10.6826 11.9643 9.84817 12.419 8.93715 12.6058C8.02614 12.7925 7.0801 12.7028 6.22041 12.3482C5.36072 11.9936 4.62659 11.3902 4.11219 10.6155C3.5978 9.84071 3.32661 8.92996 3.33341 8.00002V6.66669M12.6667 6.66669V8.00002C12.6665 8.27498 12.642 8.54938 12.5934 8.82002M8.00008 12.6667V15.3334M5.33341 15.3334H10.6667\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15869\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconMicOff, \"<FIGMA_ICONS_BASE>?node-id=4049:13552\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMicOff size={size} /> });"
],
[
"IconPhoneIncoming",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPhoneIncoming = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15919)\"><path d=\"M10.6667 1.33329V5.33329M10.6667 5.33329H14.6667M10.6667 5.33329L15.3334 0.666626M14.6667 11.28V13.28C14.6675 13.4656 14.6294 13.6494 14.555 13.8195C14.4807 13.9896 14.3716 14.1424 14.2348 14.2679C14.0979 14.3934 13.9364 14.4889 13.7605 14.5484C13.5847 14.6079 13.3983 14.63 13.2134 14.6133C11.1619 14.3904 9.19137 13.6894 7.46004 12.5666C5.84926 11.5431 4.48359 10.1774 3.46004 8.56663C2.33336 6.82743 1.6322 4.84729 1.41337 2.78663C1.39671 2.60227 1.41862 2.41647 1.4777 2.24104C1.53679 2.06562 1.63175 1.90442 1.75655 1.76771C1.88134 1.63099 2.03324 1.52177 2.20256 1.44697C2.37189 1.37218 2.55493 1.33347 2.74004 1.33329H4.74004C5.06357 1.33011 5.37723 1.44468 5.62254 1.65565C5.86786 1.86662 6.02809 2.15959 6.07337 2.47996C6.15779 3.12 6.31434 3.74844 6.54004 4.35329C6.62973 4.59191 6.64914 4.85124 6.59597 5.10055C6.5428 5.34986 6.41928 5.5787 6.24004 5.75996L5.39337 6.60663C6.34241 8.27566 7.72434 9.65759 9.39337 10.6066L10.24 9.75996C10.4213 9.58072 10.6501 9.45719 10.8994 9.40402C11.1488 9.35085 11.4081 9.37026 11.6467 9.45996C12.2516 9.68566 12.88 9.84221 13.52 9.92663C13.8439 9.97231 14.1396 10.1354 14.3511 10.385C14.5625 10.6345 14.6748 10.953 14.6667 11.28Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15919\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPhoneIncoming, \"<FIGMA_ICONS_BASE>?node-id=4049:13580\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPhoneIncoming size={size} /> });"
],
[
"IconMonitor",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMonitor = (props: IconProps) => (\n <Icon {...props}><path d=\"M5.33325 14H10.6666M7.99992 11.3333V14M2.66659 2H13.3333C14.0696 2 14.6666 2.59695 14.6666 3.33333V10C14.6666 10.7364 14.0696 11.3333 13.3333 11.3333H2.66659C1.93021 11.3333 1.33325 10.7364 1.33325 10V3.33333C1.33325 2.59695 1.93021 2 2.66659 2Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMonitor, \"<FIGMA_ICONS_BASE>?node-id=4049:13561\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMonitor size={size} /> });"
],
[
"IconMinimize2",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMinimize2 = (props: IconProps) => (\n <Icon {...props}><path d=\"M2.66667 9.33333H6.66667M6.66667 9.33333V13.3333M6.66667 9.33333L2 14M13.3333 6.66667H9.33333M9.33333 6.66667V2.66667M9.33333 6.66667L14 2\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconMinimize2, \"<FIGMA_ICONS_BASE>?node-id=4049:13554\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMinimize2 size={size} /> });"
],
[
"IconPauseCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPauseCircle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15907)\"><path d=\"M6.66683 10V6.00004M9.3335 10V6.00004M14.6668 8.00004C14.6668 11.6819 11.6821 14.6667 8.00016 14.6667C4.31826 14.6667 1.3335 11.6819 1.3335 8.00004C1.3335 4.31814 4.31826 1.33337 8.00016 1.33337C11.6821 1.33337 14.6668 4.31814 14.6668 8.00004Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15907\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPauseCircle, \"<FIGMA_ICONS_BASE>?node-id=4049:13574\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPauseCircle size={size} /> });"
],
[
"IconPhoneMissed",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPhoneMissed = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15921)\"><path d=\"M15.3334 0.666626L11.3334 4.66663M11.3334 0.666626L15.3334 4.66663M14.6667 11.28V13.28C14.6675 13.4656 14.6294 13.6494 14.555 13.8195C14.4807 13.9896 14.3716 14.1424 14.2348 14.2679C14.0979 14.3934 13.9364 14.4889 13.7605 14.5484C13.5847 14.6079 13.3983 14.63 13.2134 14.6133C11.1619 14.3904 9.19137 13.6894 7.46004 12.5666C5.84926 11.5431 4.48359 10.1774 3.46004 8.56663C2.33336 6.82743 1.6322 4.84729 1.41337 2.78663C1.39671 2.60227 1.41862 2.41647 1.4777 2.24104C1.53679 2.06562 1.63175 1.90442 1.75655 1.76771C1.88134 1.63099 2.03324 1.52177 2.20256 1.44697C2.37189 1.37218 2.55493 1.33347 2.74004 1.33329H4.74004C5.06357 1.33011 5.37723 1.44468 5.62254 1.65565C5.86786 1.86662 6.02809 2.15959 6.07337 2.47996C6.15779 3.12 6.31434 3.74844 6.54004 4.35329C6.62973 4.59191 6.64914 4.85124 6.59597 5.10055C6.5428 5.34986 6.41928 5.5787 6.24004 5.75996L5.39337 6.60663C6.34241 8.27566 7.72434 9.65759 9.39337 10.6066L10.24 9.75996C10.4213 9.58072 10.6501 9.45719 10.8994 9.40402C11.1488 9.35085 11.4081 9.37026 11.6467 9.45996C12.2516 9.68566 12.88 9.84221 13.52 9.92663C13.8439 9.97231 14.1396 10.1354 14.3511 10.385C14.5625 10.6345 14.6748 10.953 14.6667 11.28Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15921\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPhoneMissed, \"<FIGMA_ICONS_BASE>?node-id=4049:13579\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPhoneMissed size={size} /> });"
],
[
"IconPhoneOff",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPhoneOff = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15923)\"><path d=\"M7.12008 8.87329C7.79665 9.55046 8.56129 10.1335 9.39341 10.6066L10.2401 9.75996C10.4213 9.58072 10.6502 9.45719 10.8995 9.40402C11.1488 9.35085 11.4081 9.37026 11.6467 9.45996C12.2516 9.68566 12.88 9.84221 13.5201 9.92663C13.8405 9.97191 14.1334 10.1321 14.3444 10.3775C14.5554 10.6228 14.6699 10.9364 14.6667 11.26V13.26C14.6675 13.4456 14.6295 13.6294 14.5551 13.7995C14.4807 13.9696 14.3716 14.1224 14.2348 14.2479C14.098 14.3734 13.9365 14.4689 13.7606 14.5284C13.5847 14.5879 13.3983 14.61 13.2134 14.5933C11.162 14.3704 9.19141 13.6694 7.46008 12.5466C6.65693 12.0367 5.91243 11.4397 5.24008 10.7666M3.46008 8.53996C2.33732 6.80863 1.63632 4.83807 1.41341 2.78663C1.39675 2.60227 1.41866 2.41647 1.47775 2.24104C1.53683 2.06562 1.6318 1.90442 1.75659 1.76771C1.88139 1.63099 2.03328 1.52177 2.20261 1.44697C2.37193 1.37218 2.55498 1.33347 2.74008 1.33329H4.74008C5.06362 1.33011 5.37728 1.44468 5.62259 1.65565C5.8679 1.86662 6.02813 2.15959 6.07341 2.47996C6.15783 3.12 6.31438 3.74844 6.54008 4.35329C6.62978 4.59191 6.64919 4.85124 6.59602 5.10055C6.54285 5.34986 6.41932 5.5787 6.24008 5.75996L5.39341 6.60663M15.3334 0.666626L0.666748 15.3333\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15923\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPhoneOff, \"<FIGMA_ICONS_BASE>?node-id=4049:13582\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPhoneOff size={size} /> });"
],
[
"IconPause",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPause = (props: IconProps) => (\n <Icon {...props}><path d=\"M6.66667 2.66663H4V13.3333H6.66667V2.66663Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 2.66663H9.33333V13.3333H12V2.66663Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconPause, \"<FIGMA_ICONS_BASE>?node-id=4049:13572\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPause size={size} /> });"
],
[
"IconPlay",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPlay = (props: IconProps) => (\n <Icon {...props}><path d=\"M3.33337 2L12.6667 8L3.33337 14V2Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconPlay, \"<FIGMA_ICONS_BASE>?node-id=4049:13586\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPlay size={size} /> });"
],
[
"IconMap",
"import { IconProps, Icon } from \"primitives\";\nexport const IconMap = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15855)\"><path d=\"M5.33317 12L0.666504 14.6667V4.00004L5.33317 1.33337M5.33317 12L10.6665 14.6667M5.33317 12V1.33337M10.6665 14.6667L15.3332 12V1.33337L10.6665 4.00004M10.6665 14.6667V4.00004M10.6665 4.00004L5.33317 1.33337\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15855\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconMap, \"<FIGMA_ICONS_BASE>?node-id=4049:13547\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconMap size={size} /> });"
],
[
"IconPlus",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPlus = (props: IconProps) => (\n <Icon {...props}><path d=\"M7.99992 3.33325V12.6666M3.33325 7.99992H12.6666\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconPlus, \"<FIGMA_ICONS_BASE>?node-id=4049:13590\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPlus size={size} /> });"
],
[
"IconPlusCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPlusCircle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15935)\"><path d=\"M8.00004 5.33325V10.6666M5.33337 7.99992H10.6667M14.6667 7.99992C14.6667 11.6818 11.6819 14.6666 8.00004 14.6666C4.31814 14.6666 1.33337 11.6818 1.33337 7.99992C1.33337 4.31802 4.31814 1.33325 8.00004 1.33325C11.6819 1.33325 14.6667 4.31802 14.6667 7.99992Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15935\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPlusCircle, \"<FIGMA_ICONS_BASE>?node-id=4049:13588\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPlusCircle size={size} /> });"
],
[
"IconRefreshCw",
"import { IconProps, Icon } from \"primitives\";\nexport const IconRefreshCw = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15951)\"><path d=\"M15.3333 2.66655V6.66655M15.3333 6.66655H11.3333M15.3333 6.66655L12.24 3.75989C11.5235 3.04303 10.637 2.51936 9.66342 2.23774C8.68979 1.95612 7.6607 1.92572 6.67215 2.14939C5.6836 2.37306 4.76783 2.84351 4.01027 3.51683C3.25271 4.19016 2.67807 5.04441 2.33996 5.99989M0.666626 13.3332V9.33322M0.666626 9.33322H4.66663M0.666626 9.33322L3.75996 12.2399C4.47646 12.9567 5.36287 13.4804 6.3365 13.762C7.31012 14.0437 8.33922 14.0741 9.32777 13.8504C10.3163 13.6267 11.2321 13.1563 11.9896 12.4829C12.7472 11.8096 13.3218 10.9554 13.66 9.99989\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15951\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconRefreshCw, \"<FIGMA_ICONS_BASE>?node-id=4049:13595\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconRefreshCw size={size} /> });"
],
[
"IconPlusSquare",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPlusSquare = (props: IconProps) => (\n <Icon {...props}><path d=\"M8 5.33333V10.6667M5.33333 8H10.6667M3.33333 2H12.6667C13.403 2 14 2.59695 14 3.33333V12.6667C14 13.403 13.403 14 12.6667 14H3.33333C2.59695 14 2 13.403 2 12.6667V3.33333C2 2.59695 2.59695 2 3.33333 2Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconPlusSquare, \"<FIGMA_ICONS_BASE>?node-id=4049:13587\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPlusSquare size={size} /> });"
],
[
"IconPieChart",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPieChart = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15929)\"><path d=\"M14.14 10.5933C13.7159 11.5962 13.0525 12.4801 12.2079 13.1675C11.3633 13.8548 10.3632 14.3249 9.29496 14.5364C8.22674 14.748 7.12295 14.6947 6.0801 14.3811C5.03725 14.0676 4.08709 13.5033 3.31268 12.7377C2.53828 11.9721 1.96321 11.0284 1.63776 9.98922C1.31231 8.95002 1.24638 7.84691 1.44574 6.77634C1.64509 5.70577 2.10367 4.70034 2.78137 3.84794C3.45907 2.99554 4.33526 2.32213 5.33334 1.88659M14.6667 7.99992C14.6667 7.12444 14.4942 6.25753 14.1592 5.4487C13.8242 4.63986 13.3331 3.90493 12.714 3.28587C12.095 2.66682 11.3601 2.17575 10.5512 1.84072C9.74239 1.50569 8.87548 1.33325 8 1.33325V7.99992H14.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15929\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPieChart, \"<FIGMA_ICONS_BASE>?node-id=4049:13583\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPieChart size={size} /> });"
],
[
"IconPlayCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPlayCircle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15931)\"><path d=\"M7.99998 14.6666C11.6819 14.6666 14.6666 11.6818 14.6666 7.99992C14.6666 4.31802 11.6819 1.33325 7.99998 1.33325C4.31808 1.33325 1.33331 4.31802 1.33331 7.99992C1.33331 11.6818 4.31808 14.6666 7.99998 14.6666Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.66665 5.33325L10.6666 7.99992L6.66665 10.6666V5.33325Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15931\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPlayCircle, \"<FIGMA_ICONS_BASE>?node-id=4049:13585\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPlayCircle size={size} /> });"
],
[
"IconPower",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPower = (props: IconProps) => (\n <Icon {...props}><path d=\"M12.2399 4.42659C13.0788 5.26578 13.6501 6.33488 13.8814 7.49871C14.1128 8.66254 13.9939 9.86884 13.5397 10.9651C13.0855 12.0613 12.3165 12.9983 11.3298 13.6575C10.3431 14.3167 9.18319 14.6685 7.99658 14.6685C6.80998 14.6685 5.65002 14.3167 4.66337 13.6575C3.67671 12.9983 2.90768 12.0613 2.45349 10.9651C1.99931 9.86884 1.88038 8.66254 2.11173 7.49871C2.34308 6.33488 2.91433 5.26578 3.75325 4.42659M7.99992 1.33325V7.99992\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconPower, \"<FIGMA_ICONS_BASE>?node-id=4049:13592\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPower size={size} /> });"
],
[
"IconPocket",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPocket = (props: IconProps) => (\n <Icon {...props}><path d=\"M5.33325 6.66667L7.99992 9.33333L10.6666 6.66667M2.66659 2H13.3333C13.6869 2 14.026 2.14048 14.2761 2.39052C14.5261 2.64057 14.6666 2.97971 14.6666 3.33333V7.33333C14.6666 9.10144 13.9642 10.7971 12.714 12.0474C11.4637 13.2976 9.76803 14 7.99992 14C7.12444 14 6.25753 13.8276 5.4487 13.4925C4.63986 13.1575 3.90493 12.6664 3.28587 12.0474C2.03563 10.7971 1.33325 9.10144 1.33325 7.33333V3.33333C1.33325 2.97971 1.47373 2.64057 1.72378 2.39052C1.97382 2.14048 2.31296 2 2.66659 2Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconPocket, \"<FIGMA_ICONS_BASE>?node-id=4049:13589\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPocket size={size} /> });"
],
[
"IconRepeat",
"import { IconProps, Icon } from \"primitives\";\nexport const IconRepeat = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15953)\"><path d=\"M11.3333 0.666748L14 3.33341M14 3.33341L11.3333 6.00008M14 3.33341L4.66667 3.33341C3.95942 3.33341 3.28115 3.61437 2.78105 4.11446C2.28095 4.61456 2 5.29284 2 6.00008V7.33341M4.66667 15.3334L2 12.6667M2 12.6667L4.66667 10.0001M2 12.6667L11.3333 12.6667C12.0406 12.6667 12.7189 12.3858 13.219 11.8857C13.719 11.3856 14 10.7073 14 10.0001V8.66675\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15953\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconRepeat, \"<FIGMA_ICONS_BASE>?node-id=4049:13596\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconRepeat size={size} /> });"
],
[
"IconRss",
"import { IconProps, Icon } from \"primitives\";\nexport const IconRss = (props: IconProps) => (\n <Icon {...props}><path d=\"M2.6665 7.33341C4.2578 7.33341 5.78393 7.96556 6.90914 9.09077C8.03436 10.216 8.6665 11.7421 8.6665 13.3334M2.6665 2.66675C5.49548 2.66675 8.20859 3.79055 10.209 5.79094C12.2094 7.79133 13.3332 10.5044 13.3332 13.3334M3.99984 12.6667C3.99984 13.0349 3.70136 13.3334 3.33317 13.3334C2.96498 13.3334 2.6665 13.0349 2.6665 12.6667C2.6665 12.2986 2.96498 12.0001 3.33317 12.0001C3.70136 12.0001 3.99984 12.2986 3.99984 12.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconRss, \"<FIGMA_ICONS_BASE>?node-id=4049:13599\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconRss size={size} /> });"
],
[
"IconRadio",
"import { IconProps, Icon } from \"primitives\";\nexport const IconRadio = (props: IconProps) => (\n <Icon {...props}><path d=\"M10.8267 5.17329C11.1986 5.54478 11.4936 5.98593 11.6949 6.47153C11.8962 6.95712 11.9998 7.47763 11.9998 8.00329C11.9998 8.52895 11.8962 9.04946 11.6949 9.53505C11.4936 10.0206 11.1986 10.4618 10.8267 10.8333M5.17332 10.8266C4.80142 10.4551 4.50638 10.014 4.30508 9.52838C4.10379 9.04279 4.00018 8.52228 4.00018 7.99662C4.00018 7.47096 4.10379 6.95045 4.30508 6.46486C4.50638 5.97927 4.80142 5.53811 5.17332 5.16662M12.7133 3.28662C13.9631 4.53681 14.6652 6.23219 14.6652 7.99995C14.6652 9.76772 13.9631 11.4631 12.7133 12.7133M3.28666 12.7133C2.03685 11.4631 1.33475 9.76772 1.33475 7.99995C1.33475 6.23219 2.03685 4.53681 3.28666 3.28662M9.33332 7.99995C9.33332 8.73633 8.73637 9.33329 7.99999 9.33329C7.26361 9.33329 6.66666 8.73633 6.66666 7.99995C6.66666 7.26357 7.26361 6.66662 7.99999 6.66662C8.73637 6.66662 9.33332 7.26357 9.33332 7.99995Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconRadio, \"<FIGMA_ICONS_BASE>?node-id=4049:13594\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconRadio size={size} /> });"
],
[
"IconPhoneOutgoing",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPhoneOutgoing = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15925)\"><path d=\"M15.3331 4.66663V0.666626M15.3331 0.666626H11.3331M15.3331 0.666626L10.6665 5.33329M14.6665 11.28V13.28C14.6672 13.4656 14.6292 13.6494 14.5548 13.8195C14.4804 13.9896 14.3713 14.1424 14.2345 14.2679C14.0977 14.3934 13.9362 14.4889 13.7603 14.5484C13.5844 14.6079 13.398 14.63 13.2131 14.6133C11.1617 14.3904 9.19113 13.6894 7.45979 12.5666C5.84901 11.5431 4.48335 10.1774 3.45979 8.56663C2.33311 6.82743 1.63195 4.84729 1.41313 2.78663C1.39647 2.60227 1.41838 2.41647 1.47746 2.24104C1.53654 2.06562 1.63151 1.90442 1.7563 1.76771C1.8811 1.63099 2.033 1.52177 2.20232 1.44697C2.37164 1.37218 2.55469 1.33347 2.73979 1.33329H4.73979C5.06333 1.33011 5.37699 1.44468 5.6223 1.65565C5.86761 1.86662 6.02784 2.15959 6.07313 2.47996C6.15754 3.12 6.31409 3.74844 6.53979 4.35329C6.62949 4.59191 6.6489 4.85124 6.59573 5.10055C6.54256 5.34986 6.41903 5.5787 6.23979 5.75996L5.39313 6.60663C6.34216 8.27566 7.7241 9.65759 9.39313 10.6066L10.2398 9.75996C10.4211 9.58072 10.6499 9.45719 10.8992 9.40402C11.1485 9.35085 11.4078 9.37026 11.6465 9.45996C12.2513 9.68566 12.8797 9.84221 13.5198 9.92663C13.8436 9.97231 14.1394 10.1354 14.3508 10.385C14.5622 10.6345 14.6746 10.953 14.6665 11.28Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15925\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPhoneOutgoing, \"<FIGMA_ICONS_BASE>?node-id=4049:13581\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPhoneOutgoing size={size} /> });"
],
[
"IconPhone",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPhone = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15927)\"><path d=\"M14.6665 11.28V13.28C14.6672 13.4657 14.6292 13.6494 14.5548 13.8195C14.4804 13.9897 14.3713 14.1424 14.2345 14.2679C14.0977 14.3934 13.9362 14.489 13.7603 14.5485C13.5844 14.6079 13.398 14.63 13.2131 14.6133C11.1617 14.3904 9.19113 13.6894 7.45979 12.5667C5.84901 11.5431 4.48335 10.1774 3.45979 8.56665C2.33311 6.82745 1.63195 4.84731 1.41313 2.78665C1.39647 2.60229 1.41838 2.41649 1.47746 2.24107C1.53654 2.06564 1.63151 1.90444 1.7563 1.76773C1.8811 1.63102 2.033 1.52179 2.20232 1.447C2.37164 1.37221 2.55469 1.33349 2.73979 1.33332H4.73979C5.06333 1.33013 5.37699 1.4447 5.6223 1.65567C5.86761 1.86664 6.02784 2.15961 6.07313 2.47998C6.15754 3.12003 6.31409 3.74847 6.53979 4.35332C6.62949 4.59193 6.6489 4.85126 6.59573 5.10057C6.54256 5.34988 6.41903 5.57872 6.23979 5.75998L5.39313 6.60665C6.34216 8.27568 7.7241 9.65761 9.39313 10.6066L10.2398 9.75998C10.4211 9.58074 10.6499 9.45722 10.8992 9.40405C11.1485 9.35088 11.4078 9.37029 11.6465 9.45998C12.2513 9.68568 12.8797 9.84224 13.5198 9.92665C13.8436 9.97234 14.1394 10.1355 14.3508 10.385C14.5622 10.6345 14.6746 10.953 14.6665 11.28Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15927\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPhone, \"<FIGMA_ICONS_BASE>?node-id=4049:13584\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPhone size={size} /> });"
],
[
"IconSave",
"import { IconProps, Icon } from \"primitives\";\nexport const IconSave = (props: IconProps) => (\n <Icon {...props}><path d=\"M11.3333 14V8.66667H4.66667V14M4.66667 2V5.33333H10M12.6667 14H3.33333C2.97971 14 2.64057 13.8595 2.39052 13.6095C2.14048 13.3594 2 13.0203 2 12.6667V3.33333C2 2.97971 2.14048 2.64057 2.39052 2.39052C2.64057 2.14048 2.97971 2 3.33333 2H10.6667L14 5.33333V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconSave, \"<FIGMA_ICONS_BASE>?node-id=4049:13601\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconSave size={size} /> });"
],
[
"IconRotateCw",
"import { IconProps, Icon } from \"primitives\";\nexport const IconRotateCw = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15959)\"><path d=\"M15.3333 2.66659V6.66659M15.3333 6.66659H11.3333M15.3333 6.66659L12.2467 3.75993C11.3271 2.83975 10.1333 2.24339 8.84531 2.06069C7.55729 1.87799 6.24478 2.11887 5.10557 2.74702C3.96636 3.37517 3.06217 4.35656 2.52924 5.54331C1.99632 6.73005 1.86354 8.05786 2.15091 9.32663C2.43828 10.5954 3.13024 11.7364 4.1225 12.5777C5.11477 13.419 6.35359 13.915 7.65228 13.991C8.95097 14.067 10.2392 13.7188 11.3228 12.9989C12.4064 12.2791 13.2266 11.2265 13.66 9.99993\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15959\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconRotateCw, \"<FIGMA_ICONS_BASE>?node-id=4049:13600\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconRotateCw size={size} /> });"
],
[
"IconRotateCcw",
"import { IconProps, Icon } from \"primitives\";\nexport const IconRotateCcw = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15957)\"><path d=\"M0.666748 2.66655V6.66655M0.666748 6.66655H4.66675M0.666748 6.66655L3.76008 3.75988C4.68069 2.84083 5.87505 2.24586 7.1632 2.06463C8.45135 1.88339 9.76351 2.12571 10.902 2.75506C12.0404 3.38441 12.9435 4.36671 13.4752 5.55395C14.0068 6.74119 14.1382 8.06905 13.8496 9.33746C13.5609 10.6059 12.8679 11.7461 11.8748 12.5864C10.8818 13.4267 9.64258 13.9215 8.34389 13.9962C7.0452 14.0709 5.7574 13.7216 4.67452 13.0008C3.59164 12.28 2.77234 11.2268 2.34008 9.99988\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15957\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconRotateCcw, \"<FIGMA_ICONS_BASE>?node-id=4049:13597\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconRotateCcw size={size} /> });"
],
[
"IconRewind",
"import { IconProps, Icon } from \"primitives\";\nexport const IconRewind = (props: IconProps) => (\n <Icon {...props}><path d=\"M7.33325 12.6666L1.33325 7.99992L7.33325 3.33325V12.6666Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M14.6666 12.6666L8.66658 7.99992L14.6666 3.33325V12.6666Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconRewind, \"<FIGMA_ICONS_BASE>?node-id=4049:13598\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconRewind size={size} /> });"
],
[
"IconServer",
"import { IconProps, Icon } from \"primitives\";\nexport const IconServer = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15971)\"><path d=\"M4.00004 3.99992H4.00671M4.00004 11.9999H4.00671M2.66671 1.33325H13.3334C14.0698 1.33325 14.6667 1.93021 14.6667 2.66659V5.33325C14.6667 6.06963 14.0698 6.66659 13.3334 6.66659H2.66671C1.93033 6.66659 1.33337 6.06963 1.33337 5.33325V2.66659C1.33337 1.93021 1.93033 1.33325 2.66671 1.33325ZM2.66671 9.33325H13.3334C14.0698 9.33325 14.6667 9.93021 14.6667 10.6666V13.3333C14.6667 14.0696 14.0698 14.6666 13.3334 14.6666H2.66671C1.93033 14.6666 1.33337 14.0696 1.33337 13.3333V10.6666C1.33337 9.93021 1.93033 9.33325 2.66671 9.33325Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15971\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconServer, \"<FIGMA_ICONS_BASE>?node-id=4049:13605\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconServer size={size} /> });"
],
[
"IconSend",
"import { IconProps, Icon } from \"primitives\";\nexport const IconSend = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15969)\"><path d=\"M14.6667 1.33325L7.33337 8.66658M14.6667 1.33325L10 14.6666L7.33337 8.66658M14.6667 1.33325L1.33337 5.99992L7.33337 8.66658\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15969\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconSend, \"<FIGMA_ICONS_BASE>?node-id=4049:13603\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconSend size={size} /> });"
],
[
"IconSettings",
"import { IconProps, Icon } from \"primitives\";\nexport const IconSettings = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15973)\"><path d=\"M8.00008 10.0001C9.10465 10.0001 10.0001 9.10465 10.0001 8.00008C10.0001 6.89551 9.10465 6.00008 8.00008 6.00008C6.89551 6.00008 6.00008 6.89551 6.00008 8.00008C6.00008 9.10465 6.89551 10.0001 8.00008 10.0001Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.9334 10.0001C12.8447 10.2012 12.8182 10.4242 12.8574 10.6405C12.8966 10.8567 12.9997 11.0563 13.1534 11.2134L13.1934 11.2534C13.3174 11.3772 13.4157 11.5243 13.4828 11.6862C13.5499 11.848 13.5845 12.0215 13.5845 12.1967C13.5845 12.372 13.5499 12.5455 13.4828 12.7073C13.4157 12.8692 13.3174 13.0162 13.1934 13.1401C13.0696 13.264 12.9225 13.3624 12.7607 13.4295C12.5988 13.4966 12.4253 13.5311 12.2501 13.5311C12.0749 13.5311 11.9014 13.4966 11.7395 13.4295C11.5776 13.3624 11.4306 13.264 11.3067 13.1401L11.2667 13.1001C11.1096 12.9464 10.9101 12.8433 10.6938 12.8041C10.4775 12.7649 10.2545 12.7913 10.0534 12.8801C9.85623 12.9646 9.68807 13.1049 9.56962 13.2838C9.45117 13.4626 9.3876 13.6722 9.38675 13.8867V14.0001C9.38675 14.3537 9.24627 14.6928 8.99622 14.9429C8.74617 15.1929 8.40704 15.3334 8.05341 15.3334C7.69979 15.3334 7.36065 15.1929 7.11061 14.9429C6.86056 14.6928 6.72008 14.3537 6.72008 14.0001V13.9401C6.71492 13.7194 6.64349 13.5054 6.51509 13.3259C6.38668 13.1464 6.20724 13.0096 6.00008 12.9334C5.799 12.8447 5.57595 12.8182 5.35969 12.8574C5.14343 12.8966 4.94387 12.9997 4.78675 13.1534L4.74675 13.1934C4.62292 13.3174 4.47587 13.4157 4.314 13.4828C4.15214 13.5499 3.97864 13.5845 3.80341 13.5845C3.62819 13.5845 3.45469 13.5499 3.29283 13.4828C3.13096 13.4157 2.98391 13.3174 2.86008 13.1934C2.73611 13.0696 2.63777 12.9225 2.57067 12.7607C2.50357 12.5988 2.46903 12.4253 2.46903 12.2501C2.46903 12.0749 2.50357 11.9014 2.57067 11.7395C2.63777 11.5776 2.73611 11.4306 2.86008 11.3067L2.90008 11.2667C3.05377 11.1096 3.15687 10.9101 3.19608 10.6938C3.2353 10.4775 3.20882 10.2545 3.12008 10.0534C3.03557 9.85623 2.89525 9.68807 2.71639 9.56962C2.53753 9.45117 2.32794 9.3876 2.11341 9.38675H2.00008C1.64646 9.38675 1.30732 9.24627 1.05727 8.99622C0.807224 8.74617 0.666748 8.40704 0.666748 8.05341C0.666748 7.69979 0.807224 7.36065 1.05727 7.11061C1.30732 6.86056 1.64646 6.72008 2.00008 6.72008H2.06008C2.28074 6.71492 2.49475 6.64349 2.67428 6.51509C2.85381 6.38668 2.99056 6.20724 3.06675 6.00008C3.15549 5.799 3.18196 5.57595 3.14275 5.35969C3.10354 5.14343 3.00044 4.94387 2.84675 4.78675L2.80675 4.74675C2.68278 4.62292 2.58443 4.47587 2.51733 4.314C2.45024 4.15214 2.4157 3.97864 2.4157 3.80341C2.4157 3.62819 2.45024 3.45469 2.51733 3.29283C2.58443 3.13096 2.68278 2.98391 2.80675 2.86008C2.93058 2.73611 3.07763 2.63777 3.23949 2.57067C3.40136 2.50357 3.57486 2.46903 3.75008 2.46903C3.9253 2.46903 4.0988 2.50357 4.26067 2.57067C4.42253 2.63777 4.56958 2.73611 4.69341 2.86008L4.73341 2.90008C4.89053 3.05377 5.09009 3.15687 5.30635 3.19608C5.52262 3.2353 5.74567 3.20882 5.94675 3.12008H6.00008C6.19726 3.03557 6.36543 2.89525 6.48388 2.71639C6.60233 2.53753 6.66589 2.32794 6.66675 2.11341V2.00008C6.66675 1.64646 6.80722 1.30732 7.05727 1.05727C7.30732 0.807224 7.64646 0.666748 8.00008 0.666748C8.3537 0.666748 8.69284 0.807224 8.94289 1.05727C9.19294 1.30732 9.33341 1.64646 9.33341 2.00008V2.06008C9.33427 2.27461 9.39784 2.4842 9.51629 2.66306C9.63474 2.84192 9.8029 2.98224 10.0001 3.06675C10.2012 3.15549 10.4242 3.18196 10.6405 3.14275C10.8567 3.10354 11.0563 3.00044 11.2134 2.84675L11.2534 2.80675C11.3772 2.68278 11.5243 2.58443 11.6862 2.51733C11.848 2.45024 12.0215 2.4157 12.1967 2.4157C12.372 2.4157 12.5455 2.45024 12.7073 2.51733C12.8692 2.58443 13.0162 2.68278 13.1401 2.80675C13.264 2.93058 13.3624 3.07763 13.4295 3.23949C13.4966 3.40136 13.5311 3.57486 13.5311 3.75008C13.5311 3.9253 13.4966 4.0988 13.4295 4.26067C13.3624 4.42253 13.264 4.56958 13.1401 4.69341L13.1001 4.73341C12.9464 4.89053 12.8433 5.09009 12.8041 5.30635C12.7649 5.52262 12.7913 5.74567 12.8801 5.94675V6.00008C12.9646 6.19726 13.1049 6.36543 13.2838 6.48388C13.4626 6.60233 13.6722 6.66589 13.8867 6.66675H14.0001C14.3537 6.66675 14.6928 6.80722 14.9429 7.05727C15.1929 7.30732 15.3334 7.64646 15.3334 8.00008C15.3334 8.3537 15.1929 8.69284 14.9429 8.94289C14.6928 9.19294 14.3537 9.33341 14.0001 9.33341H13.9401C13.7256 9.33427 13.516 9.39784 13.3371 9.51629C13.1582 9.63474 13.0179 9.8029 12.9334 10.0001Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15973\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconSettings, \"<FIGMA_ICONS_BASE>?node-id=4049:13606\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconSettings size={size} /> });"
],
[
"IconScissors",
"import { IconProps, Icon } from \"primitives\";\nexport const IconScissors = (props: IconProps) => (\n <Icon {...props}><path d=\"M13.3333 2.66667L5.41333 10.5867M9.64667 9.65333L13.3333 13.3333M5.41333 5.41333L8 8M6 4C6 5.10457 5.10457 6 4 6C2.89543 6 2 5.10457 2 4C2 2.89543 2.89543 2 4 2C5.10457 2 6 2.89543 6 4ZM6 12C6 13.1046 5.10457 14 4 14C2.89543 14 2 13.1046 2 12C2 10.8954 2.89543 10 4 10C5.10457 10 6 10.8954 6 12Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconScissors, \"<FIGMA_ICONS_BASE>?node-id=4049:13602\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconScissors size={size} /> });"
],
[
"IconPrinter",
"import { IconProps, Icon } from \"primitives\";\nexport const IconPrinter = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15945)\"><path d=\"M4.00016 5.99992V1.33325H12.0002V5.99992M4.00016 11.9999H2.66683C2.31321 11.9999 1.97407 11.8594 1.72402 11.6094C1.47397 11.3593 1.3335 11.0202 1.3335 10.6666V7.33325C1.3335 6.97963 1.47397 6.64049 1.72402 6.39044C1.97407 6.14039 2.31321 5.99992 2.66683 5.99992H13.3335C13.6871 5.99992 14.0263 6.14039 14.2763 6.39044C14.5264 6.64049 14.6668 6.97963 14.6668 7.33325V10.6666C14.6668 11.0202 14.5264 11.3593 14.2763 11.6094C14.0263 11.8594 13.6871 11.9999 13.3335 11.9999H12.0002M4.00016 9.33325H12.0002V14.6666H4.00016V9.33325Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15945\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconPrinter, \"<FIGMA_ICONS_BASE>?node-id=4049:13591\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconPrinter size={size} /> });"
],
[
"IconShoppingCart",
"import { IconProps, Icon } from \"primitives\";\nexport const IconShoppingCart = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15985)\"><path d=\"M0.666687 0.666748H3.33335L5.12002 9.59342C5.18098 9.90035 5.34796 10.1761 5.59172 10.3723C5.83548 10.5685 6.14049 10.6727 6.45335 10.6667H12.9334C13.2462 10.6727 13.5512 10.5685 13.795 10.3723C14.0387 10.1761 14.2057 9.90035 14.2667 9.59342L15.3334 4.00008H4.00002M6.66669 14.0001C6.66669 14.3683 6.36821 14.6667 6.00002 14.6667C5.63183 14.6667 5.33335 14.3683 5.33335 14.0001C5.33335 13.6319 5.63183 13.3334 6.00002 13.3334C6.36821 13.3334 6.66669 13.6319 6.66669 14.0001ZM14 14.0001C14 14.3683 13.7015 14.6667 13.3334 14.6667C12.9652 14.6667 12.6667 14.3683 12.6667 14.0001C12.6667 13.6319 12.9652 13.3334 13.3334 13.3334C13.7015 13.3334 14 13.6319 14 14.0001Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15985\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconShoppingCart, \"<FIGMA_ICONS_BASE>?node-id=4049:13611\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconShoppingCart size={size} /> });"
],
[
"IconShuffle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconShuffle = (props: IconProps) => (\n <Icon {...props}><path d=\"M10.6666 2H14M14 2V5.33333M14 2L2.66663 13.3333M14 10.6667V14M14 14H10.6666M14 14L9.99996 10M2.66663 2.66667L5.99996 6\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconShuffle, \"<FIGMA_ICONS_BASE>?node-id=4049:13614\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconShuffle size={size} /> });"
],
[
"IconShare2",
"import { IconProps, Icon } from \"primitives\";\nexport const IconShare2 = (props: IconProps) => (\n <Icon {...props}><path d=\"M5.72667 9.00659L10.28 11.6599M10.2733 4.33992L5.72667 6.99325M14 3.33325C14 4.43782 13.1046 5.33325 12 5.33325C10.8954 5.33325 10 4.43782 10 3.33325C10 2.22868 10.8954 1.33325 12 1.33325C13.1046 1.33325 14 2.22868 14 3.33325ZM6 7.99992C6 9.10449 5.10457 9.99992 4 9.99992C2.89543 9.99992 2 9.10449 2 7.99992C2 6.89535 2.89543 5.99992 4 5.99992C5.10457 5.99992 6 6.89535 6 7.99992ZM14 12.6666C14 13.7712 13.1046 14.6666 12 14.6666C10.8954 14.6666 10 13.7712 10 12.6666C10 11.562 10.8954 10.6666 12 10.6666C13.1046 10.6666 14 11.562 14 12.6666Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconShare2, \"<FIGMA_ICONS_BASE>?node-id=4049:13608\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconShare2 size={size} /> });"
],
[
"IconSlash",
"import { IconProps, Icon } from \"primitives\";\nexport const IconSlash = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15997)\"><path d=\"M3.28683 3.28658L12.7135 12.7133M14.6668 7.99992C14.6668 11.6818 11.6821 14.6666 8.00016 14.6666C4.31826 14.6666 1.3335 11.6818 1.3335 7.99992C1.3335 4.31802 4.31826 1.33325 8.00016 1.33325C11.6821 1.33325 14.6668 4.31802 14.6668 7.99992Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15997\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconSlash, \"<FIGMA_ICONS_BASE>?node-id=4049:13617\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconSlash size={size} /> });"
],
[
"IconSkipForward",
"import { IconProps, Icon } from \"primitives\";\nexport const IconSkipForward = (props: IconProps) => (\n <Icon {...props}><path d=\"M12.6666 3.33341V12.6667M3.33325 2.66675L9.99992 8.00008L3.33325 13.3334V2.66675Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconSkipForward, \"<FIGMA_ICONS_BASE>?node-id=4049:13615\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconSkipForward size={size} /> });"
],
[
"IconArrowRight",
"import { IconProps, Icon } from \"primitives\";\nexport const IconArrowRight = (props: IconProps) => (\n <Icon {...props}><path d=\"M3.33331 7.99992H12.6666M12.6666 7.99992L7.99998 3.33325M12.6666 7.99992L7.99998 12.6666\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconArrowRight, \"<FIGMA_ICONS_BASE>?node-id=4039:13036\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconArrowRight size={size} /> });"
],
[
"IconChevronsRight",
"import { IconProps, Icon } from \"primitives\";\nexport const IconChevronsRight = (props: IconProps) => (\n <Icon {...props}><path d=\"M8.66667 11.3333L12 7.99996L8.66667 4.66663M4 11.3333L7.33333 7.99996L4 4.66663\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconChevronsRight, \"<FIGMA_ICONS_BASE>?node-id=4039:13170\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconChevronsRight size={size} /> });"
],
[
"IconCloudDrizzle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCloudDrizzle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15667)\"><path d=\"M5.33344 12.6667V14M5.33344 8.66668V10M10.6668 12.6667V14M10.6668 8.66668V10M8.0001 14V15.3333M8.0001 10V11.3333M13.3334 11.0533C14.0343 10.7464 14.6082 10.2077 14.9588 9.52771C15.3095 8.84769 15.4155 8.06775 15.2592 7.3188C15.1028 6.56985 14.6936 5.89749 14.1001 5.41457C13.5067 4.93165 12.7652 4.66758 12.0001 4.66668H11.1601C10.9488 3.84836 10.546 3.09198 9.98498 2.45988C9.42395 1.82778 8.72073 1.33806 7.93328 1.03109C7.14583 0.724123 6.29671 0.60869 5.45589 0.694308C4.61507 0.779926 3.80664 1.06414 3.09723 1.52353C2.38782 1.98293 1.79775 2.60433 1.37564 3.33654C0.953534 4.06875 0.711485 4.89079 0.669445 5.73491C0.627404 6.57903 0.786576 7.42106 1.13384 8.19158C1.4811 8.96211 2.00652 9.63907 2.66677 10.1667\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15667\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCloudDrizzle, \"<FIGMA_ICONS_BASE>?node-id=4039:13176\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCloudDrizzle size={size} /> });"
],
[
"IconAlignRight",
"import { IconProps, Icon } from \"primitives\";\nexport const IconAlignRight = (props: IconProps) => (\n <Icon {...props}><path d=\"M14 6.66667H4.66667M14 4H2M14 9.33333H2M14 12H4.66667\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconAlignRight, \"<FIGMA_ICONS_BASE>?node-id=4039:13026\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconAlignRight size={size} /> });"
],
[
"IconCloudLightning",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCloudLightning = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15669)\"><path d=\"M12.6667 11.2667C13.4768 11.1022 14.1969 10.6425 14.6872 9.97698C15.1774 9.31143 15.4029 8.48745 15.3198 7.665C15.2368 6.84255 14.8511 6.08031 14.2376 5.52625C13.6241 4.97218 12.8267 4.66583 12 4.66666H11.16C10.9392 3.81154 10.5094 3.02466 9.9093 2.37665C9.30921 1.72865 8.55759 1.23982 7.72192 0.954038C6.88625 0.66826 5.99269 0.594484 5.12146 0.739335C4.25023 0.884185 3.42862 1.24313 2.73037 1.78394C2.03213 2.32474 1.47912 3.03049 1.12099 3.8378C0.762865 4.64512 0.610831 5.52874 0.678539 6.40932C0.746248 7.28991 1.03158 8.1399 1.50892 8.88297C1.98626 9.62605 2.64066 10.239 3.41337 10.6667M8.6667 7.33333L6.00004 11.3333H10L7.33337 15.3333\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15669\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCloudLightning, \"<FIGMA_ICONS_BASE>?node-id=4039:13175\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCloudLightning size={size} /> });"
],
[
"IconChevronsLeft",
"import { IconProps, Icon } from \"primitives\";\nexport const IconChevronsLeft = (props: IconProps) => (\n <Icon {...props}><path d=\"M7.33333 11.3333L4 7.99996L7.33333 4.66663M12 11.3333L8.66667 7.99996L12 4.66663\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconChevronsLeft, \"<FIGMA_ICONS_BASE>?node-id=4039:13167\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconChevronsLeft size={size} /> });"
],
[
"IconArrowLeftCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconArrowLeftCircle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15583)\"><path d=\"M8.00016 5.33325L5.3335 7.99992M5.3335 7.99992L8.00016 10.6666M5.3335 7.99992H10.6668M14.6668 7.99992C14.6668 11.6818 11.6821 14.6666 8.00016 14.6666C4.31826 14.6666 1.3335 11.6818 1.3335 7.99992C1.3335 4.31802 4.31826 1.33325 8.00016 1.33325C11.6821 1.33325 14.6668 4.31802 14.6668 7.99992Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15583\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconArrowLeftCircle, \"<FIGMA_ICONS_BASE>?node-id=4039:13035\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconArrowLeftCircle size={size} /> });"
],
[
"IconCamera",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCamera = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15633)\"><path d=\"M15.3334 12.6667C15.3334 13.0203 15.1929 13.3594 14.9429 13.6095C14.6928 13.8595 14.3537 14 14.0001 14H2.00008C1.64646 14 1.30732 13.8595 1.05727 13.6095C0.807224 13.3594 0.666748 13.0203 0.666748 12.6667V5.33333C0.666748 4.97971 0.807224 4.64057 1.05727 4.39052C1.30732 4.14048 1.64646 4 2.00008 4H4.66675L6.00008 2H10.0001L11.3334 4H14.0001C14.3537 4 14.6928 4.14048 14.9429 4.39052C15.1929 4.64057 15.3334 4.97971 15.3334 5.33333V12.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.00008 11.3333C9.47284 11.3333 10.6667 10.1394 10.6667 8.66667C10.6667 7.19391 9.47284 6 8.00008 6C6.52732 6 5.33341 7.19391 5.33341 8.66667C5.33341 10.1394 6.52732 11.3333 8.00008 11.3333Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15633\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCamera, \"<FIGMA_ICONS_BASE>?node-id=4039:13058\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCamera size={size} /> });"
],
[
"IconBookOpen",
"import { IconProps, Icon } from \"primitives\";\nexport const IconBookOpen = (props: IconProps) => (\n <Icon {...props}><path d=\"M8.00016 4.66667C8.00016 3.95942 7.71921 3.28115 7.21911 2.78105C6.71902 2.28095 6.04074 2 5.3335 2H1.3335V12H6.00016C6.5306 12 7.0393 12.2107 7.41438 12.5858C7.78945 12.9609 8.00016 13.4696 8.00016 14M8.00016 4.66667V14M8.00016 4.66667C8.00016 3.95942 8.28111 3.28115 8.78121 2.78105C9.28131 2.28095 9.95959 2 10.6668 2H14.6668V12H10.0002C9.46973 12 8.96102 12.2107 8.58595 12.5858C8.21088 12.9609 8.00016 13.4696 8.00016 14\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconBookOpen, \"<FIGMA_ICONS_BASE>?node-id=4039:13053\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconBookOpen size={size} /> });"
],
[
"IconAlertCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconAlertCircle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15555)\"><path d=\"M8.00004 5.33325V7.99992M8.00004 10.6666H8.00671M14.6667 7.99992C14.6667 11.6818 11.6819 14.6666 8.00004 14.6666C4.31814 14.6666 1.33337 11.6818 1.33337 7.99992C1.33337 4.31802 4.31814 1.33325 8.00004 1.33325C11.6819 1.33325 14.6667 4.31802 14.6667 7.99992Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15555\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconAlertCircle, \"<FIGMA_ICONS_BASE>?node-id=4039:13020\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconAlertCircle size={size} /> });"
],
[
"IconCloudSnow",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCloudSnow = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15675)\"><path d=\"M13.3332 11.72C14.034 11.413 14.6079 10.8743 14.9586 10.1943C15.3092 9.51432 15.4153 8.73438 15.2589 7.98543C15.1026 7.23648 14.6933 6.56411 14.0999 6.08119C13.5065 5.59828 12.765 5.3342 11.9999 5.3333H11.1599C10.9485 4.51499 10.5458 3.7586 9.98473 3.1265C9.4237 2.49441 8.72048 2.00469 7.93304 1.69772C7.14559 1.39075 6.29646 1.27532 5.45565 1.36093C4.61483 1.44655 3.8064 1.73077 3.09699 2.19016C2.38758 2.64955 1.7975 3.27096 1.3754 4.00317C0.95329 4.73538 0.711241 5.55742 0.669201 6.40154C0.62716 7.24566 0.786332 8.08768 1.1336 8.85821C1.48086 9.62873 2.00627 10.3057 2.66653 10.8333M5.33319 10.6666H5.33986M5.33319 13.3333H5.33986M7.99986 12H8.00653M7.99986 14.6666H8.00653M10.6665 10.6666H10.6732M10.6665 13.3333H10.6732\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15675\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCloudSnow, \"<FIGMA_ICONS_BASE>?node-id=4039:13180\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCloudSnow size={size} /> });"
],
[
"IconBatteryCharging",
"import { IconProps, Icon } from \"primitives\";\nexport const IconBatteryCharging = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15607)\"><path d=\"M3.33335 12H2.00002C1.6464 12 1.30726 11.8595 1.05721 11.6095C0.807163 11.3594 0.666687 11.0203 0.666687 10.6667V5.33333C0.666687 4.97971 0.807163 4.64057 1.05721 4.39052C1.30726 4.14048 1.6464 4 2.00002 4H4.12669M10 4H11.3334C11.687 4 12.0261 4.14048 12.2762 4.39052C12.5262 4.64057 12.6667 4.97971 12.6667 5.33333V10.6667C12.6667 11.0203 12.5262 11.3594 12.2762 11.6095C12.0261 11.8595 11.687 12 11.3334 12H9.20669M15.3334 8.66667V7.33333M7.33335 4L4.66669 8H8.66669L6.00002 12\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15607\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconBatteryCharging, \"<FIGMA_ICONS_BASE>?node-id=4039:13046\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconBatteryCharging size={size} /> });"
],
[
"IconArrowDownLeft",
"import { IconProps, Icon } from \"primitives\";\nexport const IconArrowDownLeft = (props: IconProps) => (\n <Icon {...props}><path d=\"M11.3334 4.66675L4.66675 11.3334M4.66675 11.3334H11.3334M4.66675 11.3334V4.66675\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconArrowDownLeft, \"<FIGMA_ICONS_BASE>?node-id=4039:13030\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconArrowDownLeft size={size} /> });"
],
[
"IconArchive",
"import { IconProps, Icon } from \"primitives\";\nexport const IconArchive = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15573)\"><path d=\"M14 5.33333V14H1.99996V5.33333M6.66663 8H9.33329M0.666626 2H15.3333V5.33333H0.666626V2Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15573\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconArchive, \"<FIGMA_ICONS_BASE>?node-id=4039:13028\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconArchive size={size} /> });"
],
[
"IconArrowRightCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconArrowRightCircle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15587)\"><path d=\"M8.00001 10.6666L10.6667 7.99992M10.6667 7.99992L8.00001 5.33325M10.6667 7.99992H5.33334M14.6667 7.99992C14.6667 11.6818 11.6819 14.6666 8.00001 14.6666C4.31811 14.6666 1.33334 11.6818 1.33334 7.99992C1.33334 4.31802 4.31811 1.33325 8.00001 1.33325C11.6819 1.33325 14.6667 4.31802 14.6667 7.99992Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15587\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconArrowRightCircle, \"<FIGMA_ICONS_BASE>?node-id=4039:13037\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconArrowRightCircle size={size} /> });"
],
[
"IconBluetooth",
"import { IconProps, Icon } from \"primitives\";\nexport const IconBluetooth = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15615)\"><path d=\"M4.33325 4.33341L11.6666 11.6667L7.99992 15.3334V0.666748L11.6666 4.33341L4.33325 11.6667\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15615\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconBluetooth, \"<FIGMA_ICONS_BASE>?node-id=4039:13051\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconBluetooth size={size} /> });"
],
[
"IconCode",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCode = (props: IconProps) => (\n <Icon {...props}><path d=\"M10.6666 12L14.6666 8L10.6666 4M5.33331 4L1.33331 8L5.33331 12\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCode, \"<FIGMA_ICONS_BASE>?node-id=4039:13182\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCode size={size} /> });"
],
[
"IconCodesandbox",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCodesandbox = (props: IconProps) => (\n <Icon {...props}><path d=\"M5 2.80668L8 4.54002L11 2.80668M5 13.1934V9.73335L2 8.00002M14 8.00002L11 9.73335V13.1934M2.18 4.64002L8 8.00668L13.82 4.64002M8 14.72V8.00002M14 10.6667V5.33335C13.9998 5.09953 13.938 4.86989 13.821 4.66746C13.704 4.46503 13.5358 4.29692 13.3333 4.18002L8.66667 1.51335C8.46397 1.39633 8.23405 1.33472 8 1.33472C7.76595 1.33472 7.53603 1.39633 7.33333 1.51335L2.66667 4.18002C2.46417 4.29692 2.29599 4.46503 2.17897 4.66746C2.06196 4.86989 2.00024 5.09953 2 5.33335V10.6667C2.00024 10.9005 2.06196 11.1301 2.17897 11.3326C2.29599 11.535 2.46417 11.7031 2.66667 11.82L7.33333 14.4867C7.53603 14.6037 7.76595 14.6653 8 14.6653C8.23405 14.6653 8.46397 14.6037 8.66667 14.4867L13.3333 11.82C13.5358 11.7031 13.704 11.535 13.821 11.3326C13.938 11.1301 13.9998 10.9005 14 10.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCodesandbox, \"<FIGMA_ICONS_BASE>?node-id=4039:13184\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCodesandbox size={size} /> });"
],
[
"IconCloudRain",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCloudRain = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15673)\"><path d=\"M10.6665 8.66668V14M5.33319 8.66668V14M7.99986 10V15.3333M13.3332 11.0533C14.034 10.7464 14.6079 10.2077 14.9586 9.52771C15.3092 8.84769 15.4153 8.06775 15.2589 7.3188C15.1026 6.56985 14.6933 5.89749 14.0999 5.41457C13.5065 4.93165 12.765 4.66758 11.9999 4.66668H11.1599C10.9485 3.84836 10.5458 3.09198 9.98473 2.45988C9.4237 1.82778 8.72048 1.33806 7.93304 1.03109C7.14559 0.724123 6.29646 0.60869 5.45565 0.694308C4.61483 0.779926 3.8064 1.06414 3.09699 1.52353C2.38758 1.98293 1.7975 2.60433 1.3754 3.33654C0.95329 4.06875 0.711241 4.89079 0.669201 5.73491C0.62716 6.57903 0.786332 7.42106 1.1336 8.19158C1.48086 8.96211 2.00627 9.63907 2.66653 10.1667\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15673\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCloudRain, \"<FIGMA_ICONS_BASE>?node-id=4039:13177\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCloudRain size={size} /> });"
],
[
"IconCreditCard",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCreditCard = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15713)\"><path d=\"M0.666656 6.66669H15.3333M1.99999 2.66669H14C14.7364 2.66669 15.3333 3.26364 15.3333 4.00002V12C15.3333 12.7364 14.7364 13.3334 14 13.3334H1.99999C1.26361 13.3334 0.666656 12.7364 0.666656 12V4.00002C0.666656 3.26364 1.26361 2.66669 1.99999 2.66669Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15713\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCreditCard, \"<FIGMA_ICONS_BASE>?node-id=4039:13474\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCreditCard size={size} /> });"
],
[
"IconChevronRight",
"import { IconProps, Icon } from \"primitives\";\nexport const IconChevronRight = (props: IconProps) => (\n <Icon {...props}><path d=\"M6 12L10 8L6 4\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconChevronRight, \"<FIGMA_ICONS_BASE>?node-id=4039:13165\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconChevronRight size={size} /> });"
],
[
"IconCheckSquare",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCheckSquare = (props: IconProps) => (\n <Icon {...props}><path d=\"M6 7.33333L8 9.33333L14.6667 2.66667M14 8V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H3.33333C2.97971 14 2.64057 13.8595 2.39052 13.6095C2.14048 13.3594 2 13.0203 2 12.6667V3.33333C2 2.97971 2.14048 2.64057 2.39052 2.39052C2.64057 2.14048 2.97971 2 3.33333 2H10.6667\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCheckSquare, \"<FIGMA_ICONS_BASE>?node-id=4039:13062\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCheckSquare size={size} /> });"
],
[
"IconCoffee",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCoffee = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15685)\"><path d=\"M11.9999 5.33329H12.6666C13.3738 5.33329 14.0521 5.61424 14.5522 6.11434C15.0523 6.61444 15.3333 7.29272 15.3333 7.99996C15.3333 8.7072 15.0523 9.38548 14.5522 9.88558C14.0521 10.3857 13.3738 10.6666 12.6666 10.6666H11.9999M11.9999 5.33329H1.33325V11.3333C1.33325 12.0405 1.6142 12.7188 2.1143 13.2189C2.6144 13.719 3.29267 14 3.99992 14H9.33325C10.0405 14 10.7188 13.719 11.2189 13.2189C11.719 12.7188 11.9999 12.0405 11.9999 11.3333V5.33329ZM3.99992 0.666626V2.66663M6.66658 0.666626V2.66663M9.33325 0.666626V2.66663\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15685\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCoffee, \"<FIGMA_ICONS_BASE>?node-id=4039:13183\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCoffee size={size} /> });"
],
[
"IconArrowDown",
"import { IconProps, Icon } from \"primitives\";\nexport const IconArrowDown = (props: IconProps) => (\n <Icon {...props}><path d=\"M7.99992 3.33325V12.6666M7.99992 12.6666L12.6666 7.99992M7.99992 12.6666L3.33325 7.99992\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconArrowDown, \"<FIGMA_ICONS_BASE>?node-id=4039:13032\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconArrowDown size={size} /> });"
],
[
"IconCornerDownLeft",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCornerDownLeft = (props: IconProps) => (\n <Icon {...props}><path d=\"M5.99999 6.66669L2.66666 10M2.66666 10L5.99999 13.3334M2.66666 10H10.6667C11.3739 10 12.0522 9.71907 12.5523 9.21897C13.0524 8.71887 13.3333 8.0406 13.3333 7.33335V2.66669\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCornerDownLeft, \"<FIGMA_ICONS_BASE>?node-id=4039:13467\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCornerDownLeft size={size} /> });"
],
[
"IconCrop",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCrop = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15715)\"><path d=\"M4.08669 0.666687L4.00002 10.6667C4.00002 11.0203 4.1405 11.3594 4.39054 11.6095C4.64059 11.8595 4.97973 12 5.33335 12H15.3334M0.666687 4.08669L10.6667 4.00002C11.0203 4.00002 11.3594 4.1405 11.6095 4.39054C11.8595 4.64059 12 4.97973 12 5.33335V15.3334\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15715\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCrop, \"<FIGMA_ICONS_BASE>?node-id=4049:13477\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCrop size={size} /> });"
],
[
"IconDelete",
"import { IconProps, Icon } from \"primitives\";\nexport const IconDelete = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15721)\"><path d=\"M12.0001 6.00002L8.00008 10M8.00008 6.00002L12.0001 10M14.0001 2.66669H5.33341L0.666748 8.00002L5.33341 13.3334H14.0001C14.3537 13.3334 14.6928 13.1929 14.9429 12.9428C15.1929 12.6928 15.3334 12.3536 15.3334 12V4.00002C15.3334 3.6464 15.1929 3.30726 14.9429 3.05721C14.6928 2.80716 14.3537 2.66669 14.0001 2.66669Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15721\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconDelete, \"<FIGMA_ICONS_BASE>?node-id=4049:13479\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconDelete size={size} /> });"
],
[
"IconAtSign",
"import { IconProps, Icon } from \"primitives\";\nexport const IconAtSign = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15599)\"><path d=\"M10.6666 5.33333V8.66666C10.6666 9.19709 10.8773 9.7058 11.2524 10.0809C11.6275 10.4559 12.1362 10.6667 12.6666 10.6667C13.197 10.6667 13.7057 10.4559 14.0808 10.0809C14.4559 9.7058 14.6666 9.19709 14.6666 8.66666V7.99999C14.6665 6.49535 14.1574 5.03498 13.2221 3.85635C12.2868 2.67772 10.9803 1.85014 9.51502 1.50819C8.04974 1.16624 6.51188 1.33002 5.15149 1.9729C3.7911 2.61579 2.68819 3.69996 2.0221 5.04914C1.356 6.39832 1.1659 7.93315 1.4827 9.40407C1.7995 10.875 2.60458 12.1955 3.76701 13.1508C4.92945 14.1062 6.38088 14.6402 7.8853 14.6661C9.38973 14.692 10.8587 14.2082 12.0533 13.2933M10.6666 7.99999C10.6666 9.47275 9.47269 10.6667 7.99993 10.6667C6.52717 10.6667 5.33326 9.47275 5.33326 7.99999C5.33326 6.52723 6.52717 5.33333 7.99993 5.33333C9.47269 5.33333 10.6666 6.52723 10.6666 7.99999Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15599\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconAtSign, \"<FIGMA_ICONS_BASE>?node-id=4039:13043\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconAtSign size={size} /> });"
],
[
"IconCpu",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCpu = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15711)\"><path d=\"M5.99984 0.666687V2.66669M9.99984 0.666687V2.66669M5.99984 13.3334V15.3334M9.99984 13.3334V15.3334M13.3332 6.00002H15.3332M13.3332 9.33335H15.3332M0.666504 6.00002H2.6665M0.666504 9.33335H2.6665M3.99984 2.66669H11.9998C12.7362 2.66669 13.3332 3.26364 13.3332 4.00002V12C13.3332 12.7364 12.7362 13.3334 11.9998 13.3334H3.99984C3.26346 13.3334 2.6665 12.7364 2.6665 12V4.00002C2.6665 3.26364 3.26346 2.66669 3.99984 2.66669ZM5.99984 6.00002H9.99984V10H5.99984V6.00002Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15711\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCpu, \"<FIGMA_ICONS_BASE>?node-id=4039:13475\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCpu size={size} /> });"
],
[
"IconAlertOctagon",
"import { IconProps, Icon } from \"primitives\";\nexport const IconAlertOctagon = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15557)\"><path d=\"M8.00004 5.33325V7.99992M8.00004 10.6666H8.00671M5.24004 1.33325H10.76L14.6667 5.23992V10.7599L10.76 14.6666H5.24004L1.33337 10.7599V5.23992L5.24004 1.33325Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15557\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconAlertOctagon, \"<FIGMA_ICONS_BASE>?node-id=4039:13021\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconAlertOctagon size={size} /> });"
],
[
"IconChevronsUp",
"import { IconProps, Icon } from \"primitives\";\nexport const IconChevronsUp = (props: IconProps) => (\n <Icon {...props}><path d=\"M11.3332 7.33333L7.99984 4L4.6665 7.33333M11.3332 12L7.99984 8.66667L4.6665 12\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconChevronsUp, \"<FIGMA_ICONS_BASE>?node-id=4039:13169\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconChevronsUp size={size} /> });"
],
[
"IconCloudOff",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCloudOff = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15671)\"><path d=\"M15.0734 11.3C15.2882 10.7928 15.374 10.2404 15.3231 9.69199C15.2722 9.14361 15.0863 8.61637 14.7818 8.15742C14.4774 7.69846 14.064 7.32209 13.5786 7.06194C13.0931 6.80179 12.5508 6.66597 12.0001 6.66663H11.1601C10.8879 5.59495 10.2895 4.63435 9.44743 3.91773C8.60541 3.20111 7.56147 2.76391 6.46008 2.66663M3.33341 3.33329C2.29213 3.90905 1.47328 4.81648 1.00713 5.91123C0.540987 7.00598 0.454311 8.22517 0.760893 9.37485C1.06748 10.5245 1.74971 11.5387 2.69906 12.256C3.64842 12.9732 4.81037 13.3525 6.00008 13.3333H12.0001C12.3866 13.3328 12.7701 13.2652 13.1334 13.1333M0.666742 0.666626L15.3334 15.3333\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15671\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCloudOff, \"<FIGMA_ICONS_BASE>?node-id=4039:13178\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCloudOff size={size} /> });"
],
[
"IconArrowLeft",
"import { IconProps, Icon } from \"primitives\";\nexport const IconArrowLeft = (props: IconProps) => (\n <Icon {...props}><path d=\"M12.6668 7.99992H3.3335M3.3335 7.99992L8.00016 12.6666M3.3335 7.99992L8.00016 3.33325\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconArrowLeft, \"<FIGMA_ICONS_BASE>?node-id=4039:13034\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconArrowLeft size={size} /> });"
],
[
"IconCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCircle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15661)\"><path d=\"M7.99998 14.6667C11.6819 14.6667 14.6666 11.6819 14.6666 8.00004C14.6666 4.31814 11.6819 1.33337 7.99998 1.33337C4.31808 1.33337 1.33331 4.31814 1.33331 8.00004C1.33331 11.6819 4.31808 14.6667 7.99998 14.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15661\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCircle, \"<FIGMA_ICONS_BASE>?node-id=4039:13171\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCircle size={size} /> });"
],
[
"IconClock",
"import { IconProps, Icon } from \"primitives\";\nexport const IconClock = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15665)\"><path d=\"M8.00004 4.00004V8.00004L10.6667 9.33337M14.6667 8.00004C14.6667 11.6819 11.6819 14.6667 8.00004 14.6667C4.31814 14.6667 1.33337 11.6819 1.33337 8.00004C1.33337 4.31814 4.31814 1.33337 8.00004 1.33337C11.6819 1.33337 14.6667 4.31814 14.6667 8.00004Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15665\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconClock, \"<FIGMA_ICONS_BASE>?node-id=4039:13173\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconClock size={size} /> });"
],
[
"IconDivideSquare",
"import { IconProps, Icon } from \"primitives\";\nexport const IconDivideSquare = (props: IconProps) => (\n <Icon {...props}><path d=\"M5.33333 8H10.6667M3.33333 2H12.6667C13.403 2 14 2.59695 14 3.33333V12.6667C14 13.403 13.403 14 12.6667 14H3.33333C2.59695 14 2 13.403 2 12.6667V3.33333C2 2.59695 2.59695 2 3.33333 2ZM8.66667 10.6667C8.66667 11.0349 8.36819 11.3333 8 11.3333C7.63181 11.3333 7.33333 11.0349 7.33333 10.6667C7.33333 10.2985 7.63181 10 8 10C8.36819 10 8.66667 10.2985 8.66667 10.6667ZM8.66667 5.33333C8.66667 5.70152 8.36819 6 8 6C7.63181 6 7.33333 5.70152 7.33333 5.33333C7.33333 4.96514 7.63181 4.66667 8 4.66667C8.36819 4.66667 8.66667 4.96514 8.66667 5.33333Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconDivideSquare, \"<FIGMA_ICONS_BASE>?node-id=4049:13483\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconDivideSquare size={size} /> });"
],
[
"IconCornerLeftUp",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCornerLeftUp = (props: IconProps) => (\n <Icon {...props}><path d=\"M9.33329 6.00002L5.99996 2.66669M5.99996 2.66669L2.66663 6.00002M5.99996 2.66669V10.6667C5.99996 11.3739 6.28091 12.0522 6.78101 12.5523C7.2811 13.0524 7.95938 13.3334 8.66663 13.3334H13.3333\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCornerLeftUp, \"<FIGMA_ICONS_BASE>?node-id=4039:13468\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCornerLeftUp size={size} /> });"
],
[
"IconAperture",
"import { IconProps, Icon } from \"primitives\";\nexport const IconAperture = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15571)\"><path d=\"M9.53998 5.33325L13.3666 11.9599M6.45998 5.33325H14.1133M4.91998 7.99992L8.74665 1.37325M6.45998 10.6666L2.63331 4.03992M9.53998 10.6666H1.88665M11.08 7.99992L7.25331 14.6266M14.6666 7.99992C14.6666 11.6818 11.6819 14.6666 7.99998 14.6666C4.31808 14.6666 1.33331 11.6818 1.33331 7.99992C1.33331 4.31802 4.31808 1.33325 7.99998 1.33325C11.6819 1.33325 14.6666 4.31802 14.6666 7.99992Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15571\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconAperture, \"<FIGMA_ICONS_BASE>?node-id=4039:13029\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconAperture size={size} /> });"
],
[
"IconArrowDownRight",
"import { IconProps, Icon } from \"primitives\";\nexport const IconArrowDownRight = (props: IconProps) => (\n <Icon {...props}><path d=\"M4.66675 4.66675L11.3334 11.3334M11.3334 11.3334V4.66675M11.3334 11.3334H4.66675\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconArrowDownRight, \"<FIGMA_ICONS_BASE>?node-id=4039:13033\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconArrowDownRight size={size} /> });"
],
[
"IconDownloadCloud",
"import { IconProps, Icon } from \"primitives\";\nexport const IconDownloadCloud = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15733)\"><path d=\"M5.33335 11.3333L8.00002 14M8.00002 14L10.6667 11.3333M8.00002 14V7.99999M13.92 12.06C14.4996 11.6524 14.9343 11.0708 15.1609 10.3994C15.3875 9.72808 15.3943 9.002 15.1803 8.32654C14.9663 7.65107 14.5426 7.06138 13.9707 6.64303C13.3989 6.22467 12.7086 5.99943 12 5.99999H11.16C10.9595 5.21857 10.5843 4.49282 10.0628 3.87737C9.54118 3.26193 8.88678 2.77283 8.14882 2.44689C7.41086 2.12095 6.60858 1.96667 5.80237 1.99566C4.99616 2.02466 4.20702 2.23617 3.49438 2.61427C2.78175 2.99237 2.16417 3.52722 1.68814 4.17854C1.21212 4.82986 0.890051 5.58068 0.74619 6.37449C0.60233 7.16829 0.640423 7.98438 0.857603 8.76133C1.07478 9.53828 1.46539 10.2558 2.00002 10.86\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15733\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconDownloadCloud, \"<FIGMA_ICONS_BASE>?node-id=4049:13484\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconDownloadCloud size={size} /> });"
],
[
"IconCodepen",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCodepen = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15681)\"><path d=\"M8.00004 1.33337L14.6667 5.66671M8.00004 1.33337L1.33337 5.66671M8.00004 1.33337V5.66671M14.6667 5.66671V10.3334M14.6667 5.66671L8.00004 10.3334M14.6667 10.3334L8.00004 14.6667M14.6667 10.3334L8.00004 5.66671M8.00004 14.6667L1.33337 10.3334M8.00004 14.6667V10.3334M1.33337 10.3334V5.66671M1.33337 10.3334L8.00004 5.66671M1.33337 5.66671L8.00004 10.3334\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15681\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCodepen, \"<FIGMA_ICONS_BASE>?node-id=4039:13181\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCodepen size={size} /> });"
],
[
"IconCalendar",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCalendar = (props: IconProps) => (\n <Icon {...props}><path d=\"M10.6667 1.33337V4.00004M5.33333 1.33337V4.00004M2 6.66671H14M3.33333 2.66671H12.6667C13.403 2.66671 14 3.26366 14 4.00004V13.3334C14 14.0698 13.403 14.6667 12.6667 14.6667H3.33333C2.59695 14.6667 2 14.0698 2 13.3334V4.00004C2 3.26366 2.59695 2.66671 3.33333 2.66671Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCalendar, \"<FIGMA_ICONS_BASE>?node-id=4039:13056\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCalendar size={size} /> });"
],
[
"IconArrowUpCircle",
"import { IconProps, Icon } from \"primitives\";\nexport const IconArrowUpCircle = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15591)\"><path d=\"M10.6667 7.99992L8.00004 5.33325M8.00004 5.33325L5.33337 7.99992M8.00004 5.33325V10.6666M14.6667 7.99992C14.6667 11.6818 11.6819 14.6666 8.00004 14.6666C4.31814 14.6666 1.33337 11.6818 1.33337 7.99992C1.33337 4.31802 4.31814 1.33325 8.00004 1.33325C11.6819 1.33325 14.6667 4.31802 14.6667 7.99992Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15591\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconArrowUpCircle, \"<FIGMA_ICONS_BASE>?node-id=4039:13038\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconArrowUpCircle size={size} /> });"
],
[
"IconBellOff",
"import { IconProps, Icon } from \"primitives\";\nexport const IconBellOff = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15611)\"><path d=\"M9.15329 14.0001C9.03609 14.2021 8.86785 14.3698 8.66544 14.4864C8.46303 14.603 8.23355 14.6644 7.99996 14.6644C7.76637 14.6644 7.53689 14.603 7.33448 14.4864C7.13206 14.3698 6.96383 14.2021 6.84663 14.0001M12.42 8.66675C12.1234 7.58102 11.982 6.45878 12 5.33341C12.001 4.60879 11.8052 3.89748 11.4335 3.27548C11.0618 2.65347 10.5281 2.14412 9.88937 1.80184C9.25068 1.45956 8.53101 1.29721 7.80723 1.33213C7.08344 1.36704 6.38274 1.59791 5.77996 2.00008M4.17329 4.17342C4.05747 4.54916 3.99903 4.94023 3.99996 5.33341C3.99996 10.0001 1.99996 11.3334 1.99996 11.3334H11.3333M0.666626 0.666748L15.3333 15.3334\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15611\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconBellOff, \"<FIGMA_ICONS_BASE>?node-id=4039:13049\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconBellOff size={size} /> });"
],
[
"IconBox",
"import { IconProps, Icon } from \"primitives\";\nexport const IconBox = (props: IconProps) => (\n <Icon {...props}><path d=\"M2.18 4.64002L8 8.00668L13.82 4.64002M8 14.72V8.00002M14 10.6667V5.33335C13.9998 5.09953 13.938 4.86989 13.821 4.66746C13.704 4.46503 13.5358 4.29692 13.3333 4.18002L8.66667 1.51335C8.46397 1.39633 8.23405 1.33472 8 1.33472C7.76595 1.33472 7.53603 1.39633 7.33333 1.51335L2.66667 4.18002C2.46417 4.29692 2.29599 4.46503 2.17897 4.66746C2.06196 4.86989 2.00024 5.09953 2 5.33335V10.6667C2.00024 10.9005 2.06196 11.1301 2.17897 11.3326C2.29599 11.535 2.46417 11.7031 2.66667 11.82L7.33333 14.4867C7.53603 14.6037 7.76595 14.6653 8 14.6653C8.23405 14.6653 8.46397 14.6037 8.66667 14.4867L13.3333 11.82C13.5358 11.7031 13.704 11.535 13.821 11.3326C13.938 11.1301 13.9998 10.9005 14 10.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconBox, \"<FIGMA_ICONS_BASE>?node-id=4039:13054\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconBox size={size} /> });"
],
[
"IconEdit2",
"import { IconProps, Icon } from \"primitives\";\nexport const IconEdit2 = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15741)\"><path d=\"M11.3333 2.00001C11.5083 1.82491 11.7162 1.68602 11.945 1.59126C12.1738 1.4965 12.419 1.44772 12.6666 1.44772C12.9142 1.44772 13.1594 1.4965 13.3882 1.59126C13.617 1.68602 13.8248 1.82491 13.9999 2.00001C14.175 2.1751 14.3139 2.38297 14.4087 2.61175C14.5034 2.84052 14.5522 3.08572 14.5522 3.33334C14.5522 3.58096 14.5034 3.82616 14.4087 4.05494C14.3139 4.28371 14.175 4.49158 13.9999 4.66667L4.99992 13.6667L1.33325 14.6667L2.33325 11L11.3333 2.00001Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15741\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconEdit2, \"<FIGMA_ICONS_BASE>?node-id=4049:13489\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconEdit2 size={size} /> });"
],
[
"IconAlignLeft",
"import { IconProps, Icon } from \"primitives\";\nexport const IconAlignLeft = (props: IconProps) => (\n <Icon {...props}><path d=\"M11.3333 6.66667H2M14 4H2M14 9.33333H2M11.3333 12H2\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconAlignLeft, \"<FIGMA_ICONS_BASE>?node-id=4039:13024\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconAlignLeft size={size} /> });"
],
[
"IconColumns",
"import { IconProps, Icon } from \"primitives\";\nexport const IconColumns = (props: IconProps) => (\n <Icon {...props}><path d=\"M8 2H12.6667C13.0203 2 13.3594 2.14048 13.6095 2.39052C13.8595 2.64057 14 2.97971 14 3.33333V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H8M8 2H3.33333C2.97971 2 2.64057 2.14048 2.39052 2.39052C2.14048 2.64057 2 2.97971 2 3.33333V12.6667C2 13.0203 2.14048 13.3594 2.39052 13.6095C2.64057 13.8595 2.97971 14 3.33333 14H8M8 2V14\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconColumns, \"<FIGMA_ICONS_BASE>?node-id=4039:13185\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconColumns size={size} /> });"
],
[
"IconClipboard",
"import { IconProps, Icon } from \"primitives\";\nexport const IconClipboard = (props: IconProps) => (\n <Icon {...props}><path d=\"M10.6666 2.66671H12C12.3536 2.66671 12.6927 2.80718 12.9428 3.05723C13.1928 3.30728 13.3333 3.64642 13.3333 4.00004V13.3334C13.3333 13.687 13.1928 14.0261 12.9428 14.2762C12.6927 14.5262 12.3536 14.6667 12 14.6667H3.99996C3.64634 14.6667 3.3072 14.5262 3.05715 14.2762C2.8071 14.0261 2.66663 13.687 2.66663 13.3334V4.00004C2.66663 3.64642 2.8071 3.30728 3.05715 3.05723C3.3072 2.80718 3.64634 2.66671 3.99996 2.66671H5.33329M5.99996 1.33337H9.99996C10.3681 1.33337 10.6666 1.63185 10.6666 2.00004V3.33337C10.6666 3.70156 10.3681 4.00004 9.99996 4.00004H5.99996C5.63177 4.00004 5.33329 3.70156 5.33329 3.33337V2.00004C5.33329 1.63185 5.63177 1.33337 5.99996 1.33337Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconClipboard, \"<FIGMA_ICONS_BASE>?node-id=4039:13174\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconClipboard size={size} /> });"
],
[
"IconBriefcase",
"import { IconProps, Icon } from \"primitives\";\nexport const IconBriefcase = (props: IconProps) => (\n <Icon {...props}><path d=\"M10.6667 14V3.33333C10.6667 2.97971 10.5262 2.64057 10.2762 2.39052C10.0261 2.14048 9.687 2 9.33337 2H6.66671C6.31309 2 5.97395 2.14048 5.7239 2.39052C5.47385 2.64057 5.33337 2.97971 5.33337 3.33333V14M2.66671 4.66667H13.3334C14.0698 4.66667 14.6667 5.26362 14.6667 6V12.6667C14.6667 13.403 14.0698 14 13.3334 14H2.66671C1.93033 14 1.33337 13.403 1.33337 12.6667V6C1.33337 5.26362 1.93033 4.66667 2.66671 4.66667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconBriefcase, \"<FIGMA_ICONS_BASE>?node-id=4039:13057\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconBriefcase size={size} /> });"
],
[
"IconBook",
"import { IconProps, Icon } from \"primitives\";\nexport const IconBook = (props: IconProps) => (\n <Icon {...props}><path d=\"M2.6665 12.9999C2.6665 12.5579 2.8421 12.134 3.15466 11.8214C3.46722 11.5088 3.89114 11.3333 4.33317 11.3333H13.3332M2.6665 12.9999C2.6665 13.4419 2.8421 13.8659 3.15466 14.1784C3.46722 14.491 3.89114 14.6666 4.33317 14.6666H13.3332V1.33325H4.33317C3.89114 1.33325 3.46722 1.50885 3.15466 1.82141C2.8421 2.13397 2.6665 2.55789 2.6665 2.99992V12.9999Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconBook, \"<FIGMA_ICONS_BASE>?node-id=4039:13052\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconBook size={size} /> });"
],
[
"IconFileText",
"import { IconProps, Icon } from \"primitives\";\nexport const IconFileText = (props: IconProps) => (\n <Icon {...props}><path d=\"M9.33317 1.33333H3.99984C3.64622 1.33333 3.30708 1.4738 3.05703 1.72385C2.80698 1.9739 2.6665 2.31304 2.6665 2.66666V13.3333C2.6665 13.687 2.80698 14.0261 3.05703 14.2761C3.30708 14.5262 3.64622 14.6667 3.99984 14.6667H11.9998C12.3535 14.6667 12.6926 14.5262 12.9426 14.2761C13.1927 14.0261 13.3332 13.687 13.3332 13.3333V5.33333M9.33317 1.33333L13.3332 5.33333M9.33317 1.33333L9.33317 5.33333H13.3332M10.6665 8.66666H5.33317M10.6665 11.3333H5.33317M6.6665 5.99999H5.33317\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconFileText, \"<FIGMA_ICONS_BASE>?node-id=4049:13500\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconFileText size={size} /> });"
],
[
"IconCompass",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCompass = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15691)\"><path d=\"M8.00016 14.6667C11.6821 14.6667 14.6668 11.6819 14.6668 8.00004C14.6668 4.31814 11.6821 1.33337 8.00016 1.33337C4.31826 1.33337 1.3335 4.31814 1.3335 8.00004C1.3335 11.6819 4.31826 14.6667 8.00016 14.6667Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.8268 5.17337L9.4135 9.41337L5.1735 10.8267L6.58683 6.58671L10.8268 5.17337Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15691\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCompass, \"<FIGMA_ICONS_BASE>?node-id=4039:13465\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCompass size={size} /> });"
],
[
"IconCornerRightDown",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCornerRightDown = (props: IconProps) => (\n <Icon {...props}><path d=\"M6.66675 10L10.0001 13.3334M10.0001 13.3334L13.3334 10M10.0001 13.3334V5.33335C10.0001 4.62611 9.71913 3.94783 9.21903 3.44774C8.71893 2.94764 8.04066 2.66669 7.33341 2.66669H2.66675\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCornerRightDown, \"<FIGMA_ICONS_BASE>?node-id=4039:13471\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCornerRightDown size={size} /> });"
],
[
"IconChevronLeft",
"import { IconProps, Icon } from \"primitives\";\nexport const IconChevronLeft = (props: IconProps) => (\n <Icon {...props}><path d=\"M10 12L6 8L10 4\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconChevronLeft, \"<FIGMA_ICONS_BASE>?node-id=4039:13064\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconChevronLeft size={size} /> });"
],
[
"IconArrowUp",
"import { IconProps, Icon } from \"primitives\";\nexport const IconArrowUp = (props: IconProps) => (\n <Icon {...props}><path d=\"M7.99992 12.6666V3.33325M7.99992 3.33325L3.33325 7.99992M7.99992 3.33325L12.6666 7.99992\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconArrowUp, \"<FIGMA_ICONS_BASE>?node-id=4039:13040\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconArrowUp size={size} /> });"
],
[
"IconCrosshair",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCrosshair = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15717)\"><path d=\"M14.6667 7.99998C14.6667 11.6819 11.6819 14.6666 8.00004 14.6666M14.6667 7.99998C14.6667 4.31808 11.6819 1.33331 8.00004 1.33331M14.6667 7.99998H12M8.00004 14.6666C4.31814 14.6666 1.33337 11.6819 1.33337 7.99998M8.00004 14.6666V12M1.33337 7.99998C1.33337 4.31808 4.31814 1.33331 8.00004 1.33331M1.33337 7.99998H4.00004M8.00004 1.33331V3.99998\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15717\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCrosshair, \"<FIGMA_ICONS_BASE>?node-id=4049:13476\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCrosshair size={size} /> });"
],
[
"IconCloud",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCloud = (props: IconProps) => (\n <Icon {...props}><g clipPath=\"url(#clip0_68_15677)\"><path d=\"M12 6.66663H11.16C10.9106 5.70062 10.3952 4.82395 9.67243 4.13622C8.94966 3.44849 8.04848 2.97729 7.07128 2.77614C6.09409 2.575 5.08007 2.65199 4.14444 2.99835C3.20881 3.34472 2.3891 3.94658 1.77844 4.73555C1.16778 5.52451 0.790662 6.46894 0.689941 7.46153C0.589219 8.45411 0.76893 9.45505 1.20865 10.3506C1.64838 11.2462 2.33048 12.0004 3.17746 12.5277C4.02443 13.0549 5.00232 13.334 6 13.3333H12C12.8841 13.3333 13.7319 12.9821 14.357 12.357C14.9821 11.7319 15.3333 10.884 15.3333 9.99996C15.3333 9.1159 14.9821 8.26806 14.357 7.64294C13.7319 7.01782 12.8841 6.66663 12 6.66663Z\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_68_15677\"><rect width=\"16\" height=\"16\" fill=\"white\"/></clipPath></defs></Icon>\n);",
"figma.connect(IconCloud, \"<FIGMA_ICONS_BASE>?node-id=4039:13179\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCloud size={size} /> });"
],
[
"IconCheck",
"import { IconProps, Icon } from \"primitives\";\nexport const IconCheck = (props: IconProps) => (\n <Icon {...props}><path d=\"M13.3333 4L5.99999 11.3333L2.66666 8\" stroke=\"var(--svg-stroke-color)\" strokeWidth=\"1.6\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></Icon>\n);",
"figma.connect(IconCheck, \"<FIGMA_ICONS_BASE>?node-id=4039:13063\", { props: { size: figma.enum(\"Size\", { \"20\": \"20\", \"24\": \"24\", \"32\": \"32\", \"40\": \"40\", \"48\": \"48\" }) }, example: ({ size }) => <IconCheck size={size} /> });"