@intechstudio/grid-uikit 1.20250124.1445 → 1.20250124.1648
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/dist/MeltCombo.svelte +25 -22
- package/dist/MeltRadio.svelte.d.ts +2 -0
- package/dist/MeltSlider.svelte +3 -3
- package/dist/lib/assets/icons/arrow_down.svg +17 -0
- package/dist/lib/assets/icons/arrow_left.svg +17 -0
- package/dist/lib/assets/icons/arrow_right.svg +17 -0
- package/dist/lib/assets/icons/arrow_up.svg +17 -0
- package/dist/lib/assets/icons/clear_element.svg +3 -0
- package/dist/lib/assets/icons/clear_from_device_01.svg +25 -0
- package/dist/lib/assets/icons/clear_from_device_02.svg +25 -0
- package/dist/lib/assets/icons/close.svg +4 -0
- package/dist/lib/assets/icons/cloud.svg +27 -0
- package/dist/lib/assets/icons/copy.svg +20 -0
- package/dist/lib/assets/icons/copy_all.svg +21 -0
- package/dist/lib/assets/icons/cut.svg +46 -0
- package/dist/lib/assets/icons/debug.svg +35 -0
- package/dist/lib/assets/icons/delete.svg +23 -0
- package/dist/lib/assets/icons/disabled.svg +31 -0
- package/dist/lib/assets/icons/download.svg +23 -0
- package/dist/lib/assets/icons/edit.svg +18 -0
- package/dist/lib/assets/icons/enabled.svg +30 -0
- package/dist/lib/assets/icons/export.svg +23 -0
- package/dist/lib/assets/icons/folder_control_element.svg +22 -0
- package/dist/lib/assets/icons/folder_profile.svg +20 -0
- package/dist/lib/assets/icons/import.svg +18 -0
- package/dist/lib/assets/icons/info.svg +22 -0
- package/dist/lib/assets/icons/merge_as_code.svg +32 -0
- package/dist/lib/assets/icons/midi.svg +1 -0
- package/dist/lib/assets/icons/move_to_cloud_01.svg +10 -0
- package/dist/lib/assets/icons/move_to_cloud_02.svg +30 -0
- package/dist/lib/assets/icons/move_to_cloud_03.svg +12 -0
- package/dist/lib/assets/icons/overlay_01.svg +28 -0
- package/dist/lib/assets/icons/overlay_02.svg +23 -0
- package/dist/lib/assets/icons/overwrite_control_element.svg +26 -0
- package/dist/lib/assets/icons/overwrite_profile.svg +25 -0
- package/dist/lib/assets/icons/paste.svg +20 -0
- package/dist/lib/assets/icons/paste_all.svg +20 -0
- package/dist/lib/assets/icons/preferences.svg +17 -0
- package/dist/lib/assets/icons/private.svg +25 -0
- package/dist/lib/assets/icons/profile.svg +11 -0
- package/dist/lib/assets/icons/public.svg +37 -0
- package/dist/lib/assets/icons/remove.svg +35 -0
- package/dist/lib/assets/icons/replace.svg +33 -0
- package/dist/lib/assets/icons/save_as_01.svg +27 -0
- package/dist/lib/assets/icons/save_as_02.svg +20 -0
- package/dist/lib/assets/icons/search.svg +21 -0
- package/dist/lib/assets/icons/send_to_device.svg +30 -0
- package/dist/lib/assets/icons/sort_by.svg +28 -0
- package/dist/lib/assets/icons/tick.svg +11 -0
- package/dist/lib/assets/icons/user_account_02.svg +13 -0
- package/package.json +3 -3
package/dist/MeltCombo.svelte
CHANGED
|
@@ -86,7 +86,6 @@ function handleFocus() {
|
|
|
86
86
|
}
|
|
87
87
|
</script>
|
|
88
88
|
|
|
89
|
-
|
|
90
89
|
<div class="flex flex-col relative" class:flex-grow={size === "full"}>
|
|
91
90
|
<!-- svelte-ignore a11y-label-has-associated-control -->
|
|
92
91
|
<label
|
|
@@ -95,40 +94,44 @@ function handleFocus() {
|
|
|
95
94
|
>
|
|
96
95
|
{title}
|
|
97
96
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
97
|
+
<input
|
|
98
|
+
bind:this={inputElement}
|
|
99
|
+
type="text"
|
|
100
|
+
{...$trigger}
|
|
101
|
+
use:trigger
|
|
102
|
+
bind:value={inputValue}
|
|
103
|
+
on:change={handleChange}
|
|
104
|
+
on:focus={handleFocus}
|
|
105
|
+
on:m-keydown={(e) => {
|
|
106
|
+
e.preventDefault();
|
|
107
|
+
}}
|
|
108
|
+
class="trigger w-full flex flex-row border mb-1 {isError && !disabled
|
|
109
|
+
? 'border-error'
|
|
110
|
+
: 'border-black'} p-2 {disabled
|
|
111
|
+
? 'bg-black/20 text-white/40'
|
|
112
|
+
: 'bg-transparent text-white'}"
|
|
113
|
+
{placeholder}
|
|
114
|
+
{disabled}
|
|
115
|
+
/>
|
|
116
|
+
</label>
|
|
115
117
|
{#if $open && !disabled && suggestions.length > 0}
|
|
116
|
-
<datalist
|
|
118
|
+
<datalist
|
|
117
119
|
{...$content}
|
|
118
120
|
use:content
|
|
119
121
|
transition:fade={{ duration: 100 }}
|
|
120
122
|
class="menu"
|
|
121
123
|
>
|
|
122
|
-
|
|
124
|
+
<div>
|
|
123
125
|
{#each filteredSuggestions as suggestion}
|
|
124
126
|
<option
|
|
125
|
-
|
|
127
|
+
{...$close}
|
|
128
|
+
use:close
|
|
126
129
|
class="cursor-pointer truncate hover:bg-white/40 flex w-full px-2 py-1 hover:text-white"
|
|
127
130
|
on:click={() => selected.set(suggestion)}>{suggestion.info}</option
|
|
128
131
|
>
|
|
129
132
|
{/each}
|
|
130
133
|
</div>
|
|
131
|
-
</datalist>
|
|
134
|
+
</datalist>
|
|
132
135
|
{/if}
|
|
133
136
|
|
|
134
137
|
<div class="text-white/60 text-sm truncate">
|
|
@@ -19,6 +19,8 @@ declare const __propDef: {
|
|
|
19
19
|
update: (updater: import("svelte/store").Updater<string>, sideEffect?: ((newValue: string) => void) | undefined) => void;
|
|
20
20
|
set: (this: void, value: string) => void;
|
|
21
21
|
subscribe(this: void, run: import("svelte/store").Subscriber<string>, invalidate?: import("svelte/store").Invalidator<string> | undefined): import("svelte/store").Unsubscriber;
|
|
22
|
+
get: () => string;
|
|
23
|
+
destroy?: (() => void) | undefined;
|
|
22
24
|
};
|
|
23
25
|
};
|
|
24
26
|
};
|
package/dist/MeltSlider.svelte
CHANGED
|
@@ -4,7 +4,7 @@ export let min;
|
|
|
4
4
|
export let max;
|
|
5
5
|
export let step;
|
|
6
6
|
const {
|
|
7
|
-
elements: { root, range,
|
|
7
|
+
elements: { root, range, thumbs },
|
|
8
8
|
states: { value }
|
|
9
9
|
} = createSlider({
|
|
10
10
|
min,
|
|
@@ -32,8 +32,8 @@ $: {
|
|
|
32
32
|
/>
|
|
33
33
|
</span>
|
|
34
34
|
<span
|
|
35
|
-
{...$
|
|
36
|
-
use:
|
|
35
|
+
{...$thumbs[0]}
|
|
36
|
+
use:thumbs
|
|
37
37
|
class="block h-5 w-5 rounded-full bg-neutral-500 focus:ring-2 focus:ring-black/40"
|
|
38
38
|
/>
|
|
39
39
|
</span>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
id="Réteg_2"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
x="0px"
|
|
8
|
+
y="0px"
|
|
9
|
+
viewBox="0 0 18.3 24"
|
|
10
|
+
style="enable-background:new 0 0 18.3 24;"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M18,13.8c-0.4-0.4-0.9-0.4-1.3,0L10,20.5V0.9C10,0.4,9.6,0,9.1,0S8.2,0.4,8.2,0.9v19.6l-6.7-6.7c-0.4-0.4-0.9-0.4-1.3,0
|
|
15
|
+
s-0.4,0.9,0,1.3L9.1,24l8.9-8.9C18.4,14.8,18.4,14.2,18,13.8z"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
id="Réteg_3"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
x="0px"
|
|
8
|
+
y="0px"
|
|
9
|
+
viewBox="0 0 23.9 18.3"
|
|
10
|
+
style="enable-background:new 0 0 23.9 18.3;"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M23.1,8.2H3.4l6.7-6.7c0.4-0.4,0.4-0.9,0-1.3c-0.4-0.4-0.9-0.4-1.3,0L0,9.1L8.9,18c0.2,0.2,0.4,0.3,0.6,0.3s0.5-0.1,0.6-0.3
|
|
15
|
+
c0.4-0.4,0.4-0.9,0-1.3L3.4,10h19.6c0.5,0,0.9-0.4,0.9-0.9S23.6,8.2,23.1,8.2z"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
id="Réteg_3"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
x="0px"
|
|
8
|
+
y="0px"
|
|
9
|
+
viewBox="0 0 24 18.3"
|
|
10
|
+
style="enable-background:new 0 0 24 18.3;"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M15.1,0.3c-0.4-0.4-0.9-0.4-1.3,0c-0.4,0.4-0.4,0.9,0,1.3l6.7,6.7H0.9C0.4,8.2,0,8.6,0,9.1S0.4,10,0.9,10h19.6l-6.7,6.7
|
|
15
|
+
c-0.4,0.4-0.4,0.9,0,1.3c0.2,0.2,0.4,0.3,0.6,0.3s0.5-0.1,0.6-0.3L24,9.1L15.1,0.3z"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
id="Réteg_2"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
x="0px"
|
|
8
|
+
y="0px"
|
|
9
|
+
viewBox="0 0 18.3 24"
|
|
10
|
+
style="enable-background:new 0 0 18.3 24;"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M18,8.9L9.1,0L0.3,8.9c-0.4,0.4-0.4,0.9,0,1.3c0.4,0.4,0.9,0.4,1.3,0l6.7-6.7v19.6c0,0.5,0.4,0.9,0.9,0.9s0.9-0.4,0.9-0.9
|
|
15
|
+
V3.4l6.7,6.7c0.2,0.2,0.4,0.3,0.6,0.3s0.5-0.1,0.6-0.3C18.4,9.8,18.4,9.2,18,8.9z"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="1.55 1.7 21.12 21.12">
|
|
2
|
+
<path d="M22.4524 1.92267C22.7452 2.21557 22.7452 2.69044 22.4524 2.98333L15.5238 9.91189C17.2589 12.1667 17.0935 15.4132 15.0277 17.479L14.1963 18.3105L11.4091 22.4912C11.2845 22.6782 11.0826 22.7994 10.859 22.8215C10.6354 22.8437 10.4136 22.7644 10.2548 22.6055L1.76948 14.1202C1.6106 13.9614 1.53132 13.7396 1.55346 13.516C1.5756 13.2924 1.69683 13.0905 1.88378 12.9659L6.06475 10.1786L6.89601 9.3473C8.96179 7.28152 12.2083 7.11617 14.4631 8.85123L21.3917 1.92267C21.6846 1.62978 22.1595 1.62978 22.4524 1.92267ZM7.60312 10.7615L13.6135 16.7719L13.9671 16.4184C15.6268 14.7586 15.6268 12.0677 13.9671 10.408C12.3074 8.74823 9.6164 8.74823 7.95668 10.408L7.60312 10.7615ZM6.44689 11.7266L3.47704 13.7065L10.6685 20.898L12.6484 17.9281L6.44689 11.7266Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
id="Réteg_3"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
x="0px"
|
|
8
|
+
y="0px"
|
|
9
|
+
viewBox="0 0 24 23"
|
|
10
|
+
style="enable-background:new 0 0 24 23;"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
>
|
|
13
|
+
<g>
|
|
14
|
+
<path
|
|
15
|
+
d="M9.4,6.1C9.2,5.9,8.9,5.7,8.6,5.7H2c-1.1,0-2,0.9-2,2V21c0,1.1,0.9,2,2,2h13.3c1.1,0,2-0.9,2-2v-3.5c0-0.2-0.1-0.4-0.2-0.5
|
|
16
|
+
L9.4,6.1z M15.5,21c0,0.1-0.1,0.2-0.2,0.2H2c-0.1,0-0.2-0.1-0.2-0.2V7.7c0-0.1,0.1-0.2,0.2-0.2h6.2l7.3,10.3V21z"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
d="M23.6,3.3l-4.5-3.2C18.9,0,18.6,0,18.4,0c-0.2,0-0.4,0.2-0.6,0.4l-3.2,4.6c0,0,0,0,0,0s0,0,0,0l-2.1,3
|
|
20
|
+
c-0.1,0.2-0.2,0.4-0.1,0.7c0,0.2,0.2,0.4,0.4,0.6l4.5,3.2c0.2,0.1,0.3,0.2,0.5,0.2c0.3,0,0.6-0.1,0.7-0.4l2.1-3c0,0,0,0,0,0
|
|
21
|
+
c0,0,0,0,0,0l3.2-4.6C24.1,4.2,24,3.6,23.6,3.3z M17.6,10.4l-3.1-2.2l1.1-1.5l3.1,2.2L17.6,10.4z M19.7,7.4l-3.1-2.2l2.2-3.1
|
|
22
|
+
l3.1,2.2L19.7,7.4z"
|
|
23
|
+
/>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
id="Réteg_2"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
x="0px"
|
|
8
|
+
y="0px"
|
|
9
|
+
viewBox="0 0 24 21.8"
|
|
10
|
+
style="enable-background:new 0 0 24 21.8;"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
>
|
|
13
|
+
<g>
|
|
14
|
+
<path
|
|
15
|
+
d="M16.8,15.5L1.4,5.8c-0.3-0.2-0.6-0.2-0.9,0C0.2,5.9,0,6.2,0,6.6v13.3c0,1.1,0.9,2,2,2h13.3c1.1,0,2-0.9,2-2v-3.5
|
|
16
|
+
c0-0.1,0-0.2-0.1-0.3C17.2,15.8,17,15.6,16.8,15.5z M15.5,19.8c0,0.1-0.1,0.2-0.2,0.2H2c-0.1,0-0.2-0.1-0.2-0.2V8.2l13.7,8.6V19.8z
|
|
17
|
+
"
|
|
18
|
+
/>
|
|
19
|
+
<path
|
|
20
|
+
d="M23.6,3.3L19,0.2C18.8,0,18.6,0,18.4,0c-0.2,0-0.4,0.2-0.6,0.4l-5.3,7.6c-0.1,0.2-0.2,0.4-0.1,0.7s0.2,0.4,0.4,0.6l4.5,3.2
|
|
21
|
+
c0.2,0.1,0.3,0.2,0.5,0.2c0.1,0,0.1,0,0.2,0c0.2,0,0.4-0.2,0.6-0.4l5.3-7.6C24.1,4.2,24,3.6,23.6,3.3z M17.6,10.4l-3.1-2.2l1.1-1.5
|
|
22
|
+
l3.1,2.2L17.6,10.4z M19.7,7.4l-3.1-2.2l2.2-3.1l3.1,2.2L19.7,7.4z"
|
|
23
|
+
/>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
width="210mm"
|
|
3
|
+
height="297mm"
|
|
4
|
+
viewBox="0 0 210 297"
|
|
5
|
+
version="1.1"
|
|
6
|
+
id="svg234"
|
|
7
|
+
xml:space="preserve"
|
|
8
|
+
inkscape:export-filename="cloud.svg"
|
|
9
|
+
inkscape:export-xdpi="96"
|
|
10
|
+
inkscape:export-ydpi="96"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<g
|
|
16
|
+
inkscape:label="Layer 1"
|
|
17
|
+
inkscape:groupmode="layer"
|
|
18
|
+
id="layer1"
|
|
19
|
+
transform="translate(301.43347,-213.41492)">
|
|
20
|
+
<g
|
|
21
|
+
id="g242"
|
|
22
|
+
transform="matrix(0.26458333,0,0,0.26458333,-301.43347,213.41492)">
|
|
23
|
+
<path
|
|
24
|
+
d="M 24,9.6 C 24,7.6 22.4,6 20.4,6 20.2,6 20,6 19.9,6.1 19.1,4.4 17.4,3.3 15.5,3.3 14.3,1.3 12.1,0 9.8,0 6.8,0 4.1,2.1 3.4,5 1.5,5.3 0,7 0,9 c 0,2.3 1.8,4.1 4.1,4.1 0,0 0,0 0,0 0,0 0,0 0,0 h 16.3 c 0,0 0.1,0 0.1,0 C 22.4,13 24,11.5 24,9.6 Z m -3.6,1.7 H 4.2 c 0,0 0,0 0,0 0,0 0,0 0,0 -1.3,0 -2.3,-1 -2.3,-2.3 0,-1.3 1,-2.3 2.3,-2.3 0,0 0,0 0,0 0.2,0 0.5,-0.1 0.6,-0.3 0,0 0,0 0,0 C 4.9,6.3 4.9,6.2 5,6.1 c 0,0 0,0 0,0 C 5,6.1 5,6 5,5.9 5.3,3.5 7.3,1.8 9.7,1.8 c 1.9,0 3.6,1.1 4.4,2.8 0,0 0,0 0,0 0,0 0.1,0.1 0.1,0.1 0,0.1 0.1,0.1 0.1,0.1 0,0 0.1,0 0.1,0.1 0.1,0 0.1,0.1 0.2,0.1 0,0 0.1,0 0.1,0 0.1,0 0.1,0 0.2,0 0,0 0,0 0,0 0.1,0 0.3,0 0.4,0 1.4,0 2.6,0.9 3,2.3 0,0 0,0 0,0.1 0,0 0,0 0,0.1 0,0 0,0 0,0.1 0,0.1 0.1,0.1 0.1,0.2 0,0 0,0.1 0.1,0.1 0.1,0.1 0.1,0.1 0.2,0.1 0,0 0,0 0.1,0 0.1,0 0.2,0.1 0.3,0.1 0,0 0,0 0,0 0,0 0,0 0,0 0.1,0 0.1,0 0.2,0 0,0 0,0 0.1,0 0,0 0,0 0.1,0 0.2,-0.1 0.5,-0.2 0.7,-0.2 1,0 1.8,0.8 1.8,1.8 0,1 -0.6,1.6 -1.6,1.6 z"
|
|
25
|
+
id="path238" />
|
|
26
|
+
|
|
27
|
+
</g></g></svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
version="1.1"
|
|
3
|
+
id="Réteg_3"
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
x="0px"
|
|
7
|
+
y="0px"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
style="enable-background:new 0 0 24 24;"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
>
|
|
12
|
+
|
|
13
|
+
<path
|
|
14
|
+
class="st0"
|
|
15
|
+
d="M21.1,0H8.4C6.8,0,5.5,1.3,5.5,2.9v2.6H2.9C1.3,5.5,0,6.8,0,8.4v12.7C0,22.7,1.3,24,2.9,24h12.7
|
|
16
|
+
c1.6,0,2.9-1.3,2.9-2.9v-2.6h2.6c1.6,0,2.9-1.3,2.9-2.9V2.9C24,1.3,22.7,0,21.1,0z M16.7,21.1c0,0.6-0.5,1.1-1.1,1.1H2.9
|
|
17
|
+
c-0.6,0-1.1-0.5-1.1-1.1V8.4c0-0.6,0.5-1.1,1.1-1.1h12.7c0.6,0,1.1,0.5,1.1,1.1V21.1z M22.2,15.6c0,0.6-0.5,1.1-1.1,1.1h-2.6V8.4
|
|
18
|
+
c0-1.6-1.3-2.9-2.9-2.9H7.3V2.9c0-0.6,0.5-1.1,1.1-1.1h12.7c0.6,0,1.1,0.5,1.1,1.1V15.6z"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
id="Réteg_2"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
x="0px"
|
|
8
|
+
y="0px"
|
|
9
|
+
viewBox="0 0 24 24"
|
|
10
|
+
style="enable-background:new 0 0 24 24;"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M21.1,0h-9.3c-1.6,0-2.9,1.3-2.9,2.9v1.5H7.3c-1.6,0-2.9,1.3-2.9,2.9v1.5H2.9C1.3,8.9,0,10.2,0,11.8v9.3
|
|
15
|
+
C0,22.7,1.3,24,2.9,24h9.3c1.6,0,2.9-1.3,2.9-2.9v-1.5h1.5c1.6,0,2.9-1.3,2.9-2.9v-1.5h1.5c1.6,0,2.9-1.3,2.9-2.9V2.9
|
|
16
|
+
C24,1.3,22.7,0,21.1,0z M13.3,21.1c0,0.6-0.5,1.1-1.1,1.1H2.9c-0.6,0-1.1-0.5-1.1-1.1v-9.3c0-0.6,0.5-1.1,1.1-1.1h9.3
|
|
17
|
+
c0.6,0,1.1,0.5,1.1,1.1V21.1z M17.8,16.7c0,0.6-0.5,1.1-1.1,1.1h-1.5v-6c0-1.6-1.3-2.9-2.9-2.9h-6V7.3c0-0.6,0.5-1.1,1.1-1.1h2.4
|
|
18
|
+
c0,0,0,0,0,0s0,0,0,0h6.9c0.6,0,1.1,0.5,1.1,1.1V16.7z M22.2,12.2c0,0.6-0.5,1.1-1.1,1.1h-1.5v-6c0-1.6-1.3-2.9-2.9-2.9h-6V2.9
|
|
19
|
+
c0-0.6,0.5-1.1,1.1-1.1h9.3c0.6,0,1.1,0.5,1.1,1.1V12.2z"
|
|
20
|
+
/>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
version="1.1"
|
|
3
|
+
id="Réteg_3"
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
x="0px"
|
|
7
|
+
y="0px"
|
|
8
|
+
viewBox="0 0 24 20.6"
|
|
9
|
+
style="enable-background:new 0 0 24 20.6;"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
>
|
|
12
|
+
<g>
|
|
13
|
+
<path
|
|
14
|
+
d="M0.9,7.8c0.5,0,0.9-0.4,0.9-0.9c0-0.4,0.3-0.7,0.7-0.7c0.5,0,0.9-0.4,0.9-0.9S3,4.4,2.5,4.4C1.1,4.4,0,5.5,0,6.9
|
|
15
|
+
C0,7.4,0.4,7.8,0.9,7.8z"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M0.9,14.5c0.5,0,0.9-0.4,0.9-0.9v-2.2c0-0.5-0.4-0.9-0.9-0.9S0,10.9,0,11.4v2.2C0,14.1,0.4,14.5,0.9,14.5z"
|
|
19
|
+
/>
|
|
20
|
+
<path
|
|
21
|
+
d="M2.5,18.8c-0.4,0-0.7-0.3-0.7-0.7c0-0.5-0.4-0.9-0.9-0.9S0,17.6,0,18.1c0,1.4,1.1,2.5,2.5,2.5c0.5,0,0.9-0.4,0.9-0.9
|
|
22
|
+
S3,18.8,2.5,18.8z"
|
|
23
|
+
/>
|
|
24
|
+
<path
|
|
25
|
+
d="M9.2,18.8H7c-0.5,0-0.9,0.4-0.9,0.9s0.4,0.9,0.9,0.9h2.2c0.5,0,0.9-0.4,0.9-0.9S9.7,18.8,9.2,18.8z"
|
|
26
|
+
/>
|
|
27
|
+
<path
|
|
28
|
+
d="M15.3,17.2c-0.5,0-0.9,0.4-0.9,0.9c0,0.4-0.3,0.7-0.7,0.7c-0.5,0-0.9,0.4-0.9,0.9s0.4,0.9,0.9,0.9c1.4,0,2.5-1.1,2.5-2.5
|
|
29
|
+
C16.2,17.6,15.8,17.2,15.3,17.2z"
|
|
30
|
+
/>
|
|
31
|
+
<path
|
|
32
|
+
d="M15.3,10.5c-0.5,0-0.9,0.4-0.9,0.9v2.2c0,0.5,0.4,0.9,0.9,0.9s0.9-0.4,0.9-0.9v-2.2C16.2,10.9,15.8,10.5,15.3,10.5z"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
d="M7,6.2h2.2c0.5,0,0.9-0.4,0.9-0.9S9.7,4.4,9.2,4.4H7c-0.5,0-0.9,0.4-0.9,0.9S6.5,6.2,7,6.2z"
|
|
36
|
+
/>
|
|
37
|
+
<path
|
|
38
|
+
d="M21.5,5.4c-0.6,0-1.1,0.2-1.6,0.6L19,5.3l1.1-0.7C20.5,4.9,21,5,21.5,5C22.9,5,24,3.9,24,2.6c0-1.3-1.1-2.4-2.4-2.4
|
|
39
|
+
s-2.4,1.1-2.4,2.4c0,0.2,0,0.5,0.1,0.7l-1.5,1.1l-6.2-4.3c-0.3-0.2-0.6-0.1-0.8,0.1c-0.2,0.3-0.1,0.6,0.1,0.8l5.6,4.2l-0.6,0.4
|
|
40
|
+
c-0.4-0.8-1.3-1.4-2.2-1.4c-0.5,0-0.9,0.4-0.9,0.9s0.4,0.9,0.9,0.9c0.4,0,0.7,0.3,0.7,0.7c0,0.5,0.4,0.9,0.9,0.9
|
|
41
|
+
c0.3,0,0.5-0.1,0.7-0.4l1.7-1.2l1.4,1.1c0,0.2-0.1,0.4-0.1,0.5c0,1.3,1.1,2.4,2.4,2.4S24,9.2,24,7.8C24,6.5,22.9,5.4,21.5,5.4z
|
|
42
|
+
M21.5,1.3c0.7,0,1.2,0.6,1.2,1.2c0,0.7-0.6,1.2-1.2,1.2s-1.2-0.6-1.2-1.2C20.3,1.9,20.9,1.3,21.5,1.3z M21.5,9.1
|
|
43
|
+
c-0.7,0-1.2-0.6-1.2-1.2c0-0.7,0.6-1.2,1.2-1.2s1.2,0.6,1.2,1.2C22.8,8.5,22.2,9.1,21.5,9.1z"
|
|
44
|
+
/>
|
|
45
|
+
</g>
|
|
46
|
+
</svg>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
id="Réteg_3"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
x="0px"
|
|
8
|
+
y="0px"
|
|
9
|
+
viewBox="0 0 24 22.8"
|
|
10
|
+
style="enable-background:new 0 0 24 22.8;"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
>
|
|
13
|
+
<g>
|
|
14
|
+
<path
|
|
15
|
+
d="M12,6c-0.5,0-0.9,0.4-0.9,0.9l0,11.6c0,0.5,0.4,0.9,0.9,0.9s0.9-0.4,0.9-0.9l0-11.6C12.9,6.4,12.5,6,12,6z"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M23.1,10.7h-2V9.4c0-1.7-0.4-3.2-1.2-4.5l1.6-1.6c0.4-0.4,0.4-0.9,0-1.3s-0.9-0.4-1.3,0l-1.3,1.3c-0.6-0.7-1.3-1.3-2.1-1.7
|
|
19
|
+
l0.2-0.5c0.2-0.5-0.1-1-0.6-1.1c-0.5-0.2-1,0.1-1.1,0.6l-0.1,0.3c-1-0.4-2-0.6-3.1-0.6h-0.1c-1.1,0-2.1,0.2-3.1,0.6L8.7,0.6
|
|
20
|
+
C8.6,0.2,8.1-0.1,7.6,0C7.1,0.2,6.8,0.7,7,1.2l0.2,0.5C6.4,2.2,5.7,2.7,5.1,3.4L3.7,2.1c-0.4-0.4-0.9-0.4-1.3,0
|
|
21
|
+
C2.1,2.4,2.1,3,2.5,3.4L4,4.9C3.2,6.2,2.8,7.8,2.8,9.4v1.2H0.9c-0.5,0-0.9,0.4-0.9,0.9s0.4,0.9,0.9,0.9h1.9v1.2
|
|
22
|
+
c0,1.6,0.4,3.1,1.2,4.5l-1.6,1.6c-0.4,0.4-0.4,0.9,0,1.3c0.2,0.2,0.4,0.3,0.6,0.3s0.5-0.1,0.6-0.3L5,19.7c1.7,1.9,4.1,3.1,6.9,3.1
|
|
23
|
+
H12c2.7,0,5.1-1.2,6.8-3.1l1.3,1.3c0.2,0.2,0.4,0.3,0.6,0.3s0.5-0.1,0.6-0.3c0.4-0.4,0.4-0.9,0-1.3l-1.6-1.6
|
|
24
|
+
c0.8-1.3,1.2-2.9,1.2-4.5v-1.2h2c0.5,0,0.9-0.4,0.9-0.9S23.6,10.7,23.1,10.7z M12,21h-0.1c-4,0-7.3-3.3-7.3-7.3V9.4
|
|
25
|
+
c0-2.1,0.9-3.9,2.2-5.3h10.3c1.4,1.3,2.2,3.2,2.2,5.3v4.3C19.3,17.8,16.1,21,12,21z"
|
|
26
|
+
/>
|
|
27
|
+
<path
|
|
28
|
+
d="M7.9,10.3c-0.7,0-1.3,0.6-1.3,1.3s0.6,1.3,1.3,1.3c0.7,0,1.3-0.6,1.3-1.3S8.6,10.3,7.9,10.3z"
|
|
29
|
+
/>
|
|
30
|
+
<circle cx="16.3" cy="8.3" r="1.3" />
|
|
31
|
+
<path
|
|
32
|
+
d="M16.3,13.6c-0.7,0-1.3,0.6-1.3,1.3c0,0.7,0.6,1.3,1.3,1.3s1.3-0.6,1.3-1.3C17.6,14.2,17,13.6,16.3,13.6z"
|
|
33
|
+
/>
|
|
34
|
+
</g>
|
|
35
|
+
</svg>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
version="1.1"
|
|
3
|
+
id="Réteg_3"
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
x="0px"
|
|
7
|
+
y="0px"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
style="enable-background:new 0 0 24 24;"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
>
|
|
12
|
+
<g>
|
|
13
|
+
<path
|
|
14
|
+
d="M12,0C5.4,0,0,5.4,0,12c0,6.6,5.4,12,12,12c6.6,0,12-5.4,12-12C24,5.4,18.6,0,12,0z M12,22.2C6.4,22.2,1.8,17.6,1.8,12
|
|
15
|
+
C1.8,6.4,6.4,1.8,12,1.8c5.6,0,10.2,4.6,10.2,10.2C22.2,17.6,17.6,22.2,12,22.2z"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M13.6,12l3.6-3.6c0.5-0.5,0.5-1.2,0-1.6c-0.4-0.4-1.2-0.4-1.6,0L12,10.4L8.4,6.8c-0.5-0.5-1.2-0.5-1.6,0
|
|
19
|
+
c-0.5,0.5-0.5,1.2,0,1.6l3.6,3.6l-3.6,3.6c-0.2,0.2-0.3,0.5-0.3,0.8c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3
|
|
20
|
+
c0.3,0,0.6-0.1,0.8-0.3l3.6-3.6l3.6,3.6c0.5,0.5,1.2,0.5,1.6,0c0.5-0.5,0.5-1.2,0-1.6L13.6,12z"
|
|
21
|
+
/>
|
|
22
|
+
</g>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
id="Réteg_3"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
x="0px"
|
|
8
|
+
y="0px"
|
|
9
|
+
viewBox="0 0 72.3 18.7"
|
|
10
|
+
style="enable-background:new 0 0 72.3 18.7;"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
>
|
|
13
|
+
<g>
|
|
14
|
+
<path
|
|
15
|
+
d="M23.4,13.1c-0.3-0.5-0.7-0.9-1.2-1.2c0.3-0.5,0.5-1,0.5-1.7V2.9c0-1.6-1.3-2.9-2.9-2.9H4.2C2.6,0,1.3,1.3,1.3,2.9v7.3
|
|
16
|
+
c0,0.6,0.2,1.2,0.5,1.7c-0.5,0.3-0.9,0.7-1.2,1.2l-0.2,0.3c-0.6,1.1-0.6,2.5,0,3.6c0.6,1.1,1.8,1.8,3.1,1.8h16.9
|
|
17
|
+
c1.3,0,2.5-0.7,3.1-1.8c0.7-1.1,0.7-2.5,0-3.6L23.4,13.1z M3.1,2.9c0-0.6,0.5-1.1,1.1-1.1h15.7c0.6,0,1.1,0.5,1.1,1.1v7.3
|
|
18
|
+
c0,0.6-0.5,1.1-1.1,1.1H4.2c-0.6,0-1.1-0.5-1.1-1.1V2.9z M22,16c-0.3,0.6-0.9,0.9-1.5,0.9H3.6C3,16.9,2.4,16.6,2,16
|
|
19
|
+
c-0.3-0.6-0.3-1.2,0-1.8L2.2,14c0.3-0.6,0.9-0.9,1.6-0.9h0.4h15.7h0.4c0.6,0,1.2,0.3,1.6,0.9l0.1,0.3C22.3,14.8,22.3,15.5,22,16z"
|
|
20
|
+
/>
|
|
21
|
+
<path
|
|
22
|
+
d="M69.4,0H56.5c-1.6,0-2.9,1.3-2.9,2.9v12.9c0,1.6,1.3,2.9,2.9,2.9h12.9c1.6,0,2.9-1.3,2.9-2.9V2.9C72.3,1.3,71,0,69.4,0z
|
|
23
|
+
M70.5,15.8c0,0.6-0.5,1.1-1.1,1.1H56.5c-0.6,0-1.1-0.5-1.1-1.1V2.9c0-0.6,0.5-1.1,1.1-1.1h12.9c0.6,0,1.1,0.5,1.1,1.1V15.8z"
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
d="M45.1,0.1c-0.4-0.2-1-0.1-1.2,0.3l-4,7.1l-4-7.1C35.6,0,35-0.1,34.6,0.1c-0.4,0.2-0.6,0.8-0.3,1.2l4.6,8l-4.6,8
|
|
27
|
+
c-0.2,0.4-0.1,1,0.3,1.2c0.1,0.1,0.3,0.1,0.4,0.1c0.3,0,0.6-0.2,0.8-0.5l4-7.1l4,7.1c0.2,0.3,0.5,0.5,0.8,0.5c0.2,0,0.3,0,0.4-0.1
|
|
28
|
+
c0.4-0.2,0.6-0.8,0.3-1.2l-4.6-8l4.6-8C45.7,0.9,45.5,0.4,45.1,0.1z"
|
|
29
|
+
/>
|
|
30
|
+
</g>
|
|
31
|
+
</svg>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
id="Réteg_2"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
x="0px"
|
|
8
|
+
y="0px"
|
|
9
|
+
viewBox="0 0 23.6 22.9"
|
|
10
|
+
style="enable-background:new 0 0 23.6 22.9;"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
>
|
|
13
|
+
<g>
|
|
14
|
+
<path
|
|
15
|
+
d="M11.2,18.2c0.2,0.2,0.4,0.3,0.6,0.3s0.5-0.1,0.6-0.3l5.7-5.7c0.4-0.4,0.4-0.9,0-1.3s-0.9-0.4-1.3,0l-4.2,4.2V0.9
|
|
16
|
+
c0-0.5-0.4-0.9-0.9-0.9s-0.9,0.4-0.9,0.9v14.5l-4.2-4.2c-0.4-0.4-0.9-0.4-1.3,0c-0.4,0.4-0.4,0.9,0,1.3L11.2,18.2z"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
d="M22.7,15.9c-0.5,0-0.9,0.4-0.9,0.9v2.8c0,0.8-0.7,1.5-1.5,1.5h-17c-0.8,0-1.5-0.7-1.5-1.5v-2.8c0-0.5-0.4-0.9-0.9-0.9
|
|
20
|
+
S0,16.3,0,16.8v2.8c0,1.8,1.5,3.3,3.3,3.3h17c1.8,0,3.3-1.5,3.3-3.3v-2.8C23.6,16.3,23.2,15.9,22.7,15.9z"
|
|
21
|
+
/>
|
|
22
|
+
</g>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
version="1.1"
|
|
3
|
+
id="Réteg_3"
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
x="0px"
|
|
7
|
+
y="0px"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
style="enable-background:new 0 0 24 24;"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
>
|
|
12
|
+
<path
|
|
13
|
+
d="M24,4.3c0-0.5-0.2-0.9-0.5-1.3l-2.6-2.6c-0.7-0.7-1.8-0.7-2.5,0l-2,2c0,0,0,0,0,0s0,0,0,0L1.8,17.1
|
|
14
|
+
c-0.2,0.2-0.4,0.4-0.4,0.7l-1.2,3.8c-0.2,0.6,0,1.3,0.4,1.8C0.9,23.8,1.3,24,1.8,24c0.2,0,0.4,0,0.5-0.1l3.8-1.2
|
|
15
|
+
c0.3-0.1,0.5-0.2,0.7-0.4c0,0,0,0,0,0L21.5,7.6c0,0,0,0,0,0s0,0,0,0l2-2C23.8,5.3,24,4.8,24,4.3z M5.6,21l-3.8,1.3L3,18.4l14-14
|
|
16
|
+
L19.6,7L5.6,21z M20.8,5.7l-2.6-2.6l1.4-1.4l2.6,2.6L20.8,5.7z"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
id="Réteg_2"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
x="0px"
|
|
8
|
+
y="0px"
|
|
9
|
+
viewBox="0 0 72.3 18.7"
|
|
10
|
+
style="enable-background:new 0 0 72.3 18.7;"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
>
|
|
13
|
+
<g>
|
|
14
|
+
<path
|
|
15
|
+
d="M23.4,13.1c-0.3-0.5-0.7-0.9-1.2-1.2c0.3-0.5,0.5-1,0.5-1.7V2.9c0-1.6-1.3-2.9-2.9-2.9H4.2C2.6,0,1.3,1.3,1.3,2.9v7.3
|
|
16
|
+
c0,0.6,0.2,1.2,0.5,1.7c-0.5,0.3-0.9,0.7-1.2,1.2l-0.2,0.3c-0.6,1.1-0.6,2.5,0,3.6c0.6,1.1,1.8,1.8,3.1,1.8h16.9
|
|
17
|
+
c1.3,0,2.5-0.7,3.1-1.8c0.7-1.1,0.7-2.5,0-3.6L23.4,13.1z M3.1,2.9c0-0.6,0.5-1.1,1.1-1.1h15.7c0.6,0,1.1,0.5,1.1,1.1v7.3
|
|
18
|
+
c0,0.6-0.5,1.1-1.1,1.1H4.2c-0.6,0-1.1-0.5-1.1-1.1V2.9z M22,16c-0.3,0.6-0.9,0.9-1.5,0.9H3.6c-0.6,0-1.2-0.3-1.5-0.9
|
|
19
|
+
c-0.3-0.6-0.3-1.2,0-1.8L2.2,14c0.3-0.6,0.9-0.9,1.6-0.9h0.4h15.7h0.4c0.6,0,1.2,0.3,1.6,0.9l0.1,0.3C22.3,14.8,22.3,15.5,22,16z"
|
|
20
|
+
/>
|
|
21
|
+
<path
|
|
22
|
+
d="M46,0.1c-0.4-0.2-1-0.1-1.2,0.3L36,16l-1.2-2.2c-0.2-0.4-0.8-0.6-1.2-0.3c-0.4,0.2-0.6,0.8-0.3,1.2l2,3.5
|
|
23
|
+
c0.2,0.3,0.5,0.5,0.8,0.5c0.3,0,0.6-0.2,0.8-0.5l9.6-16.9C46.6,0.9,46.4,0.4,46,0.1z"
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
d="M69.4,0H56.5c-1.6,0-2.9,1.3-2.9,2.9v12.9c0,1.6,1.3,2.9,2.9,2.9h12.9c1.6,0,2.9-1.3,2.9-2.9V2.9C72.3,1.3,71,0,69.4,0z
|
|
27
|
+
M70.5,15.8c0,0.6-0.5,1.1-1.1,1.1H56.5c-0.6,0-1.1-0.5-1.1-1.1V2.9c0-0.6,0.5-1.1,1.1-1.1h12.9c0.6,0,1.1,0.5,1.1,1.1V15.8z"
|
|
28
|
+
/>
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
version="1.1"
|
|
3
|
+
id="Réteg_3"
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
x="0px"
|
|
7
|
+
y="0px"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
style="enable-background:new 0 0 24 24;"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
>
|
|
12
|
+
<g>
|
|
13
|
+
<path
|
|
14
|
+
d="M21.2,9c-0.5,0-0.9,0.4-0.9,0.9v11.4c0,0.4-0.4,0.8-0.8,0.8H2.6c-0.4,0-0.8-0.4-0.8-0.8V4.4c0-0.4,0.4-0.8,0.8-0.8h11.8
|
|
15
|
+
c0.5,0,0.9-0.4,0.9-0.9s-0.4-0.9-0.9-0.9H2.6C1.2,1.8,0,3,0,4.4v16.9C0,22.8,1.2,24,2.6,24h16.9c1.4,0,2.6-1.2,2.6-2.6V9.9
|
|
16
|
+
C22.1,9.4,21.7,9,21.2,9z"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
d="M23.1,0h-6.6c-0.5,0-0.9,0.4-0.9,0.9s0.4,0.9,0.9,0.9h4.5L10.4,12.3c-0.4,0.4-0.4,0.9,0,1.3c0.2,0.2,0.4,0.3,0.6,0.3
|
|
20
|
+
s0.5-0.1,0.6-0.3L22.2,3.1v4.5c0,0.5,0.4,0.9,0.9,0.9S24,8,24,7.5V0.9C24,0.4,23.6,0,23.1,0z"
|
|
21
|
+
/>
|
|
22
|
+
</g>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
id="Réteg_2"
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
7
|
+
x="0px"
|
|
8
|
+
y="0px"
|
|
9
|
+
viewBox="0 0 23.5 24.4"
|
|
10
|
+
style="enable-background:new 0 0 23.5 24.4;"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M16.9,9.7c-0.1,0-0.1,0-0.2,0V2.1c0-1.2-0.9-2.1-2.1-2.1H2.1C0.9,0,0,0.9,0,2.1v1.1v15v0.6c0,0.7,0.3,1.3,0.9,1.7L6,24
|
|
15
|
+
c0.4,0.2,0.8,0.4,1.2,0.4c0.3,0,0.7-0.1,1-0.2c0.7-0.4,1.1-1.1,1.1-1.9v-1.9h2.4c1.2,1.6,3.1,2.6,5.3,2.6c3.6,0,6.6-3,6.6-6.6
|
|
16
|
+
C23.5,12.7,20.5,9.7,16.9,9.7z M7.5,22.2c0,0.2-0.1,0.2-0.2,0.3s-0.2,0.1-0.3,0l-5-3.5c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6v-15
|
|
17
|
+
C1.8,3,1.9,3,2,2.9c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0.1l5,3.5c0.1,0.1,0.1,0.2,0.1,0.3V22.2z M9.3,18.5V6.7c0-0.7-0.3-1.3-0.9-1.7
|
|
18
|
+
L3.8,1.8h10.8c0.2,0,0.3,0.1,0.3,0.3V10c-2.7,0.8-4.6,3.4-4.6,6.3c0,0.8,0.1,1.5,0.4,2.2H9.3z M16.9,21.1c-2.7,0-4.8-2.2-4.8-4.8
|
|
19
|
+
c0-1,0.3-1.9,0.8-2.7l3.3,3.3c0.2,0.2,0.4,0.3,0.6,0.3s0.5-0.1,0.6-0.3c0.4-0.4,0.4-0.9,0-1.3l-3.3-3.3c0.8-0.5,1.7-0.8,2.7-0.8
|
|
20
|
+
c2.7,0,4.8,2.2,4.8,4.8S19.5,21.1,16.9,21.1z"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
version="1.1"
|
|
3
|
+
id="Réteg_3"
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
x="0px"
|
|
7
|
+
y="0px"
|
|
8
|
+
viewBox="0 0 23.9 24.4"
|
|
9
|
+
style="enable-background:new 0 0 23.9 24.4;"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
>
|
|
12
|
+
<path
|
|
13
|
+
d="M21,9.4h-4.2V2.1c0-1.2-0.9-2.1-2.1-2.1H2.1C0.9,0,0,0.9,0,2.1v1.1v15v0.6c0,0.7,0.3,1.3,0.9,1.7L6,24
|
|
14
|
+
c0.4,0.2,0.8,0.4,1.2,0.4c0.3,0,0.7-0.1,1-0.2c0.7-0.4,1.1-1.1,1.1-1.9v-1.9h0.7v0.1c0,1.6,1.3,2.9,2.9,2.9H21
|
|
15
|
+
c1.6,0,2.9-1.3,2.9-2.9v-8.1C23.9,10.7,22.6,9.4,21,9.4z M7.5,22.2c0,0.2-0.1,0.2-0.2,0.3s-0.2,0.1-0.3,0c0,0,0,0,0,0l-5-3.5
|
|
16
|
+
c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6v-15C1.8,3,1.9,3,2,2.9c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0.1l5,3.5c0.1,0.1,0.1,0.2,0.1,0.3V22.2z
|
|
17
|
+
M9.3,18.5V6.7c0-0.7-0.3-1.3-0.9-1.7L3.8,1.8h10.8c0.2,0,0.3,0.1,0.3,0.3v7.3h-2.1c-1.6,0-2.9,1.3-2.9,2.9v6.3H9.3z M22.1,20.4
|
|
18
|
+
c0,0.6-0.5,1.1-1.1,1.1h-8.1c-0.6,0-1.1-0.5-1.1-1.1v-8.1c0-0.6,0.5-1.1,1.1-1.1H21c0.6,0,1.1,0.5,1.1,1.1V20.4z"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
version="1.1"
|
|
3
|
+
id="Réteg_2"
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
x="0px"
|
|
7
|
+
y="0px"
|
|
8
|
+
viewBox="0 0 21 26.9"
|
|
9
|
+
style="enable-background:new 0 0 21 26.9;"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
>
|
|
12
|
+
<path
|
|
13
|
+
d="M18.1,0H2.9C1.3,0,0,1.3,0,2.9v15.2C0,19.7,1.3,21,2.9,21h6.7v2.8l-0.9-0.9c-0.4-0.4-0.9-0.4-1.3,0s-0.4,0.9,0,1.3l2.5,2.5
|
|
14
|
+
c0.2,0.2,0.4,0.3,0.6,0.3s0.5-0.1,0.6-0.3l2.5-2.5c0.4-0.4,0.4-0.9,0-1.3s-0.9-0.4-1.3,0l-0.9,0.9V21h6.7c1.6,0,2.9-1.3,2.9-2.9V2.9
|
|
15
|
+
C21,1.3,19.7,0,18.1,0z M19.2,18.1c0,0.6-0.5,1.1-1.1,1.1h-6.7v-4.6c0-0.5-0.4-0.9-0.9-0.9s-0.9,0.4-0.9,0.9v4.6H2.9
|
|
16
|
+
c-0.6,0-1.1-0.5-1.1-1.1V2.9c0-0.6,0.5-1.1,1.1-1.1h15.2c0.6,0,1.1,0.5,1.1,1.1V18.1z"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
version="1.1"
|
|
3
|
+
id="Réteg_2"
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
x="0px"
|
|
7
|
+
y="0px"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
style="enable-background:new 0 0 24 24;"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
>
|
|
12
|
+
<g>
|
|
13
|
+
<path
|
|
14
|
+
d="M12,0C5.4,0,0,5.4,0,12c0,6.6,5.4,12,12,12c6.6,0,12-5.4,12-12C24,5.4,18.6,0,12,0z M12,22.2C6.4,22.2,1.8,17.6,1.8,12
|
|
15
|
+
C1.8,6.4,6.4,1.8,12,1.8c5.6,0,10.2,4.6,10.2,10.2C22.2,17.6,17.6,22.2,12,22.2z"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M12,9c-0.8,0-1.5,0.7-1.5,1.5v8c0,0.8,0.7,1.5,1.5,1.5s1.5-0.7,1.5-1.5v-8C13.5,9.6,12.8,9,12,9z"
|
|
19
|
+
/>
|
|
20
|
+
<circle cx="12" cy="6.3" r="1.7" />
|
|
21
|
+
</g>
|
|
22
|
+
</svg>
|