@intechstudio/grid-uikit 1.20240722.817 → 1.20240806.1154
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/Block.svelte.d.ts +1 -1
- package/dist/ContextMenu.svelte +72 -0
- package/dist/ContextMenu.svelte.d.ts +27 -0
- package/dist/MeltRadio.svelte.d.ts +3 -3
- package/dist/MeltSelect.svelte.d.ts +1 -1
- package/dist/MoltenButton.svelte.d.ts +1 -1
- package/dist/MoltenInput.svelte.d.ts +2 -2
- package/dist/MoltenPushButton.svelte.d.ts +6 -6
- package/dist/SvgIcon.svelte +16 -0
- package/dist/SvgIcon.svelte.d.ts +19 -0
- package/dist/assets/icons/arrow_down.svg +17 -0
- package/dist/assets/icons/arrow_left.svg +17 -0
- package/dist/assets/icons/arrow_right.svg +17 -0
- package/dist/assets/icons/arrow_up.svg +17 -0
- package/dist/assets/icons/clear_element.svg +3 -0
- package/dist/assets/icons/clear_from_device_01.svg +25 -0
- package/dist/assets/icons/clear_from_device_02.svg +25 -0
- package/dist/assets/icons/close.svg +4 -0
- package/dist/assets/icons/cloud.svg +27 -0
- package/dist/assets/icons/copy.svg +20 -0
- package/dist/assets/icons/copy_all.svg +21 -0
- package/dist/assets/icons/cut.svg +46 -0
- package/dist/assets/icons/debug.svg +35 -0
- package/dist/assets/icons/delete.svg +23 -0
- package/dist/assets/icons/disabled.svg +31 -0
- package/dist/assets/icons/download.svg +23 -0
- package/dist/assets/icons/edit.svg +18 -0
- package/dist/assets/icons/enabled.svg +30 -0
- package/dist/assets/icons/export.svg +23 -0
- package/dist/assets/icons/folder_control_element.svg +22 -0
- package/dist/assets/icons/folder_profile.svg +20 -0
- package/dist/assets/icons/import.svg +18 -0
- package/dist/assets/icons/info.svg +22 -0
- package/dist/assets/icons/merge_as_code.svg +32 -0
- package/dist/assets/icons/midi.svg +1 -0
- package/dist/assets/icons/move_to_cloud_01.svg +10 -0
- package/dist/assets/icons/move_to_cloud_02.svg +30 -0
- package/dist/assets/icons/move_to_cloud_03.svg +12 -0
- package/dist/assets/icons/overlay_01.svg +28 -0
- package/dist/assets/icons/overlay_02.svg +23 -0
- package/dist/assets/icons/overwrite_control_element.svg +26 -0
- package/dist/assets/icons/overwrite_profile.svg +25 -0
- package/dist/assets/icons/paste.svg +20 -0
- package/dist/assets/icons/paste_all.svg +20 -0
- package/dist/assets/icons/preferences.svg +17 -0
- package/dist/assets/icons/private.svg +25 -0
- package/dist/assets/icons/profile.svg +11 -0
- package/dist/assets/icons/public.svg +37 -0
- package/dist/assets/icons/remove.svg +35 -0
- package/dist/assets/icons/replace.svg +33 -0
- package/dist/assets/icons/save_as_01.svg +27 -0
- package/dist/assets/icons/save_as_02.svg +20 -0
- package/dist/assets/icons/search.svg +21 -0
- package/dist/assets/icons/send_to_device.svg +30 -0
- package/dist/assets/icons/sort_by.svg +28 -0
- package/dist/assets/icons/tick.svg +11 -0
- package/dist/assets/icons/user_account_02.svg +13 -0
- package/dist/context-target.d.ts +26 -0
- package/dist/context-target.js +46 -0
- package/dist/icons.d.ts +5 -0
- package/dist/icons.js +97 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +4 -2
package/dist/Block.svelte.d.ts
CHANGED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<script context="module">import SvgIcon from "./SvgIcon.svelte";
|
|
2
|
+
</script>
|
|
3
|
+
|
|
4
|
+
<script>import Popover from "svelte-easy-popover/dist/ts/Popover.svelte";
|
|
5
|
+
import { contextMenu } from "./context-target";
|
|
6
|
+
export let target;
|
|
7
|
+
export let items;
|
|
8
|
+
export let offset;
|
|
9
|
+
let maxLength = Math.max(...items.map((e) => e.text[0].length));
|
|
10
|
+
function handleItemClicked(item) {
|
|
11
|
+
item.handler();
|
|
12
|
+
contextMenu.close();
|
|
13
|
+
}
|
|
14
|
+
function handleBlur() {
|
|
15
|
+
contextMenu.close();
|
|
16
|
+
}
|
|
17
|
+
function handleClickOutside() {
|
|
18
|
+
contextMenu.close();
|
|
19
|
+
}
|
|
20
|
+
</script>
|
|
21
|
+
|
|
22
|
+
<svelte:window on:blur={handleBlur} on:click={handleClickOutside} />
|
|
23
|
+
|
|
24
|
+
<container>
|
|
25
|
+
<Popover
|
|
26
|
+
isOpen={true}
|
|
27
|
+
referenceElement={target}
|
|
28
|
+
placement={"right-end"}
|
|
29
|
+
spaceAway={-target.offsetWidth + offset.x}
|
|
30
|
+
spaceAlong={-target.offsetHeight + offset.y}
|
|
31
|
+
>
|
|
32
|
+
<div
|
|
33
|
+
class="flex flex-col items-start bg-gray-900 text-white/80 border border-white/50 rounded absolute"
|
|
34
|
+
>
|
|
35
|
+
{#each items as item}
|
|
36
|
+
{@const disabled = item.isDisabled ? item.isDisabled() : false}
|
|
37
|
+
<button
|
|
38
|
+
class="text-white flex flex-row gap-2 {disabled
|
|
39
|
+
? ''
|
|
40
|
+
: 'hover:bg-white/40 hover:text-white'} items-center whitespace-nowrap w-full px-2 py-2 text-left cursor-default"
|
|
41
|
+
class:opacity-75={!disabled}
|
|
42
|
+
class:opacity-25={disabled}
|
|
43
|
+
{disabled}
|
|
44
|
+
on:click={() => handleItemClicked(item)}
|
|
45
|
+
>
|
|
46
|
+
{#if item.iconPath}
|
|
47
|
+
<SvgIcon
|
|
48
|
+
width={12}
|
|
49
|
+
height={12}
|
|
50
|
+
fill="#FFF"
|
|
51
|
+
iconPath={item.iconPath}
|
|
52
|
+
/>
|
|
53
|
+
{/if}
|
|
54
|
+
<span class="flex-1">{item.text[0]}</span>
|
|
55
|
+
<!-- Spacer for alignment -->
|
|
56
|
+
<span
|
|
57
|
+
class="invisible"
|
|
58
|
+
style="width: {maxLength - item.text[0].length}ch;"
|
|
59
|
+
>{item.text[0]}</span
|
|
60
|
+
>
|
|
61
|
+
<span>{item.text[1]}</span>
|
|
62
|
+
</button>
|
|
63
|
+
{/each}
|
|
64
|
+
</div>
|
|
65
|
+
</Popover>
|
|
66
|
+
</container>
|
|
67
|
+
|
|
68
|
+
<style>
|
|
69
|
+
.flex-1 {
|
|
70
|
+
flex: 1;
|
|
71
|
+
}
|
|
72
|
+
</style>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
|
+
export interface ContextMenuItem {
|
|
3
|
+
text: string[];
|
|
4
|
+
handler: (...args: any[]) => any;
|
|
5
|
+
isDisabled?: () => boolean;
|
|
6
|
+
iconPath?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const __propDef: {
|
|
9
|
+
props: {
|
|
10
|
+
target: HTMLElement;
|
|
11
|
+
items: ContextMenuItem[];
|
|
12
|
+
offset: {
|
|
13
|
+
x: number;
|
|
14
|
+
y: number;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
events: {
|
|
18
|
+
[evt: string]: CustomEvent<any>;
|
|
19
|
+
};
|
|
20
|
+
slots: {};
|
|
21
|
+
};
|
|
22
|
+
export type ContextMenuProps = typeof __propDef.props;
|
|
23
|
+
export type ContextMenuEvents = typeof __propDef.events;
|
|
24
|
+
export type ContextMenuSlots = typeof __propDef.slots;
|
|
25
|
+
export default class ContextMenu extends SvelteComponent<ContextMenuProps, ContextMenuEvents, ContextMenuSlots> {
|
|
26
|
+
}
|
|
27
|
+
export {};
|
|
@@ -6,9 +6,9 @@ declare const __propDef: {
|
|
|
6
6
|
value: string | boolean | number;
|
|
7
7
|
}[];
|
|
8
8
|
target: any;
|
|
9
|
-
orientation?: "vertical" | "horizontal"
|
|
10
|
-
style?: "button" | "radio"
|
|
11
|
-
size?: "auto" | "full"
|
|
9
|
+
orientation?: "vertical" | "horizontal";
|
|
10
|
+
style?: "button" | "radio";
|
|
11
|
+
size?: "auto" | "full";
|
|
12
12
|
};
|
|
13
13
|
events: {
|
|
14
14
|
[evt: string]: CustomEvent<any>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
|
-
disabled?: boolean
|
|
4
|
+
disabled?: boolean;
|
|
5
5
|
target: any;
|
|
6
|
-
focus?: (
|
|
6
|
+
focus?: () => void;
|
|
7
7
|
};
|
|
8
8
|
events: {
|
|
9
9
|
[evt: string]: CustomEvent<any>;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
|
-
selected?: boolean
|
|
5
|
-
text?: string
|
|
6
|
-
style?: string
|
|
7
|
-
disabled?: boolean
|
|
4
|
+
selected?: boolean;
|
|
5
|
+
text?: string;
|
|
6
|
+
style?: string;
|
|
7
|
+
disabled?: boolean;
|
|
8
8
|
popup?: {
|
|
9
9
|
duration?: number;
|
|
10
10
|
} | undefined;
|
|
11
|
-
ratio?: string
|
|
12
|
-
snap?: string
|
|
11
|
+
ratio?: string;
|
|
12
|
+
snap?: string;
|
|
13
13
|
click: (...args: any) => void;
|
|
14
14
|
};
|
|
15
15
|
events: {
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>import iconMap from "./icons";
|
|
2
|
+
export let iconPath = "";
|
|
3
|
+
export let width = 15;
|
|
4
|
+
export let height = 15;
|
|
5
|
+
export let fill = void 0;
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<svg style="width: {width}px; height: {height}px; fill: {fill};">
|
|
9
|
+
<g>
|
|
10
|
+
{#if iconMap[iconPath]}
|
|
11
|
+
{@html iconMap[iconPath]}
|
|
12
|
+
{:else}
|
|
13
|
+
<text x="10" y="20">Icon not found: {iconPath}</text>
|
|
14
|
+
{/if}
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: {
|
|
4
|
+
iconPath?: string;
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
fill?: string | undefined;
|
|
8
|
+
};
|
|
9
|
+
events: {
|
|
10
|
+
[evt: string]: CustomEvent<any>;
|
|
11
|
+
};
|
|
12
|
+
slots: {};
|
|
13
|
+
};
|
|
14
|
+
export type SvgIconProps = typeof __propDef.props;
|
|
15
|
+
export type SvgIconEvents = typeof __propDef.events;
|
|
16
|
+
export type SvgIconSlots = typeof __propDef.slots;
|
|
17
|
+
export default class SvgIcon extends SvelteComponent<SvgIconProps, SvgIconEvents, SvgIconSlots> {
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
@@ -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>
|