-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathicons.html
More file actions
4464 lines (4383 loc) · 483 KB
/
Copy pathicons.html
File metadata and controls
4464 lines (4383 loc) · 483 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-CA">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>SUI Icons v3.5.0</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./sui-tokens.css">
<link rel="stylesheet" href="./sui-components.css">
<link rel="stylesheet" href="./sui-icons.css">
<style>
/* ─────────────────────────────────────────────────────────────────────
Page-specific styles only.
SUI classes (.sui-btn, .sui-card, .sui-topbar, etc.) come from
the linked sui-tokens.css + sui-components.css + sui-icons.css.
───────────────────────────────────────────────────────────────────── */
/* ── Topbar extras ── */
.tb-actions{display:flex;align-items:center;gap:var(--sui-space-2);margin-left:auto;flex-wrap:wrap;}
.tb-group{display:flex;align-items:center;gap:4px;}
.tb-label{font-size:var(--sui-text-meta);font-weight:var(--sui-weight-semibold);
color:var(--sui-text-secondary);text-transform:uppercase;letter-spacing:.08em;padding:0 4px;}
.tb-sep{width:1px;height:20px;background:var(--sui-border);margin:0 4px;}
.count-badge{
font-size:var(--sui-text-meta);color:var(--sui-text-secondary);
font-family:var(--sui-font-mono);white-space:nowrap;
}
/* ── Pressed toggle buttons (page override — high contrast in both themes) ── */
.sui-btn[aria-pressed="true"]{
background:var(--sui-bg-elevated);color:var(--sui-text-primary);
border-color:var(--sui-blue-primary);
box-shadow:0 0 0 1px var(--sui-blue-primary);
}
/* ── Theme toggle icon swap ── */
#themeToggle .icon-sun{display:none;}
[data-theme="dark"] #themeToggle .icon-moon{display:none;}
[data-theme="dark"] #themeToggle .icon-sun{display:block;}
/* ── Page layout ── */
main{max-width:var(--sui-max-width);margin:0 auto;padding:var(--sui-space-4) var(--sui-space-4) var(--sui-space-6);}
.page-intro{padding:var(--sui-space-4) 0 var(--sui-space-3);}
.page-intro h1{font-size:var(--sui-text-h2);font-weight:var(--sui-weight-bold);letter-spacing:-.01em;margin-bottom:var(--sui-space-1);}
.page-intro p{color:var(--sui-text-secondary);font-size:var(--sui-text-small);}
.meta-badges{display:flex;flex-wrap:wrap;gap:var(--sui-space-1);margin-top:var(--sui-space-2);}
/* ── A11y patterns section ── */
h2.section-head{
font-size:var(--sui-text-small);font-weight:var(--sui-weight-bold);
margin:var(--sui-space-5) 0 var(--sui-space-2);
padding-bottom:var(--sui-space-2);border-bottom:2px solid var(--sui-border);
display:flex;align-items:center;gap:var(--sui-space-2);
}
.pattern-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:var(--sui-space-3);margin-bottom:var(--sui-space-5);}
.code-block{
font-family:var(--sui-font-mono);font-size:11px;line-height:1.6;
background:var(--sui-bg-elevated);padding:var(--sui-space-2);
border-radius:var(--sui-radius-sm);overflow-x:auto;white-space:pre;
color:var(--sui-text-primary);
}
.demo-row{display:flex;align-items:center;gap:var(--sui-space-2);}
/* ── Pattern copy button ── */
.pattern-code-wrap{position:relative;}
.pattern-copy{
position:absolute;top:var(--sui-space-1);right:var(--sui-space-1);
padding:4px;min-width:0;min-height:0;
opacity:.4;transition:opacity var(--sui-duration-fast) var(--sui-easing);
}
.pattern-code-wrap:hover .pattern-copy,
.pattern-copy:focus-visible{opacity:1;}
.pattern-copy.is-copied{opacity:1;color:var(--sui-success-strong);}
/* ── Reference section ── */
.ref-toggle{
display:flex;align-items:center;gap:var(--sui-space-2);
width:100%;background:none;border:none;padding:var(--sui-space-2) 0;
font-family:var(--sui-font-primary);font-size:var(--sui-text-small);
font-weight:var(--sui-weight-bold);color:var(--sui-text-primary);
cursor:pointer;
}
.ref-toggle:focus-visible{outline:2px solid var(--sui-blue-focus);outline-offset:2px;border-radius:var(--sui-radius-sm);}
.ref-toggle svg{transition:transform var(--sui-duration-fast) var(--sui-easing);}
.ref-toggle[aria-expanded="true"] svg{transform:rotate(90deg);}
.ref-body{display:none;padding:var(--sui-space-3) 0;}
.ref-toggle[aria-expanded="true"]+.ref-body{display:block;}
.ref-table{width:100%;border-collapse:collapse;font-size:var(--sui-text-small);}
.ref-table th{text-align:left;padding:var(--sui-space-1) var(--sui-space-2);border-bottom:2px solid var(--sui-border);font-weight:var(--sui-weight-semibold);}
.ref-table td{padding:var(--sui-space-1) var(--sui-space-2);border-bottom:1px solid var(--sui-border);}
.ref-table code{font-size:11px;}
.ref-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:var(--sui-space-4);}
/* ── Controls toolbar ── */
.icon-controls{
position:sticky;top:52px;z-index:calc(var(--sui-z-sticky) - 1);
display:flex;align-items:center;gap:var(--sui-space-2);flex-wrap:wrap;
padding:var(--sui-space-2) 0;margin-bottom:var(--sui-space-4);
background:var(--sui-bg-primary);border-bottom:1px solid var(--sui-border);
}
.controls-right{display:flex;align-items:center;gap:var(--sui-space-2);margin-left:auto;flex-wrap:wrap;}
/* ── Category sections ── */
.cat-section{margin-bottom:var(--sui-space-5);}
.cat-header{
display:flex;align-items:center;gap:var(--sui-space-2);
margin-bottom:var(--sui-space-2);padding-bottom:var(--sui-space-2);
border-bottom:1px solid var(--sui-border);
}
.cat-label{font-size:var(--sui-text-small);font-weight:var(--sui-weight-bold);}
.cat-count{font-size:var(--sui-text-meta);color:var(--sui-text-secondary);margin-left:auto;font-family:var(--sui-font-mono);}
.cat-alias{font-weight:400;}
/* ── Icon cards ── */
.cat-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(88px,1fr));
gap:4px;
}
.ic-card{
position:relative;display:flex;flex-direction:column;align-items:center;
justify-content:center;gap:var(--sui-space-1);
padding:var(--sui-space-2) var(--sui-space-1) var(--sui-space-2);
min-height:64px;
background:var(--sui-bg-card);border:1px solid var(--sui-border);
border-radius:var(--sui-radius-sm);cursor:pointer;
transition:all var(--sui-duration-fast) var(--sui-easing);
font-family:var(--sui-font-primary);
}
.ic-card:hover{
border-color:var(--sui-blue-primary);
box-shadow:0 0 0 3px var(--sui-blue-soft);
transform:translateY(-1px);
}
.ic-card:focus-visible{
outline:2px solid var(--sui-blue-focus);outline-offset:2px;
}
.ic-card.is-copied{
border-color:var(--sui-success-strong);
background:var(--sui-success-soft);
}
.ic-card.hidden{display:none;}
.ic-svg{width:20px;height:20px;color:var(--sui-text-primary);}
.ic-name{
font-family:var(--sui-font-mono);font-size:10px;
color:var(--sui-text-secondary);text-align:center;word-break:break-all;line-height:1.3;
}
.ic-badge{
position:absolute;top:3px;right:3px;
font-size:8px;font-weight:var(--sui-weight-bold);
padding:1px 3px;border-radius:3px;line-height:1.2;
}
.ic-alias{background:var(--sui-pro-soft);color:var(--sui-pro);}
.ic-note{background:var(--sui-blue-soft);color:var(--sui-blue-primary);cursor:help;}
.ic-copied{
position:absolute;top:3px;left:3px;
font-size:8px;font-weight:700;
background:var(--sui-success-strong);color:#fff;
padding:1px 3px;border-radius:3px;
opacity:0;transition:opacity var(--sui-duration-fast);pointer-events:none;
}
.ic-card.is-copied .ic-copied{opacity:1;}
/* Size variants */
body.sz-12 .ic-svg{width:12px;height:12px;}
body.sz-16 .ic-svg{width:16px;height:16px;}
body.sz-24 .ic-svg{width:24px;height:24px;}
body.sz-32 .ic-svg{width:32px;height:32px;}
body.sz-48 .ic-svg{width:48px;height:48px;}
/* Primary preview theme for cards */
body.preview-primary .ic-card{background:var(--sui-blue-primary);border-color:rgba(255,255,255,.15);}
body.preview-primary .ic-svg{color:#fff;}
body.preview-primary .ic-name{color:rgba(255,255,255,.75);}
/* No results */
.no-results{
display:none;padding:var(--sui-space-6);text-align:center;
color:var(--sui-text-secondary);font-size:var(--sui-text-small);
}
/* Search wrapper */
.search-wrap{position:relative;min-width:200px;}
.search-wrap svg{
position:absolute;left:10px;top:50%;transform:translateY(-50%);
width:16px;height:16px;color:var(--sui-text-muted);pointer-events:none;
}
.search-wrap .sui-input{padding-left:34px;}
footer{
border-top:1px solid var(--sui-border);
padding:var(--sui-space-4);text-align:center;
font-size:var(--sui-text-meta);color:var(--sui-text-secondary);
margin-top:var(--sui-space-6);
}
</style>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
<use href="#sui-icon-act-search"/>
</svg>
<!-- See ACCESSIBILITY.md for usage patterns (Pattern A/B/C). -->
<svg xmlns="http://www.w3.org/2000/svg" style="display:none" aria-hidden="true">
<!-- ============================================================ -->
<!-- NAV (Navigation) — 36 symbols -->
<!-- ============================================================ -->
<symbol id="sui-icon-nav-arrow-down" viewBox="0 0 24 24">
<title>Arrow Down</title>
<line x1="12" y1="4" x2="12" y2="20" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="6 14 12 20 18 14" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-nav-arrow-down-circle" viewBox="0 0 24 24">
<title>Scroll Down</title>
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="8 12 12 16 16 12" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="12" y1="8" x2="12" y2="16" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-nav-arrow-left" viewBox="0 0 24 24">
<title>Arrow Left</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 12H4m6 6-6-6 6-6"/>
</symbol>
<symbol id="sui-icon-nav-arrow-right" viewBox="0 0 24 24">
<title>Arrow Right</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 12h16m-6-6 6 6-6 6"/>
</symbol>
<symbol id="sui-icon-nav-arrow-up" viewBox="0 0 24 24">
<title>Arrow Up</title>
<line x1="12" y1="20" x2="12" y2="4" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="6 10 12 4 18 10" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-nav-arrow-up-circle" viewBox="0 0 24 24">
<title>Scroll to Top</title>
<circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m8 12 4-4 4 4m-4 4V8"/>
</symbol>
<symbol id="sui-icon-nav-arrow-up-down" viewBox="0 0 24 24">
<title>Sort or Resize</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v18M8 7l4-4 4 4M8 17l4 4 4-4"/>
</symbol>
<symbol id="sui-icon-nav-bell" viewBox="0 0 24 24">
<title>Notifications</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9m-4.27 13a2 2 0 0 1-3.46 0"/>
</symbol>
<symbol id="sui-icon-nav-chevron-down" viewBox="0 0 24 24">
<title>Chevron Down</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m6 9 6 6 6-6"/>
</symbol>
<symbol id="sui-icon-nav-chevron-left" viewBox="0 0 24 24">
<title>Chevron Left</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m15 18-6-6 6-6"/>
</symbol>
<symbol id="sui-icon-nav-chevron-right" viewBox="0 0 24 24">
<title>Chevron Right</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m9 6 6 6-6 6"/>
</symbol>
<symbol id="sui-icon-nav-chevron-up" viewBox="0 0 24 24">
<title>Chevron Up</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m18 15-6-6-6 6"/>
</symbol>
<symbol id="sui-icon-nav-chevrons-down" viewBox="0 0 24 24">
<title>Expand All</title>
<polyline points="6 8 12 14 18 8" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="6 14 12 20 18 14" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-nav-chevrons-left" viewBox="0 0 24 24">
<title>Skip Back</title>
<polyline points="13 6 7 12 13 18" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="19 6 13 12 19 18" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-nav-chevrons-right" viewBox="0 0 24 24">
<title>Skip Forward</title>
<polyline points="11 6 17 12 11 18" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="5 6 11 12 5 18" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-nav-chevrons-up" viewBox="0 0 24 24">
<title>Collapse All</title>
<polyline points="6 10 12 4 18 10" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="6 16 12 10 18 16" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-nav-corner-down-right" viewBox="0 0 24 24">
<title>Forward</title>
<path d="M4 4v6a6 6 0 0 0 6 6h8" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="14 20 20 14 14 14" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-nav-corner-up-left" viewBox="0 0 24 24">
<title>Reply</title>
<path d="M20 20v-6a6 6 0 0 0-6-6H6" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="10 4 4 10 10 10" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-nav-corner-up-right" viewBox="0 0 24 24">
<title>Reply Forward</title>
<path d="M4 20v-6a6 6 0 0 1 6-6h8" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="14 4 20 10 14 10" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-nav-expand" viewBox="0 0 24 24">
<title>Expand</title>
<polyline points="3 9 3 3 9 3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="15 3 21 3 21 9" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="21 15 21 21 15 21" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="9 21 3 21 3 15" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-nav-grip-horizontal" viewBox="0 0 24 24">
<title>Drag Handle Horizontal</title>
<circle cx="6" cy="9" r="1.5" fill="currentColor" stroke="none"/>
<circle cx="12" cy="9" r="1.5" fill="currentColor" stroke="none"/>
<circle cx="18" cy="9" r="1.5" fill="currentColor" stroke="none"/>
<circle cx="6" cy="15" r="1.5" fill="currentColor" stroke="none"/>
<circle cx="12" cy="15" r="1.5" fill="currentColor" stroke="none"/>
<circle cx="18" cy="15" r="1.5" fill="currentColor" stroke="none"/>
</symbol>
<symbol id="sui-icon-nav-grip-vertical" viewBox="0 0 24 24">
<title>Drag Handle Vertical</title>
<circle cx="9" cy="6" r="1.5" fill="currentColor" stroke="none"/>
<circle cx="15" cy="6" r="1.5" fill="currentColor" stroke="none"/>
<circle cx="9" cy="12" r="1.5" fill="currentColor" stroke="none"/>
<circle cx="15" cy="12" r="1.5" fill="currentColor" stroke="none"/>
<circle cx="9" cy="18" r="1.5" fill="currentColor" stroke="none"/>
<circle cx="15" cy="18" r="1.5" fill="currentColor" stroke="none"/>
</symbol>
<symbol id="sui-icon-nav-home" viewBox="0 0 24 24">
<title>Home</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m3 9 9-7 9 7v11h-6v-6H9v6H3z"/>
</symbol>
<symbol id="sui-icon-nav-menu" viewBox="0 0 24 24">
<title>Menu</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 7h18M3 12h18M3 17h18"/>
</symbol>
<symbol id="sui-icon-nav-more-horizontal" viewBox="0 0 24 24">
<title>More Options</title>
<circle cx="5" cy="12" r="1.5" fill="currentColor"/>
<circle cx="12" cy="12" r="1.5" fill="currentColor"/>
<circle cx="19" cy="12" r="1.5" fill="currentColor"/>
</symbol>
<symbol id="sui-icon-nav-more-vertical" viewBox="0 0 24 24">
<title>More Options Vertical</title>
<circle cx="12" cy="5" r="1.5" fill="currentColor"/>
<circle cx="12" cy="12" r="1.5" fill="currentColor"/>
<circle cx="12" cy="19" r="1.5" fill="currentColor"/>
</symbol>
<symbol id="sui-icon-nav-move" viewBox="0 0 24 24">
<title>Move</title>
<path d="M12 4v16M4 12h16" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="9 7 12 4 15 7" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="9 17 12 20 15 17" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="7 9 4 12 7 15" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="17 9 20 12 17 15" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-nav-panel-bottom" viewBox="0 0 24 24">
<title>Bottom Panel</title>
<use href="#sui-icon-ui-panel-bottom"/>
</symbol>
<symbol id="sui-icon-nav-panel-right" viewBox="0 0 24 24">
<title>Right Panel</title>
<use href="#sui-icon-ui-panel-right"/>
</symbol>
<symbol id="sui-icon-nav-settings" viewBox="0 0 24 24">
<title>Settings</title>
<circle cx="12" cy="12" r="3" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.9 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.9.33 1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1"/>
</symbol>
<symbol id="sui-icon-nav-shrink" viewBox="0 0 24 24">
<title>Shrink</title>
<polyline points="9 3 9 9 3 9" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="21 9 15 9 15 3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="3 15 9 15 9 21" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="15 21 15 15 21 15" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-nav-sidebar-left" viewBox="0 0 24 24">
<title>Toggle Left Sidebar</title>
<rect width="18" height="18" x="3" y="3" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" rx="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 3v18"/>
</symbol>
<symbol id="sui-icon-nav-sidebar-right" viewBox="0 0 24 24">
<title>Toggle Right Sidebar</title>
<rect width="18" height="18" x="3" y="3" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" rx="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 3v18"/>
</symbol>
<symbol id="sui-icon-nav-user" viewBox="0 0 24 24">
<title>User</title>
<circle cx="12" cy="8" r="4" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 20c0-4 3.6-7 8-7s8 3 8 7"/>
</symbol>
<symbol id="sui-icon-nav-users" viewBox="0 0 24 24">
<title>Users</title>
<circle cx="9" cy="8" r="3.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2 20c0-3.5 3-6 7-6s7 2.5 7 6"/>
<circle cx="17" cy="9" r="2.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M22 20c0-2.5-2-4.5-5-4.5"/>
</symbol>
<symbol id="sui-icon-nav-corner-down-left" viewBox="0 0 24 24">
<title>Corner Down Left</title>
<path d="M20 4v6a6 6 0 0 1-6 6H4" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="8 12 4 16 8 20" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<!-- ============================================================ -->
<!-- ACT (Actions) — 56 symbols -->
<!-- ============================================================ -->
<symbol id="sui-icon-act-archive" viewBox="0 0 24 24">
<title>Archive</title>
<rect x="3" y="4" width="18" height="4" rx="1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="10 13 12 15 14 13" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="12" y1="11" x2="12" y2="15" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-bookmark" viewBox="0 0 24 24">
<title>Bookmark</title>
<use href="#sui-icon-soc-bookmark"/>
</symbol>
<symbol id="sui-icon-act-bookmark-check" viewBox="0 0 24 24">
<title>Bookmarked</title>
<path d="M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="9 11 11 13 15 9" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-chef-hat" viewBox="0 0 24 24">
<title>Chef Hat</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 13.87A4 4 0 0 1 7.41 6a5.1 5.1 0 0 1 1.05-1.54 5 5 0 0 1 7.08 0A5.1 5.1 0 0 1 16.59 6 4 4 0 0 1 18 13.87V21H6zM6 17h12"/>
</symbol>
<symbol id="sui-icon-act-clipboard-check" viewBox="0 0 24 24">
<title>Clipboard Checked</title>
<rect x="9" y="2" width="6" height="4" rx="1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="9 12 11 14 15 10" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-clipboard-copy" viewBox="0 0 24 24">
<title>Copy to Clipboard</title>
<rect x="9" y="2" width="6" height="4" rx="1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 4H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h6" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="12" y="11" width="9" height="9" rx="1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="15" y1="14" x2="18" y2="14" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="15" y1="17" x2="18" y2="17" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-clipboard-list" viewBox="0 0 24 24">
<title>Task List</title>
<rect x="9" y="2" width="6" height="4" rx="1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="9" y1="11" x2="15" y2="11" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="9" y1="14" x2="15" y2="14" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="9" y1="17" x2="12" y2="17" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-close" viewBox="0 0 24 24">
<title>Close</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 6 6 18M6 6l12 12"/>
</symbol>
<symbol id="sui-icon-act-copy" viewBox="0 0 24 24">
<title>Copy</title>
<rect width="13" height="13" x="9" y="9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" rx="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/>
</symbol>
<symbol id="sui-icon-act-crown" viewBox="0 0 24 24">
<title>Premium</title>
<path d="M2 10 L8 15 L12 4 L16 15 L22 10 L22 20 L2 20 Z" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-download" viewBox="0 0 24 24">
<title>Download</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v12m-5-3 5 5 5-5m3 9H4"/>
</symbol>
<symbol id="sui-icon-act-edit" viewBox="0 0 24 24">
<title>Edit</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4z"/>
</symbol>
<symbol id="sui-icon-act-edit-3" viewBox="0 0 24 24">
<title>Edit</title>
<use href="#sui-icon-act-edit-pen"/>
</symbol>
<symbol id="sui-icon-act-edit-pen" viewBox="0 0 24 24">
<title>Edit</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5z"/>
</symbol>
<symbol id="sui-icon-act-edit-pencil" viewBox="0 0 24 24">
<title>Edit</title>
<use href="#sui-icon-act-edit-pen"/>
</symbol>
<symbol id="sui-icon-act-external-link" viewBox="0 0 24 24">
<title>External Link</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6m4-3h6v6m-11 5L21 3"/>
</symbol>
<symbol id="sui-icon-act-flask" viewBox="0 0 24 24">
<title>Flask</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 2v7.527a2 2 0 0 1-.211.896L4.72 20.26a1 1 0 0 0 .88 1.49h12.8a1 1 0 0 0 .88-1.49l-5.07-9.837a2 2 0 0 1-.21-.896V2M8.5 2h7"/>
<circle cx="9" cy="16" r="1" fill="currentColor"/>
<circle cx="14" cy="13" r="1" fill="currentColor"/>
</symbol>
<symbol id="sui-icon-act-globe" viewBox="0 0 24 24">
<title>Globe</title>
<circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12h18m-9-9a15.3 15.3 0 0 1 4 9 15.3 15.3 0 0 1-4 9 15.3 15.3 0 0 1-4-9 15.3 15.3 0 0 1 4-9"/>
</symbol>
<symbol id="sui-icon-act-life-buoy" viewBox="0 0 24 24">
<title>Help</title>
<circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<circle cx="12" cy="12" r="4" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m4.93 4.93 4.24 4.24m5.66 5.66 4.24 4.24m-4.24-9.9 4.24-4.24M4.93 19.07l4.24-4.24"/>
</symbol>
<symbol id="sui-icon-act-link" viewBox="0 0 24 24">
<title>Link</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/>
</symbol>
<symbol id="sui-icon-act-merge" viewBox="0 0 24 24">
<title>Merge</title>
<path d="M4 4v4a4 4 0 0 0 4 4h8" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 20v-4a4 4 0 0 1 4-4h8" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="14 9 18 12 14 15" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-minus" viewBox="0 0 24 24">
<title>Remove</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 12h16"/>
</symbol>
<symbol id="sui-icon-act-minus-circle" viewBox="0 0 24 24">
<title>Remove</title>
<circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h8"/>
</symbol>
<symbol id="sui-icon-act-pen-tool" viewBox="0 0 24 24">
<title>Pen Tool</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m12 19 7-7 3 3-7 7z"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m18 13-1.5-7.5L2 2l3.5 14.5L13 18zM2 2l7.586 7.586"/>
<circle cx="11" cy="11" r="2" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
</symbol>
<symbol id="sui-icon-act-pin" viewBox="0 0 24 24">
<title>Pin</title>
<circle cx="12" cy="7" r="4" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="9" y1="7" x2="15" y2="7" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="12" y1="11" x2="12" y2="21" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-pin-off" viewBox="0 0 24 24">
<title>Unpin</title>
<circle cx="12" cy="7" r="4" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="9" y1="7" x2="15" y2="7" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="12" y1="11" x2="12" y2="21" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="3" y1="3" x2="21" y2="21" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-plus" viewBox="0 0 24 24">
<title>Add</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4v16m-8-8h16"/>
</symbol>
<symbol id="sui-icon-act-qr-code" viewBox="0 0 24 24">
<title>QR Code</title>
<rect x="3" y="3" width="7" height="7" rx="1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="14" y="3" width="7" height="7" rx="1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="3" y="14" width="7" height="7" rx="1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="5" y="5" width="3" height="3" fill="currentColor" stroke="none"/>
<rect x="16" y="5" width="3" height="3" fill="currentColor" stroke="none"/>
<rect x="5" y="16" width="3" height="3" fill="currentColor" stroke="none"/>
<line x1="14" y1="14" x2="14" y2="14" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="17" y1="14" x2="21" y2="14" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="14" y1="17" x2="14" y2="21" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="17" y1="17" x2="17" y2="17" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="21" y1="17" x2="21" y2="21" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="17" y1="21" x2="21" y2="21" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-redo" viewBox="0 0 24 24">
<title>Redo</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m15 14 5-5-5-5"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 20v-7a4 4 0 0 1 4-4h12"/>
</symbol>
<symbol id="sui-icon-act-refresh" viewBox="0 0 24 24">
<title>Refresh</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M23 4v6h-6"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.49 15a9 9 0 1 1-2.12-9.36L23 10"/>
</symbol>
<symbol id="sui-icon-act-refresh-cw" viewBox="0 0 24 24">
<title>Refresh</title>
<use href="#sui-icon-act-refresh"/>
</symbol>
<symbol id="sui-icon-act-refresh-ccw" viewBox="0 0 24 24">
<title>Refresh Counter-Clockwise</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M1 4v6h6"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3.51 15a9 9 0 1 0 2.13-9.36L1 10"/>
</symbol>
<symbol id="sui-icon-act-repeat" viewBox="0 0 24 24">
<title>Repeat</title>
<polyline points="17 2 21 6 17 10" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 11V9a4 4 0 0 1 4-4h14" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="7 22 3 18 7 14" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21 13v2a4 4 0 0 1-4 4H3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-replace" viewBox="0 0 24 24">
<title>Replace</title>
<line x1="3" y1="8" x2="14" y2="8" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="11 5 14 8 11 11" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="21" y1="16" x2="10" y2="16" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="13 13 10 16 13 19" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-rocket" viewBox="0 0 24 24">
<title>Launch</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09M12 15l-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.4 22.4 0 0 1-4 2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0m1 7v5s3.03-.55 4-2c1.08-1.62 0-5 0-5"/>
</symbol>
<symbol id="sui-icon-act-rotate-ccw" viewBox="0 0 24 24">
<title>Rotate Counter-clockwise</title>
<rect x="8" y="8" width="8" height="8" rx="1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11 3a9 9 0 0 0-8 8" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="3 6 3 11 8 11" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-rotate-cw" viewBox="0 0 24 24">
<title>Rotate Clockwise</title>
<rect x="8" y="8" width="8" height="8" rx="1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13 3a9 9 0 0 1 8 8" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="21 6 21 11 16 11" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-save" viewBox="0 0 24 24">
<title>Save</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 21v-8H7v8M7 3v5h8"/>
</symbol>
<symbol id="sui-icon-act-scan" viewBox="0 0 24 24">
<title>Scan</title>
<path d="M3 7V5a2 2 0 0 1 2-2h2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17 3h2a2 2 0 0 1 2 2v2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21 17v2a2 2 0 0 1-2 2h-2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7 21H5a2 2 0 0 1-2-2v-2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-scissors" viewBox="0 0 24 24">
<title>Cut</title>
<circle cx="6.5" cy="7" r="3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="6.5" cy="17" r="3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="9" y1="9" x2="20" y2="20" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="20" y1="4" x2="9" y2="15" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-search" viewBox="0 0 24 24">
<title>Search</title>
<circle cx="11" cy="11" r="7" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16.5 16.5 21 21"/>
</symbol>
<symbol id="sui-icon-act-share" viewBox="0 0 24 24">
<title>Share</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"/>
<polyline points="16 6 12 2 8 6" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<line x1="12" y1="2" x2="12" y2="15" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
</symbol>
<symbol id="sui-icon-act-share-2" viewBox="0 0 24 24">
<title>Share</title>
<circle cx="18" cy="5" r="3" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<circle cx="6" cy="12" r="3" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<circle cx="18" cy="19" r="3" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m8.59 13.51 6.83 3.98m-.01-10.98-6.82 3.98"/>
</symbol>
<symbol id="sui-icon-act-shuffle" viewBox="0 0 24 24">
<title>Shuffle</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 3h5v5M4 20 21 3m0 13v5h-5m-1-6 6 6M4 4l5 5"/>
</symbol>
<symbol id="sui-icon-act-skip-back" viewBox="0 0 24 24">
<title>Skip Back</title>
<polyline points="20 5 11 12 20 19" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="5" y1="5" x2="5" y2="19" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-skip-forward" viewBox="0 0 24 24">
<title>Skip Forward</title>
<polyline points="4 5 13 12 4 19" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="19" y1="5" x2="19" y2="19" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-slash" viewBox="0 0 24 24">
<title>Slash</title>
<circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 17 17 7"/>
</symbol>
<symbol id="sui-icon-act-split" viewBox="0 0 24 24">
<title>Split</title>
<line x1="3" y1="12" x2="9" y2="12" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 12v-4a4 4 0 0 1 4-4h7" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 12v4a4 4 0 0 0 4 4h7" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="16 5 20 8 16 11" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="16 13 20 16 16 19" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-act-target" viewBox="0 0 24 24">
<title>Target</title>
<circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<circle cx="12" cy="12" r="5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<circle cx="12" cy="12" r="1.5" fill="currentColor"/>
</symbol>
<symbol id="sui-icon-act-trash" viewBox="0 0 24 24">
<title>Delete</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 6h18m-2 0-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6m5 5v6m4-6v6M9 6V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2"/>
</symbol>
<symbol id="sui-icon-act-trash-2" viewBox="0 0 24 24">
<title>Delete</title>
<use href="#sui-icon-act-trash"/>
</symbol>
<symbol id="sui-icon-act-undo" viewBox="0 0 24 24">
<title>Undo</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 14 4 9l5-5"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 20v-7a4 4 0 0 0-4-4H4"/>
</symbol>
<symbol id="sui-icon-act-unlink" viewBox="0 0 24 24">
<title>Unlink</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71M1 1l22 22"/>
</symbol>
<symbol id="sui-icon-act-upload" viewBox="0 0 24 24">
<title>Upload</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 21V9m-5 5 5-5 5 5m3 7H4"/>
</symbol>
<symbol id="sui-icon-act-wand" viewBox="0 0 24 24">
<title>Magic Wand</title>
<line x1="2" y1="22" x2="14" y2="10" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 2l1.5 3.5L23 7l-3.5 1.5L18 12l-1.5-3.5L13 7l3.5-1.5z" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="8" y1="2" x2="8" y2="5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
<line x1="6.5" y1="3.5" x2="9.5" y2="3.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
</symbol>
<symbol id="sui-icon-act-x" viewBox="0 0 24 24">
<title>Close</title>
<use href="#sui-icon-act-close"/>
</symbol>
<symbol id="sui-icon-act-zap" viewBox="0 0 24 24">
<title>Lightning</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 2 3 14h9l-1 8 10-12h-9z"/>
</symbol>
<!-- ============================================================ -->
<!-- STATUS (Status & Feedback) — 28 symbols -->
<!-- ============================================================ -->
<symbol id="sui-icon-status-alert-circle" viewBox="0 0 24 24">
<title>Alert</title>
<circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01"/>
</symbol>
<symbol id="sui-icon-status-alert-filled" viewBox="0 0 24 24">
<title>Warning</title>
<path fill-rule="evenodd" fill="currentColor" stroke="none" d="M12 2L2 20h20L12 2z M11 9h2v6h-2z M11 17h2v2h-2z"/>
</symbol>
<symbol id="sui-icon-status-alert-triangle" viewBox="0 0 24 24">
<title>Warning</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0M12 9v4m0 4h.01"/>
</symbol>
<symbol id="sui-icon-status-badge-check" viewBox="0 0 24 24">
<title>Verified</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m12 2 2.8 2.8h3.4V8.2L21 12l-2.8 2.8v3.4H14.8L12 21l-2.8-2.8H5.8v-3.4L3 12l2.8-2.8V5.8h3.4z"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m9 12 2 2 4-4"/>
</symbol>
<symbol id="sui-icon-status-ban" viewBox="0 0 24 24">
<title>Blocked</title>
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="4.93" y1="4.93" x2="19.07" y2="19.07" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-status-battery" viewBox="0 0 24 24">
<title>Battery</title>
<rect x="2" y="7" width="16" height="10" rx="2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22 11v2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="5" y1="11" x2="5" y2="13" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="8" y1="11" x2="8" y2="13" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="11" y1="11" x2="11" y2="13" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="14" y1="11" x2="14" y2="13" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-status-battery-low" viewBox="0 0 24 24">
<title>Low Battery</title>
<rect x="2" y="7" width="16" height="10" rx="2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22 11v2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="5" y1="11" x2="5" y2="13" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-status-bell-filled" viewBox="0 0 24 24">
<title>Notifications Active</title>
<path fill="currentColor" stroke="none" d="M18 8a6 6 0 0 0-12 0c0 7-3 9-3 9h18s-3-2-3-9z"/>
<path fill="currentColor" stroke="none" d="M13.73 21a2 2 0 0 1-3.46 0z"/>
<line x1="12" y1="2" x2="12" y2="4" stroke="currentColor" stroke-width="2" stroke-linecap="round" fill="none" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-status-check" viewBox="0 0 24 24">
<title>Success Check</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 6 9 17l-5-5"/>
</symbol>
<symbol id="sui-icon-status-check-circle" viewBox="0 0 24 24">
<title>Success</title>
<circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m9 12 2 2 4-4"/>
</symbol>
<symbol id="sui-icon-status-check-filled" viewBox="0 0 24 24">
<title>Success</title>
<path fill-rule="evenodd" fill="currentColor" stroke="none" d="M12 2a10 10 0 1 0 0 20A10 10 0 0 0 12 2z M7 13.5l2.5-2.5 1 1.5 5-5.5 1.5 1.5-6.5 7.5z"/>
</symbol>
<symbol id="sui-icon-status-circle" viewBox="0 0 24 24">
<title>Unselected</title>
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-status-circle-dot" viewBox="0 0 24 24">
<title>Selected</title>
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="12" cy="12" r="4" fill="currentColor" stroke="none"/>
</symbol>
<symbol id="sui-icon-status-heart-filled" viewBox="0 0 24 24">
<title>Loved</title>
<path fill="currentColor" stroke="none" d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/>
</symbol>
<symbol id="sui-icon-status-help-circle" viewBox="0 0 24 24">
<title>Help</title>
<circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"/>
<circle cx="12" cy="17" r=".5" fill="currentColor" stroke="currentColor"/>
</symbol>
<symbol id="sui-icon-status-help-filled" viewBox="0 0 24 24">
<title>Help</title>
<path fill-rule="evenodd" fill="currentColor" stroke="none" d="M12 2a10 10 0 1 0 0 20A10 10 0 0 0 12 2z M12 7a3 3 0 0 1 1.5 5.6V14h-2v-2a1 1 0 0 1 1-1 1 1 0 0 0 0-2 1 1 0 0 0-1 1H9.5A3.5 3.5 0 0 1 12 7z M11 16h2v2h-2z"/>
</symbol>
<symbol id="sui-icon-status-info" viewBox="0 0 24 24">
<title>Information</title>
<circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v.5m0 3V16"/>
</symbol>
<symbol id="sui-icon-status-info-filled" viewBox="0 0 24 24">
<title>Info</title>
<path fill-rule="evenodd" fill="currentColor" stroke="none" d="M12 2a10 10 0 1 0 0 20A10 10 0 0 0 12 2z M11 6.5h2v2h-2z M10.5 10.5h1v6h-1z M12.5 10.5h1v6h-1z M10.5 16.5h3v1h-3z M10.5 10.5h3v1h-3z"/>
</symbol>
<symbol id="sui-icon-status-loader" viewBox="0 0 24 24">
<title>Loading</title>
<line x1="12" y1="2" x2="12" y2="6" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<line x1="12" y1="18" x2="12" y2="22" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<line x1="4.93" y1="4.93" x2="7.76" y2="7.76" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<line x1="16.24" y1="16.24" x2="19.07" y2="19.07" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<line x1="2" y1="12" x2="6" y2="12" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<line x1="18" y1="12" x2="22" y2="12" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<line x1="4.93" y1="19.07" x2="7.76" y2="16.24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<line x1="16.24" y1="7.76" x2="19.07" y2="4.93" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
</symbol>
<symbol id="sui-icon-status-loader-2" viewBox="0 0 24 24">
<title>Loading</title>
<circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-dasharray="28 28" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
</symbol>
<symbol id="sui-icon-status-minus-circle" viewBox="0 0 24 24">
<title>Indeterminate</title>
<use href="#sui-icon-act-minus-circle"/>
</symbol>
<symbol id="sui-icon-status-power" viewBox="0 0 24 24">
<title>Power</title>
<path d="M18.36 6.64a9 9 0 1 1-12.73 0" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="12" y1="2" x2="12" y2="12" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-status-signal" viewBox="0 0 24 24">
<title>Signal Strength</title>
<line x1="2" y1="20" x2="2" y2="17" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="7" y1="20" x2="7" y2="13" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="12" y1="20" x2="12" y2="9" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="17" y1="20" x2="17" y2="5" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="22" y1="20" x2="22" y2="2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-status-star-filled" viewBox="0 0 24 24">
<title>Favourite</title>
<polygon fill="currentColor" stroke="none" points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/>
</symbol>
<symbol id="sui-icon-status-wifi" viewBox="0 0 24 24">
<title>Connected</title>
<path d="M1.42 9a16 16 0 0 1 21.16 0" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 12.55a11 11 0 0 1 14.08 0" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.53 16.11a6 6 0 0 1 6.95 0" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="12" cy="20" r="1" fill="currentColor" stroke="none"/>
</symbol>
<symbol id="sui-icon-status-wifi-off" viewBox="0 0 24 24">
<title>Disconnected</title>
<path d="M1.42 9a16 16 0 0 1 21.16 0" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 12.55a11 11 0 0 1 14.08 0" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.53 16.11a6 6 0 0 1 6.95 0" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="12" cy="20" r="1" fill="currentColor" stroke="none"/>
<line x1="2" y1="2" x2="22" y2="22" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-status-x-circle" viewBox="0 0 24 24">
<title>Error</title>
<circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m15 9-6 6m0-6 6 6"/>
</symbol>
<symbol id="sui-icon-status-x-filled" viewBox="0 0 24 24">
<title>Error</title>
<path fill-rule="evenodd" fill="currentColor" stroke="none" d="M12 2a10 10 0 1 0 0 20A10 10 0 0 0 12 2z M15.5 7L12 10.5L8.5 7L7 8.5L10.5 12L7 15.5L8.5 17L12 13.5L15.5 17L17 15.5L13.5 12L17 8.5Z"/>
</symbol>
<symbol id="sui-icon-status-dot" viewBox="0 0 24 24">
<title>Status Dot</title>
<circle cx="12" cy="12" r="5" fill="currentColor" stroke="none"/>
</symbol>
<!-- ============================================================ -->
<!-- DATA (Data & Analytics) — 29 symbols -->
<!-- ============================================================ -->
<symbol id="sui-icon-data-activity" viewBox="0 0 24 24">
<title>Activity</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M22 12h-4l-3 8L9 4l-3 8H2"/>
</symbol>
<symbol id="sui-icon-data-bar-chart" viewBox="0 0 24 24">
<title>Bar Chart</title>
<rect width="4" height="9" x="3" y="12" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" rx="1"/>
<rect width="4" height="14" x="10" y="7" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" rx="1"/>
<rect width="4" height="17" x="17" y="4" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" rx="1"/>
</symbol>
<symbol id="sui-icon-data-binary" viewBox="0 0 24 24">
<title>Binary</title>
<rect x="3" y="6" width="4" height="12" rx="2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="10" y1="6" x2="10" y2="18" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="10" y1="6" x2="12" y2="8" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="14" y="6" width="7" height="12" rx="3.5" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-data-chart-area" viewBox="0 0 24 24">
<title>Area Chart</title>
<path d="M3 20v-8l4-4 4 6 4-8 4 5v9H3z" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="3" y1="20" x2="21" y2="20" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-data-chart-donut" viewBox="0 0 24 24">
<title>Donut Chart</title>
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="12" cy="12" r="5" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="12" y1="3" x2="12" y2="7" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-data-chart-scatter" viewBox="0 0 24 24">
<title>Scatter Plot</title>
<circle cx="6" cy="16" r="2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="10" cy="10" r="2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="15" cy="13" r="2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="19" cy="6" r="2" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="3" y1="20" x2="3" y2="4" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="3" y1="20" x2="21" y2="20" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-data-cloud" viewBox="0 0 24 24">
<title>Cloud Storage</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10"/>
</symbol>
<symbol id="sui-icon-data-cloud-upload" viewBox="0 0 24 24">
<title>Upload to Cloud</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m16 16-4-4-4 4m4-4v9"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"/>
</symbol>
<symbol id="sui-icon-data-cloud-download" viewBox="0 0 24 24">
<title>Download from Cloud</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m8 17 4 4 4-4m-4 4v-9"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"/>
</symbol>
<symbol id="sui-icon-data-database" viewBox="0 0 24 24">
<title>Database</title>
<ellipse cx="12" cy="5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" rx="9" ry="3"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"/>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"/>
</symbol>
<symbol id="sui-icon-data-filter" viewBox="0 0 24 24">
<title>Filter</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M22 3H2l8 9.46V19l4 2v-8.54z"/>
</symbol>
<symbol id="sui-icon-data-funnel" viewBox="0 0 24 24">
<title>Funnel</title>
<path d="M3 4h18l-7 9v7l-4-2v-5L3 4z" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-data-gauge" viewBox="0 0 24 24">
<title>Gauge</title>
<path d="M2 15a10 10 0 1 1 20 0" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 15l-4.5-6" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="12" cy="15" r="1.5" fill="currentColor" stroke="none"/>
<line x1="2" y1="19" x2="22" y2="19" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
</symbol>
<symbol id="sui-icon-data-git-branch" viewBox="0 0 24 24">
<title>Git Branch</title>
<line x1="6" y1="3" x2="6" y2="15" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 18a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 15a9 9 0 0 0 9-9" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-data-git-commit" viewBox="0 0 24 24">
<title>Git Commit</title>
<circle cx="12" cy="12" r="3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="2" y1="12" x2="9" y2="12" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="15" y1="12" x2="22" y2="12" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-data-git-merge" viewBox="0 0 24 24">
<title>Git Merge</title>
<circle cx="18" cy="6" r="3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="6" cy="6" r="3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 9v4a3 3 0 0 0 3 3h7" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="18" cy="18" r="3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="18" y1="9" x2="18" y2="15" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-data-git-pull-request" viewBox="0 0 24 24">
<title>Pull Request</title>
<circle cx="18" cy="18" r="3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="6" cy="6" r="3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13 6h3a2 2 0 0 1 2 2v7" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="6" y1="9" x2="6" y2="21" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-data-hash" viewBox="0 0 24 24">
<title>Number</title>
<line x1="4" y1="9" x2="20" y2="9" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="4" y1="15" x2="20" y2="15" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="10" y1="3" x2="8" y2="21" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="16" y1="3" x2="14" y2="21" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-data-line-chart" viewBox="0 0 24 24">
<title>Line Chart</title>
<polyline points="3 20 7 12 11 16 15 8 19 13 22 10" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="3" y1="20" x2="22" y2="20" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol id="sui-icon-data-list" viewBox="0 0 24 24">
<title>List</title>
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 6h13M8 12h13M8 18h13"/>
<circle cx="4" cy="6" r="1.5" fill="currentColor"/>
<circle cx="4" cy="12" r="1.5" fill="currentColor"/>
<circle cx="4" cy="18" r="1.5" fill="currentColor"/>
</symbol>
<symbol id="sui-icon-data-percent" viewBox="0 0 24 24">
<title>Percentage</title>
<circle cx="8" cy="8" r="3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="16" cy="16" r="3" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="4" y1="20" x2="20" y2="4" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>