@vscode/codicons 0.0.46-11 → 0.0.46-12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/codicon.css +31 -3
  2. package/dist/codicon.csv +30 -2
  3. package/dist/codicon.html +814 -7
  4. package/dist/codicon.svg +1 -1
  5. package/dist/codicon.ttf +0 -0
  6. package/dist/codiconsLibrary.ts +30 -0
  7. package/dist/metadata.json +359 -0
  8. package/package.json +1 -1
  9. package/src/icons/attach-compact.svg +1 -0
  10. package/src/icons/beaker-compact.svg +1 -0
  11. package/src/icons/check-compact.svg +1 -0
  12. package/src/icons/checklist-compact.svg +1 -0
  13. package/src/icons/chevron-down-compact.svg +1 -0
  14. package/src/icons/chevron-left-compact.svg +1 -0
  15. package/src/icons/chevron-right-compact.svg +1 -0
  16. package/src/icons/chevron-up-compact.svg +1 -0
  17. package/src/icons/circle-filled-compact.svg +1 -0
  18. package/src/icons/circle-small-filled-compact.svg +1 -0
  19. package/src/icons/close-compact.svg +1 -0
  20. package/src/icons/collapse-all-compact.svg +1 -0
  21. package/src/icons/comment-compact.svg +1 -0
  22. package/src/icons/comment-unresolved-compact.svg +1 -0
  23. package/src/icons/debug-connected-compact.svg +1 -0
  24. package/src/icons/debug-disconnect-compact.svg +1 -0
  25. package/src/icons/edit-compact.svg +1 -0
  26. package/src/icons/file-media-compact.svg +1 -0
  27. package/src/icons/lightbulb-compact.svg +1 -0
  28. package/src/icons/loading-compact.svg +1 -0
  29. package/src/icons/pass-filled-compact.svg +1 -0
  30. package/src/icons/project-compact.svg +1 -0
  31. package/src/icons/refresh-compact.svg +1 -0
  32. package/src/icons/search-compact.svg +1 -0
  33. package/src/icons/session-in-progress-compact.svg +1 -0
  34. package/src/icons/sync-compact.svg +1 -0
  35. package/src/icons/sync-ignored.svg +1 -1
  36. package/src/icons/terminal-compact.svg +1 -0
  37. package/src/icons/worktree-compact.svg +1 -0
  38. package/src/template/mapping.json +90 -0
  39. package/src/template/metadata.json +359 -0
package/dist/codicon.ttf CHANGED
Binary file
@@ -683,4 +683,34 @@ export const codiconsLibrary = {
683
683
  rocketCompact: register('rocket-compact', 0xec9d),
684
684
  unpin: register('unpin', 0xec9e),
685
685
  addCompact: register('add-compact', 0xec9f),
686
+ attachCompact: register('attach-compact', 0xeca0),
687
+ beakerCompact: register('beaker-compact', 0xeca1),
688
+ checkCompact: register('check-compact', 0xeca2),
689
+ checklistCompact: register('checklist-compact', 0xeca3),
690
+ chevronDownCompact: register('chevron-down-compact', 0xeca4),
691
+ chevronLeftCompact: register('chevron-left-compact', 0xeca5),
692
+ chevronRightCompact: register('chevron-right-compact', 0xeca6),
693
+ chevronUpCompact: register('chevron-up-compact', 0xeca7),
694
+ circleFilledCompact: register('circle-filled-compact', 0xeca8),
695
+ circleSmallFilledCompact: register('circle-small-filled-compact', 0xeca9),
696
+ closeCompact: register('close-compact', 0xecaa),
697
+ collapseAllCompact: register('collapse-all-compact', 0xecab),
698
+ commentCompact: register('comment-compact', 0xecac),
699
+ commentUnresolvedCompact: register('comment-unresolved-compact', 0xecad),
700
+ debugConnectedCompact: register('debug-connected-compact', 0xecae),
701
+ debugDisconnectCompact: register('debug-disconnect-compact', 0xecaf),
702
+ editCompact: register('edit-compact', 0xecb0),
703
+ fileMediaCompact: register('file-media-compact', 0xecb1),
704
+ gitFetch: register('git-fetch', 0xecb2),
705
+ lightbulbCompact: register('lightbulb-compact', 0xecb3),
706
+ loadingCompact: register('loading-compact', 0xecb4),
707
+ passFilledCompact: register('pass-filled-compact', 0xecb5),
708
+ projectCompact: register('project-compact', 0xecb6),
709
+ refreshCompact: register('refresh-compact', 0xecb7),
710
+ searchCompact: register('search-compact', 0xecb8),
711
+ sessionInProgressCompact: register('session-in-progress-compact', 0xecb9),
712
+ syncCompact: register('sync-compact', 0xecba),
713
+ terminalCompact: register('terminal-compact', 0xecbb),
714
+ vmPending: register('vm-pending', 0xecbc),
715
+ worktreeCompact: register('worktree-compact', 0xecbd),
686
716
  } as const;
@@ -279,6 +279,18 @@
279
279
  "category": "action",
280
280
  "description": "Attach file or item"
281
281
  },
282
+ "attach-compact": {
283
+ "tags": [
284
+ "attachment",
285
+ "paperclip",
286
+ "clip",
287
+ "file",
288
+ "link",
289
+ "compact"
290
+ ],
291
+ "category": "action",
292
+ "description": "Attach a file or item (compact 12x12 variant)"
293
+ },
282
294
  "azure": {
283
295
  "tags": [
284
296
  "cloud",
@@ -313,6 +325,18 @@
313
325
  "category": "tool",
314
326
  "description": "Testing or experimental feature"
315
327
  },
328
+ "beaker-compact": {
329
+ "tags": [
330
+ "experiment",
331
+ "lab",
332
+ "test",
333
+ "science",
334
+ "flask",
335
+ "compact"
336
+ ],
337
+ "category": "tool",
338
+ "description": "Beaker for experimental features (compact 12x12 variant)"
339
+ },
316
340
  "beaker-stop": {
317
341
  "tags": [
318
342
  "test",
@@ -636,6 +660,18 @@
636
660
  "category": "action",
637
661
  "description": "Check all or select all"
638
662
  },
663
+ "check-compact": {
664
+ "tags": [
665
+ "done",
666
+ "complete",
667
+ "success",
668
+ "tick",
669
+ "approved",
670
+ "compact"
671
+ ],
672
+ "category": "status",
673
+ "description": "Checkmark (compact 12x12 variant)"
674
+ },
639
675
  "checklist": {
640
676
  "tags": [
641
677
  "checkmark",
@@ -652,6 +688,18 @@
652
688
  "category": "content",
653
689
  "description": "Checklist or task list"
654
690
  },
691
+ "checklist-compact": {
692
+ "tags": [
693
+ "tasks",
694
+ "todo",
695
+ "list",
696
+ "checkboxes",
697
+ "items",
698
+ "compact"
699
+ ],
700
+ "category": "action",
701
+ "description": "Checklist of items (compact 12x12 variant)"
702
+ },
655
703
  "chevron-down": {
656
704
  "tags": [
657
705
  "twistie",
@@ -666,6 +714,18 @@
666
714
  "category": "navigation",
667
715
  "description": "Chevron pointing down"
668
716
  },
717
+ "chevron-down-compact": {
718
+ "tags": [
719
+ "arrow",
720
+ "down",
721
+ "expand",
722
+ "collapse",
723
+ "direction",
724
+ "compact"
725
+ ],
726
+ "category": "navigation",
727
+ "description": "Chevron pointing down (compact 12x12 variant)"
728
+ },
669
729
  "chevron-left": {
670
730
  "tags": [
671
731
  "twistie",
@@ -679,6 +739,18 @@
679
739
  "category": "navigation",
680
740
  "description": "Chevron pointing left"
681
741
  },
742
+ "chevron-left-compact": {
743
+ "tags": [
744
+ "arrow",
745
+ "left",
746
+ "back",
747
+ "previous",
748
+ "direction",
749
+ "compact"
750
+ ],
751
+ "category": "navigation",
752
+ "description": "Chevron pointing left (compact 12x12 variant)"
753
+ },
682
754
  "chevron-right": {
683
755
  "tags": [
684
756
  "twistie",
@@ -692,6 +764,18 @@
692
764
  "category": "navigation",
693
765
  "description": "Chevron pointing right"
694
766
  },
767
+ "chevron-right-compact": {
768
+ "tags": [
769
+ "arrow",
770
+ "right",
771
+ "forward",
772
+ "next",
773
+ "direction",
774
+ "compact"
775
+ ],
776
+ "category": "navigation",
777
+ "description": "Chevron pointing right (compact 12x12 variant)"
778
+ },
695
779
  "chevron-up": {
696
780
  "tags": [
697
781
  "twistie",
@@ -705,6 +789,18 @@
705
789
  "category": "navigation",
706
790
  "description": "Chevron pointing up"
707
791
  },
792
+ "chevron-up-compact": {
793
+ "tags": [
794
+ "arrow",
795
+ "up",
796
+ "collapse",
797
+ "expand",
798
+ "direction",
799
+ "compact"
800
+ ],
801
+ "category": "navigation",
802
+ "description": "Chevron pointing up (compact 12x12 variant)"
803
+ },
708
804
  "chip": {
709
805
  "tags": [
710
806
  "hardware",
@@ -776,6 +872,18 @@
776
872
  "category": "shape",
777
873
  "description": "Filled circle"
778
874
  },
875
+ "circle-filled-compact": {
876
+ "tags": [
877
+ "circle",
878
+ "filled",
879
+ "dot",
880
+ "solid",
881
+ "indicator",
882
+ "compact"
883
+ ],
884
+ "category": "shape",
885
+ "description": "Filled circle (compact 12x12 variant)"
886
+ },
779
887
  "circle-large": {
780
888
  "tags": [
781
889
  "dot",
@@ -856,6 +964,18 @@
856
964
  "category": "shape",
857
965
  "description": "Small filled circle"
858
966
  },
967
+ "circle-small-filled-compact": {
968
+ "tags": [
969
+ "circle",
970
+ "dot",
971
+ "small",
972
+ "filled",
973
+ "indicator",
974
+ "compact"
975
+ ],
976
+ "category": "shape",
977
+ "description": "Small filled circle (compact 12x12 variant)"
978
+ },
859
979
  "circuit-board": {
860
980
  "tags": [
861
981
  "iot",
@@ -949,6 +1069,18 @@
949
1069
  "category": "action",
950
1070
  "description": "Close all items"
951
1071
  },
1072
+ "close-compact": {
1073
+ "tags": [
1074
+ "x",
1075
+ "cancel",
1076
+ "dismiss",
1077
+ "remove",
1078
+ "exit",
1079
+ "compact"
1080
+ ],
1081
+ "category": "action",
1082
+ "description": "Close or dismiss (compact 12x12 variant)"
1083
+ },
952
1084
  "cloud": {
953
1085
  "tags": [
954
1086
  "online",
@@ -1046,6 +1178,18 @@
1046
1178
  "category": "action",
1047
1179
  "description": "Collapse all items"
1048
1180
  },
1181
+ "collapse-all-compact": {
1182
+ "tags": [
1183
+ "collapse",
1184
+ "minimize",
1185
+ "fold",
1186
+ "tree",
1187
+ "hide",
1188
+ "compact"
1189
+ ],
1190
+ "category": "action",
1191
+ "description": "Collapse all items (compact 12x12 variant)"
1192
+ },
1049
1193
  "collection": {
1050
1194
  "tags": [
1051
1195
  "group",
@@ -1103,6 +1247,18 @@
1103
1247
  "category": "communication",
1104
1248
  "description": "Comment or message"
1105
1249
  },
1250
+ "comment-compact": {
1251
+ "tags": [
1252
+ "speech",
1253
+ "message",
1254
+ "chat",
1255
+ "feedback",
1256
+ "note",
1257
+ "compact"
1258
+ ],
1259
+ "category": "communication",
1260
+ "description": "Comment or message (compact 12x12 variant)"
1261
+ },
1106
1262
  "comment-discussion": {
1107
1263
  "tags": [
1108
1264
  "dialog",
@@ -1162,6 +1318,18 @@
1162
1318
  "category": "communication",
1163
1319
  "description": "Unresolved comment"
1164
1320
  },
1321
+ "comment-unresolved-compact": {
1322
+ "tags": [
1323
+ "comment",
1324
+ "unresolved",
1325
+ "open",
1326
+ "pending",
1327
+ "discussion",
1328
+ "compact"
1329
+ ],
1330
+ "category": "communication",
1331
+ "description": "Unresolved comment (compact 12x12 variant)"
1332
+ },
1165
1333
  "compass": {
1166
1334
  "tags": [
1167
1335
  "navigate",
@@ -1587,6 +1755,18 @@
1587
1755
  "category": "debug",
1588
1756
  "description": "Debugger connected"
1589
1757
  },
1758
+ "debug-connected-compact": {
1759
+ "tags": [
1760
+ "debug",
1761
+ "connected",
1762
+ "session",
1763
+ "active",
1764
+ "run",
1765
+ "compact"
1766
+ ],
1767
+ "category": "debug",
1768
+ "description": "Debug session connected (compact 12x12 variant)"
1769
+ },
1590
1770
  "debug-console": {
1591
1771
  "tags": [
1592
1772
  "terminal",
@@ -1644,6 +1824,18 @@
1644
1824
  "category": "debug",
1645
1825
  "description": "Disconnect debugger"
1646
1826
  },
1827
+ "debug-disconnect-compact": {
1828
+ "tags": [
1829
+ "debug",
1830
+ "disconnect",
1831
+ "stop",
1832
+ "detach",
1833
+ "session",
1834
+ "compact"
1835
+ ],
1836
+ "category": "debug",
1837
+ "description": "Disconnect debug session (compact 12x12 variant)"
1838
+ },
1647
1839
  "debug-line-by-line": {
1648
1840
  "tags": [
1649
1841
  "step",
@@ -1973,6 +2165,18 @@
1973
2165
  "category": "development",
1974
2166
  "description": "Edit code"
1975
2167
  },
2168
+ "edit-compact": {
2169
+ "tags": [
2170
+ "pencil",
2171
+ "modify",
2172
+ "write",
2173
+ "change",
2174
+ "edit",
2175
+ "compact"
2176
+ ],
2177
+ "category": "action",
2178
+ "description": "Edit or modify (compact 12x12 variant)"
2179
+ },
1976
2180
  "edit-session": {
1977
2181
  "tags": [
1978
2182
  "work",
@@ -2197,6 +2401,18 @@
2197
2401
  "category": "file",
2198
2402
  "description": "Media file"
2199
2403
  },
2404
+ "file-media-compact": {
2405
+ "tags": [
2406
+ "file",
2407
+ "image",
2408
+ "media",
2409
+ "picture",
2410
+ "photo",
2411
+ "compact"
2412
+ ],
2413
+ "category": "file",
2414
+ "description": "Media file (compact 12x12 variant)"
2415
+ },
2200
2416
  "file-pdf": {
2201
2417
  "tags": [
2202
2418
  "document",
@@ -2607,6 +2823,18 @@
2607
2823
  "category": "git",
2608
2824
  "description": "Compare git versions"
2609
2825
  },
2826
+ "git-fetch": {
2827
+ "tags": [
2828
+ "git",
2829
+ "fetch",
2830
+ "download",
2831
+ "remote",
2832
+ "sync",
2833
+ "pull"
2834
+ ],
2835
+ "category": "git",
2836
+ "description": "Fetch changes from a remote repository"
2837
+ },
2610
2838
  "git-merge": {
2611
2839
  "tags": [
2612
2840
  "combine",
@@ -3481,6 +3709,18 @@
3481
3709
  "category": "action",
3482
3710
  "description": "Auto-fix suggestion"
3483
3711
  },
3712
+ "lightbulb-compact": {
3713
+ "tags": [
3714
+ "idea",
3715
+ "hint",
3716
+ "suggestion",
3717
+ "tip",
3718
+ "quickfix",
3719
+ "compact"
3720
+ ],
3721
+ "category": "status",
3722
+ "description": "Lightbulb hint or suggestion (compact 12x12 variant)"
3723
+ },
3484
3724
  "lightbulb-empty": {
3485
3725
  "tags": [
3486
3726
  "idea",
@@ -3616,6 +3856,18 @@
3616
3856
  "category": "status",
3617
3857
  "description": "Loading or processing"
3618
3858
  },
3859
+ "loading-compact": {
3860
+ "tags": [
3861
+ "spinner",
3862
+ "progress",
3863
+ "wait",
3864
+ "busy",
3865
+ "loading",
3866
+ "compact"
3867
+ ],
3868
+ "category": "status",
3869
+ "description": "Loading indicator (compact 12x12 variant)"
3870
+ },
3619
3871
  "location": {
3620
3872
  "tags": [
3621
3873
  "map",
@@ -4187,6 +4439,18 @@
4187
4439
  "category": "status",
4188
4440
  "description": "Filled pass icon"
4189
4441
  },
4442
+ "pass-filled-compact": {
4443
+ "tags": [
4444
+ "check",
4445
+ "success",
4446
+ "complete",
4447
+ "done",
4448
+ "filled",
4449
+ "compact"
4450
+ ],
4451
+ "category": "status",
4452
+ "description": "Filled pass or success (compact 12x12 variant)"
4453
+ },
4190
4454
  "percentage": {
4191
4455
  "tags": [
4192
4456
  "ratio",
@@ -4347,6 +4611,17 @@
4347
4611
  "category": "general",
4348
4612
  "description": "Project or workspace"
4349
4613
  },
4614
+ "project-compact": {
4615
+ "tags": [
4616
+ "project",
4617
+ "folder",
4618
+ "workspace",
4619
+ "briefcase",
4620
+ "compact"
4621
+ ],
4622
+ "category": "file",
4623
+ "description": "Project (compact 12x12 variant)"
4624
+ },
4350
4625
  "pulse": {
4351
4626
  "tags": [
4352
4627
  "heartbeat",
@@ -4498,6 +4773,18 @@
4498
4773
  "category": "action",
4499
4774
  "description": "Refresh or reload"
4500
4775
  },
4776
+ "refresh-compact": {
4777
+ "tags": [
4778
+ "reload",
4779
+ "sync",
4780
+ "update",
4781
+ "redo",
4782
+ "refresh",
4783
+ "compact"
4784
+ ],
4785
+ "category": "action",
4786
+ "description": "Refresh or reload (compact 12x12 variant)"
4787
+ },
4501
4788
  "regex": {
4502
4789
  "tags": [
4503
4790
  "pattern",
@@ -4967,6 +5254,18 @@
4967
5254
  "category": "search",
4968
5255
  "description": "Search or find"
4969
5256
  },
5257
+ "search-compact": {
5258
+ "tags": [
5259
+ "find",
5260
+ "magnify",
5261
+ "lookup",
5262
+ "query",
5263
+ "search",
5264
+ "compact"
5265
+ ],
5266
+ "category": "search",
5267
+ "description": "Search or find (compact 12x12 variant)"
5268
+ },
4970
5269
  "search-fuzzy": {
4971
5270
  "tags": [
4972
5271
  "find",
@@ -5076,6 +5375,18 @@
5076
5375
  "category": "status",
5077
5376
  "description": "Session in progress"
5078
5377
  },
5378
+ "session-in-progress-compact": {
5379
+ "tags": [
5380
+ "session",
5381
+ "progress",
5382
+ "active",
5383
+ "running",
5384
+ "status",
5385
+ "compact"
5386
+ ],
5387
+ "category": "status",
5388
+ "description": "Session in progress indicator (compact 12x12 variant)"
5389
+ },
5079
5390
  "settings": {
5080
5391
  "tags": [
5081
5392
  "gear",
@@ -5600,6 +5911,18 @@
5600
5911
  "category": "symbol",
5601
5912
  "description": "Structure symbol"
5602
5913
  },
5914
+ "sync-compact": {
5915
+ "tags": [
5916
+ "refresh",
5917
+ "reload",
5918
+ "synchronize",
5919
+ "update",
5920
+ "sync",
5921
+ "compact"
5922
+ ],
5923
+ "category": "action",
5924
+ "description": "Synchronize (compact 12x12 variant)"
5925
+ },
5603
5926
  "sync-ignored": {
5604
5927
  "tags": [
5605
5928
  "refresh",
@@ -5697,6 +6020,18 @@
5697
6020
  "category": "application",
5698
6021
  "description": "Command prompt"
5699
6022
  },
6023
+ "terminal-compact": {
6024
+ "tags": [
6025
+ "console",
6026
+ "shell",
6027
+ "cli",
6028
+ "command",
6029
+ "prompt",
6030
+ "compact"
6031
+ ],
6032
+ "category": "tool",
6033
+ "description": "Terminal or console (compact 12x12 variant)"
6034
+ },
5700
6035
  "terminal-debian": {
5701
6036
  "tags": [
5702
6037
  "console",
@@ -6135,6 +6470,18 @@
6135
6470
  "category": "device",
6136
6471
  "description": "VM outline"
6137
6472
  },
6473
+ "vm-pending": {
6474
+ "tags": [
6475
+ "virtual",
6476
+ "machine",
6477
+ "vm",
6478
+ "pending",
6479
+ "server",
6480
+ "wait"
6481
+ ],
6482
+ "category": "device",
6483
+ "description": "Virtual machine in pending state"
6484
+ },
6138
6485
  "vm-running": {
6139
6486
  "tags": [
6140
6487
  "computer",
@@ -6333,6 +6680,18 @@
6333
6680
  "category": "git",
6334
6681
  "description": "Git worktree"
6335
6682
  },
6683
+ "worktree-compact": {
6684
+ "tags": [
6685
+ "git",
6686
+ "worktree",
6687
+ "branch",
6688
+ "tree",
6689
+ "workspace",
6690
+ "compact"
6691
+ ],
6692
+ "category": "git",
6693
+ "description": "Git worktree (compact 12x12 variant)"
6694
+ },
6336
6695
  "worktree-small": {
6337
6696
  "tags": [
6338
6697
  "git",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vscode/codicons",
3
- "version": "0.0.46-11",
3
+ "version": "0.0.46-12",
4
4
  "fontVersion": "1.15",
5
5
  "description": "The icon font for Visual Studio Code",
6
6
  "license": "CC-BY-4.0",
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M3.15999 12H2.91999C1.85999 12 1.00999 11.14 1.00999 10.09C1.00999 9.58 1.20999 9.1 1.56999 8.74L7.14999 3.15C7.34999 2.95 7.65999 2.95 7.85999 3.15C8.05999 3.35 8.05999 3.66 7.85999 3.86L2.26999 9.45C2.09999 9.62 1.99999 9.86 1.99999 10.1C1.99999 10.6 2.40999 11.01 2.90999 11.01H3.14999C3.38999 11.01 3.62999 10.91 3.79999 10.74L9.25999 5.28C9.72999 4.81 9.98999 4.18 9.98999 3.51C9.98999 2.13 8.86999 1.01 7.48999 1.01C6.81999 1.01 6.18999 1.27 5.71999 1.74L1.34999 6.11C1.14999 6.31 0.83999 6.31 0.63999 6.11C0.43999 5.91 0.43999 5.6 0.63999 5.4L5.02999 1.03C5.68999 0.37 6.56999 0 7.49999 0C9.42999 0 11 1.57 11 3.5C11 4.44 10.64 5.31 9.96999 5.97L4.50999 11.43C4.14999 11.79 3.66999 11.99 3.15999 11.99V12Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M3.49999 1H3.99999V4.69C3.99999 5.13 3.87999 5.57 3.65999 5.95L1.44999 9.75C0.869987 10.75 1.58999 12.01 2.74999 12.01H9.26999C10.43 12.01 11.15 10.75 10.57 9.75L8.35999 5.95C8.13999 5.57 8.01999 5.13 8.01999 4.69V1H8.51999C8.79999 1 9.01999 0.78 9.01999 0.5C9.01999 0.22 8.77999 0 8.49999 0H3.49999C3.21999 0 2.99999 0.22 2.99999 0.5C2.99999 0.78 3.21999 1 3.49999 1ZM4.99999 4.69V1H6.99999V4.69C6.99999 5.31 7.15999 5.92 7.47999 6.45L7.79999 7H4.20999L4.52999 6.45C4.83999 5.91 5.00999 5.31 5.00999 4.69H4.99999ZM3.61999 8H8.37999L9.68999 10.25C9.87999 10.58 9.63999 11 9.25999 11H2.73999C2.34999 11 2.10999 10.58 2.30999 10.25L3.61999 8Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M4.52 8.99C4.39 8.99 4.27 8.94 4.17 8.85L1.15 5.86C0.95 5.67 0.95 5.35 1.15 5.15C1.34 4.95 1.66 4.95 1.86 5.15L4.53 7.79L10.15 2.15C10.35 1.95 10.66 1.95 10.86 2.15C11.06 2.34 11.06 2.66 10.86 2.86L4.89 8.85C4.79 8.95 4.66 9 4.54 9L4.52 8.99Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M3.15947 8.14013C3.35936 7.94024 3.66942 7.94046 3.86943 8.14013C4.06943 8.34013 4.06943 8.65009 3.86943 8.85009L1.86943 10.8501C1.76944 10.95 1.63977 11.0005 1.51982 11.0005H1.50029C1.37029 11.0005 1.2397 10.9501 1.1497 10.8501L0.149702 9.85009C-0.0500832 9.65008 -0.0502264 9.34006 0.149702 9.14013C0.34963 8.9402 0.659656 8.94034 0.859663 9.14013L1.51005 9.79052L3.15947 8.14013Z"/><path d="M11.5003 9.00048C11.7801 9.00068 12.0003 9.22061 12.0003 9.50048C12.0001 9.78016 11.78 10.0003 11.5003 10.0005H5.50029C5.22042 10.0005 5.00049 9.78029 5.00029 9.50048C5.00029 9.22048 5.22029 9.00048 5.50029 9.00048H11.5003Z"/><path d="M3.15947 4.14013C3.35936 3.94024 3.66942 3.94046 3.86943 4.14013C4.06943 4.34013 4.06943 4.65009 3.86943 4.85009L1.86943 6.85009C1.76944 6.95001 1.63977 7.00048 1.51982 7.00048H1.50029C1.37029 7.00048 1.2397 6.95009 1.1497 6.85009L0.149702 5.85009C-0.0500832 5.65008 -0.0502264 5.34006 0.149702 5.14013C0.34963 4.9402 0.659656 4.94034 0.859663 5.14013L1.51005 5.79052L3.15947 4.14013Z"/><path d="M11.5003 5.00048C11.7801 5.00068 12.0003 5.22061 12.0003 5.50048C12.0001 5.78016 11.78 6.00027 11.5003 6.00048H5.50029C5.22042 6.00048 5.00049 5.78029 5.00029 5.50048C5.00029 5.22048 5.22029 5.00048 5.50029 5.00048H11.5003Z"/><path d="M3.1497 0.149893C3.34963 -0.0500358 3.65966 -0.0498926 3.85966 0.149893C4.05966 0.349893 4.05966 0.659854 3.85966 0.859854L1.8499 2.85009C1.75001 2.94998 1.62018 3.00037 1.50029 3.00048C1.37029 3.00048 1.2397 2.95009 1.1497 2.85009L0.149702 1.85009C-0.0501937 1.66008 -0.0502587 1.33986 0.149702 1.14989C0.34963 0.959961 0.659656 0.950115 0.859663 1.14989L1.51005 1.80028L3.1497 0.149893Z"/><path d="M11.5003 1.00048C11.7801 1.00068 12.0003 1.22061 12.0003 1.50048C12.0001 1.78016 11.78 2.00027 11.5003 2.00048H5.50029C5.22042 2.00048 5.00049 1.78029 5.00029 1.50048C5.00029 1.22048 5.22029 1.00048 5.50029 1.00048H11.5003Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M6 8.50023C5.87 8.50023 5.74 8.45023 5.65 8.35023L2.15 4.85023C1.95 4.65023 1.95 4.34023 2.15 4.14023C2.35 3.94023 2.66 3.94023 2.86 4.14023L6.01 7.29023L9.16 4.14023C9.36 3.94023 9.67 3.94023 9.87 4.14023C10.07 4.34023 10.07 4.65023 9.87 4.85023L6.37 8.35023C6.27 8.45023 6.14 8.50023 6.02 8.50023H6Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M7.5 10.0002C7.37 10.0002 7.24 9.95023 7.15 9.85023L3.65 6.35023C3.45 6.15023 3.45 5.84023 3.65 5.64023L7.15 2.14023C7.35 1.94023 7.66 1.94023 7.86 2.14023C8.06 2.34023 8.06 2.65023 7.86 2.85023L4.71 6.00023L7.86 9.15023C8.06 9.35023 8.06 9.66023 7.86 9.86023C7.76 9.96023 7.63 10.0102 7.51 10.0102L7.5 10.0002Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M4.5 9.99998C4.37 9.99998 4.24 9.94998 4.15 9.84998C3.95 9.64998 3.95 9.33998 4.15 9.13998L7.3 5.98998L4.15 2.83998C3.95 2.63998 3.95 2.32998 4.15 2.12998C4.35 1.92998 4.66 1.92998 4.86 2.12998L8.36 5.62998C8.56 5.82998 8.56 6.13998 8.36 6.33998L4.86 9.83998C4.76 9.93998 4.63 9.98998 4.51 9.98998L4.5 9.99998Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M9.49999 8.00023C9.36999 8.00023 9.23999 7.95023 9.14999 7.85023L5.99999 4.70023L2.84999 7.85023C2.64999 8.05023 2.33999 8.05023 2.13999 7.85023C1.93999 7.65023 1.93999 7.34023 2.13999 7.14023L5.63999 3.64023C5.83999 3.44023 6.14999 3.44023 6.34999 3.64023L9.84999 7.14023C10.05 7.34023 10.05 7.65023 9.84999 7.85023C9.74999 7.95023 9.61999 8.00023 9.49999 8.00023Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M6 10C8.20914 10 10 8.20914 10 6C10 3.79086 8.20914 2 6 2C3.79086 2 2 3.79086 2 6C2 8.20914 3.79086 10 6 10Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M8.00097 5.99805C8.00097 6.39361 7.88369 6.78023 7.66393 7.10913C7.44417 7.43803 7.1318 7.69445 6.76635 7.84583C6.40089 7.9972 5.99879 8.03677 5.61083 7.95959C5.22287 7.88242 4.86649 7.69194 4.58678 7.41223C4.30708 7.13253 4.11659 6.77615 4.03942 6.38818C3.96225 6.00022 4.00181 5.59812 4.15319 5.23267C4.30456 4.86721 4.56098 4.55485 4.88988 4.33508C5.21878 4.11532 5.6054 3.99805 6.00097 3.99805C6.5314 3.99805 7.04008 4.20879 7.41515 4.58386C7.79022 4.95894 8.00097 5.46761 8.00097 5.99805Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M10.1499 1.14013C10.3498 0.940199 10.6598 0.940342 10.8599 1.14013C11.0599 1.34013 11.0599 1.65009 10.8599 1.85009L6.71239 5.99267L10.8599 10.1401C11.0599 10.3401 11.0599 10.6501 10.8599 10.8501C10.7599 10.95 10.6302 11.0004 10.5102 11.0005H10.5005C10.3705 11.0005 10.2399 10.9501 10.1499 10.8501L6.00146 6.70165L1.85009 10.8501C1.7502 10.95 1.62037 11.0004 1.50048 11.0005C1.37048 11.0005 1.23989 10.9501 1.14989 10.8501C0.950107 10.6501 0.949965 10.3401 1.14989 10.1401L5.29442 5.99462L1.14989 1.85009C0.950107 1.65008 0.949964 1.34006 1.14989 1.14013C1.34982 0.940199 1.65985 0.940342 1.85985 1.14013L6.00438 5.28466L10.1499 1.14013Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M11 2.08984C11.58 2.28984 12 2.85 12 3.5V8.5C11.9999 10.4299 10.4299 12 8.5 12H3.5C2.85006 12 2.28985 11.5799 2.08984 11H8.5C9.87995 11 10.9999 9.87993 11 8.5V2.08984Z"/><path d="M7.5 4.5C7.78 4.5 8 4.72 8 5C8 5.28 7.78 5.5 7.5 5.5H2.5C2.22 5.5 2 5.28 2 5C2 4.72 2.22 4.5 2.5 4.5H7.5Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8.5 0C9.33 0 10 0.67 10 1.5V8.5C10 9.33 9.33 10 8.5 10H1.5C0.67 10 0 9.33 0 8.5V1.5C0 0.67 0.67 0 1.5 0H8.5ZM1.5 1C1.22 1 1 1.22 1 1.5V8.5C1 8.78 1.22 9 1.5 9H8.5C8.78 9 9 8.78 9 8.5V1.5C9 1.22 8.78 1 8.5 1H1.5Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M3.86 12C3.38 12 3 11.61 3 11.14V9H2C0.9 9 0 8.1 0 7V2C0 0.9 0.9 0 2 0H10C11.1 0 12 0.9 12 2V7C12 8.1 11.1 9 10 9H7.57L4.44 11.78C4.28 11.92 4.08 12 3.87 12H3.86ZM2 1C1.45 1 1 1.45 1 2V7C1 7.55 1.45 8 2 8H4V10.88L7.18 8H10C10.55 8 11 7.55 11 7V2C11 1.45 10.55 1 10 1H2Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path d="M10 0C11.1 0 12 0.9 12 2V7.0498C11.72 6.75985 11.3797 6.52959 11.0098 6.34961V2C11.0098 1.45 10.5598 1 10.0098 1H2.00977C1.45987 1.00013 1.00977 1.45008 1.00977 2V7C1.00977 7.54992 1.45987 7.99987 2.00977 8H4.00977V10.8301L6.05957 9.00977C6.03957 9.16977 6.00977 9.33 6.00977 9.5H6C6 9.7799 6.03964 10.0399 6.09961 10.2998L4.42969 11.7803C4.27979 11.92 4.07009 11.9999 3.86035 12C3.39035 12 3 11.6196 3 11.1396V9H2C0.9 9 0 8.1 0 7V2C0 0.9 0.9 0 2 0H10Z"/><path d="M9.50977 7C10.8905 7 12.0098 8.11929 12.0098 9.5C12.0098 10.8807 10.8905 12 9.50977 12C8.12917 11.9999 7.00977 10.8806 7.00977 9.5C7.00977 8.11937 8.12917 7.00013 9.50977 7Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.51953 4.61035C3.75952 4.61035 3.98993 4.6999 4.16992 4.87988L7.12012 7.83008C7.29991 8.00996 7.38955 8.24968 7.38965 8.47949L7.37988 8.46973C7.37988 9.29966 6.06019 9.99013 4.99023 9.99023C4.36023 9.99023 3.75 9.79945 3.25 9.43945L1.33984 11.3496C1.2499 11.4495 1.12015 11.4999 0.990234 11.5C0.71028 11.5 0.490306 11.2799 0.490234 11C0.490234 10.88 0.539648 10.7494 0.639648 10.6494L2.5498 8.74023C2.19983 8.24027 2.00003 7.61995 2 7C2 5.93019 2.67974 4.61083 3.51953 4.61035ZM3.51953 5.64941C3.18953 6.00941 3 6.5 3 7C3.00004 7.52995 3.21011 8.04995 3.58008 8.41992C4.30009 9.14984 5.59963 9.16945 6.34961 8.47949L3.51953 5.64941Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11 0.5C11.28 0.5 11.5 0.72 11.5 1H11.5098C11.5098 1.11987 11.4601 1.24965 11.3604 1.34961L9.4502 3.25977C9.8002 3.75977 10 4.38 10 5C10 6.06985 9.31031 7.38927 8.48047 7.38965C8.24049 7.38965 8.01007 7.30009 7.83008 7.12012L4.87988 4.16992C4.69998 3.98994 4.61035 3.74947 4.61035 3.51953C4.61083 2.67979 5.89023 2.04008 7 2.04004C7.61995 2.04004 8.24025 2.21962 8.74023 2.55957L10.6504 0.650391C10.7404 0.550418 10.87 0.500027 11 0.5ZM7 3.01953C6.51021 3.01956 6.01034 3.18979 5.65039 3.51953L8.48047 6.34961C8.81025 5.98965 9 5.49982 9 5C9 4.47 8.78992 3.95008 8.41992 3.58008C8.04992 3.21011 7.51998 3.01953 7 3.01953Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.15966 5.1401C4.35955 4.94021 4.66961 4.94044 4.86962 5.1401C5.06962 5.3401 5.06962 5.65006 4.86962 5.85006L4.00927 6.70944L5.29931 7.99948L6.15966 7.1401C6.35955 6.94021 6.66961 6.94044 6.86962 7.1401C7.06962 7.3401 7.06962 7.65006 6.86962 7.85006L6.00927 8.70944L6.13036 8.82955H6.11962C6.47962 9.17955 6.47962 9.75959 6.11962 10.1196C5.56971 10.6795 4.79031 10.9994 4.00048 10.9995C3.37048 10.9995 2.76024 10.8097 2.26024 10.4497L0.850088 11.8598C0.760186 11.9597 0.620391 12.0101 0.500478 12.0102C0.380478 12.0102 0.249892 11.9598 0.149892 11.8598C-0.0499377 11.6598 -0.0499905 11.3498 0.149892 11.1499L1.56005 9.73971C1.21012 9.23974 1.01024 8.61941 1.01024 7.99948C1.01037 7.20972 1.33035 6.43022 1.89013 5.88034C2.24013 5.52034 2.82017 5.52034 3.18017 5.88034L3.29931 5.99948L4.15966 5.1401ZM2.52978 6.64987C2.19994 7.00975 2.01036 7.49969 2.01024 7.99948C2.01024 8.52948 2.22032 9.05037 2.59032 9.42037C3.31035 10.15 4.60995 10.1697 5.35985 9.47995L2.52978 6.64987Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11.1499 0.149867C11.3498 -0.0500444 11.6598 -0.0498668 11.8599 0.149867L11.8706 0.140101C12.0703 0.340041 12.0703 0.650129 11.8706 0.850062L10.4604 2.26022C10.8103 2.76018 11.0102 3.38054 11.0102 4.00045C11.0101 4.79017 10.6901 5.5697 10.1304 6.11959C9.95036 6.29959 9.71997 6.3901 9.47997 6.3901C9.24005 6.39005 9.0105 6.29954 8.83056 6.11959L5.88036 3.17037C5.52038 2.82039 5.52041 2.24034 5.88036 1.88034C6.87027 0.890431 8.58974 0.78027 9.73974 1.56002L11.1499 0.149867ZM9.43017 2.58053C8.71026 1.86062 7.41068 1.83025 6.66063 2.51998L9.48974 5.35006C9.81965 4.99016 10.0101 4.50032 10.0102 4.00045C10.0102 3.47056 9.80003 2.95052 9.43017 2.58053Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.62999 0C10.9399 9.73611e-05 12.0098 1.07 12.0099 2.37988C12.0099 3.00987 11.7594 3.60957 11.3194 4.05957L10.6896 4.67969L4.50988 10.8604C4.2899 11.0803 3.99948 11.2396 3.68956 11.3096L0.620227 11.9902C0.620227 11.9902 0.549888 12 0.509876 12H0.50011C0.37011 12 0.239524 11.9496 0.149524 11.8496C0.0297368 11.7296 -0.0203258 11.5595 0.0196415 11.3896L0.699329 8.32031C0.769311 8.01039 0.919624 7.72997 1.14952 7.5L7.94933 0.700195C8.39933 0.250195 8.99999 0 9.62999 0ZM1.83995 8.20996C1.74995 8.29996 1.69027 8.41004 1.66027 8.54004L1.14952 10.8398L3.44933 10.3301C3.56914 10.3001 3.68946 10.2402 3.77941 10.1504L9.60949 4.32031L7.67003 2.37988L1.83995 8.20996ZM9.62023 1C9.25023 1 8.90952 1.14039 8.64952 1.40039L8.38488 1.66504L10.3341 3.61426L10.5997 3.34961C10.8596 3.08962 11.0001 2.73981 11.0001 2.37988C11 1.62007 10.38 1.00022 9.62023 1Z"/></svg>