@odx/icons 2.3.1 → 2.4.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 +7 -0
- package/core/core-demo-poster.html +10 -3
- package/core/core-iconmap.scss +1 -0
- package/core/core-icons.css +3 -0
- package/core/core-icons.eot +0 -0
- package/core/core-icons.scss +3 -0
- package/core/core-icons.ttf +0 -0
- package/core/core-icons.woff +0 -0
- package/core/core-icons.woff2 +0 -0
- package/core/core-metadata.json +4 -0
- package/core/svg/user-add.svg +1 -0
- package/medical/medical-demo-poster.html +2 -2
- package/medical/medical-icons.eot +0 -0
- package/package.json +1 -1
- package/safety/safety-demo-poster.html +24 -3
- package/safety/safety-iconmap.scss +7 -0
- package/safety/safety-icons.css +25 -0
- package/safety/safety-icons.eot +0 -0
- package/safety/safety-icons.scss +25 -0
- package/safety/safety-icons.ttf +0 -0
- package/safety/safety-icons.woff +0 -0
- package/safety/safety-icons.woff2 +0 -0
- package/safety/safety-metadata.json +12 -0
- package/safety/svg/time-of-whistle.svg +1 -0
- package/safety/svg/time-to-retreat.svg +1 -0
- package/safety/svg/time-to-whiste.svg +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [2.4.0](https://dev.azure.com/draeger/ODXP/_git/odx-icons/compare/v2.3.1...v2.4.0) (2023-08-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **icons:** safety icons fire ([09b454a](https://dev.azure.com/draeger/ODXP/_git/odx-icons/commit/09b454afdb32eb8cf393ac6d07c9d6cab6e8e5d5))
|
|
7
|
+
|
|
1
8
|
## [2.3.1](https://dev.azure.com/draeger/ODXP/_git/odx-icons/compare/v2.3.0...v2.3.1) (2023-08-14)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
|
-
<title>@odx/icons 2.
|
|
5
|
+
<title>@odx/icons 2.4.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.
|
|
129
|
+
@odx/icons 2.4.0
|
|
130
130
|
</h1>
|
|
131
131
|
<input class="page-search" placeholder="Search icons ..." />
|
|
132
132
|
<div class="icon-count">
|
|
133
|
-
Iconset: <strong>core</strong> (
|
|
133
|
+
Iconset: <strong>core</strong> (357 icons)
|
|
134
134
|
</div>
|
|
135
135
|
</header>
|
|
136
136
|
<main class="icons" id="icons">
|
|
@@ -1996,6 +1996,13 @@
|
|
|
1996
1996
|
<span class="icon-name">user</span>
|
|
1997
1997
|
<span class="icon-alias">
|
|
1998
1998
|
</div>
|
|
1999
|
+
<div class="icons__item">
|
|
2000
|
+
<i class="odx-icon" data-icon-set="core" data-icon-name="user-add">
|
|
2001
|
+
<span></span>
|
|
2002
|
+
</i>
|
|
2003
|
+
<span class="icon-name">user-add</span>
|
|
2004
|
+
<span class="icon-alias">
|
|
2005
|
+
</div>
|
|
1999
2006
|
<div class="icons__item">
|
|
2000
2007
|
<i class="odx-icon" data-icon-set="core" data-icon-name="user-administration">
|
|
2001
2008
|
<span></span>
|
package/core/core-iconmap.scss
CHANGED
package/core/core-icons.css
CHANGED
|
@@ -1053,6 +1053,9 @@
|
|
|
1053
1053
|
[data-icon-set=core][data-icon-name=user]::before {
|
|
1054
1054
|
content: "\f21c";
|
|
1055
1055
|
}
|
|
1056
|
+
[data-icon-set=core][data-icon-name=user-add]::before {
|
|
1057
|
+
content: "\f248";
|
|
1058
|
+
}
|
|
1056
1059
|
[data-icon-set=core][data-icon-name=user-administration]::before {
|
|
1057
1060
|
content: "\f200";
|
|
1058
1061
|
}
|
package/core/core-icons.eot
CHANGED
|
Binary file
|
package/core/core-icons.scss
CHANGED
|
@@ -1060,6 +1060,9 @@
|
|
|
1060
1060
|
&[data-icon-name="user"]::before {
|
|
1061
1061
|
content: utils.get-icon-glyph("user");
|
|
1062
1062
|
}
|
|
1063
|
+
&[data-icon-name="user-add"]::before {
|
|
1064
|
+
content: utils.get-icon-glyph("user-add");
|
|
1065
|
+
}
|
|
1063
1066
|
&[data-icon-name="user-administration"]::before {
|
|
1064
1067
|
content: utils.get-icon-glyph("user-administration");
|
|
1065
1068
|
}
|
package/core/core-icons.ttf
CHANGED
|
Binary file
|
package/core/core-icons.woff
CHANGED
|
Binary file
|
package/core/core-icons.woff2
CHANGED
|
Binary file
|
package/core/core-metadata.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-2db2a54b-8246-4244-bbe2-19bc92ac4b26" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.06,7.6c-.22-1.41.2-2.83,1.16-3.9.95-1.08,2.33-1.69,3.79-1.69s2.84.62,3.79,1.69c.95,1.08,1.37,2.5,1.16,3.9l-.4,2.58c-.04.28-.12.56-.21.82h-2.31c.25-.32.43-.7.49-1.12l.4-2.58c.13-.83-.12-1.67-.68-2.3-.56-.63-1.38-1-2.23-1s-1.67.36-2.23,1c-.56.63-.81,1.47-.68,2.3l.4,2.58c.17,1.14,1.15,2,2.31,2.1-.46.51-.75,1.17-.78,1.9-1.82-.4-3.27-1.85-3.56-3.7l-.4-2.58Zm3.94,13.4v-1h-6v-1.25c0-.33.18-.62.47-.77l3.34-1.71c.7.33,1.44.55,2.19.65v-2.03c-.07-.02-.14-.04-.21-.05-.2-.05-.4-.1-.6-.17-.11-.04-.22-.09-.32-.13-.17-.07-.34-.15-.5-.24-.1-.06-.21-.12-.31-.18-.07-.04-.14-.07-.2-.12l-4.3,2.2c-.96.49-1.56,1.47-1.56,2.55v1.25c0,1.1.9,2,2,2h6.18c-.11-.31-.18-.65-.18-1Zm12-7v7c0,1.1-.9,2-2,2h-7c-1.1,0-2-.9-2-2v-7c0-1.1.9-2,2-2h7c1.1,0,2,.9,2,2Zm-2,2.9h-2.9v-2.9h-1.2v2.9h-2.9v1.2h2.9v2.9h1.2v-2.9h2.9v-1.2Z" 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.
|
|
5
|
+
<title>@odx/icons 2.4.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.
|
|
129
|
+
@odx/icons 2.4.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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
|
-
<title>@odx/icons 2.
|
|
5
|
+
<title>@odx/icons 2.4.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.
|
|
129
|
+
@odx/icons 2.4.0
|
|
130
130
|
</h1>
|
|
131
131
|
<input class="page-search" placeholder="Search icons ..." />
|
|
132
132
|
<div class="icon-count">
|
|
133
|
-
Iconset: <strong>safety</strong> (
|
|
133
|
+
Iconset: <strong>safety</strong> (831 icons)
|
|
134
134
|
</div>
|
|
135
135
|
</header>
|
|
136
136
|
<main class="icons" id="icons">
|
|
@@ -3914,6 +3914,13 @@
|
|
|
3914
3914
|
<span class="icon-name">time-compress</span>
|
|
3915
3915
|
<span class="icon-alias">
|
|
3916
3916
|
</div>
|
|
3917
|
+
<div class="icons__item">
|
|
3918
|
+
<i class="odx-icon" data-icon-set="safety" data-icon-name="time-of-whistle">
|
|
3919
|
+
<span></span>
|
|
3920
|
+
</i>
|
|
3921
|
+
<span class="icon-name">time-of-whistle</span>
|
|
3922
|
+
<span class="icon-alias">
|
|
3923
|
+
</div>
|
|
3917
3924
|
<div class="icons__item">
|
|
3918
3925
|
<i class="odx-icon" data-icon-set="safety" data-icon-name="time-stretch">
|
|
3919
3926
|
<span></span>
|
|
@@ -3921,6 +3928,20 @@
|
|
|
3921
3928
|
<span class="icon-name">time-stretch</span>
|
|
3922
3929
|
<span class="icon-alias">
|
|
3923
3930
|
</div>
|
|
3931
|
+
<div class="icons__item">
|
|
3932
|
+
<i class="odx-icon" data-icon-set="safety" data-icon-name="time-to-retreat">
|
|
3933
|
+
<span></span>
|
|
3934
|
+
</i>
|
|
3935
|
+
<span class="icon-name">time-to-retreat</span>
|
|
3936
|
+
<span class="icon-alias">
|
|
3937
|
+
</div>
|
|
3938
|
+
<div class="icons__item">
|
|
3939
|
+
<i class="odx-icon" data-icon-set="safety" data-icon-name="time-to-whiste">
|
|
3940
|
+
<span></span>
|
|
3941
|
+
</i>
|
|
3942
|
+
<span class="icon-name">time-to-whiste</span>
|
|
3943
|
+
<span class="icon-alias">
|
|
3944
|
+
</div>
|
|
3924
3945
|
<div class="icons__item">
|
|
3925
3946
|
<i class="odx-icon" data-icon-set="safety" data-icon-name="time-window">
|
|
3926
3947
|
<span></span>
|
|
@@ -738,7 +738,14 @@ $glyphs: (
|
|
|
738
738
|
tic-successful-part1: "\f27f",
|
|
739
739
|
tic-successful-part2: "\f280",
|
|
740
740
|
time-compress: "\ed57",
|
|
741
|
+
time-of-whistle: "\f17a",
|
|
741
742
|
time-stretch: "\ed58",
|
|
743
|
+
time-to-retreat: "\f17f",
|
|
744
|
+
time-to-retreat-part1: "\f17d",
|
|
745
|
+
time-to-retreat-part2: "\f17e",
|
|
746
|
+
time-to-whiste: "\f1a4",
|
|
747
|
+
time-to-whiste-part1: "\f180",
|
|
748
|
+
time-to-whiste-part2: "\f181",
|
|
742
749
|
time-window: "\ed59",
|
|
743
750
|
timeline-view: "\f14d",
|
|
744
751
|
timer: "\ed5a",
|
package/safety/safety-icons.css
CHANGED
|
@@ -2480,9 +2480,34 @@
|
|
|
2480
2480
|
[data-icon-set=safety][data-icon-name=time-compress]::before {
|
|
2481
2481
|
content: "\ed57";
|
|
2482
2482
|
}
|
|
2483
|
+
[data-icon-set=safety][data-icon-name=time-of-whistle]::before {
|
|
2484
|
+
content: "\f17a";
|
|
2485
|
+
}
|
|
2483
2486
|
[data-icon-set=safety][data-icon-name=time-stretch]::before {
|
|
2484
2487
|
content: "\ed58";
|
|
2485
2488
|
}
|
|
2489
|
+
[data-icon-set=safety][data-icon-name=time-to-retreat]::before {
|
|
2490
|
+
content: "\f17f";
|
|
2491
|
+
}
|
|
2492
|
+
[data-icon-set=safety][data-icon-name=time-to-retreat]::after {
|
|
2493
|
+
content: "\f17d";
|
|
2494
|
+
color: #FFE300;
|
|
2495
|
+
}
|
|
2496
|
+
[data-icon-set=safety][data-icon-name=time-to-retreat] span::before {
|
|
2497
|
+
content: "\f17e";
|
|
2498
|
+
color: #002766;
|
|
2499
|
+
}
|
|
2500
|
+
[data-icon-set=safety][data-icon-name=time-to-whiste]::before {
|
|
2501
|
+
content: "\f1a4";
|
|
2502
|
+
}
|
|
2503
|
+
[data-icon-set=safety][data-icon-name=time-to-whiste]::after {
|
|
2504
|
+
content: "\f180";
|
|
2505
|
+
color: #FFE300;
|
|
2506
|
+
}
|
|
2507
|
+
[data-icon-set=safety][data-icon-name=time-to-whiste] span::before {
|
|
2508
|
+
content: "\f181";
|
|
2509
|
+
color: #002766;
|
|
2510
|
+
}
|
|
2486
2511
|
[data-icon-set=safety][data-icon-name=time-window]::before {
|
|
2487
2512
|
content: "\ed59";
|
|
2488
2513
|
}
|
package/safety/safety-icons.eot
CHANGED
|
Binary file
|
package/safety/safety-icons.scss
CHANGED
|
@@ -2487,9 +2487,34 @@
|
|
|
2487
2487
|
&[data-icon-name="time-compress"]::before {
|
|
2488
2488
|
content: utils.get-icon-glyph("time-compress");
|
|
2489
2489
|
}
|
|
2490
|
+
&[data-icon-name="time-of-whistle"]::before {
|
|
2491
|
+
content: utils.get-icon-glyph("time-of-whistle");
|
|
2492
|
+
}
|
|
2490
2493
|
&[data-icon-name="time-stretch"]::before {
|
|
2491
2494
|
content: utils.get-icon-glyph("time-stretch");
|
|
2492
2495
|
}
|
|
2496
|
+
&[data-icon-name="time-to-retreat"]::before {
|
|
2497
|
+
content: utils.get-icon-glyph("time-to-retreat");
|
|
2498
|
+
}
|
|
2499
|
+
&[data-icon-name="time-to-retreat"]::after {
|
|
2500
|
+
content: utils.get-icon-glyph("time-to-retreat-part1");
|
|
2501
|
+
color: #FFE300;
|
|
2502
|
+
}
|
|
2503
|
+
&[data-icon-name="time-to-retreat"] span::before {
|
|
2504
|
+
content: utils.get-icon-glyph("time-to-retreat-part2");
|
|
2505
|
+
color: #002766;
|
|
2506
|
+
}
|
|
2507
|
+
&[data-icon-name="time-to-whiste"]::before {
|
|
2508
|
+
content: utils.get-icon-glyph("time-to-whiste");
|
|
2509
|
+
}
|
|
2510
|
+
&[data-icon-name="time-to-whiste"]::after {
|
|
2511
|
+
content: utils.get-icon-glyph("time-to-whiste-part1");
|
|
2512
|
+
color: #FFE300;
|
|
2513
|
+
}
|
|
2514
|
+
&[data-icon-name="time-to-whiste"] span::before {
|
|
2515
|
+
content: utils.get-icon-glyph("time-to-whiste-part2");
|
|
2516
|
+
color: #002766;
|
|
2517
|
+
}
|
|
2493
2518
|
&[data-icon-name="time-window"]::before {
|
|
2494
2519
|
content: utils.get-icon-glyph("time-window");
|
|
2495
2520
|
}
|
package/safety/safety-icons.ttf
CHANGED
|
Binary file
|
package/safety/safety-icons.woff
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -2159,10 +2159,22 @@
|
|
|
2159
2159
|
"name": "time-compress",
|
|
2160
2160
|
"set": "safety"
|
|
2161
2161
|
},
|
|
2162
|
+
{
|
|
2163
|
+
"name": "time-of-whistle",
|
|
2164
|
+
"set": "safety"
|
|
2165
|
+
},
|
|
2162
2166
|
{
|
|
2163
2167
|
"name": "time-stretch",
|
|
2164
2168
|
"set": "safety"
|
|
2165
2169
|
},
|
|
2170
|
+
{
|
|
2171
|
+
"name": "time-to-retreat",
|
|
2172
|
+
"set": "safety"
|
|
2173
|
+
},
|
|
2174
|
+
{
|
|
2175
|
+
"name": "time-to-whiste",
|
|
2176
|
+
"set": "safety"
|
|
2177
|
+
},
|
|
2166
2178
|
{
|
|
2167
2179
|
"name": "time-window",
|
|
2168
2180
|
"set": "safety"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-890aae86-0f71-41f7-9d80-c66609656d8e" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="m29.61,23.57c0,.99-.23,1.97-.68,2.86-.45.89-1.09,1.66-1.89,2.25-.8.59-1.72.99-2.7,1.16-.98.17-1.98.11-2.93-.17-.95-.29-1.82-.79-2.54-1.47-.72-.68-1.27-1.52-1.61-2.46-.34-.93-.45-1.93-.33-2.92.12-.99.46-1.93,1.01-2.76l-.99-.99,1.8-1.8.99.99c.69-.46,1.45-.78,2.26-.95v-1.38h2.5v1.38c.81.17,1.57.5,2.26.95l.99-.99,1.8,1.8-.99.99c.69,1.04,1.06,2.26,1.06,3.51Zm-1.27,0c-.01-1.34-.56-2.62-1.51-3.56s-2.24-1.47-3.58-1.47-2.63.53-3.58,1.47-1.5,2.22-1.51,3.56c0,2.81,2.28,5.05,5.09,5.05s5.09-2.24,5.09-5.05Zm-5.09-4.45c-.74,0-1.47.19-2.12.54-.65.36-1.2.87-1.6,1.49-.4.62-.64,1.34-.69,2.08-.05.74.08,1.48.39,2.16.31.68.78,1.26,1.37,1.71.59.45,1.29.74,2.02.84.73.11,1.48.03,2.18-.23.7-.26,1.32-.68,1.8-1.24l-3.35-2.92v-4.44Zm-6.17-15.12v3.41h-1v-3.41h1Zm3.88,2.01l-2.37,2.37-.71-.71,2.37-2.37.71.71Zm-8.76,0l.71-.71,2.37,2.37-.71.71-2.37-2.37Zm5.87,3.02l-.87,1.74h-1.25l-.62-1.74h-5.36,0c-3.46.13-6.23,2.98-6.23,6.48s2.9,6.48,6.48,6.48c3.01,0,5.54-2.05,6.27-4.83.11-.26.45-1.04.96-1.65.62-.75,1.5-1.1,1.5-1.1l6.82-2.77.28-2.62h-7.98Zm-7.83,11.72c-2.9,0-5.25-2.35-5.25-5.25s2.35-5.25,5.25-5.25,5.25,2.35,5.25,5.25-2.35,5.25-5.25,5.25Zm0-9.5c-2.35,0-4.25,1.9-4.25,4.25s1.9,4.25,4.25,4.25,4.25-1.9,4.25-4.25-1.9-4.25-4.25-4.25Z" style="fill:#f0f;"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-4b657942-b0fd-4251-802a-1b373929f853" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="m25.9,9.93l-1.56,1.56h0c.89,1.34,1.44,2.88,1.61,4.48-.66-.24-1.36-.39-2.09-.44-.2-1.06-.61-2.07-1.21-2.97-.88-1.32-2.13-2.34-3.59-2.95-1.46-.61-3.07-.76-4.62-.46-1.55.31-2.98,1.07-4.1,2.19s-1.88,2.54-2.19,4.1c-.31,1.55-.15,3.16.46,4.62.61,1.46,1.63,2.71,2.95,3.59,1.14.76,2.46,1.22,3.83,1.32.13.71.36,1.4.67,2.03-.02,0-.04,0-.05,0-1.81,0-3.58-.49-5.13-1.42-1.55-.93-2.82-2.26-3.68-3.85-.86-1.59-1.26-3.39-1.18-5.19.08-1.81.65-3.55,1.65-5.06l-1.56-1.56,2.83-2.83,1.56,1.56c1.07-.71,2.26-1.2,3.51-1.46v-2.2h4v2.2c1.25.26,2.45.75,3.51,1.46l1.56-1.56,2.83,2.83Zm-8.59,8.22c-1.28,1.42-2.06,3.3-2.06,5.36,0,.16,0,.31.01.46-.1-.01-.19-.02-.29-.04-1.16-.17-2.26-.63-3.19-1.33-.94-.7-1.68-1.63-2.16-2.7-.48-1.07-.69-2.24-.61-3.41.09-1.17.46-2.3,1.1-3.28.64-.98,1.51-1.79,2.54-2.35,1.03-.56,2.18-.85,3.35-.85v7l1.31,1.14Z" style="fill:#f0f; fill-rule:evenodd;"/><g><path d="m29.87,23.63c0,1.29-.38,2.54-1.1,3.61-.71,1.07-1.73,1.9-2.92,2.39-1.19.49-2.49.62-3.76.37-1.26-.25-2.42-.87-3.33-1.78-.91-.91-1.53-2.07-1.78-3.33-.25-1.26-.12-2.57.37-3.76.49-1.19,1.33-2.2,2.39-2.92,1.07-.71,2.33-1.1,3.61-1.1.85,0,1.7.17,2.49.49.79.33,1.51.81,2.11,1.41.6.6,1.08,1.32,1.41,2.11.33.79.49,1.63.49,2.49Z" style="fill:#ffe300;"/><path d="m23.62,22.75h1.03v.75l-1.29.25-.26-.5v1.5l1.03,1.25v2.5h-1.03v-1.75l-.8-1.19-.75,1.19h-2.06v-.99h1.29l.77-1.01v-.75l-.26-.75-.77-.75,1.1-.79c.07-.07.14-.12.23-.15.09-.04.18-.05.27-.05h.08c.1,0,.2.02.3.06.09.04.18.1.24.18l.87,1.01Zm-1.03-1.5c.15,0,.3-.04.43-.13.13-.08.23-.2.28-.34.06-.14.07-.29.04-.43-.03-.15-.1-.28-.21-.38-.11-.1-.25-.18-.4-.21-.15-.03-.31-.01-.45.04-.14.06-.26.15-.35.28-.08.12-.13.27-.13.42,0,.2.08.39.23.53.14.14.34.22.55.22Zm5.41.12l-2.32-2.38v1.5h-.77v1.75h.77v1.5l2.32-2.38Z" style="fill:#002766;"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-4787ea96-97cb-47ce-9424-57e00bc428dc" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="m25.9,9.93l-1.56,1.56h0c.89,1.34,1.44,2.88,1.61,4.48-.66-.24-1.36-.39-2.09-.44-.2-1.06-.61-2.07-1.21-2.97-.88-1.32-2.13-2.34-3.59-2.95-1.46-.61-3.07-.76-4.62-.46-1.55.31-2.98,1.07-4.1,2.19s-1.88,2.54-2.19,4.1c-.31,1.55-.15,3.16.46,4.62.61,1.46,1.63,2.71,2.95,3.59,1.14.76,2.46,1.22,3.83,1.32.13.71.36,1.4.67,2.03-.02,0-.04,0-.05,0-1.81,0-3.58-.49-5.13-1.42-1.55-.93-2.82-2.26-3.68-3.85-.86-1.59-1.26-3.39-1.18-5.19.08-1.81.65-3.55,1.65-5.06l-1.56-1.56,2.83-2.83,1.56,1.56c1.07-.71,2.26-1.2,3.51-1.46v-2.2h4v2.2c1.25.26,2.45.75,3.51,1.46l1.56-1.56,2.83,2.83Zm-8.59,8.22c-1.28,1.42-2.06,3.3-2.06,5.36,0,.16,0,.31.01.46-.1-.01-.19-.02-.29-.04-1.16-.17-2.26-.63-3.19-1.33-.94-.7-1.68-1.63-2.16-2.7-.48-1.07-.69-2.24-.61-3.41.09-1.17.46-2.3,1.1-3.28.64-.98,1.51-1.79,2.54-2.35,1.03-.56,2.18-.85,3.35-.85v7l1.31,1.14Z" style="fill:#f0f; fill-rule:evenodd;"/><g><path d="m29.87,23.63c0,1.29-.38,2.54-1.1,3.61-.71,1.07-1.73,1.9-2.92,2.39-1.19.49-2.49.62-3.76.37-1.26-.25-2.42-.87-3.33-1.78-.91-.91-1.53-2.07-1.78-3.33-.25-1.26-.12-2.57.37-3.76.49-1.19,1.33-2.2,2.39-2.92,1.07-.71,2.33-1.1,3.61-1.1.85,0,1.7.17,2.49.49.79.33,1.51.81,2.11,1.41.6.6,1.08,1.32,1.41,2.11.33.79.49,1.63.49,2.49Z" style="fill:#ffe300;"/><path d="m18,24.83c0,1.68,1.37,3.05,3.05,3.05,1.42,0,2.61-.96,2.95-2.27.05-.12.21-.49.45-.78.29-.35.71-.52.71-.52l3.21-1.3.13-1.23h-3.76l-.41.82h-.59l-.29-.82h-2.52,0c-1.63.06-2.93,1.4-2.93,3.05Zm3,1.42c-.83,0-1.5-.67-1.5-1.5s.67-1.5,1.5-1.5,1.5.67,1.5,1.5-.67,1.5-1.5,1.5Z" style="fill:#002766; fill-rule:evenodd;"/><path d="m24.31,18.75v1.5h-.62v-1.5h.62Z" style="fill:#002766; fill-rule:evenodd;"/><path d="m25.99,20.2l-.5.6-.48-.4.5-.6.48.4Z" style="fill:#002766; fill-rule:evenodd;"/><path d="m22.01,20.2l.5.6.48-.4-.5-.6-.48.4Z" style="fill:#002766; fill-rule:evenodd;"/></g></svg>
|