-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icons.js
1275 lines (1215 loc) · 40 KB
/
icons.js
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
/**
* @copyright 2023 Chris Zuber <[email protected]>
*/
import {
createSVG, createPath, createGroup, createCircle, createRect, translate, rotate,
DEFAULT_ROLE,
} from './svg.js';
/**
* Adwaita Icons
*/
export function createAddressBookIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M1.189 14c0 1.09.91 2 2 2h8.823c1.09 0 2-.91 2-2V3c0-1.09-.91-2-2-2H3.189c-1.09 0-2 .91-2 2h10.823v11H1.189z', {
'fill-rule': 'evenodd',
}),
createPath('M.594 12a.502.502 0 1 0 .093 1H2.5a.5.5 0 1 0 0-1H.687a.5.5 0 0 0-.093 0zm0-2a.502.502 0 1 0 .093 1H2.5a.5.5 0 1 0 0-1H.687a.5.5 0 0 0-.093 0zm0-2a.502.502 0 1 0 .093 1H2.5a.5.5 0 1 0 0-1H.687a.5.5 0 0 0-.093 0zm0-2a.502.502 0 1 0 .093 1H2.5a.5.5 0 1 0 0-1H.687a.5.5 0 0 0-.093 0zm0-2a.502.502 0 1 0 .093 1H2.5a.5.5 0 1 0 0-1H.687a.5.5 0 0 0-.093 0z', {
'fill-rule': 'evenodd',
}),
createPath('M7 10c.328.066.666.007 1 0 .334-.007.669.04 1 0 .624-.074 1.196-.462 1.523-.998a2.41 2.41 0 0 0 .26-1.817A2.807 2.807 0 0 0 9.75 5.652 3.366 3.366 0 0 0 8.009 5a3.737 3.737 0 0 0-2.565.746 3.69 3.69 0 0 0-1.382 2.285 3.647 3.647 0 0 0 .185 1.895c.228.6.618 1.137 1.119 1.54.5.402 1.11.668 1.744.76A3.647 3.647 0 0 0 9 12v-1c-.453.299-1 .453-1.542.437a2.677 2.677 0 0 1-1.513-.53 2.676 2.676 0 0 1-.932-1.304A2.677 2.677 0 0 1 5 8a2.818 2.818 0 0 1 1.154-1.511A3.13 3.13 0 0 1 8 6c.537.026 1.082.193 1.483.551.2.18.362.404.456.656.095.252.12.53.061.793-.054.24-.18.464-.355.637a1.294 1.294 0 0 1-.645.34V8a1.628 1.628 0 0 0-.595-.737 1.628 1.628 0 0 0-.905-.277c-.32 0-.64.098-.905.277-.266.18-.476.44-.595.737-.158.394-.152.856.033 1.238.186.383.55.678.967.762m1.036-.977a.708.708 0 0 1-.814.132.707.707 0 0 1-.378-.732.707.707 0 0 1 .453-.554A.706.706 0 0 1 8 8', {
'letter-spacing': '0',
'word-spacing': '0',
})
]
});
}
export function createAlertIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M8.893 1.5c-.183-.31-.52-.5-.887-.5s-.703.19-.886.5L.138 13.499a.98.98 0 0 0 0 1.001c.193.31.53.501.886.501h13.964c.367 0 .704-.19.877-.5a1.03 1.03 0 0 0 .01-1.002L8.893 1.5zm.133 11.497H6.987v-2.003h2.039v2.003zm0-3.004H6.987V5.987h2.039v4.006z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createAppsIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0,24, 24],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M 15.9994,19.9981L 19.9994,19.9981L 19.9994,15.9981L 15.9994,15.9981M 15.9994,13.9981L 19.9994,13.9981L 19.9994,9.99807L 15.9994,9.99807M 9.99938,7.99807L 13.9994,7.99807L 13.9994,3.99807L 9.99938,3.99807M 15.9994,7.99807L 19.9994,7.99807L 19.9994,3.99807L 15.9994,3.99807M 9.99938,13.9981L 13.9994,13.9981L 13.9994,9.99807L 9.99938,9.99807M 3.99938,13.9981L 7.99938,13.9981L 7.99938,9.99807L 3.99938,9.99807M 3.99938,19.9981L 7.99938,19.9981L 7.99938,15.9981L 3.99938,15.9981M 9.99938,19.9981L 13.9994,19.9981L 13.9994,15.9981L 9.99938,15.9981M 3.99938,7.99807L 7.99938,7.99807L 7.99938,3.99807L 3.99938,3.99807L 3.99938,7.99807 Z', {
'stroke-width': 0.2,
'stroke-linejoin': 'round',
})
]
});
}
export function createBellIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 14, 16],
...rest, height: size, width: parseInt(14 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M13.99 11.991v1H0v-1l.73-.58c.769-.769.809-2.547 1.189-4.416.77-3.767 4.077-4.996 4.077-4.996 0-.55.45-1 .999-1 .55 0 1 .45 1 1 0 0 3.387 1.229 4.156 4.996.38 1.879.42 3.657 1.19 4.417l.659.58h-.01zM6.995 15.99c1.11 0 1.999-.89 1.999-1.999H4.996c0 1.11.89 1.999 1.999 1.999z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createCalendarIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 14, 16],
...rest, height: size, width: parseInt(14 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M13 2h-1v1.5c0 .28-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5V2H6v1.5c0 .28-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5V2H2c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 12H2V5h11v9zM5 3H4V1h1v2zm6 0h-1V1h1v2zM6 7H5V6h1v1zm2 0H7V6h1v1zm2 0H9V6h1v1zm2 0h-1V6h1v1zM4 9H3V8h1v1zm2 0H5V8h1v1zm2 0H7V8h1v1zm2 0H9V8h1v1zm2 0h-1V8h1v1zm-8 2H3v-1h1v1zm2 0H5v-1h1v1zm2 0H7v-1h1v1zm2 0H9v-1h1v1zm2 0h-1v-1h1v1zm-8 2H3v-1h1v1zm2 0H5v-1h1v1zm2 0H7v-1h1v1zm2 0H9v-1h1v1z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createClockIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 14, 16],
...rest, height: size, width: parseInt(14 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M8 8h3v2H7c-.55 0-1-.45-1-1V4h2v4zM7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z', {
'fill-rule': 'evenodd',
})
]
});
}
/**
* Adwaita Icons
*/
export function createCallStartIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M13.032 1c.534 0 .969.427.969.969v.062c-.017 6.613-5.383 11.97-12 11.97H1.97c-.545 0-.97-.447-.97-1v-3c0-.555.447-1 1-1h2c.555 0 1 .445 1 1v.468A8.967 8.967 0 0 0 10.47 5H10c-.553 0-1-.446-1-1V2c0-.554.447-1 1-1h3.032z', {
'overflow': 'visible',
})
]
});
}
export function createCheckIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5L12 5z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createCreditCardIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M12 9H2V8h10v1zm4-6v9c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h14c.55 0 1 .45 1 1zm-1 3H1v6h14V6zm0-3H1v1h14V3zm-9 7H2v1h4v-1z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createCommentIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M14 1H2c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h2v3.5L7.5 11H14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 9H7l-2 2v-2H2V2h12v8z', {
'fill-rule': 'evenodd',
})
]
});
}
/**
* Adwaita Icons
*/
export function createContactNewIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createGroup({
transform: translate(-261, -727),
children: [
createPath('M269.55 735.09c-.705.624-1.54.906-2.555.906s-1.853-.29-2.558-.914c-1.11.363-2.436 1.288-2.438 2.902l-.004 3.012c0 .554.446 1 1 1h8c.554 0 1-.446 1-1v-3c0-1.387-1.102-2.556-2.445-2.906z'),
createCircle({ cx: 49.5, cy: 342.5, r: 2.5, transform: 'matrix(1.2 0 0 1.2 207.6 321)' }),
createPath('M273 728v1.997h-2v1.996h2v1.997h2v-1.997h2v-1.996h-2V728z')
]
}),
createPath('M14 1H2c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h2v3.5L7.5 11H14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 9H7l-2 2v-2H2V2h12v8z', {
'fill-rule': 'evenodd',
})
]
});
}
/**
* Adwaita Icons
*/
export function createDialogPasswordIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M5 3C2.25 3 0 5.25 0 8s2.25 5 5 5c1.586 0 2.903-.845 3.813-2h5.593l.22-.75 1.03-4L15.97 5H8.813C7.903 3.845 6.586 3 5 3zm0 2c1.116 0 2.038.595 2.563 1.5l.312.5h5.531l-.53 2H7.874l-.312.5C7.038 10.405 6.116 11 5 11c-1.669 0-3-1.331-3-3s1.331-3 3-3z', {
'overflow': 'visible',
}),
createPath('M14.498 8H9l-.563 2H14z', {
'overflow': 'visible',
'opacity': 0.35,
}),
createPath('M5 8a1 1 0 1 1-2 0 1 1 0 1 1 2 0z', {
'overflow': 'visible',
}),
]
});
}
export function createFileIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 12, 16],
...rest, height: size, width: parseInt(12 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M6 5H2V4h4v1zM2 8h7V7H2v1zm0 2h7V9H2v1zm0 2h7v-1H2v1zm10-7.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v12h10V5z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createFileCodeIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 12, 16],
...rest, height: size, width: parseInt(12 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M8.5 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4.5L8.5 1zM11 14H1V2h7l3 3v9zM5 6.98L3.5 8.5 5 10l-.5 1L2 8.5 4.5 6l.5.98zM7.5 6L10 8.5 7.5 11l-.5-.98L8.5 8.5 7 7l.5-1z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createFileMediaIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 12, 16],
...rest, height: size, width: parseInt(12 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M6 5h2v2H6V5zm6-.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v11l3-5 2 4 2-2 3 3V5z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createFilePDFIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 12, 16],
...rest, height: size, width: parseInt(12 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M8.5 1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4.5L8.5 1zM1 2h4a.68.68 0 0 0-.31.2 1.08 1.08 0 0 0-.23.47 4.22 4.22 0 0 0-.09 1.47c.06.609.173 1.211.34 1.8A21.78 21.78 0 0 1 3.6 8.6c-.5 1-.8 1.66-.91 1.84a7.161 7.161 0 0 0-.69.3 4.19 4.19 0 0 0-1 .64V2zm4.42 4.8a5.65 5.65 0 0 0 1.17 2.09c.275.237.595.417.94.53-.64.09-1.23.2-1.81.33a12.22 12.22 0 0 0-1.81.59c-.587.243.22-.44.61-1.25.365-.74.67-1.51.91-2.3l-.01.01zM11 14H1.5a.743.743 0 0 1-.17 0 2.12 2.12 0 0 0 .73-.44 10.14 10.14 0 0 0 1.78-2.38c.31-.13.58-.23.81-.31l.42-.14c.45-.13.94-.23 1.44-.33s1-.16 1.48-.2c.447.216.912.394 1.39.53.403.11.814.188 1.23.23h.38V14H11zm0-4.86a3.74 3.74 0 0 0-.64-.28 4.22 4.22 0 0 0-.75-.11c-.411.003-.822.03-1.23.08a3 3 0 0 1-1-.64 6.07 6.07 0 0 1-1.29-2.33c.111-.662.178-1.33.2-2 .02-.25.02-.5 0-.75a1.05 1.05 0 0 0-.2-.88.82.82 0 0 0-.61-.23H8l3 3v4.14z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createFileZipIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 12, 16],
...rest, height: size, width: parseInt(12 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M8.5 1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4.5L8.5 1zM11 14H1V2h3v1h1V2h3l3 3v9zM5 4V3h1v1H5zM4 4h1v1H4V4zm1 2V5h1v1H5zM4 6h1v1H4V6zm1 2V7h1v1H5zM4 9.28A2 2 0 0 0 3 11v1h4v-1a2 2 0 0 0-2-2V8H4v1.28zM6 10v1H4v-1h2z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createFindLocationIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M7 0v1.031A6.514 6.514 0 0 0 1.062 7H0v1h1.063A6.514 6.514 0 0 0 7 13.969V15h1v-1.031c3.188-.234 5.724-2.78 5.969-5.969H15V7h-1.031C13.724 3.811 11.189 1.233 8 1V0zm.531 2.813c2.607 0 4.688 2.08 4.688 4.687s-2.081 4.688-4.688 4.688c-2.606 0-4.75-2.082-4.75-4.688s2.144-4.688 4.75-4.688zM7.5 4a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7z')
]
});
}
export function createGrabberIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 8, 16],
...rest, height: size, width: parseInt(8 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M8 4v1H0V4h8zM0 8h8V7H0v1zm0 3h8v-1H0v1z', { 'fill-rule': 'evenodd' })
]
});
}
export function createGlobeIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 14, 16],
...rest, height: size, width: parseInt(14 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M7 1C3.14 1 0 4.14 0 8s3.14 7 7 7c.48 0 .94-.05 1.38-.14-.17-.08-.2-.73-.02-1.09.19-.41.81-1.45.2-1.8-.61-.35-.44-.5-.81-.91-.37-.41-.22-.47-.25-.58-.08-.34.36-.89.39-.94.02-.06.02-.27 0-.33 0-.08-.27-.22-.34-.23-.06 0-.11.11-.2.13-.09.02-.5-.25-.59-.33-.09-.08-.14-.23-.27-.34-.13-.13-.14-.03-.33-.11s-.8-.31-1.28-.48c-.48-.19-.52-.47-.52-.66-.02-.2-.3-.47-.42-.67-.14-.2-.16-.47-.2-.41-.04.06.25.78.2.81-.05.02-.16-.2-.3-.38-.14-.19.14-.09-.3-.95s.14-1.3.17-1.75c.03-.45.38.17.19-.13-.19-.3 0-.89-.14-1.11-.13-.22-.88.25-.88.25.02-.22.69-.58 1.16-.92.47-.34.78-.06 1.16.05.39.13.41.09.28-.05-.13-.13.06-.17.36-.13.28.05.38.41.83.36.47-.03.05.09.11.22s-.06.11-.38.3c-.3.2.02.22.55.61s.38-.25.31-.55c-.07-.3.39-.06.39-.06.33.22.27.02.5.08.23.06.91.64.91.64-.83.44-.31.48-.17.59.14.11-.28.3-.28.3-.17-.17-.19.02-.3.08-.11.06-.02.22-.02.22-.56.09-.44.69-.42.83 0 .14-.38.36-.47.58-.09.2.25.64.06.66-.19.03-.34-.66-1.31-.41-.3.08-.94.41-.59 1.08.36.69.92-.19 1.11-.09.19.1-.06.53-.02.55.04.02.53.02.56.61.03.59.77.53.92.55.17 0 .7-.44.77-.45.06-.03.38-.28 1.03.09.66.36.98.31 1.2.47.22.16.08.47.28.58.2.11 1.06-.03 1.28.31.22.34-.88 2.09-1.22 2.28-.34.19-.48.64-.84.92s-.81.64-1.27.91c-.41.23-.47.66-.66.8 3.14-.7 5.48-3.5 5.48-6.84 0-3.86-3.14-7-7-7L7 1zm1.64 6.56c-.09.03-.28.22-.78-.08-.48-.3-.81-.23-.86-.28 0 0-.05-.11.17-.14.44-.05.98.41 1.11.41.13 0 .19-.13.41-.05.22.08.05.13-.05.14zM6.34 1.7c-.05-.03.03-.08.09-.14.03-.03.02-.11.05-.14.11-.11.61-.25.52.03-.11.27-.58.3-.66.25zm1.23.89c-.19-.02-.58-.05-.52-.14.3-.28-.09-.38-.34-.38-.25-.02-.34-.16-.22-.19.12-.03.61.02.7.08.08.06.52.25.55.38.02.13 0 .25-.17.25zm1.47-.05c-.14.09-.83-.41-.95-.52-.56-.48-.89-.31-1-.41-.11-.1-.08-.19.11-.34.19-.15.69.06 1 .09.3.03.66.27.66.55.02.25.33.5.19.63h-.01z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createHeartIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 12, 16],
...rest, height: size, width: parseInt(12 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M9 2c-.97 0-1.69.42-2.2 1-.51.58-.78.92-.8 1-.02-.08-.28-.42-.8-1-.52-.58-1.17-1-2.2-1-1.632.086-2.954 1.333-3 3 0 .52.09 1.52.67 2.67C1.25 8.82 3.01 10.61 6 13c2.98-2.39 4.77-4.17 5.34-5.33C11.91 6.51 12 5.5 12 5c-.047-1.69-1.342-2.913-3-3z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createInfoIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 14, 16],
...rest, height: size, width: parseInt(14 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M6.3 5.69a.942.942 0 0 1-.28-.7c0-.28.09-.52.28-.7.19-.18.42-.28.7-.28.28 0 .52.09.7.28.18.19.28.42.28.7 0 .28-.09.52-.28.7a1 1 0 0 1-.7.3c-.28 0-.52-.11-.7-.3zM8 7.99c-.02-.25-.11-.48-.31-.69-.2-.19-.42-.3-.69-.31H6c-.27.02-.48.13-.69.31-.2.2-.3.44-.31.69h1v3c.02.27.11.5.31.69.2.2.42.31.69.31h1c.27 0 .48-.11.69-.31.2-.19.3-.42.31-.69H8V7.98v.01zM7 2.3c-3.14 0-5.7 2.54-5.7 5.68 0 3.14 2.56 5.7 5.7 5.7s5.7-2.55 5.7-5.7c0-3.15-2.56-5.69-5.7-5.69v.01zM7 .98c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.12-7-7 3.14-7 7-7z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createLinkIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createLinkExternalIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 12, 16],
...rest, height: size, width: parseInt(12 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M11 10h1v3c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h3v1H1v10h10v-3zM6 2l2.25 2.25L5 7.5 6.5 9l3.25-3.25L12 8V2H6z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createMarkLocationIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M8 0a5 5 0 0 0-5 5c0 .173.014.332.031.5.014.167.036.336.063.5C3.666 9.514 6 12.003 8 14.003c2-2 4.334-4.489 4.906-8.003a6.38 6.38 0 0 0 .063-.5c.017-.168.03-.327.03-.5a5 5 0 0 0-5-5zm0 3a2 2 0 1 1 0 4 2 2 0 0 1 0-4z')
]
});
}
/**
* Adwaita Icons
*/
export function createOpenMenuIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M3 3h10v2H3zm0 4h10v2H3zm0 4h10v2H3z')
]
});
}
/**
* Adwaita Icons
*/
export function createPublicShareIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M5.969 7.969a2.969 2.969 0 1 1-5.938 0 2.969 2.969 0 1 1 5.938 0zm9.969 5a2.969 2.969 0 1 1-5.938 0 2.969 2.969 0 1 1 5.938 0zm0-10a2.969 2.969 0 1 1-5.938 0 2.969 2.969 0 1 1 5.938 0z', {
'overflow': 'visible',
}),
createPath('M12.625 2.156L2.562 7.031.75 7.938l1.812.906 10.032 5.062.906-1.812-8.22-4.156 8.219-4-.875-1.782z', {
'overflow': 'visible',
})
]
});
}
export function createLockIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 12, 16],
...rest, height: size, width: parseInt(12 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M4 13H3v-1h1v1zm8-6v7c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h1V4c0-2.2 1.8-4 4-4s4 1.8 4 4v2h1c.55 0 1 .45 1 1zM3.8 6h4.41V4c0-1.22-.98-2.2-2.2-2.2-1.22 0-2.2.98-2.2 2.2v2H3.8zM11 7H2v7h9V7zM4 8H3v1h1V8zm0 2H3v1h1v-1z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createMailIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 14, 16],
...rest, height: size, width: parseInt(14 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M0 4v8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1zm13 0L7 9 1 4h12zM1 5.5l4 3-4 3v-6zM2 12l3.5-3L7 10.5 8.5 9l3.5 3H2zm11-.5l-4-3 4-3v6z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createMapIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 48, 48],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M41 6c-.11 0-.21.01-.31.05L30 10.2 18 6 6.73 9.8c-.42.14-.73.5-.73.96V41c0 .55.45 1 1 1 .11 0 .21-.01.31-.05L18 37.8 30 42l11.28-3.79c.42-.15.72-.51.72-.97V7c0-.55-.45-1-1-1zM30 38l-12-4.21V10l12 4.21V38z')
]
});
}
export function createPersonIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 12, 16],
...rest, height: size, width: parseInt(12 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M12 14.002a.998.998 0 0 1-.998.998H1.001A1 1 0 0 1 0 13.999V13c0-2.633 4-4 4-4s.229-.409 0-1c-.841-.62-.944-1.59-1-4 .173-2.413 1.867-3 3-3s2.827.586 3 3c-.056 2.41-.159 3.38-1 4-.229.59 0 1 0 1s4 1.367 4 4v1.002z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createPinIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M10 1.2V2l.5 1L6 6H2.2c-.44 0-.67.53-.34.86L5 10l-4 5 5-4 3.14 3.14a.5.5 0 0 0 .86-.34V10l3-4.5 1 .5h.8c.44 0 .67-.53.34-.86L10.86.86a.5.5 0 0 0-.86.34z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createPlusIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 12, 16],
...rest, height: size, width: parseInt(12 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M12 9H7v5H5V9H0V7h5V2h2v5h5v2z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createQuestionIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 14, 16],
...rest, height: size, width: parseInt(14 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M6 10h2v2H6v-2zm4-3.5C10 8.64 8 9 8 9H6c0-.55.45-1 1-1h.5c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5V7H4c0-1.5 1.5-3 3-3s3 1 3 2.5zM7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createQuoteIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 14, 16],
...rest, height: size, width: parseInt(14 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M6.16 3.5C3.73 5.06 2.55 6.67 2.55 9.36c.16-.05.3-.05.44-.05 1.27 0 2.5.86 2.5 2.41 0 1.61-1.03 2.61-2.5 2.61-1.9 0-2.99-1.52-2.99-4.25 0-3.8 1.75-6.53 5.02-8.42L6.16 3.5zm7 0c-2.43 1.56-3.61 3.17-3.61 5.86.16-.05.3-.05.44-.05 1.27 0 2.5.86 2.5 2.41 0 1.61-1.03 2.61-2.5 2.61-1.89 0-2.98-1.52-2.98-4.25 0-3.8 1.75-6.53 5.02-8.42l1.14 1.84h-.01z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createReplyIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 14, 16],
...rest, height: size, width: parseInt(14 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M6 3.5c3.92.44 8 3.125 8 10-2.312-5.062-4.75-6-8-6V11L.5 5.5 6 0v3.5z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createRepoIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 12, 16],
...rest, height: size, width: parseInt(12 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createScreenFullIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 14, 16],
...rest, height: size, width: parseInt(14 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M13 10h1v3c0 .547-.453 1-1 1h-3v-1h3v-3zM1 10H0v3c0 .547.453 1 1 1h3v-1H1v-3zm0-7h3V2H1c-.547 0-1 .453-1 1v3h1V3zm1 1h10v8H2V4zm2 6h6V6H4v4zm6-8v1h3v3h1V3c0-.547-.453-1-1-1h-3z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createScreenNormalIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 14, 16],
...rest, height: size, width: parseInt(14 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M2 4H0V3h2V1h1v2c0 .547-.453 1-1 1zm0 8H0v1h2v2h1v-2c0-.547-.453-1-1-1zm9-2c0 .547-.453 1-1 1H4c-.547 0-1-.453-1-1V6c0-.547.453-1 1-1h6c.547 0 1 .453 1 1v4zM9 7H5v2h4V7zm2 6v2h1v-2h2v-1h-2c-.547 0-1 .453-1 1zm1-10V1h-1v2c0 .547.453 1 1 1h2V3h-2z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createSearchIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M15.7 13.3l-3.81-3.83A5.93 5.93 0 0 0 13 6c0-3.31-2.69-6-6-6S1 2.69 1 6s2.69 6 6 6c1.3 0 2.48-.41 3.47-1.11l3.83 3.81c.19.2.45.3.7.3.25 0 .52-.09.7-.3a.996.996 0 0 0 0-1.41v.01zM7 10.7c-2.59 0-4.7-2.11-4.7-4.7 0-2.59 2.11-4.7 4.7-4.7 2.59 0 4.7 2.11 4.7 4.7 0 2.59-2.11 4.7-4.7 4.7z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createSettingsIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M4 7H3V2h1v5zm-1 7h1v-3H3v3zm5 0h1V8H8v6zm5 0h1v-2h-1v2zm1-12h-1v6h1V2zM9 2H8v2h1V2zM5 8H2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm5-3H7c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm5 4h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1z', {
'fill-rule': 'evenodd',
})
]
});
}
export const createShareIcon = (...args) => createPublicShareIcon(...args);
export function createSignInIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 14, 16],
...rest, height: size, width: parseInt(14 * (size / 16)), fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M7 6.75V12h4V8h1v4c0 .55-.45 1-1 1H7v3l-5.45-2.72c-.33-.17-.55-.52-.55-.91V1c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v3h-1V1H3l4 2v2.25L10 3v2h4v2h-4v2L7 6.75z', {
'fill-rule': 'evenodd',
})
]
});
}
export function createSignOutIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],
part = [],
slot,
animation,
...rest
} = {}) {
return createSVG({
viewBox: [0, 0, 16, 16],
...rest, height: size, width: size, fill, classList, part, slot, animation, role, ariaLabel,
children: [
createPath('M11.992 8.994V6.996H7.995v-2h3.997V2.999l3.998 2.998-3.998 2.998zm-1.998 2.998H5.996V2.998L2 1h7.995v2.998h1V1c0-.55-.45-.999-1-.999H.999A1.001 1.001 0 0 0 0 1v11.372c0 .39.22.73.55.91L5.996 16v-3.008h3.998c.55 0 1-.45 1-1V7.996h-1v3.998z', {
'fill-rule': 'evenodd',
})
]
});
}
export const createSignUpIcon = (...args) => createContactNewIcon(...args);
export function createSpinnerIcon({
size = 16,
role = DEFAULT_ROLE,
fill = 'currentColor',
ariaLabel,
classList = [],