@odx/icons 2.6.3 → 2.8.0

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [2.8.0](https://dev.azure.com/draeger/ODXP/_git/odx-icons/compare/v2.7.0...v2.8.0) (2023-09-14)
2
+
3
+
4
+ ### Features
5
+
6
+ * **icons:** missing safety icons added ([390ded2](https://dev.azure.com/draeger/ODXP/_git/odx-icons/commit/390ded2e02d5fc8986ae4df3eee534f896f452af))
7
+
8
+ # [2.7.0](https://dev.azure.com/draeger/ODXP/_git/odx-icons/compare/v2.6.3...v2.7.0) (2023-09-08)
9
+
10
+
11
+ ### Features
12
+
13
+ * **icons:** filetypes png and svg ([ea92bb9](https://dev.azure.com/draeger/ODXP/_git/odx-icons/commit/ea92bb921c1afb5fd680e07189351bc69b2cb202))
14
+
1
15
  ## [2.6.3](https://dev.azure.com/draeger/ODXP/_git/odx-icons/compare/v2.6.2...v2.6.3) (2023-08-30)
2
16
 
3
17
 
@@ -2,7 +2,7 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta charset="utf-8">
5
- <title>@odx/icons 2.6.3</title>
5
+ <title>@odx/icons 2.8.0</title>
6
6
  <link rel="stylesheet" type="text/css" href="core-icons.css" media="screen" />
7
7
  <style>
8
8
  * {
@@ -126,11 +126,11 @@
126
126
  />
127
127
  </svg>
128
128
  <h1 class="page-title">
129
- @odx/icons 2.6.3
129
+ @odx/icons 2.8.0
130
130
  </h1>
131
131
  <input class="page-search" placeholder="Search icons ..." />
132
132
  <div class="icon-count">
133
- Iconset: <strong>core</strong> (357 icons)
133
+ Iconset: <strong>core</strong> (359 icons)
134
134
  </div>
135
135
  </header>
136
136
  <main class="icons" id="icons">
@@ -1065,6 +1065,13 @@
1065
1065
  <span class="icon-name">file-pdf</span>
1066
1066
  <span class="icon-alias">
1067
1067
  </div>
1068
+ <div class="icons__item">
1069
+ <i class="odx-icon" data-icon-set="core" data-icon-name="file-png">
1070
+ <span></span>
1071
+ </i>
1072
+ <span class="icon-name">file-png</span>
1073
+ <span class="icon-alias">
1074
+ </div>
1068
1075
  <div class="icons__item">
1069
1076
  <i class="odx-icon" data-icon-set="core" data-icon-name="file-ppt">
1070
1077
  <span></span>
@@ -1072,6 +1079,13 @@
1072
1079
  <span class="icon-name">file-ppt</span>
1073
1080
  <span class="icon-alias">
1074
1081
  </div>
1082
+ <div class="icons__item">
1083
+ <i class="odx-icon" data-icon-set="core" data-icon-name="file-svg">
1084
+ <span></span>
1085
+ </i>
1086
+ <span class="icon-name">file-svg</span>
1087
+ <span class="icon-alias">
1088
+ </div>
1075
1089
  <div class="icons__item">
1076
1090
  <i class="odx-icon" data-icon-set="core" data-icon-name="file-word">
1077
1091
  <span></span>
@@ -165,7 +165,9 @@ $glyphs: (
165
165
  file-csv: "\f1a2",
166
166
  file-excel: "\f187",
167
167
  file-pdf: "\f188",
168
+ file-png: "\f24d",
168
169
  file-ppt: "\f189",
170
+ file-svg: "\f24e",
169
171
  file-word: "\f18a",
170
172
  file-zip: "\f18b",
171
173
  filter: "\f18f",
@@ -610,9 +610,15 @@
610
610
  [data-icon-set=core][data-icon-name=file-pdf]::before {
611
611
  content: "\f188";
612
612
  }
613
+ [data-icon-set=core][data-icon-name=file-png]::before {
614
+ content: "\f24d";
615
+ }
613
616
  [data-icon-set=core][data-icon-name=file-ppt]::before {
614
617
  content: "\f189";
615
618
  }
619
+ [data-icon-set=core][data-icon-name=file-svg]::before {
620
+ content: "\f24e";
621
+ }
616
622
  [data-icon-set=core][data-icon-name=file-word]::before {
617
623
  content: "\f18a";
618
624
  }
Binary file
@@ -618,9 +618,15 @@
618
618
  &[data-icon-name="file-pdf"]::before {
619
619
  content: utils.get-icon-glyph("file-pdf");
620
620
  }
621
+ &[data-icon-name="file-png"]::before {
622
+ content: utils.get-icon-glyph("file-png");
623
+ }
621
624
  &[data-icon-name="file-ppt"]::before {
622
625
  content: utils.get-icon-glyph("file-ppt");
623
626
  }
627
+ &[data-icon-name="file-svg"]::before {
628
+ content: utils.get-icon-glyph("file-svg");
629
+ }
624
630
  &[data-icon-name="file-word"]::before {
625
631
  content: utils.get-icon-glyph("file-word");
626
632
  }
Binary file
Binary file
Binary file
@@ -531,10 +531,18 @@
531
531
  "name": "file-pdf",
532
532
  "set": "core"
533
533
  },
534
+ {
535
+ "name": "file-png",
536
+ "set": "core"
537
+ },
534
538
  {
535
539
  "name": "file-ppt",
536
540
  "set": "core"
537
541
  },
542
+ {
543
+ "name": "file-svg",
544
+ "set": "core"
545
+ },
538
546
  {
539
547
  "name": "file-word",
540
548
  "set": "core"
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="uuid-983742a3-c9e0-483a-aaf8-24caf3315ace" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.57,10.19h-.66v1.64h.66c.41,0,.66-.27.66-.82s-.25-.82-.66-.82Z" style="fill:#f0f;"/><path d="m19.41,5l-2.41-2.41c-.37-.37-.89-.59-1.41-.59H6c-1.1,0-2,.9-2,2v3h-2v10h2v3c0,1.1.9,2,2,2h12c1.1,0,2-.9,2-2V6.41c0-.53-.21-1.04-.59-1.41Zm-14.78,7.97h-.73v2.03h-.91v-5.99h1.63c1,0,1.55.8,1.55,2s-.55,1.96-1.54,1.96Zm1.36,7.03v-3h10V7H6v-3h9.59l2.41,2.41v13.59s-12,0-12,0Zm3.54-7.97v-3.02h.91v5.99h-.85l-1.53-3.16c-.16-.32-.3-.64-.32-.75h-.02c.02.13.03.5.03.9v3.02h-.91v-5.99h.85l1.53,3.16c.16.32.3.64.32.75h.02c-.02-.13-.04-.5-.04-.9Zm3.68,1.86c.61,0,.93-.44,1-1.18h-1v-1.07h1.91c.02.19.02.36.02.53,0,1.91-.88,2.93-1.93,2.93-1.14,0-2.05-1.26-2.05-3.1s.87-3.1,2.07-3.1c.63,0,1.32.43,1.68,1.28l-.72.72c-.24-.55-.59-.79-.97-.79-.65,0-1.12.71-1.12,1.89s.5,1.89,1.1,1.89Z" style="fill:#f0f;"/></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="uuid-5872fe0a-4cec-400c-9f94-0a0d9a59d780" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.41,5l-2.41-2.41c-.37-.37-.89-.59-1.41-.59H6c-1.1,0-2,.9-2,2v3h-2v10h2v3c0,1.1.9,2,2,2h12c1.1,0,2-.9,2-2V6.41c0-.53-.21-1.04-.59-1.41ZM4.64,15.09c-.75,0-1.44-.4-1.76-1.38l.78-.62c.17.51.51.85.99.85s.78-.24.78-.6-.26-.49-.78-.69l-.4-.15c-.84-.34-1.24-.9-1.24-1.84,0-1.03.67-1.75,1.65-1.75.74,0,1.37.43,1.64,1.24l-.77.55c-.15-.44-.47-.65-.86-.65-.43,0-.67.21-.67.54,0,.39.27.54.67.69l.41.14c.9.32,1.33.89,1.33,1.82,0,1.11-.66,1.84-1.74,1.84Zm1.36,4.91v-3h10V7H6v-3h9.59l2.41,2.41v13.59s-12,0-12,0Zm.54-10.98h1.03l.89,3.52c.09.34.16.68.16.8h.02c0-.12.07-.46.16-.8l.89-3.52h1.01l-1.61,5.96h-.94l-1.62-5.96Zm6.53,4.86c.65,0,.99-.44,1.07-1.17h-1.07v-1.06h2.03c.02.19.02.36.02.53,0,1.9-.94,2.92-2.05,2.92-1.21,0-2.18-1.25-2.18-3.09s.92-3.09,2.2-3.09c.67,0,1.4.43,1.79,1.28l-.76.72c-.25-.54-.62-.78-1.03-.78-.69,0-1.19.71-1.19,1.88s.54,1.88,1.17,1.88Z" style="fill:#f0f;"/></svg>
@@ -2,7 +2,7 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta charset="utf-8">
5
- <title>@odx/icons 2.6.3</title>
5
+ <title>@odx/icons 2.8.0</title>
6
6
  <link rel="stylesheet" type="text/css" href="medical-icons.css" media="screen" />
7
7
  <style>
8
8
  * {
@@ -126,7 +126,7 @@
126
126
  />
127
127
  </svg>
128
128
  <h1 class="page-title">
129
- @odx/icons 2.6.3
129
+ @odx/icons 2.8.0
130
130
  </h1>
131
131
  <input class="page-search" placeholder="Search icons ..." />
132
132
  <div class="icon-count">
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odx/icons",
3
- "version": "2.6.3",
3
+ "version": "2.8.0",
4
4
  "author": "Drägerwerk AG & Co. KGaA",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "publishConfig": {
@@ -2,7 +2,7 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta charset="utf-8">
5
- <title>@odx/icons 2.6.3</title>
5
+ <title>@odx/icons 2.8.0</title>
6
6
  <link rel="stylesheet" type="text/css" href="safety-icons.css" media="screen" />
7
7
  <style>
8
8
  * {
@@ -126,11 +126,11 @@
126
126
  />
127
127
  </svg>
128
128
  <h1 class="page-title">
129
- @odx/icons 2.6.3
129
+ @odx/icons 2.8.0
130
130
  </h1>
131
131
  <input class="page-search" placeholder="Search icons ..." />
132
132
  <div class="icon-count">
133
- Iconset: <strong>safety</strong> (832 icons)
133
+ Iconset: <strong>safety</strong> (835 icons)
134
134
  </div>
135
135
  </header>
136
136
  <main class="icons" id="icons">
@@ -1436,6 +1436,13 @@
1436
1436
  <span class="icon-name">explosive</span>
1437
1437
  <span class="icon-alias">
1438
1438
  </div>
1439
+ <div class="icons__item">
1440
+ <i class="odx-icon" data-icon-set="safety" data-icon-name="export-to-excel">
1441
+ <span></span>
1442
+ </i>
1443
+ <span class="icon-name">export-to-excel</span>
1444
+ <span class="icon-alias">
1445
+ </div>
1439
1446
  <div class="icons__item">
1440
1447
  <i class="odx-icon" data-icon-set="safety" data-icon-name="extended-care">
1441
1448
  <span></span>
@@ -2556,6 +2563,13 @@
2556
2563
  <span class="icon-name">long-distance-gate-way</span>
2557
2564
  <span class="icon-alias">
2558
2565
  </div>
2566
+ <div class="icons__item">
2567
+ <i class="odx-icon" data-icon-set="safety" data-icon-name="lost-report">
2568
+ <span></span>
2569
+ </i>
2570
+ <span class="icon-name">lost-report</span>
2571
+ <span class="icon-alias">
2572
+ </div>
2559
2573
  <div class="icons__item">
2560
2574
  <i class="odx-icon" data-icon-set="safety" data-icon-name="low-dosage-rate">
2561
2575
  <span></span>
@@ -3606,6 +3620,13 @@
3606
3620
  <span class="icon-name">sos</span>
3607
3621
  <span class="icon-alias">
3608
3622
  </div>
3623
+ <div class="icons__item">
3624
+ <i class="odx-icon" data-icon-set="safety" data-icon-name="sos-no-telemetry">
3625
+ <span></span>
3626
+ </i>
3627
+ <span class="icon-name">sos-no-telemetry</span>
3628
+ <span class="icon-alias">
3629
+ </div>
3609
3630
  <div class="icons__item">
3610
3631
  <i class="odx-icon" data-icon-set="safety" data-icon-name="spare-parts">
3611
3632
  <span></span>
@@ -255,6 +255,7 @@ $glyphs: (
255
255
  explosive-twa-part2: "\f130",
256
256
  explosive: "\f1ba",
257
257
  explosive-part1: "\f1bb",
258
+ export-to-excel: "\f1b5",
258
259
  extended-care: "\eb47",
259
260
  extinguisher: "\eb48",
260
261
  faucet: "\eb49",
@@ -478,6 +479,7 @@ $glyphs: (
478
479
  logout-part1: "\f210",
479
480
  logout-part2: "\f211",
480
481
  long-distance-gate-way: "\ec14",
482
+ lost-report: "\f1b6",
481
483
  low-dosage-rate: "\ec15",
482
484
  manual-input: "\ec16",
483
485
  masonry: "\ec18",
@@ -659,6 +661,7 @@ $glyphs: (
659
661
  simulation: "\ed11",
660
662
  sketch: "\ed12",
661
663
  sos: "\ed17",
664
+ sos-no-telemetry: "\f1bd",
662
665
  spare-parts: "\ed18",
663
666
  speed: "\ed19",
664
667
  sprinkler: "\ed1a",
@@ -921,6 +921,9 @@
921
921
  content: "\f1bb";
922
922
  color: #002766;
923
923
  }
924
+ [data-icon-set=safety][data-icon-name=export-to-excel]::before {
925
+ content: "\f1b5";
926
+ }
924
927
  [data-icon-set=safety][data-icon-name=extended-care]::before {
925
928
  content: "\eb47";
926
929
  }
@@ -1660,6 +1663,9 @@
1660
1663
  [data-icon-set=safety][data-icon-name=long-distance-gate-way]::before {
1661
1664
  content: "\ec14";
1662
1665
  }
1666
+ [data-icon-set=safety][data-icon-name=lost-report]::before {
1667
+ content: "\f1b6";
1668
+ }
1663
1669
  [data-icon-set=safety][data-icon-name=low-dosage-rate]::before {
1664
1670
  content: "\ec15";
1665
1671
  }
@@ -2235,6 +2241,9 @@
2235
2241
  [data-icon-set=safety][data-icon-name=sos]::before {
2236
2242
  content: "\ed17";
2237
2243
  }
2244
+ [data-icon-set=safety][data-icon-name=sos-no-telemetry]::before {
2245
+ content: "\f1bd";
2246
+ }
2238
2247
  [data-icon-set=safety][data-icon-name=spare-parts]::before {
2239
2248
  content: "\ed18";
2240
2249
  }
Binary file
@@ -929,6 +929,9 @@
929
929
  content: utils.get-icon-glyph("explosive-part1");
930
930
  color: #002766;
931
931
  }
932
+ &[data-icon-name="export-to-excel"]::before {
933
+ content: utils.get-icon-glyph("export-to-excel");
934
+ }
932
935
  &[data-icon-name="extended-care"]::before {
933
936
  content: utils.get-icon-glyph("extended-care");
934
937
  }
@@ -1668,6 +1671,9 @@
1668
1671
  &[data-icon-name="long-distance-gate-way"]::before {
1669
1672
  content: utils.get-icon-glyph("long-distance-gate-way");
1670
1673
  }
1674
+ &[data-icon-name="lost-report"]::before {
1675
+ content: utils.get-icon-glyph("lost-report");
1676
+ }
1671
1677
  &[data-icon-name="low-dosage-rate"]::before {
1672
1678
  content: utils.get-icon-glyph("low-dosage-rate");
1673
1679
  }
@@ -2243,6 +2249,9 @@
2243
2249
  &[data-icon-name="sos"]::before {
2244
2250
  content: utils.get-icon-glyph("sos");
2245
2251
  }
2252
+ &[data-icon-name="sos-no-telemetry"]::before {
2253
+ content: utils.get-icon-glyph("sos-no-telemetry");
2254
+ }
2246
2255
  &[data-icon-name="spare-parts"]::before {
2247
2256
  content: utils.get-icon-glyph("spare-parts");
2248
2257
  }
Binary file
Binary file
Binary file
@@ -743,6 +743,10 @@
743
743
  "name": "explosive",
744
744
  "set": "safety"
745
745
  },
746
+ {
747
+ "name": "export-to-excel",
748
+ "set": "safety"
749
+ },
746
750
  {
747
751
  "name": "extended-care",
748
752
  "set": "safety"
@@ -1383,6 +1387,10 @@
1383
1387
  "name": "long-distance-gate-way",
1384
1388
  "set": "safety"
1385
1389
  },
1390
+ {
1391
+ "name": "lost-report",
1392
+ "set": "safety"
1393
+ },
1386
1394
  {
1387
1395
  "name": "low-dosage-rate",
1388
1396
  "set": "safety"
@@ -1983,6 +1991,10 @@
1983
1991
  "name": "sos",
1984
1992
  "set": "safety"
1985
1993
  },
1994
+ {
1995
+ "name": "sos-no-telemetry",
1996
+ "set": "safety"
1997
+ },
1986
1998
  {
1987
1999
  "name": "spare-parts",
1988
2000
  "set": "safety"
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="uuid-327810ca-b6b1-407c-af9a-f3a1bdf0062a" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="m8.37,5.46c-1.94.31-3.37,1.98-3.37,3.95v10.59h13V4l-9.63,1.46Zm4.43,11.34l-1.55-2.7-1.56,2.7h-1.69l2.39-4.07-2.16-3.73h1.65l1.4,2.51,1.38-2.51h1.64l-2.18,3.79,2.39,4.01h-1.7Zm6.2-11.8v15h6c1.1,0,2-.9,2-2V5h-8Zm6,4h-4v-1h4v1Zm0,3h-4v-1h4v1Zm0,3h-4v-1h4v1Zm0,3h-4v-1h4v1Zm-15,10l6-6,6,6h-12Z" style="fill:#f0f;"/></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="uuid-a4884c66-f0d2-4310-996c-27998cb34032" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="m21.15,13.13c-.23.38-.73.9-1.49,1.57-.4.34-.64.62-.74.82-.1.21-.14.58-.13,1.11h-1.7c0-.25,0-.41,0-.46,0-.57.09-1.04.27-1.41.18-.37.55-.78,1.09-1.25.55-.46.87-.76.98-.91.16-.23.25-.48.25-.75,0-.38-.15-.7-.44-.97-.29-.27-.68-.4-1.17-.4s-.87.14-1.19.42-.54.71-.66,1.29l-1.72-.22c.05-.83.39-1.53,1.02-2.1.63-.58,1.45-.87,2.47-.87,1.07,0,1.93.29,2.56.88.63.58.95,1.26.95,2.04,0,.43-.12.84-.35,1.22h0Zm-5.15,10.37c0-.59.08-1.17.21-1.73-3.57-.8-6.24-3.99-6.24-7.8,0-4.41,3.59-8,8-8s8,3.59,8,8c0,.81-.12,1.59-.35,2.33.65.19,1.27.47,1.83.82.33-.99.52-2.05.52-3.16,0-5.52-4.48-10-10-10S7.96,8.45,7.96,13.97c0,2.04.61,3.93,1.66,5.51l-5.59,5.59,2.83,2.83,5.59-5.59c1.06.7,2.27,1.2,3.56,1.46,0-.09-.01-.18-.01-.28h0Zm8-2.5h-3v1h3v-1Zm-3,5h5v-1h-5v1Zm9-2.5c0,3.59-2.91,6.5-6.5,6.5s-6.5-2.91-6.5-6.5,2.91-6.5,6.5-6.5,6.5,2.91,6.5,6.5Zm-3-2.5l-2-2h-5v7c0,1.1.9,2,2,2h5v-7Zm-6,3h5v-1h-5v1Zm-2.21-6.33v-.44h-1.7v1.77h.42c.37-.5.8-.94,1.28-1.33h0Z" style="fill:#f0f;"/></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="uuid-6208a635-4c41-4a43-98ad-417ae8a1c70a" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="m9.58,21.95l.88-.88v-.02c1.35,1.36,3.14,2.13,5.06,2.19,0,.09-.01.18-.01.27,0,.33.03.66.07.99-2.18-.05-4.34-.89-6-2.55h0Zm12.37-11.88c-1.71-1.71-3.95-2.56-6.19-2.56s-4.48.85-6.19,2.56l.88.88c1.41-1.42,3.3-2.2,5.3-2.2h.02c2,0,3.88.78,5.3,2.2l.88-.88h0Zm-5.61,9.89c-.09.01-.18.03-.27.03-1.92,0-3.26-1.46-3.26-3.97s1.36-4,3.26-4,3.24,1.5,3.24,4c0,.25-.02.48-.05.71-1.26.78-2.27,1.9-2.93,3.23h0Zm-.27-1.31c1.07,0,1.77-.82,1.77-2.64s-.7-2.66-1.77-2.66-1.79.84-1.79,2.66.72,2.64,1.79,2.64Zm7.15-6.64c-1.6,0-2.8.88-2.8,2.18,0,.69.34,1.23.9,1.62.69-.2,1.42-.31,2.18-.31.19,0,.37.02.56.03-.11-.04-.21-.08-.33-.12l-.41-.13c-.9-.29-1.47-.54-1.47-1.09s.54-.93,1.36-.93,1.29.39,1.36,1.06h1.4c-.03-1.38-1.14-2.3-2.75-2.3h0s0,0,0,0Zm-7.47-6.26c2.8,0,5.44,1.1,7.42,3.08l1.24-1.24c-2.39-2.39-5.53-3.59-8.66-3.59s-6.27,1.2-8.66,3.59l1.24,1.24c1.98-1.99,4.62-3.08,7.42-3.08Zm.33,14.24h0,.01,0Zm-.33,6.26c-2.8,0-5.44-1.1-7.42-3.08l-1.24,1.24c2.39,2.39,5.53,3.59,8.66,3.59.37,0,.74-.02,1.1-.05-.35-.53-.64-1.1-.86-1.71-.08.01-.16.01-.24.01h0Zm-3.94-8.55c0-1.18-.81-1.82-2.27-2.29l-.41-.13c-.9-.29-1.47-.54-1.47-1.09s.54-.93,1.36-.93,1.29.39,1.36,1.06h1.4c-.03-1.38-1.15-2.3-2.75-2.3s-2.8.88-2.8,2.18c0,1.11.89,1.81,2.15,2.19l.43.12c1.15.35,1.59.69,1.59,1.22s-.44,1.03-1.39,1.03c-.88,0-1.5-.42-1.56-1.23h-1.44c.03,1.66,1.4,2.47,2.96,2.47,1.78,0,2.84-.94,2.84-2.3h0Zm18.19,5.81c0,3.59-2.91,6.5-6.5,6.5s-6.5-2.91-6.5-6.5,2.91-6.5,6.5-6.5,6.5,2.91,6.5,6.5Zm-7.91-.52l.9-.9c-.42.15-.75.48-.9.9Zm-1.09-1.94c-.62.63-1,1.49-1,2.45,0,.47.1.91.27,1.31l.79-.79c-.04-.17-.06-.34-.06-.52,0-.68.27-1.29.71-1.74l-.71-.71h0Zm-1.47,4.5c-.33-.62-.53-1.31-.53-2.06,0-1.23.5-2.34,1.3-3.15l-.71-.71c-.98.99-1.59,2.36-1.59,3.86,0,1.03.29,1.98.78,2.8l.75-.75h0Zm9.47-2.05c0-1.28-.45-2.46-1.19-3.4l.1-.1h-1.41l-2.22,2.22-2.05,2.05-.72.72-.71.71-.71.71-.59.59h1.41l2.09-2.09v3.59h1v-3.59c.58-.21,1-.76,1-1.41,0-.17-.04-.34-.09-.5l.75-.75c.21.37.34.79.34,1.24,0,.68-.27,1.29-.71,1.74l.71.71c.62-.63,1-1.49,1-2.45,0-.73-.23-1.41-.62-1.97l.71-.71c.56.75.91,1.67.91,2.68,0,1.23-.5,2.34-1.3,3.15l.71.71c.98-.99,1.59-2.36,1.59-3.86h0Z" style="fill:#f0f;"/></svg>
@@ -1 +1 @@
1
- <?xml version="1.0" encoding="UTF-8"?><svg id="uuid-0286f38b-d4ab-46ed-935f-e54c65928c63" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="m26,7H6c-1.1,0-2,.9-2,2v14c0,1.1.9,2,2,2h20c1.1,0,2-.9,2-2v-14c0-1.1-.9-2-2-2Zm1,16c0,.55-.45,1-1,1H6c-.55,0-1-.45-1-1v-14c0-.55.45-1,1-1h20c.55,0,1,.45,1,1v14Z" style="fill:#f0f;"/><rect x="6" y="9" width="20" height="14" style="fill:#f0f;"/></svg>
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="uuid-a453d67f-4bce-4b8d-b1d6-fcf9fde38e80" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="m26,7H6c-1.1,0-2,.9-2,2v14c0,1.1.9,2,2,2h20c1.1,0,2-.9,2-2v-14c0-1.1-.9-2-2-2Zm1,16c0,.55-.45,1-1,1H6c-.55,0-1-.45-1-1v-14c0-.55.45-1,1-1h20c.55,0,1,.45,1,1v14Z" style="fill:#f0f;"/><path d="m18,10h-4c-.55,0-1-.45-1-1h-7v14h20v-14h-7c0,.55-.45,1-1,1Z" style="fill:#f0f;"/></svg>