wxruby3-mdap 1.0.0.pre.rc.1

Sign up to get free protection for your applications and to get access to all the features.
data/CREDITS.md ADDED
@@ -0,0 +1,15 @@
1
+
2
+ # Credits
3
+
4
+ ## wxRuby MaterialDesignArtProvider
5
+
6
+ Martin Corino established this project in 2024.
7
+
8
+ ### Lead Maintainer
9
+
10
+ Martin Corino: mcorino at m2c-software dot nl
11
+
12
+ ## wxMaterialDesignArtProvider
13
+
14
+ This project was inspired by the [wxMaterialDesignArtProvider](https://github.com/perazz/wxMaterialDesignArtProvider)
15
+ (a custom ArtProvider class in C++ for use with wxWidgets itself) created by [Federico Perini](https://github.com/perazz).
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Martin Corino
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,95 @@
1
+ [![License](https://img.shields.io/badge/license-MIT-yellowgreen.svg)](LICENSE)
2
+ [![Gem Version](https://badge.fury.io/rb/wxruby3-materialdesignartprovider.svg)](https://badge.fury.io/rb/wxruby3-materialdesignartprovider)
3
+ [![Documentation](https://img.shields.io/badge/docs-pages-blue.svg)](https://mcorino.github.io/wxRuby3-MaterialDesignArtProvider)
4
+
5
+ # Material Design Art Provider for wxRuby3
6
+
7
+ This custom Art Provider was inspired by [wxMaterialDesignArtProvider](https://github.com/perazz/wxMaterialDesignArtProvider)
8
+ but rewritten in pure Ruby for use with [wxRuby3](https://github.com/mcorino/wxRuby3).<br>
9
+ See the [License](#license) section below to see where the original icons were taken from.
10
+
11
+ ## Installing
12
+
13
+ wxRuby3-MaterialDesignArtProvider is distributed as a Ruby gem on [RubyGems](https://rubygems.org/). This gem can also
14
+ be downloaded from the release assets on [Github](https://github.com/mcorino/wxRuby3-MaterialDesignArtProvider/releases).
15
+
16
+ Installing the gem requires no additional installation steps and/or additional software to be installed except for a
17
+ supported version of the Ruby interpreter. So the following command is all it takes to install:
18
+
19
+ ```shell
20
+ gem install wxruby3-mdap
21
+ ```
22
+
23
+ ## Using
24
+
25
+ To add [Wx::MDAP::MaterialDesignArtProvider](https://mcorino.github.io/wxRuby3-MaterialDesignArtProvider/Wx/MDAP/MaterialDesignArtProvider.html)
26
+ to your project you first need to `require` it like this:
27
+
28
+ ```ruby
29
+ require 'wx' # make sure the wxRuby3 libraries have been loaded
30
+ require 'wx/mdap' # now load the wxRuby3-MaterialDesignArtProvider library
31
+ ```
32
+
33
+ Next, before you load images through [Wx::ArtProvider](https://mcorino.github.io/wxRuby3/Wx/ArtProvider.html) register
34
+ the [Wx::MDAP::MaterialDesignArtProvider](https://mcorino.github.io/wxRuby3-MaterialDesignArtProvider/Wx/MDAP/MaterialDesignArtProvider.html) like this:
35
+
36
+ ```ruby
37
+ Wx::ArtProvider.push(Wx::MDAP::MaterialDesignArtProvider.new)
38
+ # You can in fact normally also reference the class as `Wx::MaterialDesignArtProvider` (unless the constant
39
+ # `Wx::MaterialDesignArtProvider` was already defined before requiring 'wx/mdap').
40
+ ```
41
+
42
+ Now that the new art provider has been installed the new Material Design art ids can be used. Constants for these are
43
+ all defined in the `Wx::MDAP` module as 'Wx::MDAP::ART_*ICON_NAME*' (see [here](https://mcorino.github.io/wxRuby3-MaterialDesignArtProvider/Wx/MDAP.html)).
44
+ Many of these art ids are available under most of the various client ids (also defined [here](https://mcorino.github.io/wxRuby3-MaterialDesignArtProvider/Wx/MDAP.html))
45
+ while others are only available under some client ids (as can be seen in the documentation).
46
+ The client ids each correspond to a different collection in the full dataset:
47
+
48
+ - **Material Design** art
49
+ - `Wx::MDAP::ART_MATERIAL_DESIGN_FILLED`
50
+ - `Wx::MDAP::ART_MATERIAL_DESIGN_OUTLINE`
51
+ - `Wx::MDAP::ART_MATERIAL_DESIGN_ROUND`
52
+ - `Wx::MDAP::ART_MATERIAL_DESIGN_SHARP`
53
+ - `Wx::MDAP::ART_MATERIAL_DESIGN_TWO_TONE`
54
+ - **Font Awesome** art
55
+ - `Wx::MDAP::ART_FONT_AWESOME_SOLID`
56
+ - `Wx::MDAP::ART_FONT_AWESOME_REGULAR`
57
+ - `Wx::MDAP::ART_FONT_AWESOME_BRANDS`
58
+ - **Fluent UI** art
59
+ - `Wx::MDAP::ART_FLUENT_UI_FILLED`
60
+ - `Wx::MDAP::ART_FLUENT_UI_REGULAR`
61
+ - **Simple Icons** art
62
+ - `Wx::MDAP::ART_SIMPLE_ICONS_ICONS`
63
+
64
+ Of these collections, `Wx::MDAP::ART_FONT_AWESOME_BRANDS` and `Wx::MDAP::ART_SIMPLE_ICONS_ICONS` are the odd
65
+ ones out as these do not contain any action/function icons but rather brand/logo icons.
66
+
67
+ ### Extensions
68
+
69
+ wxRuby3-MaterialDesignArtProvider offers several extensions to improve options for using the Material Design art:
70
+
71
+ 1. `Wx::MDAP::MaterialDesignArtProvider` supports mapping of standard wxRuby3 Art (Client) ids to Material Design ids so
72
+ you can transparently switch standard art;
73
+ 2. `Wx::MDAP::MaterialDesignArtProvider` supports using custom colors with Material Design art;
74
+ 3. `Wx::MDAP::MaterialDesignArtProvider` supports using custom default sizes with Material Design art.
75
+
76
+ See [Wx::MDAP::MaterialDesignArtProvider](https://mcorino.github.io/wxRuby3-MaterialDesignArtProvider/Wx/MDAP/MaterialDesignArtProvider.html)
77
+ for details concerning these extensions.
78
+
79
+ ### Example
80
+
81
+ For more details and a working example of how to use [Wx::MDAP::MaterialDesignArtProvider](https://mcorino.github.io/wxRuby3-MaterialDesignArtProvider/Wx/MDAP/MaterialDesignArtProvider.html)
82
+ see [here](USAGE.md).
83
+
84
+ ## License
85
+
86
+ - FontAwesome icons from the FontAwesome 6 SVG set are subject to the [CC BY 4.0 License](CCBY4.0-LICENSE)<br>
87
+ (the included icons have been copied from https://github.com/FortAwesome/Font-Awesome)
88
+ - MaterialDesign icons are created by Google and subject to the [Apache 2.0 License](Apache2.0-LICENSE)<br>
89
+ (the included SVG icons have been copied from https://github.com/marella/material-design-icons)
90
+ - SimpleIcons are subject to the [CC0 1.0 License](CC01.0-LICENSE.md)<br>
91
+ (the included icons haven been copied from https://github.com/simple-icons/simple-icons)
92
+ - FluentUI icons are subject to the [MIT License](LICENSE)<br>
93
+ (included SVG icons taken from [FluentUI icons](https://github.com/microsoft/fluentui-system-icons))
94
+
95
+ The wxRuby3 MaterialDesignArtProvider library itself is released under the [MIT License](LICENSE).
data/assets/logo.svg ADDED
@@ -0,0 +1,170 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.2" width="120.53mm" height="85.15mm" viewBox="1364 6894 12053 8515" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
4
+ <defs class="EmbeddedBulletChars">
5
+ <g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
6
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
7
+ </g>
8
+ <g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
9
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
10
+ </g>
11
+ <g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
12
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
13
+ </g>
14
+ <g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
15
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
16
+ </g>
17
+ <g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
18
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
19
+ </g>
20
+ <g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
21
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
22
+ </g>
23
+ <g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
24
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
25
+ </g>
26
+ <g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
27
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
28
+ </g>
29
+ <g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
30
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
31
+ </g>
32
+ <g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
33
+ <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
34
+ </g>
35
+ </defs>
36
+ <g class="Page">
37
+ <g class="Group">
38
+ <g class="com.sun.star.drawing.PolyPolygonShape">
39
+ <g id="id3">
40
+ <rect class="BoundingBox" stroke="none" fill="none" x="1364" y="6894" width="5653" height="1964"/>
41
+ <path fill="rgb(241,13,12)" stroke="none" d="M 1470,8751 L 6910,8751 6044,7000 2334,7000 1470,8751 Z"/>
42
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 1470,8751 L 6910,8751 6044,7000 2334,7000 1470,8751 Z"/>
43
+ </g>
44
+ </g>
45
+ <g class="com.sun.star.drawing.PolyPolygonShape">
46
+ <g id="id4">
47
+ <rect class="BoundingBox" stroke="none" fill="none" x="2224" y="6894" width="3933" height="1964"/>
48
+ <path fill="rgb(241,13,12)" stroke="none" d="M 2330,7000 L 6050,7000 5458,8751 2921,8751 2330,7000 Z"/>
49
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 2330,7000 L 6050,7000 5458,8751 2921,8751 2330,7000 Z"/>
50
+ </g>
51
+ </g>
52
+ <g class="com.sun.star.drawing.PolyPolygonShape">
53
+ <g id="id5">
54
+ <rect class="BoundingBox" stroke="none" fill="none" x="2706" y="6894" width="2939" height="1964"/>
55
+ <path fill="rgb(241,13,12)" stroke="none" d="M 4216,7000 L 5538,8751 2812,8751 4216,7000 Z"/>
56
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 4216,7000 L 5538,8751 2812,8751 4216,7000 Z"/>
57
+ </g>
58
+ </g>
59
+ <g class="com.sun.star.drawing.PolyPolygonShape">
60
+ <g id="id6">
61
+ <rect class="BoundingBox" stroke="none" fill="none" x="1374" y="8642" width="5634" height="3965"/>
62
+ <path fill="rgb(241,13,12)" stroke="none" d="M 4189,12500 L 6900,8749 1480,8749 4189,12500 Z"/>
63
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 4189,12500 L 6900,8749 1480,8749 4189,12500 Z"/>
64
+ </g>
65
+ </g>
66
+ <g class="com.sun.star.drawing.PolyPolygonShape">
67
+ <g id="id7">
68
+ <rect class="BoundingBox" stroke="none" fill="none" x="2794" y="8644" width="1513" height="3964"/>
69
+ <path fill="rgb(241,13,12)" stroke="none" d="M 2900,8750 L 4200,12500 2900,8750 Z"/>
70
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 2900,8750 L 4200,12500 2900,8750 Z"/>
71
+ </g>
72
+ </g>
73
+ <g class="com.sun.star.drawing.PolyPolygonShape">
74
+ <g id="id8">
75
+ <rect class="BoundingBox" stroke="none" fill="none" x="4064" y="8645" width="1513" height="3964"/>
76
+ <path fill="rgb(241,13,12)" stroke="none" d="M 5470,8751 L 4170,12501 5470,8751 Z"/>
77
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 5470,8751 L 4170,12501 5470,8751 Z"/>
78
+ </g>
79
+ </g>
80
+ </g>
81
+ <g class="Group">
82
+ <g class="com.sun.star.drawing.PolyPolygonShape">
83
+ <g id="id9">
84
+ <rect class="BoundingBox" stroke="none" fill="none" x="7764" y="6895" width="5653" height="1964"/>
85
+ <path fill="rgb(255,255,0)" stroke="none" d="M 7870,8752 L 13310,8752 12444,7001 8734,7001 7870,8752 Z"/>
86
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 7870,8752 L 13310,8752 12444,7001 8734,7001 7870,8752 Z"/>
87
+ </g>
88
+ </g>
89
+ <g class="com.sun.star.drawing.PolyPolygonShape">
90
+ <g id="id10">
91
+ <rect class="BoundingBox" stroke="none" fill="none" x="8624" y="6895" width="3933" height="1964"/>
92
+ <path fill="rgb(255,255,0)" stroke="none" d="M 8730,7001 L 12450,7001 11858,8752 9321,8752 8730,7001 Z"/>
93
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 8730,7001 L 12450,7001 11858,8752 9321,8752 8730,7001 Z"/>
94
+ </g>
95
+ </g>
96
+ <g class="com.sun.star.drawing.PolyPolygonShape">
97
+ <g id="id11">
98
+ <rect class="BoundingBox" stroke="none" fill="none" x="9106" y="6895" width="2939" height="1964"/>
99
+ <path fill="rgb(255,255,0)" stroke="none" d="M 10616,7001 L 11938,8752 9212,8752 10616,7001 Z"/>
100
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 10616,7001 L 11938,8752 9212,8752 10616,7001 Z"/>
101
+ </g>
102
+ </g>
103
+ <g class="com.sun.star.drawing.PolyPolygonShape">
104
+ <g id="id12">
105
+ <rect class="BoundingBox" stroke="none" fill="none" x="7774" y="8644" width="5634" height="3964"/>
106
+ <path fill="rgb(255,255,0)" stroke="none" d="M 10589,12501 L 13300,8750 7880,8750 10589,12501 Z"/>
107
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 10589,12501 L 13300,8750 7880,8750 10589,12501 Z"/>
108
+ </g>
109
+ </g>
110
+ <g class="com.sun.star.drawing.PolyPolygonShape">
111
+ <g id="id13">
112
+ <rect class="BoundingBox" stroke="none" fill="none" x="9194" y="8645" width="1513" height="3964"/>
113
+ <path fill="rgb(255,255,0)" stroke="none" d="M 9300,8751 L 10600,12501 9300,8751 Z"/>
114
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 9300,8751 L 10600,12501 9300,8751 Z"/>
115
+ </g>
116
+ </g>
117
+ <g class="com.sun.star.drawing.PolyPolygonShape">
118
+ <g id="id14">
119
+ <rect class="BoundingBox" stroke="none" fill="none" x="10464" y="8646" width="1513" height="3964"/>
120
+ <path fill="rgb(255,255,0)" stroke="none" d="M 11870,8752 L 10570,12502 11870,8752 Z"/>
121
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 11870,8752 L 10570,12502 11870,8752 Z"/>
122
+ </g>
123
+ </g>
124
+ </g>
125
+ <g class="Group">
126
+ <g class="com.sun.star.drawing.PolyPolygonShape">
127
+ <g id="id15">
128
+ <rect class="BoundingBox" stroke="none" fill="none" x="4564" y="13444" width="5653" height="1965"/>
129
+ <path fill="rgb(36,83,255)" stroke="none" d="M 4670,13550 L 10110,13550 9244,15301 5534,15301 4670,13550 Z"/>
130
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 4670,13550 L 10110,13550 9244,15301 5534,15301 4670,13550 Z"/>
131
+ </g>
132
+ </g>
133
+ <g class="com.sun.star.drawing.PolyPolygonShape">
134
+ <g id="id16">
135
+ <rect class="BoundingBox" stroke="none" fill="none" x="5424" y="13444" width="3933" height="1965"/>
136
+ <path fill="rgb(36,83,255)" stroke="none" d="M 5530,15301 L 9250,15301 8658,13550 6121,13550 5530,15301 Z"/>
137
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 5530,15301 L 9250,15301 8658,13550 6121,13550 5530,15301 Z"/>
138
+ </g>
139
+ </g>
140
+ <g class="com.sun.star.drawing.PolyPolygonShape">
141
+ <g id="id17">
142
+ <rect class="BoundingBox" stroke="none" fill="none" x="5906" y="13444" width="2939" height="1965"/>
143
+ <path fill="rgb(36,83,255)" stroke="none" d="M 7416,15301 L 8738,13550 6012,13550 7416,15301 Z"/>
144
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 7416,15301 L 8738,13550 6012,13550 7416,15301 Z"/>
145
+ </g>
146
+ </g>
147
+ <g class="com.sun.star.drawing.PolyPolygonShape">
148
+ <g id="id18">
149
+ <rect class="BoundingBox" stroke="none" fill="none" x="4574" y="9695" width="5633" height="3964"/>
150
+ <path fill="rgb(36,83,255)" stroke="none" d="M 7389,9801 L 10100,13552 4680,13552 7389,9801 Z"/>
151
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 7389,9801 L 10100,13552 4680,13552 7389,9801 Z"/>
152
+ </g>
153
+ </g>
154
+ <g class="com.sun.star.drawing.PolyPolygonShape">
155
+ <g id="id19">
156
+ <rect class="BoundingBox" stroke="none" fill="none" x="5994" y="9694" width="1513" height="3964"/>
157
+ <path fill="rgb(36,83,255)" stroke="none" d="M 6100,13551 L 7400,9801 6100,13551 Z"/>
158
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 6100,13551 L 7400,9801 6100,13551 Z"/>
159
+ </g>
160
+ </g>
161
+ <g class="com.sun.star.drawing.PolyPolygonShape">
162
+ <g id="id20">
163
+ <rect class="BoundingBox" stroke="none" fill="none" x="7264" y="9693" width="1513" height="3964"/>
164
+ <path fill="rgb(36,83,255)" stroke="none" d="M 8670,13550 L 7370,9800 8670,13550 Z"/>
165
+ <path fill="none" stroke="rgb(51,51,51)" stroke-width="212" stroke-linejoin="round" d="M 8670,13550 L 7370,9800 8670,13550 Z"/>
166
+ </g>
167
+ </g>
168
+ </g>
169
+ </g>
170
+ </svg>