pdap-design-system 1.1.0 → 2.0.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.
Files changed (63) hide show
  1. package/CONTRIBUTING.md +34 -0
  2. package/README.md +35 -49
  3. package/bin/pdap-design-system-cli.js +12 -8
  4. package/dist/components/Button/PdapButton.vue.d.ts +36 -0
  5. package/dist/components/Button/index.d.ts +2 -0
  6. package/dist/components/Button/types.d.ts +4 -0
  7. package/dist/components/FlexContainer/FlexContainer.vue.d.ts +36 -0
  8. package/dist/components/FlexContainer/index.d.ts +2 -0
  9. package/dist/components/FlexContainer/types.d.ts +4 -0
  10. package/dist/components/Footer/PdapFooter.vue.d.ts +29 -0
  11. package/dist/components/Footer/index.d.ts +2 -0
  12. package/dist/components/Footer/types.d.ts +9 -0
  13. package/dist/components/Form/InputsGenerator/FormInputsGenerator.vue.d.ts +37 -0
  14. package/dist/components/Form/InputsGenerator/index.d.ts +2 -0
  15. package/dist/components/Form/PdapForm.vue.d.ts +39 -0
  16. package/dist/components/Form/index.d.ts +2 -0
  17. package/dist/components/Form/types.d.ts +35 -0
  18. package/dist/components/GridContainer/GridContainer.vue.d.ts +39 -0
  19. package/dist/components/GridContainer/index.d.ts +2 -0
  20. package/dist/components/GridContainer/types.d.ts +7 -0
  21. package/dist/components/GridItem/GridItem.vue.d.ts +39 -0
  22. package/dist/components/GridItem/index.d.ts +2 -0
  23. package/dist/components/GridItem/types.d.ts +5 -0
  24. package/dist/components/Header/PdapHeader.vue.d.ts +29 -0
  25. package/dist/components/Header/index.d.ts +2 -0
  26. package/dist/components/Header/types.d.ts +4 -0
  27. package/dist/components/Input/Checkbox/InputCheckbox.vue.d.ts +24 -0
  28. package/dist/components/Input/Checkbox/index.d.ts +2 -0
  29. package/dist/components/Input/PdapInput.vue.d.ts +19 -0
  30. package/dist/components/Input/Text/InputText.vue.d.ts +24 -0
  31. package/dist/components/Input/Text/index.d.ts +2 -0
  32. package/dist/components/Input/index.d.ts +2 -0
  33. package/dist/components/Input/types.d.ts +20 -0
  34. package/dist/components/Input/utils.d.ts +4 -0
  35. package/dist/components/Nav/PdapNav.vue.d.ts +12 -0
  36. package/dist/components/Nav/index.d.ts +2 -0
  37. package/dist/components/Nav/types.d.ts +12 -0
  38. package/dist/components/TileIcon/TileIcon.vue.d.ts +12 -0
  39. package/dist/components/TileIcon/index.d.ts +2 -0
  40. package/dist/components/TileIcon/types.d.ts +4 -0
  41. package/dist/components/index.d.ts +12 -0
  42. package/dist/index.cjs +2 -0
  43. package/dist/index.d.ts +12 -0
  44. package/dist/index.js +1728 -0
  45. package/dist/styles.css +1 -0
  46. package/dist/tools/testing/serializer.d.ts +7 -0
  47. package/dist/tools/testing/setup.d.ts +1 -0
  48. package/dist/utils/vuelidate.d.ts +36 -0
  49. package/package.json +50 -20
  50. package/dist/css/global-styles.css +0 -2133
  51. package/system/README.md +0 -1
  52. package/system/css/global-styles.css +0 -735
  53. package/system/css/normalize.css +0 -349
  54. package/system/images/acronym.svg +0 -16
  55. package/system/images/favicon.png +0 -0
  56. package/system/images/icons/automation.svg +0 -50
  57. package/system/images/icons/community.svg +0 -38
  58. package/system/images/icons/scrapers.svg +0 -64
  59. package/system/images/icons/sources.svg +0 -43
  60. package/system/images/icons/standard.svg +0 -38
  61. package/system/images/lockup.svg +0 -68
  62. package/system/images/logo.svg +0 -8
  63. package/system/images/webclip.gif +0 -0
@@ -1,349 +0,0 @@
1
- /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
2
-
3
- /* Document
4
- ========================================================================== */
5
-
6
- /**
7
- * 1. Correct the line height in all browsers.
8
- * 2. Prevent adjustments of font size after orientation changes in iOS.
9
- */
10
-
11
- html {
12
- line-height: 1.15; /* 1 */
13
- -webkit-text-size-adjust: 100%; /* 2 */
14
- }
15
-
16
- /* Sections
17
- ========================================================================== */
18
-
19
- /**
20
- * Remove the margin in all browsers.
21
- */
22
-
23
- body {
24
- margin: 0;
25
- }
26
-
27
- /**
28
- * Render the `main` element consistently in IE.
29
- */
30
-
31
- main {
32
- display: block;
33
- }
34
-
35
- /**
36
- * Correct the font size and margin on `h1` elements within `section` and
37
- * `article` contexts in Chrome, Firefox, and Safari.
38
- */
39
-
40
- h1 {
41
- font-size: 2em;
42
- margin: 0.67em 0;
43
- }
44
-
45
- /* Grouping content
46
- ========================================================================== */
47
-
48
- /**
49
- * 1. Add the correct box sizing in Firefox.
50
- * 2. Show the overflow in Edge and IE.
51
- */
52
-
53
- hr {
54
- box-sizing: content-box; /* 1 */
55
- height: 0; /* 1 */
56
- overflow: visible; /* 2 */
57
- }
58
-
59
- /**
60
- * 1. Correct the inheritance and scaling of font size in all browsers.
61
- * 2. Correct the odd `em` font sizing in all browsers.
62
- */
63
-
64
- pre {
65
- font-family: monospace, monospace; /* 1 */
66
- font-size: 1em; /* 2 */
67
- }
68
-
69
- /* Text-level semantics
70
- ========================================================================== */
71
-
72
- /**
73
- * Remove the gray background on active links in IE 10.
74
- */
75
-
76
- a {
77
- background-color: transparent;
78
- }
79
-
80
- /**
81
- * 1. Remove the bottom border in Chrome 57-
82
- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
83
- */
84
-
85
- abbr[title] {
86
- border-bottom: none; /* 1 */
87
- text-decoration: underline; /* 2 */
88
- text-decoration: underline dotted; /* 2 */
89
- }
90
-
91
- /**
92
- * Add the correct font weight in Chrome, Edge, and Safari.
93
- */
94
-
95
- b,
96
- strong {
97
- font-weight: bolder;
98
- }
99
-
100
- /**
101
- * 1. Correct the inheritance and scaling of font size in all browsers.
102
- * 2. Correct the odd `em` font sizing in all browsers.
103
- */
104
-
105
- code,
106
- kbd,
107
- samp {
108
- font-family: monospace, monospace; /* 1 */
109
- font-size: 1em; /* 2 */
110
- }
111
-
112
- /**
113
- * Add the correct font size in all browsers.
114
- */
115
-
116
- small {
117
- font-size: 80%;
118
- }
119
-
120
- /**
121
- * Prevent `sub` and `sup` elements from affecting the line height in
122
- * all browsers.
123
- */
124
-
125
- sub,
126
- sup {
127
- font-size: 75%;
128
- line-height: 0;
129
- position: relative;
130
- vertical-align: baseline;
131
- }
132
-
133
- sub {
134
- bottom: -0.25em;
135
- }
136
-
137
- sup {
138
- top: -0.5em;
139
- }
140
-
141
- /* Embedded content
142
- ========================================================================== */
143
-
144
- /**
145
- * Remove the border on images inside links in IE 10.
146
- */
147
-
148
- img {
149
- border-style: none;
150
- }
151
-
152
- /* Forms
153
- ========================================================================== */
154
-
155
- /**
156
- * 1. Change the font styles in all browsers.
157
- * 2. Remove the margin in Firefox and Safari.
158
- */
159
-
160
- button,
161
- input,
162
- optgroup,
163
- select,
164
- textarea {
165
- font-family: inherit; /* 1 */
166
- font-size: 100%; /* 1 */
167
- line-height: 1.15; /* 1 */
168
- margin: 0; /* 2 */
169
- }
170
-
171
- /**
172
- * Show the overflow in IE.
173
- * 1. Show the overflow in Edge.
174
- */
175
-
176
- button,
177
- input { /* 1 */
178
- overflow: visible;
179
- }
180
-
181
- /**
182
- * Remove the inheritance of text transform in Edge, Firefox, and IE.
183
- * 1. Remove the inheritance of text transform in Firefox.
184
- */
185
-
186
- button,
187
- select { /* 1 */
188
- text-transform: none;
189
- }
190
-
191
- /**
192
- * Correct the inability to style clickable types in iOS and Safari.
193
- */
194
-
195
- button,
196
- [type="button"],
197
- [type="reset"],
198
- [type="submit"] {
199
- -webkit-appearance: button;
200
- }
201
-
202
- /**
203
- * Remove the inner border and padding in Firefox.
204
- */
205
-
206
- button::-moz-focus-inner,
207
- [type="button"]::-moz-focus-inner,
208
- [type="reset"]::-moz-focus-inner,
209
- [type="submit"]::-moz-focus-inner {
210
- border-style: none;
211
- padding: 0;
212
- }
213
-
214
- /**
215
- * Restore the focus styles unset by the previous rule.
216
- */
217
-
218
- button:-moz-focusring,
219
- [type="button"]:-moz-focusring,
220
- [type="reset"]:-moz-focusring,
221
- [type="submit"]:-moz-focusring {
222
- outline: 1px dotted ButtonText;
223
- }
224
-
225
- /**
226
- * Correct the padding in Firefox.
227
- */
228
-
229
- fieldset {
230
- padding: 0.35em 0.75em 0.625em;
231
- }
232
-
233
- /**
234
- * 1. Correct the text wrapping in Edge and IE.
235
- * 2. Correct the color inheritance from `fieldset` elements in IE.
236
- * 3. Remove the padding so developers are not caught out when they zero out
237
- * `fieldset` elements in all browsers.
238
- */
239
-
240
- legend {
241
- box-sizing: border-box; /* 1 */
242
- color: inherit; /* 2 */
243
- display: table; /* 1 */
244
- max-width: 100%; /* 1 */
245
- padding: 0; /* 3 */
246
- white-space: normal; /* 1 */
247
- }
248
-
249
- /**
250
- * Add the correct vertical alignment in Chrome, Firefox, and Opera.
251
- */
252
-
253
- progress {
254
- vertical-align: baseline;
255
- }
256
-
257
- /**
258
- * Remove the default vertical scrollbar in IE 10+.
259
- */
260
-
261
- textarea {
262
- overflow: auto;
263
- }
264
-
265
- /**
266
- * 1. Add the correct box sizing in IE 10.
267
- * 2. Remove the padding in IE 10.
268
- */
269
-
270
- [type="checkbox"],
271
- [type="radio"] {
272
- box-sizing: border-box; /* 1 */
273
- padding: 0; /* 2 */
274
- }
275
-
276
- /**
277
- * Correct the cursor style of increment and decrement buttons in Chrome.
278
- */
279
-
280
- [type="number"]::-webkit-inner-spin-button,
281
- [type="number"]::-webkit-outer-spin-button {
282
- height: auto;
283
- }
284
-
285
- /**
286
- * 1. Correct the odd appearance in Chrome and Safari.
287
- * 2. Correct the outline style in Safari.
288
- */
289
-
290
- [type="search"] {
291
- -webkit-appearance: textfield; /* 1 */
292
- outline-offset: -2px; /* 2 */
293
- }
294
-
295
- /**
296
- * Remove the inner padding in Chrome and Safari on macOS.
297
- */
298
-
299
- [type="search"]::-webkit-search-decoration {
300
- -webkit-appearance: none;
301
- }
302
-
303
- /**
304
- * 1. Correct the inability to style clickable types in iOS and Safari.
305
- * 2. Change font properties to `inherit` in Safari.
306
- */
307
-
308
- ::-webkit-file-upload-button {
309
- -webkit-appearance: button; /* 1 */
310
- font: inherit; /* 2 */
311
- }
312
-
313
- /* Interactive
314
- ========================================================================== */
315
-
316
- /*
317
- * Add the correct display in Edge, IE 10+, and Firefox.
318
- */
319
-
320
- details {
321
- display: block;
322
- }
323
-
324
- /*
325
- * Add the correct display in all browsers.
326
- */
327
-
328
- summary {
329
- display: list-item;
330
- }
331
-
332
- /* Misc
333
- ========================================================================== */
334
-
335
- /**
336
- * Add the correct display in IE 10+.
337
- */
338
-
339
- template {
340
- display: none;
341
- }
342
-
343
- /**
344
- * Add the correct display in IE 10.
345
- */
346
-
347
- [hidden] {
348
- display: none;
349
- }
@@ -1,16 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 113.8 86.1" style="enable-background:new 0 0 113.8 86.1;" xml:space="preserve">
5
- <path d="M0,80.9L21.5,2.6h5.1L5.1,80.9H0z"/>
6
- <polygon points="78.8,20.4 61.8,20.4 75,7.2 71.1,3.2 58.4,15.8 58.4,0 52.8,0 52.8,15.8 40.2,3.2 36.2,7.2 49.5,20.4 32.5,20.4
7
- 32.5,26 48.3,26 36.2,38 40.2,42 52.8,29.3 52.8,46.3 58.4,46.3 58.4,29.3 71.1,42 75,38 63,26 78.8,26 "/>
8
- <path d="M42.1,71.1h-2.6v9.1h-5V57.3h7.6c5.1,0,8.4,2.4,8.4,6.7S47.3,71.1,42.1,71.1z M42.1,61.5h-2.6v5.3h2.6
9
- c2.3,0,3.3-0.9,3.3-2.7S44.3,61.5,42.1,61.5z"/>
10
- <path d="M60.5,80.1h-6.9V57.3h6.9c6.5,0,11.9,4,11.9,11.4C72.4,76.2,66.6,80.1,60.5,80.1z M60.5,61.5h-1.9v14.4h1.9
11
- c4.3,0,6.7-3.4,6.7-7.2S64.5,61.5,60.5,61.5z"/>
12
- <path d="M88.7,80.1L87,74.4h-7l-1.8,5.8h-5.3l8.2-22.9h4.8l8.3,22.9h-5.5V80.1z M84,64.6c-0.2-0.7-0.5-1.6-0.5-1.8
13
- c0,0.1-0.2,1-0.5,1.8l-1.7,5.6h4.4L84,64.6z"/>
14
- <path d="M104.7,71.1h-2.6v9.1h-5V57.3h7.6c5.1,0,8.4,2.4,8.4,6.7S109.8,71.1,104.7,71.1z M104.7,61.5h-2.6v5.3h2.6
15
- c2.3,0,3.3-0.9,3.3-2.7S106.9,61.5,104.7,61.5z"/>
16
- </svg>
Binary file
@@ -1,50 +0,0 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300">
2
- <defs>
3
- <style>
4
- .cls-1 {
5
- fill: none;
6
- }
7
-
8
- .cls-1, .cls-2 {
9
- stroke: #231f20;
10
- stroke-linecap: round;
11
- stroke-linejoin: round;
12
- stroke-width: 5px;
13
- }
14
-
15
- .cls-2 {
16
- fill: #fff;
17
- }
18
- </style>
19
- </defs>
20
- <title>Artboard 3</title>
21
- <path class="cls-1" d="M49.8842,50H250.1158A12.3842,12.3842,0,0,1,262.5,62.3842V87.5a0,0,0,0,1,0,0H37.5a0,0,0,0,1,0,0V62.3842A12.3842,12.3842,0,0,1,49.8842,50Z"/>
22
- <path class="cls-1" d="M262.5,235.3428V87.5H37.5V235.3428a11.9126,11.9126,0,0,0,11.9126,11.9126H250.5874A11.9126,11.9126,0,0,0,262.5,235.3428Z"/>
23
- <line class="cls-1" x1="62.5" y1="37.5" x2="62.5" y2="62.5"/>
24
- <line class="cls-1" x1="237.5" y1="37.5" x2="237.5" y2="62.5"/>
25
- <line class="cls-1" x1="137.5" y1="112.5" x2="112.5" y2="112.5"/>
26
- <line class="cls-1" x1="237.5" y1="112.5" x2="212.5" y2="112.5"/>
27
- <line class="cls-1" x1="137.5" y1="137.5" x2="112.5" y2="137.5"/>
28
- <line class="cls-1" x1="187.5" y1="137.5" x2="162.5" y2="137.5"/>
29
- <line class="cls-1" x1="237.5" y1="137.5" x2="212.5" y2="137.5"/>
30
- <line class="cls-1" x1="137.5" y1="162.5" x2="112.5" y2="162.5"/>
31
- <line class="cls-1" x1="187.5" y1="162.5" x2="162.5" y2="162.5"/>
32
- <line class="cls-1" x1="137.5" y1="187.5" x2="112.5" y2="187.5"/>
33
- <line class="cls-1" x1="187.5" y1="187.5" x2="162.5" y2="187.5"/>
34
- <line class="cls-1" x1="237.5" y1="187.5" x2="212.5" y2="187.5"/>
35
- <line class="cls-1" x1="87.5" y1="212.5" x2="62.5" y2="212.5"/>
36
- <line class="cls-1" x1="137.5" y1="212.5" x2="112.5" y2="212.5"/>
37
- <line class="cls-1" x1="237.5" y1="212.5" x2="212.5" y2="212.5"/>
38
- <polyline class="cls-1" points="65.019 112.5 72.179 119.659 86.497 105.341"/>
39
- <polyline class="cls-1" points="65.019 137.5 72.179 144.659 86.497 130.341"/>
40
- <polyline class="cls-1" points="65.019 162.5 72.179 169.659 86.497 155.341"/>
41
- <polyline class="cls-1" points="65.019 187.5 72.179 194.659 86.497 180.341"/>
42
- <polyline class="cls-1" points="165.019 212.5 172.179 219.659 186.497 205.341"/>
43
- <polyline class="cls-1" points="215.019 162.5 222.179 169.659 236.497 155.341"/>
44
- <polyline class="cls-1" points="165.019 112.5 172.179 119.659 186.497 105.341"/>
45
- <circle class="cls-2" cx="262.5" cy="250" r="27.7446"/>
46
- <g>
47
- <rect class="cls-1" x="250" y="244.1426" width="25" height="20.8333"/>
48
- <path class="cls-1" d="M270.8333,239.9759a8.3333,8.3333,0,0,0-16.6666,0v4.1667h16.6666Z"/>
49
- </g>
50
- </svg>
@@ -1,38 +0,0 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300">
2
- <defs>
3
- <style>
4
- .cls-1 {
5
- fill: none;
6
- stroke: #231f20;
7
- stroke-linecap: round;
8
- stroke-linejoin: round;
9
- stroke-width: 5px;
10
- }
11
- </style>
12
- </defs>
13
- <title>Artboard 4</title>
14
- <circle class="cls-1" cx="93.071" cy="118.9739" r="12.1991"/>
15
- <polygon class="cls-1" points="72.739 139.306 113.403 139.306 93.071 212.5 72.739 139.306"/>
16
- <circle class="cls-1" cx="150" cy="98.2951" r="12.1991"/>
17
- <polygon class="cls-1" points="129.668 118.627 170.332 118.627 150 191.821 129.668 118.627"/>
18
- <circle class="cls-1" cx="206.929" cy="118.9739" r="12.1991"/>
19
- <polygon class="cls-1" points="186.597 139.306 227.261 139.306 206.929 212.5 186.597 139.306"/>
20
- <line class="cls-1" x1="150" y1="31.2636" x2="150" y2="41.1966"/>
21
- <line class="cls-1" x1="150" y1="255.4984" x2="150" y2="280.5261"/>
22
- <line class="cls-1" x1="105.7639" y1="30.5834" x2="114.962" y2="55.8549"/>
23
- <line class="cls-1" x1="187.7543" y1="255.8504" x2="191.5198" y2="266.1959"/>
24
- <line class="cls-1" x1="72.0554" y1="59.2304" x2="78.9579" y2="67.4565"/>
25
- <line class="cls-1" x1="215.563" y1="230.2561" x2="233.4237" y2="251.5416"/>
26
- <line class="cls-1" x1="38.0021" y1="87.4591" x2="61.2687" y2="100.8921"/>
27
- <line class="cls-1" x1="246.7322" y1="207.9695" x2="253.997" y2="212.1639"/>
28
- <line class="cls-1" x1="30.2681" y1="131.0092" x2="41.471" y2="132.9846"/>
29
- <line class="cls-1" x1="251.9851" y1="170.1039" x2="276.2758" y2="174.387"/>
30
- <line class="cls-1" x1="21.042" y1="174.8599" x2="50.6972" y2="169.6309"/>
31
- <line class="cls-1" x1="257.8381" y1="133.1064" x2="270.4228" y2="130.8874"/>
32
- <line class="cls-1" x1="43.1828" y1="213.7921" x2="56.0879" y2="206.3413"/>
33
- <line class="cls-1" x1="239.3423" y1="100.5393" x2="261.3869" y2="87.8119"/>
34
- <line class="cls-1" x1="67.3239" y1="250.6507" x2="83.6894" y2="231.1471"/>
35
- <line class="cls-1" x1="220.9929" y1="67.5151" x2="227.9938" y2="59.1718"/>
36
- <line class="cls-1" x1="108.304" y1="266.68" x2="112.4218" y2="255.3663"/>
37
- <line class="cls-1" x1="184.8507" y1="56.3697" x2="194.4235" y2="30.0687"/>
38
- </svg>
@@ -1,64 +0,0 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300">
2
- <defs>
3
- <style>
4
- .cls-1 {
5
- fill: none;
6
- }
7
-
8
- .cls-1, .cls-3 {
9
- stroke: #231f20;
10
- stroke-linecap: round;
11
- stroke-linejoin: round;
12
- stroke-width: 5px;
13
- }
14
-
15
- .cls-2, .cls-3 {
16
- fill: #fff;
17
- }
18
- </style>
19
- </defs>
20
- <title>Artboard 2</title>
21
- <g>
22
- <rect class="cls-1" x="75.25" y="150" width="150" height="100"/>
23
- <line class="cls-1" x1="75.25" y1="162.5" x2="225.25" y2="162.5"/>
24
- <line class="cls-1" x1="112.75" y1="150" x2="112.75" y2="250"/>
25
- <line class="cls-1" x1="150.25" y1="150" x2="150.25" y2="250"/>
26
- <line class="cls-1" x1="87.75" y1="175" x2="100.25" y2="175"/>
27
- <line class="cls-1" x1="125.25" y1="175" x2="137.75" y2="175"/>
28
- <line class="cls-1" x1="125.25" y1="187.5" x2="137.75" y2="187.5"/>
29
- <line class="cls-1" x1="125.25" y1="200" x2="137.75" y2="200"/>
30
- <line class="cls-1" x1="125.25" y1="212.5" x2="137.75" y2="212.5"/>
31
- <line class="cls-1" x1="125.25" y1="225" x2="137.75" y2="225"/>
32
- <line class="cls-1" x1="125.25" y1="237.5" x2="137.75" y2="237.5"/>
33
- <line class="cls-1" x1="162.75" y1="175" x2="212.75" y2="175"/>
34
- <line class="cls-1" x1="162.75" y1="187.5" x2="212.75" y2="187.5"/>
35
- <line class="cls-1" x1="162.75" y1="200" x2="212.75" y2="200"/>
36
- <line class="cls-1" x1="162.75" y1="212.5" x2="212.75" y2="212.5"/>
37
- <line class="cls-1" x1="162.75" y1="225" x2="212.75" y2="225"/>
38
- <line class="cls-1" x1="162.75" y1="237.5" x2="212.75" y2="237.5"/>
39
- <line class="cls-1" x1="87.75" y1="187.5" x2="100.25" y2="187.5"/>
40
- <line class="cls-1" x1="87.75" y1="200" x2="100.25" y2="200"/>
41
- <line class="cls-1" x1="87.75" y1="212.5" x2="100.25" y2="212.5"/>
42
- <line class="cls-1" x1="87.75" y1="225" x2="100.25" y2="225"/>
43
- <line class="cls-1" x1="87.75" y1="237.5" x2="100.25" y2="237.5"/>
44
- </g>
45
- <rect class="cls-1" x="44" y="37.5" width="62.5" height="50"/>
46
- <rect class="cls-1" x="119" y="37.5" width="62.5" height="50"/>
47
- <rect class="cls-1" x="194" y="37.5" width="62.5" height="50"/>
48
- <line class="cls-1" x1="56.5" y1="50" x2="94" y2="50"/>
49
- <line class="cls-1" x1="131.5" y1="50" x2="169" y2="50"/>
50
- <line class="cls-1" x1="206.5" y1="50" x2="244" y2="50"/>
51
- <line class="cls-1" x1="75.25" y1="87.5" x2="75.25" y2="112.5"/>
52
- <line class="cls-1" x1="150.25" y1="87.5" x2="150.25" y2="112.5"/>
53
- <line class="cls-1" x1="225.25" y1="87.5" x2="225.25" y2="112.5"/>
54
- <line class="cls-1" x1="225.25" y1="112.5" x2="75.25" y2="112.5"/>
55
- <line class="cls-1" x1="150.25" y1="112.5" x2="150.25" y2="137.4265"/>
56
- <polyline class="cls-1" points="159.089 128.588 150.25 137.426 141.411 128.588"/>
57
- <g>
58
- <circle class="cls-2" cx="225.25" cy="250" r="27.7446"/>
59
- <path class="cls-3" d="M205.6315,269.6184A27.7493,27.7493,0,0,1,235.69,224.2869"/>
60
- <polyline class="cls-1" points="193.131 267.476 205.632 269.618 207.774 257.117"/>
61
- <path class="cls-3" d="M244.8684,230.3816A27.7493,27.7493,0,0,1,214.81,275.7131"/>
62
- <polyline class="cls-1" points="257.369 232.524 244.868 230.382 242.726 242.883"/>
63
- </g>
64
- </svg>
@@ -1,43 +0,0 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300">
2
- <defs>
3
- <style>
4
- .cls-1 {
5
- fill: none;
6
- }
7
-
8
- .cls-1, .cls-2 {
9
- stroke: #231f20;
10
- stroke-linecap: round;
11
- stroke-linejoin: round;
12
- stroke-width: 5px;
13
- }
14
-
15
- .cls-2 {
16
- fill: #fff;
17
- }
18
- </style>
19
- </defs>
20
- <title>Artboard 1</title>
21
- <polygon class="cls-1" points="37.5 87.5 112.5 37.5 112.5 212.5 37.5 262.5 37.5 87.5"/>
22
- <polygon class="cls-1" points="187.5 87.5 262.5 37.5 262.5 212.5 187.5 262.5 187.5 87.5"/>
23
- <line class="cls-1" x1="112.5" y1="37.5" x2="187.5" y2="87.5"/>
24
- <line class="cls-1" x1="187.5" y1="262.5" x2="112.5" y2="212.5"/>
25
- <g>
26
- <path class="cls-2" d="M143.8751,200l.6822.81c3.7585,4.4622,9.4973,7.9313,16.3327,9.8733l1.86.5285-.1057,7.3542c-.17,11.8026-6.9082,23.088-18.7694,31.4341h0c-11.8612-8.3461-18.6-19.6315-18.7694-31.4341L125,211.2117l1.86-.5285c6.8354-1.942,12.5741-5.4111,16.3327-9.8733Z"/>
27
- <line class="cls-1" x1="175" y1="212.5" x2="225" y2="212.5"/>
28
- <line class="cls-1" x1="175" y1="225" x2="212.5" y2="225"/>
29
- <line class="cls-1" x1="175" y1="237.5" x2="200" y2="237.5"/>
30
- </g>
31
- <g>
32
- <path class="cls-2" d="M218.8751,50l.6822.81c3.7585,4.4622,9.4973,7.9313,16.3327,9.8733l1.86.5285-.1057,7.3542c-.17,11.8026-6.9082,23.088-18.7694,31.4341h0c-11.8612-8.3461-18.6-19.6315-18.7694-31.4341L200,61.2117l1.86-.5285c6.8354-1.942,12.5741-5.4111,16.3327-9.8733Z"/>
33
- <line class="cls-1" x1="250" y1="62.5" x2="287.5" y2="62.5"/>
34
- <line class="cls-1" x1="250" y1="75" x2="287.5" y2="75"/>
35
- <line class="cls-1" x1="250" y1="87.5" x2="287.5" y2="87.5"/>
36
- </g>
37
- <g>
38
- <path class="cls-2" d="M68.8751,100l.6822.81c3.7585,4.4622,9.4973,7.9313,16.3327,9.8733l1.86.5285-.1057,7.3542c-.17,11.8026-6.9082,23.088-18.7694,31.4341h0c-11.8612-8.3461-18.6-19.6315-18.7694-31.4341L50,111.2117l1.86-.5285c6.8354-1.942,12.5741-5.4111,16.3327-9.8733Z"/>
39
- <line class="cls-1" x1="100" y1="112.5" x2="150" y2="112.5"/>
40
- <line class="cls-1" x1="100" y1="125" x2="150" y2="125"/>
41
- <line class="cls-1" x1="100" y1="137.5" x2="137.5" y2="137.5"/>
42
- </g>
43
- </svg>
@@ -1,38 +0,0 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300">
2
- <defs>
3
- <style>
4
- .cls-1 {
5
- fill: #fff;
6
- }
7
-
8
- .cls-1, .cls-2 {
9
- stroke: #231f20;
10
- stroke-linecap: round;
11
- stroke-linejoin: round;
12
- stroke-width: 5px;
13
- }
14
-
15
- .cls-2 {
16
- fill: none;
17
- }
18
- </style>
19
- </defs>
20
- <title>Artboard 5</title>
21
- <path class="cls-1" d="M96.9375,125l.3412.405a16.5041,16.5041,0,0,0,8.1663,4.9366l.93.2642-.0529,3.6771c-.0848,5.9013-3.4541,11.544-9.3847,15.7171h0c-5.9306-4.1731-9.3-9.8158-9.3847-15.7171L87.5,130.6058l.93-.2642a16.5041,16.5041,0,0,0,8.1663-4.9366Z"/>
22
- <path class="cls-1" d="M96.9375,162.5l.3412.405a16.5041,16.5041,0,0,0,8.1663,4.9366l.93.2642-.0529,3.6771c-.0848,5.9013-3.4541,11.544-9.3847,15.7171h0c-5.9306-4.1731-9.3-9.8158-9.3847-15.7171L87.5,168.1058l.93-.2642a16.5041,16.5041,0,0,0,8.1663-4.9366Z"/>
23
- <path class="cls-1" d="M96.9375,200l.3412.405a16.5041,16.5041,0,0,0,8.1663,4.9366l.93.2642-.0529,3.6771c-.0848,5.9013-3.4541,11.544-9.3847,15.7171h0c-5.9306-4.1731-9.3-9.8158-9.3847-15.7171L87.5,205.6058l.93-.2642a16.5041,16.5041,0,0,0,8.1663-4.9366Z"/>
24
- <path class="cls-1" d="M96.9375,237.5l.3412.405a16.5041,16.5041,0,0,0,8.1663,4.9366l.93.2642-.0529,3.6771c-.0848,5.9013-3.4541,11.544-9.3847,15.7171h0c-5.9306-4.1731-9.3-9.8158-9.3847-15.7171L87.5,243.1058l.93-.2642a16.5041,16.5041,0,0,0,8.1663-4.9366Z"/>
25
- <rect class="cls-2" x="75" y="87.5" width="150" height="187.5" rx="6.9656"/>
26
- <rect class="cls-1" x="112.5" y="75" width="75" height="25"/>
27
- <line class="cls-2" x1="125" y1="137.5" x2="212.5" y2="137.5"/>
28
- <line class="cls-2" x1="200" y1="130.3373" x2="200" y2="144.6627"/>
29
- <line class="cls-2" x1="125" y1="175" x2="212.5" y2="175"/>
30
- <line class="cls-2" x1="150" y1="167.8373" x2="150" y2="182.1627"/>
31
- <line class="cls-2" x1="125" y1="212.5" x2="212.5" y2="212.5"/>
32
- <line class="cls-2" x1="175" y1="205.3373" x2="175" y2="219.6627"/>
33
- <line class="cls-2" x1="125" y1="250" x2="212.5" y2="250"/>
34
- <line class="cls-2" x1="187.5" y1="242.8373" x2="187.5" y2="257.1627"/>
35
- <polygon class="cls-1" points="105.688 22.286 110.883 32.813 122.5 34.501 114.094 42.695 116.078 54.265 105.688 48.803 95.297 54.265 97.281 42.695 88.875 34.501 100.492 32.813 105.688 22.286"/>
36
- <polygon class="cls-1" points="150 22.286 155.195 32.813 166.812 34.501 158.406 42.695 160.391 54.265 150 48.803 139.609 54.265 141.594 42.695 133.188 34.501 144.805 32.813 150 22.286"/>
37
- <polygon class="cls-1" points="194.312 22.286 199.508 32.813 211.125 34.501 202.719 42.695 204.703 54.265 194.312 48.803 183.922 54.265 185.906 42.695 177.5 34.501 189.117 32.813 194.312 22.286"/>
38
- </svg>