@joyautomation/salt 0.1.1 → 0.1.3
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/components/forms/Form.svelte +3 -0
- package/dist/components/forms/Switch.svelte +104 -0
- package/dist/components/forms/Switch.svelte.d.ts +7 -0
- package/dist/components/forms/index.d.ts +1 -0
- package/dist/components/forms/index.js +1 -0
- package/dist/components/icons/outline/ArrowTurnDownLeft.svelte +1 -1
- package/dist/components/icons/outline/ArrowTurnDownRight.svelte +1 -1
- package/dist/components/icons/outline/ArrowTurnLeftDown.svelte +1 -1
- package/dist/components/icons/outline/ArrowTurnLeftUp.svelte +1 -1
- package/dist/components/icons/outline/ArrowTurnRightDown.svelte +1 -1
- package/dist/components/icons/outline/ArrowTurnRightUp.svelte +1 -1
- package/dist/components/icons/outline/ArrowTurnUpLeft.svelte +1 -1
- package/dist/components/icons/outline/ArrowTurnUpRight.svelte +1 -1
- package/dist/components/icons/outline/Bold.svelte +1 -1
- package/dist/components/icons/outline/CalendarDateRange.svelte +1 -1
- package/dist/components/icons/outline/Divide.svelte +1 -1
- package/dist/components/icons/outline/DocumentCurrencyBangladeshi.svelte +1 -1
- package/dist/components/icons/outline/DocumentCurrencyDollar.svelte +1 -1
- package/dist/components/icons/outline/DocumentCurrencyEuro.svelte +1 -1
- package/dist/components/icons/outline/DocumentCurrencyPound.svelte +1 -1
- package/dist/components/icons/outline/DocumentCurrencyRupee.svelte +1 -1
- package/dist/components/icons/outline/DocumentCurrencyYen.svelte +1 -1
- package/dist/components/icons/outline/Equals.svelte +1 -1
- package/dist/components/icons/outline/H1.svelte +1 -1
- package/dist/components/icons/outline/H2.svelte +1 -1
- package/dist/components/icons/outline/H3.svelte +1 -1
- package/dist/components/icons/outline/Italic.svelte +1 -1
- package/dist/components/icons/outline/LinkSlash.svelte +1 -1
- package/dist/components/icons/outline/NumberedList.svelte +1 -1
- package/dist/components/icons/outline/PercentBadge.svelte +1 -1
- package/dist/components/icons/outline/Slash.svelte +1 -1
- package/dist/components/icons/outline/Strikethrough.svelte +1 -1
- package/dist/components/icons/outline/Underline.svelte +1 -1
- package/dist/components/icons/solid/ArrowTurnDownLeft.svelte +1 -1
- package/dist/components/icons/solid/ArrowTurnDownRight.svelte +1 -1
- package/dist/components/icons/solid/ArrowTurnLeftDown.svelte +1 -1
- package/dist/components/icons/solid/ArrowTurnLeftUp.svelte +1 -1
- package/dist/components/icons/solid/ArrowTurnRightDown.svelte +1 -1
- package/dist/components/icons/solid/ArrowTurnRightUp.svelte +1 -1
- package/dist/components/icons/solid/ArrowTurnUpLeft.svelte +1 -1
- package/dist/components/icons/solid/ArrowTurnUpRight.svelte +1 -1
- package/dist/components/icons/solid/Bold.svelte +1 -1
- package/dist/components/icons/solid/CalendarDateRange.svelte +10 -10
- package/dist/components/icons/solid/Divide.svelte +1 -1
- package/dist/components/icons/solid/DocumentCurrencyBangladeshi.svelte +1 -1
- package/dist/components/icons/solid/DocumentCurrencyDollar.svelte +1 -1
- package/dist/components/icons/solid/DocumentCurrencyEuro.svelte +2 -2
- package/dist/components/icons/solid/DocumentCurrencyPound.svelte +1 -1
- package/dist/components/icons/solid/DocumentCurrencyRupee.svelte +1 -1
- package/dist/components/icons/solid/DocumentCurrencyYen.svelte +1 -1
- package/dist/components/icons/solid/Equals.svelte +2 -2
- package/dist/components/icons/solid/H1.svelte +1 -1
- package/dist/components/icons/solid/H2.svelte +1 -1
- package/dist/components/icons/solid/H3.svelte +2 -2
- package/dist/components/icons/solid/Italic.svelte +1 -1
- package/dist/components/icons/solid/LinkSlash.svelte +1 -1
- package/dist/components/icons/solid/NumberedList.svelte +6 -6
- package/dist/components/icons/solid/PercentBadge.svelte +1 -1
- package/dist/components/icons/solid/Slash.svelte +1 -1
- package/dist/components/icons/solid/Strikethrough.svelte +1 -1
- package/dist/components/icons/solid/Underline.svelte +1 -1
- package/dist/components/icons/solid/VideoCameraSlash.svelte +4 -4
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
import { enhance } from '$app/forms'
|
|
3
3
|
import Input from './Input.svelte'
|
|
4
4
|
import Select from './Select.svelte'
|
|
5
|
+
import Switch from './Switch.svelte'
|
|
5
6
|
import type { FormInputs } from './types.js'
|
|
6
7
|
import { slide } from 'svelte/transition'
|
|
7
8
|
|
|
@@ -57,6 +58,8 @@
|
|
|
57
58
|
<div>
|
|
58
59
|
{#if input.type === 'select'}
|
|
59
60
|
<Select {...input} bind:value={input.value} {inputs} options={input.options || []} />
|
|
61
|
+
{:else if input.type === 'checkbox'}
|
|
62
|
+
<Switch {...input} bind:value={input.value} {inputs} />
|
|
60
63
|
{:else}
|
|
61
64
|
<Input {...input} bind:value={input.value} {inputs} />
|
|
62
65
|
{/if}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import type { FormInputs, InputProps } from './types.js'
|
|
3
|
+
|
|
4
|
+
let {
|
|
5
|
+
id,
|
|
6
|
+
name,
|
|
7
|
+
label,
|
|
8
|
+
value = $bindable('false'),
|
|
9
|
+
validations,
|
|
10
|
+
inputs
|
|
11
|
+
}: InputProps & { inputs?: FormInputs } = $props()
|
|
12
|
+
|
|
13
|
+
const checked = $derived(value === 'true')
|
|
14
|
+
|
|
15
|
+
function toggle() {
|
|
16
|
+
value = value === 'true' ? 'false' : 'true'
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function handleKeydown(e: KeyboardEvent) {
|
|
20
|
+
if (e.key === 'Enter' || e.key === ' ') {
|
|
21
|
+
e.preventDefault()
|
|
22
|
+
toggle()
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
</script>
|
|
26
|
+
|
|
27
|
+
<div class="switch-field">
|
|
28
|
+
{#if label != null}
|
|
29
|
+
<label for={id}>{label}</label>
|
|
30
|
+
{/if}
|
|
31
|
+
<button
|
|
32
|
+
type="button"
|
|
33
|
+
{id}
|
|
34
|
+
class="switch"
|
|
35
|
+
class:switch--active={checked}
|
|
36
|
+
onclick={toggle}
|
|
37
|
+
onkeydown={handleKeydown}
|
|
38
|
+
role="switch"
|
|
39
|
+
aria-checked={checked}
|
|
40
|
+
aria-label={label ?? name}
|
|
41
|
+
>
|
|
42
|
+
<span class="switch__slider"></span>
|
|
43
|
+
</button>
|
|
44
|
+
<input {name} type="hidden" value={checked} />
|
|
45
|
+
</div>
|
|
46
|
+
|
|
47
|
+
<style>.switch-field {
|
|
48
|
+
display: flex;
|
|
49
|
+
align-items: center;
|
|
50
|
+
gap: calc(var(--spacing-unit) * 2);
|
|
51
|
+
}
|
|
52
|
+
.switch-field > label {
|
|
53
|
+
color: var(--theme-text);
|
|
54
|
+
font-family: var(--theme-font-basic, inherit);
|
|
55
|
+
font-size: var(--text-sm);
|
|
56
|
+
line-height: var(--text-sm-lh);
|
|
57
|
+
text-transform: capitalize;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.switch {
|
|
61
|
+
position: relative;
|
|
62
|
+
display: inline-block;
|
|
63
|
+
width: 40px;
|
|
64
|
+
height: 24px;
|
|
65
|
+
border: none;
|
|
66
|
+
background: none;
|
|
67
|
+
padding: 0;
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
flex-shrink: 0;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.switch__slider {
|
|
73
|
+
position: absolute;
|
|
74
|
+
top: 0;
|
|
75
|
+
left: 0;
|
|
76
|
+
right: 0;
|
|
77
|
+
bottom: 0;
|
|
78
|
+
background-color: var(--theme-neutral-400);
|
|
79
|
+
border-radius: 12px;
|
|
80
|
+
transition: background-color 0.2s ease;
|
|
81
|
+
}
|
|
82
|
+
.switch__slider::before {
|
|
83
|
+
content: "";
|
|
84
|
+
position: absolute;
|
|
85
|
+
top: 2px;
|
|
86
|
+
left: 2px;
|
|
87
|
+
width: 20px;
|
|
88
|
+
height: 20px;
|
|
89
|
+
background-color: white;
|
|
90
|
+
border-radius: 50%;
|
|
91
|
+
transition: transform 0.2s ease;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.switch--active .switch__slider {
|
|
95
|
+
background-color: var(--theme-primary);
|
|
96
|
+
}
|
|
97
|
+
.switch--active .switch__slider::before {
|
|
98
|
+
transform: translateX(16px);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.switch:focus-visible .switch__slider {
|
|
102
|
+
outline: 2px solid var(--theme-primary);
|
|
103
|
+
outline-offset: 2px;
|
|
104
|
+
}</style>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { FormInputs, InputProps } from './types.js';
|
|
2
|
+
type $$ComponentProps = InputProps & {
|
|
3
|
+
inputs?: FormInputs;
|
|
4
|
+
};
|
|
5
|
+
declare const Switch: import("svelte").Component<$$ComponentProps, {}, "value">;
|
|
6
|
+
type Switch = ReturnType<typeof Switch>;
|
|
7
|
+
export default Switch;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { default as Form } from './Form.svelte';
|
|
2
2
|
export { default as Input } from './Input.svelte';
|
|
3
3
|
export { default as Select } from './Select.svelte';
|
|
4
|
+
export { default as Switch } from './Switch.svelte';
|
|
4
5
|
export { default as SearchableSelect } from './SearchableSelect.svelte';
|
|
5
6
|
export type { InputProps, FormInputs, FormInputsPartial } from './types.js';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as Form } from './Form.svelte';
|
|
2
2
|
export { default as Input } from './Input.svelte';
|
|
3
3
|
export { default as Select } from './Select.svelte';
|
|
4
|
+
export { default as Switch } from './Switch.svelte';
|
|
4
5
|
export { default as SearchableSelect } from './SearchableSelect.svelte';
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M7.49012 11.9996L3.74025 15.75M3.74025 15.75L7.49012 19.5004M3.74025 15.75H20.2397V4.49902" stroke="
|
|
9
|
+
<path d="M7.49012 11.9996L3.74025 15.75M3.74025 15.75L7.49012 19.5004M3.74025 15.75H20.2397V4.49902" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M16.4899 11.9996L20.2397 15.75M20.2397 15.75L16.4899 19.5004M20.2397 15.75H3.74023V4.49902" stroke="
|
|
9
|
+
<path d="M16.4899 11.9996L20.2397 15.75M20.2397 15.75L16.4899 19.5004M20.2397 15.75H3.74023V4.49902" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M11.9901 16.4996L8.23975 20.2495M8.23975 20.2495L4.48939 16.4996M8.23975 20.2495L8.23975 3.75L19.4907 3.75" stroke="
|
|
9
|
+
<path d="M11.9901 16.4996L8.23975 20.2495M8.23975 20.2495L4.48939 16.4996M8.23975 20.2495L8.23975 3.75L19.4907 3.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M11.9901 7.4994L8.23975 3.74952M8.23975 3.74952L4.48939 7.4994M8.23975 3.74952L8.23975 20.249L19.4907 20.249" stroke="
|
|
9
|
+
<path d="M11.9901 7.4994L8.23975 3.74952M8.23975 3.74952L4.48939 7.4994M8.23975 3.74952L8.23975 20.249L19.4907 20.249" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M11.9899 16.4996L15.7402 20.2495M15.7402 20.2495L19.4906 16.4996M15.7402 20.2495L15.7402 3.75L4.48926 3.75" stroke="
|
|
9
|
+
<path d="M11.9899 16.4996L15.7402 20.2495M15.7402 20.2495L19.4906 16.4996M15.7402 20.2495L15.7402 3.75L4.48926 3.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M11.9899 7.4994L15.7402 3.74952M15.7402 3.74952L19.4906 7.4994M15.7402 3.74952L15.7402 20.249L4.48926 20.249" stroke="
|
|
9
|
+
<path d="M11.9899 7.4994L15.7402 3.74952M15.7402 3.74952L19.4906 7.4994M15.7402 3.74952L15.7402 20.249L4.48926 20.249" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M7.49012 11.9994L3.74025 8.24902M3.74025 8.24902L7.49012 4.49866M3.74025 8.24902L20.2397 8.24902L20.2397 19.5" stroke="
|
|
9
|
+
<path d="M7.49012 11.9994L3.74025 8.24902M3.74025 8.24902L7.49012 4.49866M3.74025 8.24902L20.2397 8.24902L20.2397 19.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M16.4899 11.9994L20.2397 8.24902M20.2397 8.24902L16.4899 4.49866M20.2397 8.24902L3.74023 8.24902L3.74023 19.5" stroke="
|
|
9
|
+
<path d="M16.4899 11.9994L20.2397 8.24902M20.2397 8.24902L16.4899 4.49866M20.2397 8.24902L3.74023 8.24902L3.74023 19.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M6.75038 3.74414H5.99707V11.9949H13.1221C15.4002 11.9949 17.2471 10.1479 17.2471 7.8695C17.2471 5.59113 15.4002 3.74414 13.1221 3.74414H6.75038ZM6.75038 3.74414V4.12491M6.75038 20.2456H13.4971C15.9824 20.2456 17.9971 18.2307 17.9971 15.7452C17.9971 13.2597 15.9824 11.2448 13.4971 11.2448H5.99707V20.2456H6.75038ZM6.75038 20.2456V19.8751M6.75038 4.12491H12.7504C14.8215 4.12491 16.5005 5.80387 16.5005 7.87496C16.5005 9.94606 14.8215 11.625 12.7504 11.625H6.75038M6.75038 4.12491V11.625M6.75038 11.625V19.8751M6.75038 11.625H13.1254C15.4036 11.625 17.2505 13.4719 17.2505 15.7501C17.2505 18.0283 15.4036 19.8751 13.1254 19.8751H6.75038M7.49707 4.49421H12.3721C14.236 4.49421 15.7471 6.00538 15.7471 7.8695C15.7471 9.73362 14.236 11.2448 12.3721 11.2448H7.49707V4.49421ZM7.49707 11.9949H12.7471C14.8181 11.9949 16.4971 13.6739 16.4971 15.7452C16.4971 17.8164 14.8181 19.4955 12.7471 19.4955H7.49707V11.9949Z" stroke="
|
|
9
|
+
<path d="M6.75038 3.74414H5.99707V11.9949H13.1221C15.4002 11.9949 17.2471 10.1479 17.2471 7.8695C17.2471 5.59113 15.4002 3.74414 13.1221 3.74414H6.75038ZM6.75038 3.74414V4.12491M6.75038 20.2456H13.4971C15.9824 20.2456 17.9971 18.2307 17.9971 15.7452C17.9971 13.2597 15.9824 11.2448 13.4971 11.2448H5.99707V20.2456H6.75038ZM6.75038 20.2456V19.8751M6.75038 4.12491H12.7504C14.8215 4.12491 16.5005 5.80387 16.5005 7.87496C16.5005 9.94606 14.8215 11.625 12.7504 11.625H6.75038M6.75038 4.12491V11.625M6.75038 11.625V19.8751M6.75038 11.625H13.1254C15.4036 11.625 17.2505 13.4719 17.2505 15.7501C17.2505 18.0283 15.4036 19.8751 13.1254 19.8751H6.75038M7.49707 4.49421H12.3721C14.236 4.49421 15.7471 6.00538 15.7471 7.8695C15.7471 9.73362 14.236 11.2448 12.3721 11.2448H7.49707V4.49421ZM7.49707 11.9949H12.7471C14.8181 11.9949 16.4971 13.6739 16.4971 15.7452C16.4971 17.8164 14.8181 19.4955 12.7471 19.4955H7.49707V11.9949Z" stroke="currentColor" stroke-width="2" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M6.7491 2.9945V5.24472M17.2494 2.99316V5.24338M2.99756 18.7434V7.49209C2.99756 6.24938 4.00496 5.24197 5.24766 5.24197H18.7475C19.9902 5.24197 20.9976 6.24938 20.9976 7.49209V18.7434M2.99756 18.7434C2.99756 19.9861 4.00496 20.9935 5.24766 20.9935H18.7475C19.9902 20.9935 20.9976 19.9861 20.9976 18.7434M2.99756 18.7434V11.2429C2.99756 10.0002 4.00496 8.99282 5.24766 8.99282H18.7475C19.9902 8.99282 20.9976 10.0002 20.9976 11.2429V18.7434M14.2475 12.7429H16.4975M7.49752 14.9932H11.9975M11.9997 12.7429H12.0053V12.7486H11.9997V12.7429ZM11.9989 17.2437H12.0046V17.2493H11.9989V17.2437ZM9.74858 17.2444H9.75421V17.25H9.74858V17.2444ZM7.49824 17.2437H7.50387V17.2493H7.49824V17.2437ZM14.2485 14.9969H14.2542V15.0025H14.2485V14.9969ZM14.2493 17.2444H14.255V17.25H14.2493V17.2444ZM16.4996 14.9955H16.5052V15.0011H16.4996V14.9955Z" stroke="
|
|
9
|
+
<path d="M6.7491 2.9945V5.24472M17.2494 2.99316V5.24338M2.99756 18.7434V7.49209C2.99756 6.24938 4.00496 5.24197 5.24766 5.24197H18.7475C19.9902 5.24197 20.9976 6.24938 20.9976 7.49209V18.7434M2.99756 18.7434C2.99756 19.9861 4.00496 20.9935 5.24766 20.9935H18.7475C19.9902 20.9935 20.9976 19.9861 20.9976 18.7434M2.99756 18.7434V11.2429C2.99756 10.0002 4.00496 8.99282 5.24766 8.99282H18.7475C19.9902 8.99282 20.9976 10.0002 20.9976 11.2429V18.7434M14.2475 12.7429H16.4975M7.49752 14.9932H11.9975M11.9997 12.7429H12.0053V12.7486H11.9997V12.7429ZM11.9989 17.2437H12.0046V17.2493H11.9989V17.2437ZM9.74858 17.2444H9.75421V17.25H9.74858V17.2444ZM7.49824 17.2437H7.50387V17.2493H7.49824V17.2437ZM14.2485 14.9969H14.2542V15.0025H14.2485V14.9969ZM14.2493 17.2444H14.255V17.25H14.2493V17.2444ZM16.4996 14.9955H16.5052V15.0011H16.4996V14.9955Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M4.49902 11.9983H19.4987M11.9992 5.24808H12.0067V5.25558H11.9992V5.24808ZM12.3742 5.24808C12.3742 5.45521 12.2063 5.62312 11.9992 5.62312C11.7921 5.62312 11.6242 5.45521 11.6242 5.24808C11.6242 5.04096 11.7921 4.87305 11.9992 4.87305C12.2063 4.87305 12.3742 5.04096 12.3742 5.24808ZM11.9998 18.7509H12.0073V18.7584H11.9998V18.7509ZM12.3748 18.7509C12.3748 18.9581 12.2069 19.126 11.9998 19.126C11.7927 19.126 11.6248 18.9581 11.6248 18.7509C11.6248 18.5438 11.7927 18.3759 11.9998 18.3759C12.2069 18.3759 12.3748 18.5438 12.3748 18.7509Z" stroke="
|
|
9
|
+
<path d="M4.49902 11.9983H19.4987M11.9992 5.24808H12.0067V5.25558H11.9992V5.24808ZM12.3742 5.24808C12.3742 5.45521 12.2063 5.62312 11.9992 5.62312C11.7921 5.62312 11.6242 5.45521 11.6242 5.24808C11.6242 5.04096 11.7921 4.87305 11.9992 4.87305C12.2063 4.87305 12.3742 5.04096 12.3742 5.24808ZM11.9998 18.7509H12.0073V18.7584H11.9998V18.7509ZM12.3748 18.7509C12.3748 18.9581 12.2069 19.126 11.9998 19.126C11.7927 19.126 11.6248 18.9581 11.6248 18.7509C11.6248 18.5438 11.7927 18.3759 11.9998 18.3759C12.2069 18.3759 12.3748 18.5438 12.3748 18.7509Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M19.5 14.25V11.625C19.5 9.76104 17.989 8.25 16.125 8.25H14.625C14.0037 8.25 13.5 7.74632 13.5 7.125V5.625C13.5 3.76104 11.989 2.25 10.125 2.25H8.25M8.25 10.5L8.46967 10.2803C8.94214 9.80786 9.75 10.1425 9.75 10.8107V17.251C9.75 17.7227 9.96398 18.1849 10.3899 18.3877C10.8778 18.62 11.4237 18.75 12 18.75C13.4917 18.75 14.7799 17.8791 15.384 16.6179C15.5888 16.1903 15.2316 15.7501 14.7574 15.7501H14.25M8.25 13.5H15.75M10.5 2.25H5.625C5.00368 2.25 4.5 2.75368 4.5 3.375V20.625C4.5 21.2463 5.00368 21.75 5.625 21.75H18.375C18.9963 21.75 19.5 21.2463 19.5 20.625V11.25C19.5 6.27944 15.4706 2.25 10.5 2.25Z" stroke="
|
|
9
|
+
<path d="M19.5 14.25V11.625C19.5 9.76104 17.989 8.25 16.125 8.25H14.625C14.0037 8.25 13.5 7.74632 13.5 7.125V5.625C13.5 3.76104 11.989 2.25 10.125 2.25H8.25M8.25 10.5L8.46967 10.2803C8.94214 9.80786 9.75 10.1425 9.75 10.8107V17.251C9.75 17.7227 9.96398 18.1849 10.3899 18.3877C10.8778 18.62 11.4237 18.75 12 18.75C13.4917 18.75 14.7799 17.8791 15.384 16.6179C15.5888 16.1903 15.2316 15.7501 14.7574 15.7501H14.25M8.25 13.5H15.75M10.5 2.25H5.625C5.00368 2.25 4.5 2.75368 4.5 3.375V20.625C4.5 21.2463 5.00368 21.75 5.625 21.75H18.375C18.9963 21.75 19.5 21.2463 19.5 20.625V11.25C19.5 6.27944 15.4706 2.25 10.5 2.25Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M19.5 14.25V11.625C19.5 9.76104 17.989 8.25 16.125 8.25H14.625C14.0037 8.25 13.5 7.74632 13.5 7.125V5.625C13.5 3.76104 11.989 2.25 10.125 2.25H8.25M12 11.25V18.75M14.25 12.2835C13.5309 12.0984 12.7769 12 12 12C11.5893 12 11.1851 12.0275 10.789 12.0808C10.2532 12.1528 9.81539 12.5594 9.76771 13.098C9.75599 13.2304 9.75 13.3645 9.75 13.5C9.75 13.9642 10.0858 14.3438 10.5249 14.4943L13.4751 15.5057C13.9142 15.6562 14.25 16.0358 14.25 16.5C14.25 16.6355 14.244 16.7696 14.2323 16.902C14.1846 17.4406 13.7468 17.8472 13.211 17.9192C12.8149 17.9725 12.4107 18 12 18C11.2231 18 10.4691 17.9016 9.75 17.7165M10.5 2.25H5.625C5.00368 2.25 4.5 2.75368 4.5 3.375V20.625C4.5 21.2463 5.00368 21.75 5.625 21.75H18.375C18.9963 21.75 19.5 21.2463 19.5 20.625V11.25C19.5 6.27944 15.4706 2.25 10.5 2.25Z" stroke="
|
|
9
|
+
<path d="M19.5 14.25V11.625C19.5 9.76104 17.989 8.25 16.125 8.25H14.625C14.0037 8.25 13.5 7.74632 13.5 7.125V5.625C13.5 3.76104 11.989 2.25 10.125 2.25H8.25M12 11.25V18.75M14.25 12.2835C13.5309 12.0984 12.7769 12 12 12C11.5893 12 11.1851 12.0275 10.789 12.0808C10.2532 12.1528 9.81539 12.5594 9.76771 13.098C9.75599 13.2304 9.75 13.3645 9.75 13.5C9.75 13.9642 10.0858 14.3438 10.5249 14.4943L13.4751 15.5057C13.9142 15.6562 14.25 16.0358 14.25 16.5C14.25 16.6355 14.244 16.7696 14.2323 16.902C14.1846 17.4406 13.7468 17.8472 13.211 17.9192C12.8149 17.9725 12.4107 18 12 18C11.2231 18 10.4691 17.9016 9.75 17.7165M10.5 2.25H5.625C5.00368 2.25 4.5 2.75368 4.5 3.375V20.625C4.5 21.2463 5.00368 21.75 5.625 21.75H18.375C18.9963 21.75 19.5 21.2463 19.5 20.625V11.25C19.5 6.27944 15.4706 2.25 10.5 2.25Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M19.5 14.25V11.625C19.5 9.76104 17.989 8.25 16.125 8.25H14.625C14.0037 8.25 13.5 7.74632 13.5 7.125V5.625C13.5 3.76104 11.989 2.25 10.125 2.25H8.25M8.25 13.875H12.75M8.25 16.125H12.75M14.8713 17.6517C13.6997 19.1161 11.8003 19.1161 10.6287 17.6517C9.45711 16.1872 9.45711 13.8128 10.6287 12.3483C11.8003 10.8839 13.6997 10.8839 14.8713 12.3483M10.5 2.25H5.625C5.00368 2.25 4.5 2.75368 4.5 3.375V20.625C4.5 21.2463 5.00368 21.75 5.625 21.75H18.375C18.9963 21.75 19.5 21.2463 19.5 20.625V11.25C19.5 6.27944 15.4706 2.25 10.5 2.25Z" stroke="
|
|
9
|
+
<path d="M19.5 14.25V11.625C19.5 9.76104 17.989 8.25 16.125 8.25H14.625C14.0037 8.25 13.5 7.74632 13.5 7.125V5.625C13.5 3.76104 11.989 2.25 10.125 2.25H8.25M8.25 13.875H12.75M8.25 16.125H12.75M14.8713 17.6517C13.6997 19.1161 11.8003 19.1161 10.6287 17.6517C9.45711 16.1872 9.45711 13.8128 10.6287 12.3483C11.8003 10.8839 13.6997 10.8839 14.8713 12.3483M10.5 2.25H5.625C5.00368 2.25 4.5 2.75368 4.5 3.375V20.625C4.5 21.2463 5.00368 21.75 5.625 21.75H18.375C18.9963 21.75 19.5 21.2463 19.5 20.625V11.25C19.5 6.27944 15.4706 2.25 10.5 2.25Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M19.5 14.25V11.625C19.5 9.76104 17.989 8.25 16.125 8.25H14.625C14.0037 8.25 13.5 7.74632 13.5 7.125V5.625C13.5 3.76104 11.989 2.25 10.125 2.25H8.25M14.8713 12.1287C13.6997 10.9571 11.8003 10.9571 10.6287 12.1287C9.84361 12.9138 9.58461 14.0257 9.85169 15.0264L10.0147 15.6348C10.2511 16.5171 10.2134 17.4503 9.90673 18.3107L9.75016 18.7498L10.1895 18.5302C10.8686 18.1906 11.6548 18.1347 12.3752 18.3748C13.0955 18.6149 13.8817 18.5591 14.5608 18.2195L15.0002 17.9998M8.25 15.75H12M10.5 2.25H5.625C5.00368 2.25 4.5 2.75368 4.5 3.375V20.625C4.5 21.2463 5.00368 21.75 5.625 21.75H18.375C18.9963 21.75 19.5 21.2463 19.5 20.625V11.25C19.5 6.27944 15.4706 2.25 10.5 2.25Z" stroke="
|
|
9
|
+
<path d="M19.5 14.25V11.625C19.5 9.76104 17.989 8.25 16.125 8.25H14.625C14.0037 8.25 13.5 7.74632 13.5 7.125V5.625C13.5 3.76104 11.989 2.25 10.125 2.25H8.25M14.8713 12.1287C13.6997 10.9571 11.8003 10.9571 10.6287 12.1287C9.84361 12.9138 9.58461 14.0257 9.85169 15.0264L10.0147 15.6348C10.2511 16.5171 10.2134 17.4503 9.90673 18.3107L9.75016 18.7498L10.1895 18.5302C10.8686 18.1906 11.6548 18.1347 12.3752 18.3748C13.0955 18.6149 13.8817 18.5591 14.5608 18.2195L15.0002 17.9998M8.25 15.75H12M10.5 2.25H5.625C5.00368 2.25 4.5 2.75368 4.5 3.375V20.625C4.5 21.2463 5.00368 21.75 5.625 21.75H18.375C18.9963 21.75 19.5 21.2463 19.5 20.625V11.25C19.5 6.27944 15.4706 2.25 10.5 2.25Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M19.5 14.25V11.625C19.5 9.76104 17.989 8.25 16.125 8.25H14.625C14.0037 8.25 13.5 7.74632 13.5 7.125V5.625C13.5 3.76104 11.989 2.25 10.125 2.25H8.25M10.5 11.25H14.25M9.75 13.875H14.25M12 18.75L9.75 16.5H10.125C11.5747 16.5 12.75 15.3247 12.75 13.875C12.75 12.4253 11.5747 11.25 10.125 11.25H9.75M10.5 2.25H5.625C5.00368 2.25 4.5 2.75368 4.5 3.375V20.625C4.5 21.2463 5.00368 21.75 5.625 21.75H18.375C18.9963 21.75 19.5 21.2463 19.5 20.625V11.25C19.5 6.27944 15.4706 2.25 10.5 2.25Z" stroke="
|
|
9
|
+
<path d="M19.5 14.25V11.625C19.5 9.76104 17.989 8.25 16.125 8.25H14.625C14.0037 8.25 13.5 7.74632 13.5 7.125V5.625C13.5 3.76104 11.989 2.25 10.125 2.25H8.25M10.5 11.25H14.25M9.75 13.875H14.25M12 18.75L9.75 16.5H10.125C11.5747 16.5 12.75 15.3247 12.75 13.875C12.75 12.4253 11.5747 11.25 10.125 11.25H9.75M10.5 2.25H5.625C5.00368 2.25 4.5 2.75368 4.5 3.375V20.625C4.5 21.2463 5.00368 21.75 5.625 21.75H18.375C18.9963 21.75 19.5 21.2463 19.5 20.625V11.25C19.5 6.27944 15.4706 2.25 10.5 2.25Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M19.5 14.25V11.625C19.5 9.76104 17.989 8.25 16.125 8.25H14.625C14.0037 8.25 13.5 7.74632 13.5 7.125V5.625C13.5 3.76104 11.989 2.25 10.125 2.25H8.25M9.75 11.25L12 14.25M12 14.25L14.25 11.25M12 14.25V18.75M9.75 15H14.25M9.75 17.25H14.25M10.5 2.25H5.625C5.00368 2.25 4.5 2.75368 4.5 3.375V20.625C4.5 21.2463 5.00368 21.75 5.625 21.75H18.375C18.9963 21.75 19.5 21.2463 19.5 20.625V11.25C19.5 6.27944 15.4706 2.25 10.5 2.25Z" stroke="
|
|
9
|
+
<path d="M19.5 14.25V11.625C19.5 9.76104 17.989 8.25 16.125 8.25H14.625C14.0037 8.25 13.5 7.74632 13.5 7.125V5.625C13.5 3.76104 11.989 2.25 10.125 2.25H8.25M9.75 11.25L12 14.25M12 14.25L14.25 11.25M12 14.25V18.75M9.75 15H14.25M9.75 17.25H14.25M10.5 2.25H5.625C5.00368 2.25 4.5 2.75368 4.5 3.375V20.625C4.5 21.2463 5.00368 21.75 5.625 21.75H18.375C18.9963 21.75 19.5 21.2463 19.5 20.625V11.25C19.5 6.27944 15.4706 2.25 10.5 2.25Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M4.49854 8.24805H19.4982M4.49854 15.749H19.4982" stroke="
|
|
9
|
+
<path d="M4.49854 8.24805H19.4982M4.49854 15.749H19.4982" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M2.24316 4.49316V11.9939M2.24316 11.9939V19.4946M2.24316 11.9939L12.7434 11.9946M12.7434 4.49389V11.9946M12.7434 11.9946V19.4953M17.244 10.8682L19.494 9.3681V19.4941M19.494 19.4941H17.244M19.494 19.4941H21.744" stroke="
|
|
9
|
+
<path d="M2.24316 4.49316V11.9939M2.24316 11.9939V19.4946M2.24316 11.9939L12.7434 11.9946M12.7434 4.49389V11.9946M12.7434 11.9946V19.4953M17.244 10.8682L19.494 9.3681V19.4941M19.494 19.4941H17.244M19.494 19.4941H21.744" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M21.7501 19.5008H16.5001V17.8914C16.5001 17.0391 16.9816 16.26 17.7439 15.8789L20.6335 14.4341C21.285 14.1083 21.7501 13.4791 21.7501 12.7507C21.7501 12.2525 21.7096 11.7637 21.6318 11.2875C21.497 10.463 20.7972 9.86577 19.9644 9.79906C19.5639 9.76697 19.1589 9.75061 18.7501 9.75061C17.9854 9.75061 17.2341 9.80784 16.5001 9.91824M2.24316 4.49316V11.9939M2.24316 11.9939V19.4946M2.24316 11.9939L12.7434 11.9946M12.7434 4.49389V11.9946M12.7434 11.9946V19.4953" stroke="
|
|
9
|
+
<path d="M21.7501 19.5008H16.5001V17.8914C16.5001 17.0391 16.9816 16.26 17.7439 15.8789L20.6335 14.4341C21.285 14.1083 21.7501 13.4791 21.7501 12.7507C21.7501 12.2525 21.7096 11.7637 21.6318 11.2875C21.497 10.463 20.7972 9.86577 19.9644 9.79906C19.5639 9.76697 19.1589 9.75061 18.7501 9.75061C17.9854 9.75061 17.2341 9.80784 16.5001 9.91824M2.24316 4.49316V11.9939M2.24316 11.9939V19.4946M2.24316 11.9939L12.7434 11.9946M12.7434 4.49389V11.9946M12.7434 11.9946V19.4953" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M20.9055 14.6257C21.437 15.3646 21.75 16.2711 21.75 17.2508C21.75 17.5866 21.7132 17.9139 21.6435 18.2287C21.4894 18.9241 20.8486 19.3722 20.1393 19.4374C19.6818 19.4794 19.2184 19.5008 18.75 19.5008C17.9853 19.5008 17.2339 19.4436 16.5 19.3332M20.9055 14.6257C21.437 13.8869 21.75 12.9803 21.75 12.0007C21.75 11.6648 21.7132 11.3376 21.6435 11.0228C21.4894 10.3273 20.8486 9.87924 20.1393 9.8141C19.6818 9.77209 19.2184 9.75061 18.75 9.75061C17.9853 9.75061 17.2339 9.80784 16.5 9.91824M20.9055 14.6257H18M2.24268 4.49316V11.9939M2.24268 11.9939V19.4946M2.24268 11.9939L12.7429 11.9946M12.7429 4.49389V11.9946M12.7429 11.9946V19.4953" stroke="
|
|
9
|
+
<path d="M20.9055 14.6257C21.437 15.3646 21.75 16.2711 21.75 17.2508C21.75 17.5866 21.7132 17.9139 21.6435 18.2287C21.4894 18.9241 20.8486 19.3722 20.1393 19.4374C19.6818 19.4794 19.2184 19.5008 18.75 19.5008C17.9853 19.5008 17.2339 19.4436 16.5 19.3332M20.9055 14.6257C21.437 13.8869 21.75 12.9803 21.75 12.0007C21.75 11.6648 21.7132 11.3376 21.6435 11.0228C21.4894 10.3273 20.8486 9.87924 20.1393 9.8141C19.6818 9.77209 19.2184 9.75061 18.75 9.75061C17.9853 9.75061 17.2339 9.80784 16.5 9.91824M20.9055 14.6257H18M2.24268 4.49316V11.9939M2.24268 11.9939V19.4946M2.24268 11.9939L12.7429 11.9946M12.7429 4.49389V11.9946M12.7429 11.9946V19.4953" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M5.24756 20.2457H9.05106M9.05106 20.2457H12.7474M9.05106 20.2457L14.9438 3.74414M14.9438 3.74414H11.2474M14.9438 3.74414H18.7473" stroke="
|
|
9
|
+
<path d="M5.24756 20.2457H9.05106M9.05106 20.2457H12.7474M9.05106 20.2457L14.9438 3.74414M14.9438 3.74414H11.2474M14.9438 3.74414H18.7473" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M13.1813 8.68025C13.6303 8.89477 14.0511 9.188 14.423 9.55994C15.9219 11.0591 16.1423 13.3528 15.084 15.0855M5.31614 12.3032L3.5592 14.0604C1.80188 15.8179 1.80188 18.6674 3.5592 20.4249C5.31653 22.1825 8.16572 22.1825 9.92304 20.4249L13.0517 17.296M18.6659 11.6811L20.4228 9.92393C22.1802 8.1664 22.1802 5.31689 20.4228 3.55936C18.6655 1.80183 15.8163 1.80183 14.059 3.55936L9.55909 8.05979C9.30075 8.31816 9.08038 8.60014 8.898 8.89877M10.8008 15.3041C10.3518 15.0895 9.93099 14.7963 9.55909 14.4244C9.0674 13.9326 8.71328 13.3554 8.49674 12.7405M15.084 15.0855L20.9908 20.993M15.084 15.0855L8.898 8.89877M2.9912 2.99128L8.898 8.89877" stroke="
|
|
9
|
+
<path d="M13.1813 8.68025C13.6303 8.89477 14.0511 9.188 14.423 9.55994C15.9219 11.0591 16.1423 13.3528 15.084 15.0855M5.31614 12.3032L3.5592 14.0604C1.80188 15.8179 1.80188 18.6674 3.5592 20.4249C5.31653 22.1825 8.16572 22.1825 9.92304 20.4249L13.0517 17.296M18.6659 11.6811L20.4228 9.92393C22.1802 8.1664 22.1802 5.31689 20.4228 3.55936C18.6655 1.80183 15.8163 1.80183 14.059 3.55936L9.55909 8.05979C9.30075 8.31816 9.08038 8.60014 8.898 8.89877M10.8008 15.3041C10.3518 15.0895 9.93099 14.7963 9.55909 14.4244C9.0674 13.9326 8.71328 13.3554 8.49674 12.7405M15.084 15.0855L20.9908 20.993M15.084 15.0855L8.898 8.89877M2.9912 2.99128L8.898 8.89877" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M8.24185 5.99179H20.2416M8.24118 11.9945H20.2409M8.24185 17.9936H20.2416M4.1157 7.49548V3.74512H2.99072M4.1157 7.49548H2.99072M4.1157 7.49548H5.24068M3.32128 10.0715C3.76061 9.63214 4.4729 9.63214 4.91223 10.0715C5.35157 10.5109 5.35157 11.2233 4.91223 11.6627L3.08285 13.4923L5.24182 13.4925M2.99072 15.7446H4.1156C4.73696 15.7446 5.24068 16.2484 5.24068 16.8697C5.24068 17.4911 4.73696 17.9949 4.1156 17.9949H3.74071M3.74071 17.9928H4.1156C4.73696 17.9928 5.24068 18.4966 5.24068 19.1179C5.24068 19.7393 4.73696 20.243 4.1156 20.243H2.99072" stroke="
|
|
9
|
+
<path d="M8.24185 5.99179H20.2416M8.24118 11.9945H20.2409M8.24185 17.9936H20.2416M4.1157 7.49548V3.74512H2.99072M4.1157 7.49548H2.99072M4.1157 7.49548H5.24068M3.32128 10.0715C3.76061 9.63214 4.4729 9.63214 4.91223 10.0715C5.35157 10.5109 5.35157 11.2233 4.91223 11.6627L3.08285 13.4923L5.24182 13.4925M2.99072 15.7446H4.1156C4.73696 15.7446 5.24068 16.2484 5.24068 16.8697C5.24068 17.4911 4.73696 17.9949 4.1156 17.9949H3.74071M3.74071 17.9928H4.1156C4.73696 17.9928 5.24068 18.4966 5.24068 19.1179C5.24068 19.7393 4.73696 20.243 4.1156 20.243H2.99072" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M8.99044 14.9934L14.9903 8.99282M20.9899 11.994C20.9899 13.2624 20.3603 14.3838 19.3966 15.0625C19.598 16.2238 19.2503 17.4618 18.3537 18.3586C17.457 19.2554 16.2192 19.603 15.058 19.4016C14.3793 20.3653 13.2582 20.9949 11.9901 20.9949C10.7219 20.9949 9.60083 20.3654 8.92216 19.4017C7.7608 19.6034 6.52272 19.2557 5.62589 18.3588C4.72906 17.4618 4.38145 16.2236 4.58306 15.0622C3.61963 14.3834 2.99023 13.2622 2.99023 11.994C2.99023 10.7258 3.61968 9.60457 4.58318 8.92582C4.38168 7.76442 4.7293 6.52634 5.62605 5.62949C6.52282 4.73262 7.76077 4.38496 8.92206 4.5865C9.60071 3.62277 10.7219 2.99316 11.9901 2.99316C13.2582 2.99316 14.3793 3.62272 15.058 4.58638C16.2193 4.38474 17.4574 4.73239 18.3542 5.62932C19.251 6.52624 19.5987 7.76443 19.3971 8.92591C20.3605 9.60467 20.9899 10.7258 20.9899 11.994ZM9.74042 9.74289H9.74792V9.75039H9.74042V9.74289ZM10.1154 9.74289C10.1154 9.95002 9.94752 10.1179 9.74042 10.1179C9.53332 10.1179 9.36543 9.95002 9.36543 9.74289C9.36543 9.53576 9.53332 9.36785 9.74042 9.36785C9.94752 9.36785 10.1154 9.53576 10.1154 9.74289ZM14.2403 14.2433H14.2478V14.2508H14.2403V14.2433ZM14.6153 14.2433C14.6153 14.4504 14.4474 14.6184 14.2403 14.6184C14.0332 14.6184 13.8653 14.4504 13.8653 14.2433C13.8653 14.0362 14.0332 13.8683 14.2403 13.8683C14.4474 13.8683 14.6153 14.0362 14.6153 14.2433Z" stroke="
|
|
9
|
+
<path d="M8.99044 14.9934L14.9903 8.99282M20.9899 11.994C20.9899 13.2624 20.3603 14.3838 19.3966 15.0625C19.598 16.2238 19.2503 17.4618 18.3537 18.3586C17.457 19.2554 16.2192 19.603 15.058 19.4016C14.3793 20.3653 13.2582 20.9949 11.9901 20.9949C10.7219 20.9949 9.60083 20.3654 8.92216 19.4017C7.7608 19.6034 6.52272 19.2557 5.62589 18.3588C4.72906 17.4618 4.38145 16.2236 4.58306 15.0622C3.61963 14.3834 2.99023 13.2622 2.99023 11.994C2.99023 10.7258 3.61968 9.60457 4.58318 8.92582C4.38168 7.76442 4.7293 6.52634 5.62605 5.62949C6.52282 4.73262 7.76077 4.38496 8.92206 4.5865C9.60071 3.62277 10.7219 2.99316 11.9901 2.99316C13.2582 2.99316 14.3793 3.62272 15.058 4.58638C16.2193 4.38474 17.4574 4.73239 18.3542 5.62932C19.251 6.52624 19.5987 7.76443 19.3971 8.92591C20.3605 9.60467 20.9899 10.7258 20.9899 11.994ZM9.74042 9.74289H9.74792V9.75039H9.74042V9.74289ZM10.1154 9.74289C10.1154 9.95002 9.94752 10.1179 9.74042 10.1179C9.53332 10.1179 9.36543 9.95002 9.36543 9.74289C9.36543 9.53576 9.53332 9.36785 9.74042 9.36785C9.94752 9.36785 10.1154 9.53576 10.1154 9.74289ZM14.2403 14.2433H14.2478V14.2508H14.2403V14.2433ZM14.6153 14.2433C14.6153 14.4504 14.4474 14.6184 14.2403 14.6184C14.0332 14.6184 13.8653 14.4504 13.8653 14.2433C13.8653 14.0362 14.0332 13.8683 14.2403 13.8683C14.4474 13.8683 14.6153 14.0362 14.6153 14.2433Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M9 20.2475L15 3.74707" stroke="
|
|
9
|
+
<path d="M9 20.2475L15 3.74707" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M11.9997 12.0002C11.894 11.976 11.7882 11.9497 11.6822 11.9213C10.097 11.4966 8.77773 10.6741 7.92138 9.68475C7.04857 8.67637 6.65666 7.49462 6.95428 6.38385C7.54391 4.18325 10.6167 3.09459 13.8174 3.95226C14.8398 4.22622 15.7516 4.66562 16.4999 5.20855M6.42133 17.8115C7.27768 18.8009 8.59697 19.6233 10.1821 20.0481C13.3829 20.9058 16.4557 19.8171 17.0453 17.6165C17.2777 16.7489 17.0895 15.838 16.5801 15.0003M3.75 12.0003H20.2499" stroke="
|
|
9
|
+
<path d="M11.9997 12.0002C11.894 11.976 11.7882 11.9497 11.6822 11.9213C10.097 11.4966 8.77773 10.6741 7.92138 9.68475C7.04857 8.67637 6.65666 7.49462 6.95428 6.38385C7.54391 4.18325 10.6167 3.09459 13.8174 3.95226C14.8398 4.22622 15.7516 4.66562 16.4999 5.20855M6.42133 17.8115C7.27768 18.8009 8.59697 19.6233 10.1821 20.0481C13.3829 20.9058 16.4557 19.8171 17.0453 17.6165C17.2777 16.7489 17.0895 15.838 16.5801 15.0003M3.75 12.0003H20.2499" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M17.9953 3.74414V11.2449C17.9953 14.5589 15.3091 17.2454 11.9954 17.2454C8.6818 17.2454 5.99556 14.5589 5.99556 11.2449V3.74414M3.74561 20.2457H20.2453" stroke="
|
|
9
|
+
<path d="M17.9953 3.74414V11.2449C17.9953 14.5589 15.3091 17.2454 11.9954 17.2454C8.6818 17.2454 5.99556 14.5589 5.99556 11.2449V3.74414M3.74561 20.2457H20.2453" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.2388 3.74902C19.8245 3.74902 19.4887 4.08483 19.4887 4.49906V15H5.54982L8.01949 12.53C8.31238 12.2371 8.31236 11.7622 8.01944 11.4693C7.72653 11.1764 7.25165 11.1764 6.95877 11.4693L3.20889 15.2197C2.91603 15.5126 2.91603 15.9875 3.20889 16.2804L6.95877 20.0307C7.25165 20.3236 7.72653 20.3237 8.01944 20.0308C8.31236 19.7379 8.31238 19.263 8.01949 18.9701L5.54982 16.5001H20.2388C20.653 16.5001 20.9888 16.1643 20.9888 15.75V4.49906C20.9888 4.08483 20.653 3.74902 20.2388 3.74902Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.2388 3.74902C19.8245 3.74902 19.4887 4.08483 19.4887 4.49906V15H5.54982L8.01949 12.53C8.31238 12.2371 8.31236 11.7622 8.01944 11.4693C7.72653 11.1764 7.25165 11.1764 6.95877 11.4693L3.20889 15.2197C2.91603 15.5126 2.91603 15.9875 3.20889 16.2804L6.95877 20.0307C7.25165 20.3236 7.72653 20.3237 8.01944 20.0308C8.31236 19.7379 8.31238 19.263 8.01949 18.9701L5.54982 16.5001H20.2388C20.653 16.5001 20.9888 16.1643 20.9888 15.75V4.49906C20.9888 4.08483 20.653 3.74902 20.2388 3.74902Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.73927 3.74902C4.15349 3.74902 4.48928 4.08483 4.48928 4.49906V15H18.4282L15.9585 12.53C15.6656 12.2371 15.6657 11.7622 15.9586 11.4693C16.2515 11.1764 16.7264 11.1764 17.0193 11.4693L20.7691 15.2197C21.062 15.5126 21.062 15.9875 20.7691 16.2804L17.0193 20.0307C16.7264 20.3236 16.2515 20.3237 15.9586 20.0308C15.6657 19.7379 15.6656 19.263 15.9585 18.9701L18.4282 16.5001H3.73927C3.32505 16.5001 2.98926 16.1643 2.98926 15.75V4.49906C2.98926 4.08483 3.32505 3.74902 3.73927 3.74902Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.73927 3.74902C4.15349 3.74902 4.48928 4.08483 4.48928 4.49906V15H18.4282L15.9585 12.53C15.6656 12.2371 15.6657 11.7622 15.9586 11.4693C16.2515 11.1764 16.7264 11.1764 17.0193 11.4693L20.7691 15.2197C21.062 15.5126 21.062 15.9875 20.7691 16.2804L17.0193 20.0307C16.7264 20.3236 16.2515 20.3237 15.9586 20.0308C15.6657 19.7379 15.6656 19.263 15.9585 18.9701L18.4282 16.5001H3.73927C3.32505 16.5001 2.98926 16.1643 2.98926 15.75V4.49906C2.98926 4.08483 3.32505 3.74902 3.73927 3.74902Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.2397 3.75001C20.2397 4.16423 19.9039 4.50002 19.4897 4.50002L8.98877 4.50002L8.98877 18.4389L11.4588 15.9693C11.7517 15.6764 12.2266 15.6764 12.5195 15.9693C12.8124 16.2622 12.8123 16.7371 12.5194 17.03L8.76906 20.7799C8.47616 21.0727 8.00131 21.0727 7.7084 20.7799L3.95804 17.03C3.66512 16.7371 3.6651 16.2622 3.95799 15.9693C4.25089 15.6764 4.72578 15.6764 5.0187 15.9693L7.4887 18.4389L7.4887 3.75001C7.4887 3.33579 7.8245 3 8.23873 3L19.4897 3C19.9039 3 20.2397 3.33579 20.2397 3.75001Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.2397 3.75001C20.2397 4.16423 19.9039 4.50002 19.4897 4.50002L8.98877 4.50002L8.98877 18.4389L11.4588 15.9693C11.7517 15.6764 12.2266 15.6764 12.5195 15.9693C12.8124 16.2622 12.8123 16.7371 12.5194 17.03L8.76906 20.7799C8.47616 21.0727 8.00131 21.0727 7.7084 20.7799L3.95804 17.03C3.66512 16.7371 3.6651 16.2622 3.95799 15.9693C4.25089 15.6764 4.72578 15.6764 5.0187 15.9693L7.4887 18.4389L7.4887 3.75001C7.4887 3.33579 7.8245 3 8.23873 3L19.4897 3C19.9039 3 20.2397 3.33579 20.2397 3.75001Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.2397 20.249C20.2397 19.8348 19.9039 19.499 19.4897 19.499L8.98877 19.499L8.98877 5.56007L11.4588 8.02975C11.7517 8.32263 12.2266 8.32261 12.5195 8.0297C12.8124 7.73678 12.8123 7.2619 12.5194 6.96902L8.76907 3.21915C8.47616 2.92628 8.00131 2.92628 7.70841 3.21915L3.95805 6.96902C3.66512 7.2619 3.6651 7.73678 3.95799 8.0297C4.25089 8.32261 4.72578 8.32263 5.0187 8.02975L7.4887 5.56007L7.4887 20.249C7.4887 20.6632 7.8245 20.999 8.23873 20.999L19.4897 20.999C19.9039 20.999 20.2397 20.6632 20.2397 20.249Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.2397 20.249C20.2397 19.8348 19.9039 19.499 19.4897 19.499L8.98877 19.499L8.98877 5.56007L11.4588 8.02975C11.7517 8.32263 12.2266 8.32261 12.5195 8.0297C12.8124 7.73678 12.8123 7.2619 12.5194 6.96902L8.76907 3.21915C8.47616 2.92628 8.00131 2.92628 7.70841 3.21915L3.95805 6.96902C3.66512 7.2619 3.6651 7.73678 3.95799 8.0297C4.25089 8.32261 4.72578 8.32263 5.0187 8.02975L7.4887 5.56007L7.4887 20.249C7.4887 20.6632 7.8245 20.999 8.23873 20.999L19.4897 20.999C19.9039 20.999 20.2397 20.6632 20.2397 20.249Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.73828 3.75001C3.73828 4.16423 4.07408 4.50002 4.48832 4.50002L14.9893 4.50002L14.9893 18.4389L12.5193 15.9693C12.2263 15.6764 11.7514 15.6764 11.4586 15.9693C11.1657 16.2622 11.1657 16.7371 11.4586 17.03L15.209 20.7799C15.5019 21.0727 15.9767 21.0727 16.2696 20.7799L20.02 17.03C20.3129 16.7371 20.3129 16.2622 20.02 15.9693C19.7271 15.6764 19.2522 15.6764 18.9593 15.9693L16.4893 18.4389L16.4893 3.75001C16.4893 3.33579 16.1535 3 15.7393 3L4.48832 3C4.07408 3 3.73828 3.33579 3.73828 3.75001Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.73828 3.75001C3.73828 4.16423 4.07408 4.50002 4.48832 4.50002L14.9893 4.50002L14.9893 18.4389L12.5193 15.9693C12.2263 15.6764 11.7514 15.6764 11.4586 15.9693C11.1657 16.2622 11.1657 16.7371 11.4586 17.03L15.209 20.7799C15.5019 21.0727 15.9767 21.0727 16.2696 20.7799L20.02 17.03C20.3129 16.7371 20.3129 16.2622 20.02 15.9693C19.7271 15.6764 19.2522 15.6764 18.9593 15.9693L16.4893 18.4389L16.4893 3.75001C16.4893 3.33579 16.1535 3 15.7393 3L4.48832 3C4.07408 3 3.73828 3.33579 3.73828 3.75001Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.73828 20.249C3.73828 19.8348 4.07408 19.499 4.48832 19.499L14.9893 19.499L14.9893 5.56007L12.5193 8.02975C12.2263 8.32263 11.7514 8.32261 11.4585 8.0297C11.1657 7.73678 11.1657 7.2619 11.4586 6.96902L15.209 3.21915C15.5019 2.92628 15.9767 2.92628 16.2696 3.21915L20.02 6.96902C20.3129 7.2619 20.3129 7.73678 20.02 8.0297C19.7271 8.32261 19.2522 8.32263 18.9593 8.02975L16.4893 5.56007L16.4893 20.249C16.4893 20.6632 16.1535 20.999 15.7393 20.999L4.48832 20.999C4.07408 20.999 3.73828 20.6632 3.73828 20.249Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.73828 20.249C3.73828 19.8348 4.07408 19.499 4.48832 19.499L14.9893 19.499L14.9893 5.56007L12.5193 8.02975C12.2263 8.32263 11.7514 8.32261 11.4585 8.0297C11.1657 7.73678 11.1657 7.2619 11.4586 6.96902L15.209 3.21915C15.5019 2.92628 15.9767 2.92628 16.2696 3.21915L20.02 6.96902C20.3129 7.2619 20.3129 7.73678 20.02 8.0297C19.7271 8.32261 19.2522 8.32263 18.9593 8.02975L16.4893 5.56007L16.4893 20.249C16.4893 20.6632 16.1535 20.999 15.7393 20.999L4.48832 20.999C4.07408 20.999 3.73828 20.6632 3.73828 20.249Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.2388 20.25C19.8245 20.25 19.4887 19.9142 19.4887 19.5L19.4887 8.99902L5.54982 8.99902L8.0195 11.469C8.31238 11.7619 8.31236 12.2368 8.01944 12.5297C7.72653 12.8226 7.25165 12.8226 6.95877 12.5297L3.20889 8.77932C2.91603 8.48642 2.91603 8.01156 3.20889 7.71866L6.95877 3.9683C7.25165 3.67538 7.72653 3.67535 8.01944 3.96825C8.31236 4.26114 8.31238 4.73603 8.0195 5.02896L5.54982 7.49895L20.2388 7.49895C20.653 7.49895 20.9888 7.83476 20.9888 8.24899L20.9888 19.5C20.9888 19.9142 20.653 20.25 20.2388 20.25Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.2388 20.25C19.8245 20.25 19.4887 19.9142 19.4887 19.5L19.4887 8.99902L5.54982 8.99902L8.0195 11.469C8.31238 11.7619 8.31236 12.2368 8.01944 12.5297C7.72653 12.8226 7.25165 12.8226 6.95877 12.5297L3.20889 8.77932C2.91603 8.48642 2.91603 8.01156 3.20889 7.71866L6.95877 3.9683C7.25165 3.67538 7.72653 3.67535 8.01944 3.96825C8.31236 4.26114 8.31238 4.73603 8.0195 5.02896L5.54982 7.49895L20.2388 7.49895C20.653 7.49895 20.9888 7.83476 20.9888 8.24899L20.9888 19.5C20.9888 19.9142 20.653 20.25 20.2388 20.25Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.73927 20.25C4.15349 20.25 4.48928 19.9142 4.48928 19.5L4.48928 8.99902L18.4282 8.99902L15.9585 11.469C15.6656 11.7619 15.6657 12.2368 15.9586 12.5297C16.2515 12.8226 16.7264 12.8226 17.0193 12.5297L20.7691 8.77932C21.062 8.48642 21.062 8.01156 20.7691 7.71866L17.0193 3.9683C16.7264 3.67538 16.2515 3.67535 15.9586 3.96825C15.6657 4.26114 15.6656 4.73603 15.9585 5.02896L18.4282 7.49895L3.73927 7.49895C3.32505 7.49895 2.98926 7.83476 2.98926 8.24899L2.98926 19.5C2.98926 19.9142 3.32505 20.25 3.73927 20.25Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.73927 20.25C4.15349 20.25 4.48928 19.9142 4.48928 19.5L4.48928 8.99902L18.4282 8.99902L15.9585 11.469C15.6656 11.7619 15.6657 12.2368 15.9586 12.5297C16.2515 12.8226 16.7264 12.8226 17.0193 12.5297L20.7691 8.77932C21.062 8.48642 21.062 8.01156 20.7691 7.71866L17.0193 3.9683C16.7264 3.67538 16.2515 3.67535 15.9586 3.96825C15.6657 4.26114 15.6656 4.73603 15.9585 5.02896L18.4282 7.49895L3.73927 7.49895C3.32505 7.49895 2.98926 7.83476 2.98926 8.24899L2.98926 19.5C2.98926 19.9142 3.32505 20.25 3.73927 20.25Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.24609 3.74418C5.24609 3.32994 5.58189 2.99414 5.99611 2.99414H13.121C15.8134 2.99414 17.9959 5.17701 17.9959 7.86958C17.9959 9.26677 17.4082 10.5267 16.4666 11.4156C17.8432 12.3622 18.7459 13.9483 18.7459 15.7453C18.7459 18.645 16.3955 20.9958 13.496 20.9958H5.99611C5.58189 20.9958 5.24609 20.66 5.24609 20.2458V3.74418ZM12.371 10.4949C13.8206 10.4949 14.9959 9.31954 14.9959 7.86958C14.9959 6.41961 13.8206 5.24429 12.371 5.24429H8.2461V10.4949H12.371ZM8.2461 12.745V18.7457H12.746C14.4027 18.7457 15.7459 17.4024 15.7459 15.7453C15.7459 14.0882 14.4027 12.745 12.746 12.745H8.2461Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.24609 3.74418C5.24609 3.32994 5.58189 2.99414 5.99611 2.99414H13.121C15.8134 2.99414 17.9959 5.17701 17.9959 7.86958C17.9959 9.26677 17.4082 10.5267 16.4666 11.4156C17.8432 12.3622 18.7459 13.9483 18.7459 15.7453C18.7459 18.645 16.3955 20.9958 13.496 20.9958H5.99611C5.58189 20.9958 5.24609 20.66 5.24609 20.2458V3.74418ZM12.371 10.4949C13.8206 10.4949 14.9959 9.31954 14.9959 7.86958C14.9959 6.41961 13.8206 5.24429 12.371 5.24429H8.2461V10.4949H12.371ZM8.2461 12.745V18.7457H12.746C14.4027 18.7457 15.7459 17.4024 15.7459 15.7453C15.7459 14.0882 14.4027 12.745 12.746 12.745H8.2461Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M12.0004 11.993C11.5862 11.993 11.2504 12.3288 11.2504 12.7431V12.7487C11.2504 13.1629 11.5862 13.4987 12.0004 13.4987H12.006C12.4202 13.4987 12.756 13.1629 12.756 12.7487V12.7431C12.756 12.3288 12.4202 11.993 12.006 11.993H12.0004Z" fill="
|
|
10
|
-
<path d="M11.9997 16.4935C11.5854 16.4935 11.2496 16.8293 11.2496 17.2435V17.2492C11.2496 17.6634 11.5854 17.9992 11.9997 17.9992H12.0053C12.4195 17.9992 12.7553 17.6634 12.7553 17.2492V17.2435C12.7553 16.8293 12.4195 16.4935 12.0053 16.4935H11.9997Z" fill="
|
|
11
|
-
<path d="M8.99886 17.2443C8.99886 16.83 9.33466 16.4942 9.74889 16.4942H9.75451C10.1687 16.4942 10.5045 16.83 10.5045 17.2443V17.2499C10.5045 17.6641 10.1687 17.9999 9.75451 17.9999H9.74889C9.33466 17.9999 8.99886 17.6641 8.99886 17.2499V17.2443Z" fill="
|
|
12
|
-
<path d="M7.49886 16.4935C7.08462 16.4935 6.74882 16.8293 6.74882 17.2435V17.2492C6.74882 17.6634 7.08462 17.9992 7.49886 17.9992H7.50448C7.91871 17.9992 8.25451 17.6634 8.25451 17.2492V17.2435C8.25451 16.8293 7.91871 16.4935 7.50448 16.4935H7.49886Z" fill="
|
|
13
|
-
<path d="M13.4989 14.9968C13.4989 14.5825 13.8347 14.2467 14.249 14.2467H14.2546C14.6688 14.2467 15.0046 14.5825 15.0046 14.9968V15.0024C15.0046 15.4166 14.6688 15.7524 14.2546 15.7524H14.249C13.8347 15.7524 13.4989 15.4166 13.4989 15.0024V14.9968Z" fill="
|
|
14
|
-
<path d="M14.2497 16.4942C13.8355 16.4942 13.4997 16.83 13.4997 17.2443V17.2499C13.4997 17.6641 13.8355 17.9999 14.2497 17.9999H14.2553C14.6695 17.9999 15.0053 17.6641 15.0053 17.2499V17.2443C15.0053 16.83 14.6695 16.4942 14.2553 16.4942H14.2497Z" fill="
|
|
15
|
-
<path d="M15.7497 14.9953C15.7497 14.5811 16.0855 14.2453 16.4997 14.2453H16.5053C16.9196 14.2453 17.2554 14.5811 17.2554 14.9953V15.0009C17.2554 15.4152 16.9196 15.751 16.5053 15.751H16.4997C16.0855 15.751 15.7497 15.4152 15.7497 15.0009V14.9953Z" fill="
|
|
16
|
-
<path d="M13.4981 12.7431C13.4981 12.3288 13.8339 11.993 14.2481 11.993H16.4981C16.9124 11.993 17.2482 12.3288 17.2482 12.7431C17.2482 13.1573 16.9124 13.4931 16.4981 13.4931H14.2481C13.8339 13.4931 13.4981 13.1573 13.4981 12.7431Z" fill="
|
|
17
|
-
<path d="M6.74811 14.9933C6.74811 14.5791 7.08391 14.2432 7.49815 14.2432H11.9981C12.4124 14.2432 12.7482 14.5791 12.7482 14.9933C12.7482 15.4075 12.4124 15.7433 11.9981 15.7433H7.49815C7.08391 15.7433 6.74811 15.4075 6.74811 14.9933Z" fill="
|
|
18
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M18 2.9932C18 2.57897 17.6642 2.24316 17.2499 2.24316C16.8357 2.24316 16.4999 2.57897 16.4999 2.9932V4.49212H7.49963V2.99454C7.49963 2.58031 7.16383 2.2445 6.7496 2.2445C6.33537 2.2445 5.99957 2.58031 5.99957 2.99454V4.49212H5.24818C3.59125 4.49212 2.24805 5.83534 2.24805 7.49228V18.7436C2.24805 20.4005 3.59125 21.7437 5.24818 21.7437H18.748C20.4049 21.7437 21.7481 20.4005 21.7481 18.7436V7.49228C21.7481 5.83534 20.4049 4.49212 18.748 4.49212H18V2.9932ZM3.74811 18.7436V11.2431C3.74811 10.4147 4.41971 9.74304 5.24818 9.74304H18.748C19.5764 9.74304 20.248 10.4147 20.248 11.2431V18.7436C20.248 19.572 19.5764 20.2436 18.748 20.2436H5.24818C4.41972 20.2436 3.74811 19.572 3.74811 18.7436Z" fill="
|
|
9
|
+
<path d="M12.0004 11.993C11.5862 11.993 11.2504 12.3288 11.2504 12.7431V12.7487C11.2504 13.1629 11.5862 13.4987 12.0004 13.4987H12.006C12.4202 13.4987 12.756 13.1629 12.756 12.7487V12.7431C12.756 12.3288 12.4202 11.993 12.006 11.993H12.0004Z" fill="currentColor"/>
|
|
10
|
+
<path d="M11.9997 16.4935C11.5854 16.4935 11.2496 16.8293 11.2496 17.2435V17.2492C11.2496 17.6634 11.5854 17.9992 11.9997 17.9992H12.0053C12.4195 17.9992 12.7553 17.6634 12.7553 17.2492V17.2435C12.7553 16.8293 12.4195 16.4935 12.0053 16.4935H11.9997Z" fill="currentColor"/>
|
|
11
|
+
<path d="M8.99886 17.2443C8.99886 16.83 9.33466 16.4942 9.74889 16.4942H9.75451C10.1687 16.4942 10.5045 16.83 10.5045 17.2443V17.2499C10.5045 17.6641 10.1687 17.9999 9.75451 17.9999H9.74889C9.33466 17.9999 8.99886 17.6641 8.99886 17.2499V17.2443Z" fill="currentColor"/>
|
|
12
|
+
<path d="M7.49886 16.4935C7.08462 16.4935 6.74882 16.8293 6.74882 17.2435V17.2492C6.74882 17.6634 7.08462 17.9992 7.49886 17.9992H7.50448C7.91871 17.9992 8.25451 17.6634 8.25451 17.2492V17.2435C8.25451 16.8293 7.91871 16.4935 7.50448 16.4935H7.49886Z" fill="currentColor"/>
|
|
13
|
+
<path d="M13.4989 14.9968C13.4989 14.5825 13.8347 14.2467 14.249 14.2467H14.2546C14.6688 14.2467 15.0046 14.5825 15.0046 14.9968V15.0024C15.0046 15.4166 14.6688 15.7524 14.2546 15.7524H14.249C13.8347 15.7524 13.4989 15.4166 13.4989 15.0024V14.9968Z" fill="currentColor"/>
|
|
14
|
+
<path d="M14.2497 16.4942C13.8355 16.4942 13.4997 16.83 13.4997 17.2443V17.2499C13.4997 17.6641 13.8355 17.9999 14.2497 17.9999H14.2553C14.6695 17.9999 15.0053 17.6641 15.0053 17.2499V17.2443C15.0053 16.83 14.6695 16.4942 14.2553 16.4942H14.2497Z" fill="currentColor"/>
|
|
15
|
+
<path d="M15.7497 14.9953C15.7497 14.5811 16.0855 14.2453 16.4997 14.2453H16.5053C16.9196 14.2453 17.2554 14.5811 17.2554 14.9953V15.0009C17.2554 15.4152 16.9196 15.751 16.5053 15.751H16.4997C16.0855 15.751 15.7497 15.4152 15.7497 15.0009V14.9953Z" fill="currentColor"/>
|
|
16
|
+
<path d="M13.4981 12.7431C13.4981 12.3288 13.8339 11.993 14.2481 11.993H16.4981C16.9124 11.993 17.2482 12.3288 17.2482 12.7431C17.2482 13.1573 16.9124 13.4931 16.4981 13.4931H14.2481C13.8339 13.4931 13.4981 13.1573 13.4981 12.7431Z" fill="currentColor"/>
|
|
17
|
+
<path d="M6.74811 14.9933C6.74811 14.5791 7.08391 14.2432 7.49815 14.2432H11.9981C12.4124 14.2432 12.7482 14.5791 12.7482 14.9933C12.7482 15.4075 12.4124 15.7433 11.9981 15.7433H7.49815C7.08391 15.7433 6.74811 15.4075 6.74811 14.9933Z" fill="currentColor"/>
|
|
18
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M18 2.9932C18 2.57897 17.6642 2.24316 17.2499 2.24316C16.8357 2.24316 16.4999 2.57897 16.4999 2.9932V4.49212H7.49963V2.99454C7.49963 2.58031 7.16383 2.2445 6.7496 2.2445C6.33537 2.2445 5.99957 2.58031 5.99957 2.99454V4.49212H5.24818C3.59125 4.49212 2.24805 5.83534 2.24805 7.49228V18.7436C2.24805 20.4005 3.59125 21.7437 5.24818 21.7437H18.748C20.4049 21.7437 21.7481 20.4005 21.7481 18.7436V7.49228C21.7481 5.83534 20.4049 4.49212 18.748 4.49212H18V2.9932ZM3.74811 18.7436V11.2431C3.74811 10.4147 4.41971 9.74304 5.24818 9.74304H18.748C19.5764 9.74304 20.248 10.4147 20.248 11.2431V18.7436C20.248 19.572 19.5764 20.2436 18.748 20.2436H5.24818C4.41972 20.2436 3.74811 19.572 3.74811 18.7436Z" fill="currentColor"/>
|
|
19
19
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.8737 5.24812C10.8737 4.62682 11.3773 4.12305 11.9987 4.12305C12.6201 4.12305 13.1237 4.62682 13.1237 5.24812C13.1237 5.86942 12.6201 6.3732 11.9987 6.3732C11.3773 6.3732 10.8737 5.86942 10.8737 5.24812ZM3.74854 11.9983C3.74854 11.5841 4.08433 11.2483 4.49855 11.2483H19.4983C19.9125 11.2483 20.2483 11.5841 20.2483 11.9983C20.2483 12.4126 19.9125 12.7484 19.4983 12.7484H4.49855C4.08433 12.7484 3.74854 12.4126 3.74854 11.9983ZM10.8743 18.751C10.8743 18.1297 11.378 17.6259 11.9994 17.6259C12.6207 17.6259 13.1244 18.1297 13.1244 18.751C13.1244 19.3723 12.6207 19.8761 11.9994 19.8761C11.378 19.8761 10.8743 19.3723 10.8743 18.751Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.8737 5.24812C10.8737 4.62682 11.3773 4.12305 11.9987 4.12305C12.6201 4.12305 13.1237 4.62682 13.1237 5.24812C13.1237 5.86942 12.6201 6.3732 11.9987 6.3732C11.3773 6.3732 10.8737 5.86942 10.8737 5.24812ZM3.74854 11.9983C3.74854 11.5841 4.08433 11.2483 4.49855 11.2483H19.4983C19.9125 11.2483 20.2483 11.5841 20.2483 11.9983C20.2483 12.4126 19.9125 12.7484 19.4983 12.7484H4.49855C4.08433 12.7484 3.74854 12.4126 3.74854 11.9983ZM10.8743 18.751C10.8743 18.1297 11.378 17.6259 11.9994 17.6259C12.6207 17.6259 13.1244 18.1297 13.1244 18.751C13.1244 19.3723 12.6207 19.8761 11.9994 19.8761C11.378 19.8761 10.8743 19.3723 10.8743 18.751Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75 3.375C3.75 2.33947 4.58947 1.5 5.625 1.5H9C11.0711 1.5 12.75 3.17893 12.75 5.25V7.125C12.75 8.16053 13.5895 9 14.625 9H16.5C18.5711 9 20.25 10.6789 20.25 12.75V20.625C20.25 21.6605 19.4105 22.5 18.375 22.5H5.625C4.58947 22.5 3.75 21.6605 3.75 20.625V3.375ZM14.25 5.25C14.25 3.93695 13.768 2.73648 12.9712 1.8159C16.3701 2.70377 19.0462 5.37988 19.9341 8.77881C19.0135 7.98204 17.8131 7.5 16.5 7.5H14.625C14.4179 7.5 14.25 7.33211 14.25 7.125V5.25ZM10.5 10.8106C10.5 9.47427 8.88429 8.80502 7.93934 9.74996L7.71967 9.96963C7.42678 10.2625 7.42678 10.7374 7.71967 11.0303C8.01256 11.3232 8.48744 11.3232 8.78033 11.0303L9 10.8106L9 12.75H8.25C7.83579 12.75 7.5 13.0858 7.5 13.5C7.5 13.9143 7.83579 14.25 8.25 14.25H9V17.2509C9 17.9211 9.30725 18.7029 10.0675 19.0649C10.6539 19.3441 11.3098 19.5 12 19.5C13.7911 19.5 15.3364 18.4535 16.0604 16.9419C16.2935 16.4553 16.2019 15.9413 15.9247 15.5728C15.6576 15.2176 15.226 15 14.7574 15H14.25C13.8358 15 13.5 15.3358 13.5 15.75C13.5 16.1643 13.8358 16.5 14.25 16.5H14.5988C14.0793 17.3979 13.1093 18 12 18C11.5376 18 11.1016 17.8959 10.7123 17.7105C10.6207 17.6669 10.5 17.5243 10.5 17.2509V14.25H15.75C16.1642 14.25 16.5 13.9143 16.5 13.5C16.5 13.0858 16.1642 12.75 15.75 12.75H10.5V10.8106Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75 3.375C3.75 2.33947 4.58947 1.5 5.625 1.5H9C11.0711 1.5 12.75 3.17893 12.75 5.25V7.125C12.75 8.16053 13.5895 9 14.625 9H16.5C18.5711 9 20.25 10.6789 20.25 12.75V20.625C20.25 21.6605 19.4105 22.5 18.375 22.5H5.625C4.58947 22.5 3.75 21.6605 3.75 20.625V3.375ZM14.25 5.25C14.25 3.93695 13.768 2.73648 12.9712 1.8159C16.3701 2.70377 19.0462 5.37988 19.9341 8.77881C19.0135 7.98204 17.8131 7.5 16.5 7.5H14.625C14.4179 7.5 14.25 7.33211 14.25 7.125V5.25ZM10.5 10.8106C10.5 9.47427 8.88429 8.80502 7.93934 9.74996L7.71967 9.96963C7.42678 10.2625 7.42678 10.7374 7.71967 11.0303C8.01256 11.3232 8.48744 11.3232 8.78033 11.0303L9 10.8106L9 12.75H8.25C7.83579 12.75 7.5 13.0858 7.5 13.5C7.5 13.9143 7.83579 14.25 8.25 14.25H9V17.2509C9 17.9211 9.30725 18.7029 10.0675 19.0649C10.6539 19.3441 11.3098 19.5 12 19.5C13.7911 19.5 15.3364 18.4535 16.0604 16.9419C16.2935 16.4553 16.2019 15.9413 15.9247 15.5728C15.6576 15.2176 15.226 15 14.7574 15H14.25C13.8358 15 13.5 15.3358 13.5 15.75C13.5 16.1643 13.8358 16.5 14.25 16.5H14.5988C14.0793 17.3979 13.1093 18 12 18C11.5376 18 11.1016 17.8959 10.7123 17.7105C10.6207 17.6669 10.5 17.5243 10.5 17.2509V14.25H15.75C16.1642 14.25 16.5 13.9143 16.5 13.5C16.5 13.0858 16.1642 12.75 15.75 12.75H10.5V10.8106Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75 3.375C3.75 2.33947 4.58947 1.5 5.625 1.5H9C11.0711 1.5 12.75 3.17893 12.75 5.25V7.125C12.75 8.16053 13.5895 9 14.625 9H16.5C18.5711 9 20.25 10.6789 20.25 12.75V20.625C20.25 21.6605 19.4105 22.5 18.375 22.5H5.625C4.58947 22.5 3.75 21.6605 3.75 20.625V3.375ZM14.25 5.25C14.25 3.93695 13.768 2.73648 12.9712 1.8159C16.3701 2.70377 19.0462 5.37988 19.9341 8.77881C19.0135 7.98204 17.8131 7.5 16.5 7.5H14.625C14.4179 7.5 14.25 7.33211 14.25 7.125V5.25ZM12 10.5C12.4142 10.5 12.75 10.8358 12.75 11.25V11.2784C13.3275 11.3224 13.8914 11.4167 14.4371 11.5572C14.8383 11.6605 15.0798 12.0693 14.9765 12.4705C14.8733 12.8716 14.4644 13.1131 14.0632 13.0099C13.6381 12.9004 13.1995 12.824 12.75 12.7836V14.4642L13.7185 14.7962C14.3886 15.0259 15.0002 15.6451 15.0002 16.5C15.0002 16.6576 14.9932 16.8137 14.9795 16.9681C14.8971 17.8995 14.1491 18.5498 13.3111 18.6625C13.1256 18.6875 12.9385 18.7072 12.75 18.7216V18.75C12.75 19.1642 12.4142 19.5 12 19.5C11.5858 19.5 11.25 19.1642 11.25 18.75V18.7215C10.6726 18.6776 10.1089 18.5832 9.56324 18.4428C9.1621 18.3395 8.92061 17.9307 9.02385 17.5295C9.1271 17.1284 9.53599 16.8869 9.93713 16.9901C10.3621 17.0995 10.8007 17.1759 11.25 17.2164V15.5357L10.2819 15.2038C9.61175 14.9741 9.00018 14.3549 9.00018 13.5C9.00018 13.3424 9.00715 13.1863 9.02081 13.0319C9.10326 12.1005 9.85121 11.4502 10.6893 11.3375C10.8746 11.3125 11.0616 11.2928 11.25 11.2785V11.25C11.25 10.8358 11.5858 10.5 12 10.5ZM10.8892 12.8241C11.0086 12.808 11.1289 12.7945 11.25 12.7836V13.95L10.7683 13.7849C10.5602 13.7135 10.5002 13.5736 10.5002 13.5C10.5002 13.3866 10.5052 13.2746 10.515 13.1641C10.5279 13.0184 10.6555 12.8555 10.8892 12.8241ZM12.75 17.2164V16.0499L13.232 16.2151C13.4402 16.2865 13.5002 16.4264 13.5002 16.5C13.5002 16.6134 13.4952 16.7254 13.4854 16.8359C13.4725 16.9816 13.3448 17.1445 13.1112 17.1759C12.9916 17.192 12.8712 17.2055 12.75 17.2164Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75 3.375C3.75 2.33947 4.58947 1.5 5.625 1.5H9C11.0711 1.5 12.75 3.17893 12.75 5.25V7.125C12.75 8.16053 13.5895 9 14.625 9H16.5C18.5711 9 20.25 10.6789 20.25 12.75V20.625C20.25 21.6605 19.4105 22.5 18.375 22.5H5.625C4.58947 22.5 3.75 21.6605 3.75 20.625V3.375ZM14.25 5.25C14.25 3.93695 13.768 2.73648 12.9712 1.8159C16.3701 2.70377 19.0462 5.37988 19.9341 8.77881C19.0135 7.98204 17.8131 7.5 16.5 7.5H14.625C14.4179 7.5 14.25 7.33211 14.25 7.125V5.25ZM12 10.5C12.4142 10.5 12.75 10.8358 12.75 11.25V11.2784C13.3275 11.3224 13.8914 11.4167 14.4371 11.5572C14.8383 11.6605 15.0798 12.0693 14.9765 12.4705C14.8733 12.8716 14.4644 13.1131 14.0632 13.0099C13.6381 12.9004 13.1995 12.824 12.75 12.7836V14.4642L13.7185 14.7962C14.3886 15.0259 15.0002 15.6451 15.0002 16.5C15.0002 16.6576 14.9932 16.8137 14.9795 16.9681C14.8971 17.8995 14.1491 18.5498 13.3111 18.6625C13.1256 18.6875 12.9385 18.7072 12.75 18.7216V18.75C12.75 19.1642 12.4142 19.5 12 19.5C11.5858 19.5 11.25 19.1642 11.25 18.75V18.7215C10.6726 18.6776 10.1089 18.5832 9.56324 18.4428C9.1621 18.3395 8.92061 17.9307 9.02385 17.5295C9.1271 17.1284 9.53599 16.8869 9.93713 16.9901C10.3621 17.0995 10.8007 17.1759 11.25 17.2164V15.5357L10.2819 15.2038C9.61175 14.9741 9.00018 14.3549 9.00018 13.5C9.00018 13.3424 9.00715 13.1863 9.02081 13.0319C9.10326 12.1005 9.85121 11.4502 10.6893 11.3375C10.8746 11.3125 11.0616 11.2928 11.25 11.2785V11.25C11.25 10.8358 11.5858 10.5 12 10.5ZM10.8892 12.8241C11.0086 12.808 11.1289 12.7945 11.25 12.7836V13.95L10.7683 13.7849C10.5602 13.7135 10.5002 13.5736 10.5002 13.5C10.5002 13.3866 10.5052 13.2746 10.515 13.1641C10.5279 13.0184 10.6555 12.8555 10.8892 12.8241ZM12.75 17.2164V16.0499L13.232 16.2151C13.4402 16.2865 13.5002 16.4264 13.5002 16.5C13.5002 16.6134 13.4952 16.7254 13.4854 16.8359C13.4725 16.9816 13.3448 17.1445 13.1112 17.1759C12.9916 17.192 12.8712 17.2055 12.75 17.2164Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75 3.375C3.75 2.33947 4.58947 1.5 5.625 1.5H9C11.0711 1.5 12.75 3.17893 12.75 5.25V7.125C12.75 8.16053 13.5895 9 14.625 9H16.5C18.5711 9 20.25 10.6789 20.25 12.75V20.625C20.25 21.6605 19.4105 22.5 18.375 22.5H5.625C4.58947 22.5 3.75 21.6605 3.75 20.625V3.375ZM11.2143 12.8169C11.6727 12.2438 12.233 12 12.75 12C13.267 12 13.8273 12.2438 14.2857 12.8169C14.5444 13.1403 15.0164 13.1928 15.3398 12.934C15.6633 12.6752 15.7157 12.2033 15.457 11.8798C14.7438 10.9884 13.7685 10.5 12.75 10.5C11.7315 10.5 10.7562 10.9884 10.043 11.8798C9.74355 12.2542 9.50857 12.6761 9.33807 13.125H8.25C7.83579 13.125 7.5 13.4608 7.5 13.875C7.5 14.2892 7.83579 14.625 8.25 14.625H9.01289C8.9957 14.8745 8.9957 15.1255 9.01289 15.375H8.25C7.83579 15.375 7.5 15.7108 7.5 16.125C7.5 16.5392 7.83579 16.875 8.25 16.875H9.33807C9.50857 17.3239 9.74355 17.7458 10.043 18.1202C10.7562 19.0116 11.7315 19.5 12.75 19.5C13.7685 19.5 14.7438 19.0116 15.457 18.1202C15.7157 17.7967 15.6633 17.3248 15.3398 17.066C15.0164 16.8072 14.5444 16.8597 14.2857 17.1831C13.8273 17.7562 13.267 18 12.75 18C12.233 18 11.6727 17.7562 11.2143 17.1831C11.1362 17.0855 11.0645 16.9825 10.9992 16.875H12.75C13.1642 16.875 13.5 16.5392 13.5 16.125C13.5 15.7108 13.1642 15.375 12.75 15.375H10.5178C10.4941 15.126 10.4941 14.874 10.5178 14.625H12.75C13.1642 14.625 13.5 14.2892 13.5 13.875C13.5 13.4608 13.1642 13.125 12.75 13.125H10.9992C11.0645 13.0175 11.1362 12.9145 11.2143 12.8169Z" fill="
|
|
10
|
-
<path d="M14.25 5.25C14.25 3.93695 13.768 2.73648 12.9712 1.8159C16.3701 2.70377 19.0462 5.37988 19.9341 8.77881C19.0135 7.98204 17.8131 7.5 16.5 7.5H14.625C14.4179 7.5 14.25 7.33211 14.25 7.125V5.25Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75 3.375C3.75 2.33947 4.58947 1.5 5.625 1.5H9C11.0711 1.5 12.75 3.17893 12.75 5.25V7.125C12.75 8.16053 13.5895 9 14.625 9H16.5C18.5711 9 20.25 10.6789 20.25 12.75V20.625C20.25 21.6605 19.4105 22.5 18.375 22.5H5.625C4.58947 22.5 3.75 21.6605 3.75 20.625V3.375ZM11.2143 12.8169C11.6727 12.2438 12.233 12 12.75 12C13.267 12 13.8273 12.2438 14.2857 12.8169C14.5444 13.1403 15.0164 13.1928 15.3398 12.934C15.6633 12.6752 15.7157 12.2033 15.457 11.8798C14.7438 10.9884 13.7685 10.5 12.75 10.5C11.7315 10.5 10.7562 10.9884 10.043 11.8798C9.74355 12.2542 9.50857 12.6761 9.33807 13.125H8.25C7.83579 13.125 7.5 13.4608 7.5 13.875C7.5 14.2892 7.83579 14.625 8.25 14.625H9.01289C8.9957 14.8745 8.9957 15.1255 9.01289 15.375H8.25C7.83579 15.375 7.5 15.7108 7.5 16.125C7.5 16.5392 7.83579 16.875 8.25 16.875H9.33807C9.50857 17.3239 9.74355 17.7458 10.043 18.1202C10.7562 19.0116 11.7315 19.5 12.75 19.5C13.7685 19.5 14.7438 19.0116 15.457 18.1202C15.7157 17.7967 15.6633 17.3248 15.3398 17.066C15.0164 16.8072 14.5444 16.8597 14.2857 17.1831C13.8273 17.7562 13.267 18 12.75 18C12.233 18 11.6727 17.7562 11.2143 17.1831C11.1362 17.0855 11.0645 16.9825 10.9992 16.875H12.75C13.1642 16.875 13.5 16.5392 13.5 16.125C13.5 15.7108 13.1642 15.375 12.75 15.375H10.5178C10.4941 15.126 10.4941 14.874 10.5178 14.625H12.75C13.1642 14.625 13.5 14.2892 13.5 13.875C13.5 13.4608 13.1642 13.125 12.75 13.125H10.9992C11.0645 13.0175 11.1362 12.9145 11.2143 12.8169Z" fill="currentColor"/>
|
|
10
|
+
<path d="M14.25 5.25C14.25 3.93695 13.768 2.73648 12.9712 1.8159C16.3701 2.70377 19.0462 5.37988 19.9341 8.77881C19.0135 7.98204 17.8131 7.5 16.5 7.5H14.625C14.4179 7.5 14.25 7.33211 14.25 7.125V5.25Z" fill="currentColor"/>
|
|
11
11
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75 3.375C3.75 2.33947 4.58947 1.5 5.625 1.5H9C11.0711 1.5 12.75 3.17893 12.75 5.25V7.125C12.75 8.16053 13.5895 9 14.625 9H16.5C18.5711 9 20.25 10.6789 20.25 12.75V20.625C20.25 21.6605 19.4105 22.5 18.375 22.5H5.625C4.58947 22.5 3.75 21.6605 3.75 20.625V3.375ZM14.25 5.25C14.25 3.93695 13.768 2.73648 12.9712 1.8159C16.3701 2.70377 19.0462 5.37988 19.9341 8.77881C19.0135 7.98204 17.8131 7.5 16.5 7.5H14.625C14.4179 7.5 14.25 7.33211 14.25 7.125V5.25ZM10.5762 14.8326C10.3755 14.08 10.571 13.247 11.159 12.659C12.0377 11.7803 13.4623 11.7803 14.341 12.659C14.6339 12.9519 15.1088 12.9519 15.4017 12.659C15.6945 12.3661 15.6945 11.8912 15.4017 11.5983C13.9372 10.1339 11.5628 10.1339 10.0983 11.5983C9.17361 12.5231 8.83365 13.8103 9.07544 15H8.25C7.83579 15 7.5 15.3358 7.5 15.75C7.5 16.1642 7.83579 16.5 8.25 16.5H9.40607C9.4482 17.0258 9.37912 17.5572 9.20028 18.0588L9.04371 18.498C8.94089 18.7864 9.0237 19.1083 9.25291 19.3113C9.48213 19.5143 9.81172 19.5576 10.0856 19.4206L10.5249 19.201C11.0261 18.9504 11.6064 18.9091 12.138 19.0863C13.047 19.3893 14.0392 19.3188 14.8962 18.8903L15.3356 18.6706C15.7061 18.4854 15.8562 18.0349 15.671 17.6644C15.4857 17.2939 15.0352 17.1438 14.6647 17.329L14.2254 17.5487C13.7242 17.7993 13.144 17.8405 12.6123 17.6633C12.0453 17.4743 11.4459 17.4306 10.8672 17.5285C10.9149 17.1879 10.9291 16.8434 10.9095 16.5H12C12.4142 16.5 12.75 16.1642 12.75 15.75C12.75 15.3358 12.4142 15 12 15H10.6211L10.5763 14.833L10.5762 14.8326Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75 3.375C3.75 2.33947 4.58947 1.5 5.625 1.5H9C11.0711 1.5 12.75 3.17893 12.75 5.25V7.125C12.75 8.16053 13.5895 9 14.625 9H16.5C18.5711 9 20.25 10.6789 20.25 12.75V20.625C20.25 21.6605 19.4105 22.5 18.375 22.5H5.625C4.58947 22.5 3.75 21.6605 3.75 20.625V3.375ZM14.25 5.25C14.25 3.93695 13.768 2.73648 12.9712 1.8159C16.3701 2.70377 19.0462 5.37988 19.9341 8.77881C19.0135 7.98204 17.8131 7.5 16.5 7.5H14.625C14.4179 7.5 14.25 7.33211 14.25 7.125V5.25ZM10.5762 14.8326C10.3755 14.08 10.571 13.247 11.159 12.659C12.0377 11.7803 13.4623 11.7803 14.341 12.659C14.6339 12.9519 15.1088 12.9519 15.4017 12.659C15.6945 12.3661 15.6945 11.8912 15.4017 11.5983C13.9372 10.1339 11.5628 10.1339 10.0983 11.5983C9.17361 12.5231 8.83365 13.8103 9.07544 15H8.25C7.83579 15 7.5 15.3358 7.5 15.75C7.5 16.1642 7.83579 16.5 8.25 16.5H9.40607C9.4482 17.0258 9.37912 17.5572 9.20028 18.0588L9.04371 18.498C8.94089 18.7864 9.0237 19.1083 9.25291 19.3113C9.48213 19.5143 9.81172 19.5576 10.0856 19.4206L10.5249 19.201C11.0261 18.9504 11.6064 18.9091 12.138 19.0863C13.047 19.3893 14.0392 19.3188 14.8962 18.8903L15.3356 18.6706C15.7061 18.4854 15.8562 18.0349 15.671 17.6644C15.4857 17.2939 15.0352 17.1438 14.6647 17.329L14.2254 17.5487C13.7242 17.7993 13.144 17.8405 12.6123 17.6633C12.0453 17.4743 11.4459 17.4306 10.8672 17.5285C10.9149 17.1879 10.9291 16.8434 10.9095 16.5H12C12.4142 16.5 12.75 16.1642 12.75 15.75C12.75 15.3358 12.4142 15 12 15H10.6211L10.5763 14.833L10.5762 14.8326Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75 3.375C3.75 2.33947 4.58947 1.5 5.625 1.5H9C11.0711 1.5 12.75 3.17893 12.75 5.25V7.125C12.75 8.16053 13.5895 9 14.625 9H16.5C18.5711 9 20.25 10.6789 20.25 12.75V20.625C20.25 21.6605 19.4105 22.5 18.375 22.5H5.625C4.58947 22.5 3.75 21.6605 3.75 20.625V3.375ZM14.25 5.25C14.25 3.93695 13.768 2.73648 12.9712 1.8159C16.3701 2.70377 19.0462 5.37988 19.9341 8.77881C19.0135 7.98204 17.8131 7.5 16.5 7.5H14.625C14.4179 7.5 14.25 7.33211 14.25 7.125V5.25ZM9.75002 10.5C9.33581 10.5 9.00002 10.8358 9.00002 11.25C9.00002 11.6642 9.33581 12 9.75002 12H10.125C10.8939 12 11.5547 12.4628 11.844 13.125H9.75002C9.33581 13.125 9.00002 13.4608 9.00002 13.875C9.00002 14.2892 9.33581 14.625 9.75002 14.625H11.844C11.5547 15.2872 10.8939 15.75 10.125 15.75H9.75002C9.44668 15.75 9.1732 15.9327 9.05711 16.213C8.94103 16.4932 9.00519 16.8158 9.21969 17.0303L11.4697 19.2803C11.7626 19.5732 12.2375 19.5732 12.5304 19.2803C12.8232 18.9874 12.8232 18.5126 12.5304 18.2197L11.3367 17.026C12.375 16.6264 13.166 15.7284 13.4164 14.625H14.25C14.6642 14.625 15 14.2892 15 13.875C15 13.4608 14.6642 13.125 14.25 13.125H13.4164C13.3238 12.717 13.1573 12.337 12.9317 12H14.25C14.6642 12 15 11.6642 15 11.25C15 10.8358 14.6642 10.5 14.25 10.5H10.5C10.4593 10.5 10.4193 10.5033 10.3803 10.5095C10.296 10.5032 10.2109 10.5 10.125 10.5H9.75002Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75 3.375C3.75 2.33947 4.58947 1.5 5.625 1.5H9C11.0711 1.5 12.75 3.17893 12.75 5.25V7.125C12.75 8.16053 13.5895 9 14.625 9H16.5C18.5711 9 20.25 10.6789 20.25 12.75V20.625C20.25 21.6605 19.4105 22.5 18.375 22.5H5.625C4.58947 22.5 3.75 21.6605 3.75 20.625V3.375ZM14.25 5.25C14.25 3.93695 13.768 2.73648 12.9712 1.8159C16.3701 2.70377 19.0462 5.37988 19.9341 8.77881C19.0135 7.98204 17.8131 7.5 16.5 7.5H14.625C14.4179 7.5 14.25 7.33211 14.25 7.125V5.25ZM9.75002 10.5C9.33581 10.5 9.00002 10.8358 9.00002 11.25C9.00002 11.6642 9.33581 12 9.75002 12H10.125C10.8939 12 11.5547 12.4628 11.844 13.125H9.75002C9.33581 13.125 9.00002 13.4608 9.00002 13.875C9.00002 14.2892 9.33581 14.625 9.75002 14.625H11.844C11.5547 15.2872 10.8939 15.75 10.125 15.75H9.75002C9.44668 15.75 9.1732 15.9327 9.05711 16.213C8.94103 16.4932 9.00519 16.8158 9.21969 17.0303L11.4697 19.2803C11.7626 19.5732 12.2375 19.5732 12.5304 19.2803C12.8232 18.9874 12.8232 18.5126 12.5304 18.2197L11.3367 17.026C12.375 16.6264 13.166 15.7284 13.4164 14.625H14.25C14.6642 14.625 15 14.2892 15 13.875C15 13.4608 14.6642 13.125 14.25 13.125H13.4164C13.3238 12.717 13.1573 12.337 12.9317 12H14.25C14.6642 12 15 11.6642 15 11.25C15 10.8358 14.6642 10.5 14.25 10.5H10.5C10.4593 10.5 10.4193 10.5033 10.3803 10.5095C10.296 10.5032 10.2109 10.5 10.125 10.5H9.75002Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75 3.375C3.75 2.33947 4.58947 1.5 5.625 1.5H9C11.0711 1.5 12.75 3.17893 12.75 5.25V7.125C12.75 8.16053 13.5895 9 14.625 9H16.5C18.5711 9 20.25 10.6789 20.25 12.75V20.625C20.25 21.6605 19.4105 22.5 18.375 22.5H5.625C4.58947 22.5 3.75 21.6605 3.75 20.625V3.375ZM14.25 5.25C14.25 3.93695 13.768 2.73648 12.9712 1.8159C16.3701 2.70377 19.0462 5.37988 19.9341 8.77881C19.0135 7.98204 17.8131 7.5 16.5 7.5H14.625C14.4179 7.5 14.25 7.33211 14.25 7.125V5.25ZM10.35 10.8C10.1015 10.4687 9.63141 10.4015 9.30004 10.65C8.96867 10.8986 8.90152 11.3687 9.15004 11.7L11.0625 14.25H9.75004C9.33583 14.25 9.00004 14.5858 9.00004 15C9.00004 15.4143 9.33583 15.75 9.75004 15.75H11.25V16.5H9.75004C9.33583 16.5 9.00004 16.8358 9.00004 17.25C9.00004 17.6643 9.33583 18 9.75004 18H11.25V18.75C11.25 19.1643 11.5858 19.5 12 19.5C12.4143 19.5 12.75 19.1643 12.75 18.75V18H14.25C14.6643 18 15 17.6643 15 17.25C15 16.8358 14.6643 16.5 14.25 16.5H12.75V15.75H14.25C14.6643 15.75 15 15.4143 15 15C15 14.5858 14.6643 14.25 14.25 14.25H12.9375L14.85 11.7C15.0986 11.3687 15.0314 10.8986 14.7 10.65C14.3687 10.4015 13.8986 10.4687 13.65 10.8L12 13L10.35 10.8Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75 3.375C3.75 2.33947 4.58947 1.5 5.625 1.5H9C11.0711 1.5 12.75 3.17893 12.75 5.25V7.125C12.75 8.16053 13.5895 9 14.625 9H16.5C18.5711 9 20.25 10.6789 20.25 12.75V20.625C20.25 21.6605 19.4105 22.5 18.375 22.5H5.625C4.58947 22.5 3.75 21.6605 3.75 20.625V3.375ZM14.25 5.25C14.25 3.93695 13.768 2.73648 12.9712 1.8159C16.3701 2.70377 19.0462 5.37988 19.9341 8.77881C19.0135 7.98204 17.8131 7.5 16.5 7.5H14.625C14.4179 7.5 14.25 7.33211 14.25 7.125V5.25ZM10.35 10.8C10.1015 10.4687 9.63141 10.4015 9.30004 10.65C8.96867 10.8986 8.90152 11.3687 9.15004 11.7L11.0625 14.25H9.75004C9.33583 14.25 9.00004 14.5858 9.00004 15C9.00004 15.4143 9.33583 15.75 9.75004 15.75H11.25V16.5H9.75004C9.33583 16.5 9.00004 16.8358 9.00004 17.25C9.00004 17.6643 9.33583 18 9.75004 18H11.25V18.75C11.25 19.1643 11.5858 19.5 12 19.5C12.4143 19.5 12.75 19.1643 12.75 18.75V18H14.25C14.6643 18 15 17.6643 15 17.25C15 16.8358 14.6643 16.5 14.25 16.5H12.75V15.75H14.25C14.6643 15.75 15 15.4143 15 15C15 14.5858 14.6643 14.25 14.25 14.25H12.9375L14.85 11.7C15.0986 11.3687 15.0314 10.8986 14.7 10.65C14.3687 10.4015 13.8986 10.4687 13.65 10.8L12 13L10.35 10.8Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.74805 8.24809C3.74805 7.83385 4.08384 7.49805 4.49807 7.49805H19.4978C19.912 7.49805 20.2478 7.83385 20.2478 8.24809C20.2478 8.66232 19.912 8.99813 19.4978 8.99813H4.49807C4.08384 8.99813 3.74805 8.66232 3.74805 8.24809Z" fill="
|
|
10
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.74805 15.7491C3.74805 15.3348 4.08384 14.999 4.49807 14.999H19.4978C19.912 14.999 20.2478 15.3348 20.2478 15.7491C20.2478 16.1633 19.912 16.4991 19.4978 16.4991H4.49807C4.08384 16.4991 3.74805 16.1633 3.74805 15.7491Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.74805 8.24809C3.74805 7.83385 4.08384 7.49805 4.49807 7.49805H19.4978C19.912 7.49805 20.2478 7.83385 20.2478 8.24809C20.2478 8.66232 19.912 8.99813 19.4978 8.99813H4.49807C4.08384 8.99813 3.74805 8.66232 3.74805 8.24809Z" fill="currentColor"/>
|
|
10
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.74805 15.7491C3.74805 15.3348 4.08384 14.999 4.49807 14.999H19.4978C19.912 14.999 20.2478 15.3348 20.2478 15.7491C20.2478 16.1633 19.912 16.4991 19.4978 16.4991H4.49807C4.08384 16.4991 3.74805 16.1633 3.74805 15.7491Z" fill="currentColor"/>
|
|
11
11
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.24319 3.74316C2.65741 3.74316 2.99321 4.07897 2.99321 4.4932V11.2439H11.9934V4.49393C11.9934 4.07969 12.3292 3.74389 12.7434 3.74389C13.1577 3.74389 13.4934 4.07969 13.4934 4.49393V19.4954C13.4934 19.9096 13.1577 20.2454 12.7434 20.2454C12.3292 20.2454 11.9934 19.9096 11.9934 19.4954V12.744H2.99321V19.4946C2.99321 19.9089 2.65741 20.2447 2.24319 20.2447C1.82896 20.2447 1.49316 19.9089 1.49316 19.4946V4.4932C1.49316 4.07897 1.82896 3.74316 2.24319 3.74316ZM19.8479 8.70685C20.0918 8.83736 20.244 9.09153 20.244 9.36814V18.7441H21.744C22.1582 18.7441 22.494 19.0799 22.494 19.4941C22.494 19.9084 22.1582 20.2442 21.744 20.2442H17.244C16.8298 20.2442 16.494 19.9084 16.494 19.4941C16.494 19.0799 16.8298 18.7441 17.244 18.7441H18.744V10.7697L17.6601 11.4923C17.3155 11.7221 16.8498 11.629 16.62 11.2844C16.3902 10.9397 16.4833 10.474 16.828 10.2442L19.0779 8.74409C19.3081 8.59064 19.604 8.57633 19.8479 8.70685Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.24319 3.74316C2.65741 3.74316 2.99321 4.07897 2.99321 4.4932V11.2439H11.9934V4.49393C11.9934 4.07969 12.3292 3.74389 12.7434 3.74389C13.1577 3.74389 13.4934 4.07969 13.4934 4.49393V19.4954C13.4934 19.9096 13.1577 20.2454 12.7434 20.2454C12.3292 20.2454 11.9934 19.9096 11.9934 19.4954V12.744H2.99321V19.4946C2.99321 19.9089 2.65741 20.2447 2.24319 20.2447C1.82896 20.2447 1.49316 19.9089 1.49316 19.4946V4.4932C1.49316 4.07897 1.82896 3.74316 2.24319 3.74316ZM19.8479 8.70685C20.0918 8.83736 20.244 9.09153 20.244 9.36814V18.7441H21.744C22.1582 18.7441 22.494 19.0799 22.494 19.4941C22.494 19.9084 22.1582 20.2442 21.744 20.2442H17.244C16.8298 20.2442 16.494 19.9084 16.494 19.4941C16.494 19.0799 16.8298 18.7441 17.244 18.7441H18.744V10.7697L17.6601 11.4923C17.3155 11.7221 16.8498 11.629 16.62 11.2844C16.3902 10.9397 16.4833 10.474 16.828 10.2442L19.0779 8.74409C19.3081 8.59064 19.604 8.57633 19.8479 8.70685Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.24609 3.74316C2.66031 3.74316 2.99609 4.07896 2.99609 4.49318V11.2439H11.9963V4.49318C11.9963 4.07896 12.3321 3.74316 12.7463 3.74316C13.1605 3.74316 13.4963 4.07896 13.4963 4.49318V19.4946C13.4963 19.9089 13.1605 20.2446 12.7463 20.2446C12.3321 20.2446 11.9963 19.9089 11.9963 19.4946V12.7439H2.99609V19.4946C2.99609 19.9089 2.66031 20.2446 2.24609 20.2446C1.83188 20.2446 1.49609 19.9089 1.49609 19.4946V4.49318C1.49609 4.07896 1.83188 3.74316 2.24609 3.74316ZM18.7502 10.5C18.023 10.5 17.3089 10.5544 16.6118 10.6592C16.2022 10.7209 15.8202 10.4387 15.7586 10.0291C15.6969 9.61951 15.979 9.23751 16.3887 9.17589C17.1594 9.05995 17.948 8.99992 18.7502 8.99992C19.179 8.99992 19.604 9.01707 20.0244 9.05075C21.1727 9.14274 22.1771 9.97353 22.3721 11.1658C22.4564 11.6819 22.5002 12.2111 22.5002 12.75C22.5002 13.815 21.824 14.6767 20.969 15.1042L18.0794 16.549C17.5712 16.8031 17.2502 17.3225 17.2502 17.8907V18.7502H21.7502C22.1644 18.7502 22.5002 19.0859 22.5002 19.5002C22.5002 19.9144 22.1644 20.2502 21.7502 20.2502H16.5002C16.086 20.2502 15.7502 19.9144 15.7502 19.5002V17.8907C15.7502 16.7544 16.3922 15.7155 17.4086 15.2074L20.2981 13.7625C20.7461 13.5385 21.0002 13.142 21.0002 12.75C21.0002 12.2925 20.963 11.8442 20.8917 11.4078C20.817 10.9511 20.4219 10.5874 19.9046 10.546C19.524 10.5155 19.139 10.5 18.7502 10.5Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.24609 3.74316C2.66031 3.74316 2.99609 4.07896 2.99609 4.49318V11.2439H11.9963V4.49318C11.9963 4.07896 12.3321 3.74316 12.7463 3.74316C13.1605 3.74316 13.4963 4.07896 13.4963 4.49318V19.4946C13.4963 19.9089 13.1605 20.2446 12.7463 20.2446C12.3321 20.2446 11.9963 19.9089 11.9963 19.4946V12.7439H2.99609V19.4946C2.99609 19.9089 2.66031 20.2446 2.24609 20.2446C1.83188 20.2446 1.49609 19.9089 1.49609 19.4946V4.49318C1.49609 4.07896 1.83188 3.74316 2.24609 3.74316ZM18.7502 10.5C18.023 10.5 17.3089 10.5544 16.6118 10.6592C16.2022 10.7209 15.8202 10.4387 15.7586 10.0291C15.6969 9.61951 15.979 9.23751 16.3887 9.17589C17.1594 9.05995 17.948 8.99992 18.7502 8.99992C19.179 8.99992 19.604 9.01707 20.0244 9.05075C21.1727 9.14274 22.1771 9.97353 22.3721 11.1658C22.4564 11.6819 22.5002 12.2111 22.5002 12.75C22.5002 13.815 21.824 14.6767 20.969 15.1042L18.0794 16.549C17.5712 16.8031 17.2502 17.3225 17.2502 17.8907V18.7502H21.7502C22.1644 18.7502 22.5002 19.0859 22.5002 19.5002C22.5002 19.9144 22.1644 20.2502 21.7502 20.2502H16.5002C16.086 20.2502 15.7502 19.9144 15.7502 19.5002V17.8907C15.7502 16.7544 16.3922 15.7155 17.4086 15.2074L20.2981 13.7625C20.7461 13.5385 21.0002 13.142 21.0002 12.75C21.0002 12.2925 20.963 11.8442 20.8917 11.4078C20.817 10.9511 20.4219 10.5874 19.9046 10.546C19.524 10.5155 19.139 10.5 18.7502 10.5Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7488 3.74316C13.163 3.74316 13.4988 4.07897 13.4988 4.4932V19.4946C13.4988 19.9089 13.163 20.2447 12.7488 20.2447C12.3346 20.2447 11.9988 19.9089 11.9988 19.4946V12.7447H2.99711V19.4954C2.99711 19.9096 2.66132 20.2454 2.24709 20.2454C1.83287 20.2454 1.49707 19.9096 1.49707 19.4954V4.49393C1.49707 4.07969 1.83287 3.74389 2.24709 3.74389C2.66132 3.74389 2.99711 4.07969 2.99711 4.49393V11.2446H11.9988V4.4932C11.9988 4.07897 12.3346 3.74316 12.7488 3.74316Z" fill="
|
|
10
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.7499 10.5007C18.0226 10.5007 17.3086 10.5551 16.6114 10.66C16.2018 10.7216 15.8198 10.4395 15.7582 10.0299C15.6966 9.62026 15.9787 9.23825 16.3883 9.17663C17.1591 9.06069 17.9477 9.00066 18.7499 9.00066C19.2412 9.00066 19.7275 9.02318 20.2078 9.06729C21.1589 9.15464 22.1344 9.77225 22.3756 10.8606C22.4571 11.2283 22.4999 11.61 22.4999 12.0007C22.4999 12.9561 22.2441 13.8533 21.7974 14.6258C22.2441 15.3983 22.4999 16.2955 22.4999 17.2509C22.4999 17.6416 22.4571 18.0233 22.3756 18.391C22.1344 19.4793 21.1589 20.0969 20.2078 20.1843C19.7275 20.2284 19.2412 20.2509 18.7499 20.2509C17.9477 20.2509 17.1591 20.1909 16.3883 20.075C15.9787 20.0133 15.6966 19.6313 15.7582 19.2217C15.8198 18.8121 16.2018 18.53 16.6114 18.5916C17.3086 18.6965 18.0226 18.7509 18.7499 18.7509C19.1954 18.7509 19.6359 18.7305 20.0706 18.6906C20.538 18.6476 20.8441 18.369 20.9111 18.0665C20.9691 17.8046 20.9999 17.5318 20.9999 17.2509C20.9999 16.5669 20.8174 15.9271 20.4984 15.3758H17.9999C17.5857 15.3758 17.2499 15.04 17.2499 14.6258C17.2499 14.2116 17.5857 13.8758 17.9999 13.8758H20.4984C20.8174 13.3245 20.9999 12.6847 20.9999 12.0007C20.9999 11.7198 20.9691 11.447 20.9111 11.1851C20.8441 10.8826 20.538 10.604 20.0706 10.561C19.6359 10.5211 19.1954 10.5007 18.7499 10.5007Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7488 3.74316C13.163 3.74316 13.4988 4.07897 13.4988 4.4932V19.4946C13.4988 19.9089 13.163 20.2447 12.7488 20.2447C12.3346 20.2447 11.9988 19.9089 11.9988 19.4946V12.7447H2.99711V19.4954C2.99711 19.9096 2.66132 20.2454 2.24709 20.2454C1.83287 20.2454 1.49707 19.9096 1.49707 19.4954V4.49393C1.49707 4.07969 1.83287 3.74389 2.24709 3.74389C2.66132 3.74389 2.99711 4.07969 2.99711 4.49393V11.2446H11.9988V4.4932C11.9988 4.07897 12.3346 3.74316 12.7488 3.74316Z" fill="currentColor"/>
|
|
10
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.7499 10.5007C18.0226 10.5007 17.3086 10.5551 16.6114 10.66C16.2018 10.7216 15.8198 10.4395 15.7582 10.0299C15.6966 9.62026 15.9787 9.23825 16.3883 9.17663C17.1591 9.06069 17.9477 9.00066 18.7499 9.00066C19.2412 9.00066 19.7275 9.02318 20.2078 9.06729C21.1589 9.15464 22.1344 9.77225 22.3756 10.8606C22.4571 11.2283 22.4999 11.61 22.4999 12.0007C22.4999 12.9561 22.2441 13.8533 21.7974 14.6258C22.2441 15.3983 22.4999 16.2955 22.4999 17.2509C22.4999 17.6416 22.4571 18.0233 22.3756 18.391C22.1344 19.4793 21.1589 20.0969 20.2078 20.1843C19.7275 20.2284 19.2412 20.2509 18.7499 20.2509C17.9477 20.2509 17.1591 20.1909 16.3883 20.075C15.9787 20.0133 15.6966 19.6313 15.7582 19.2217C15.8198 18.8121 16.2018 18.53 16.6114 18.5916C17.3086 18.6965 18.0226 18.7509 18.7499 18.7509C19.1954 18.7509 19.6359 18.7305 20.0706 18.6906C20.538 18.6476 20.8441 18.369 20.9111 18.0665C20.9691 17.8046 20.9999 17.5318 20.9999 17.2509C20.9999 16.5669 20.8174 15.9271 20.4984 15.3758H17.9999C17.5857 15.3758 17.2499 15.04 17.2499 14.6258C17.2499 14.2116 17.5857 13.8758 17.9999 13.8758H20.4984C20.8174 13.3245 20.9999 12.6847 20.9999 12.0007C20.9999 11.7198 20.9691 11.447 20.9111 11.1851C20.8441 10.8826 20.538 10.604 20.0706 10.561C19.6359 10.5211 19.1954 10.5007 18.7499 10.5007Z" fill="currentColor"/>
|
|
11
11
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.497 3.74418C10.497 3.32994 10.8327 2.99414 11.247 2.99414H18.7468C19.161 2.99414 19.4968 3.32994 19.4968 3.74418C19.4968 4.15842 19.161 4.49422 18.7468 4.49422H15.4719L10.1148 19.4957H12.7469C13.1612 19.4957 13.497 19.8315 13.497 20.2458C13.497 20.66 13.1612 20.9958 12.7469 20.9958H5.24709C4.83286 20.9958 4.49707 20.66 4.49707 20.2458C4.49707 19.8315 4.83286 19.4957 5.24709 19.4957H8.52202L13.8791 4.49422H11.247C10.8327 4.49422 10.497 4.15842 10.497 3.74418Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.497 3.74418C10.497 3.32994 10.8327 2.99414 11.247 2.99414H18.7468C19.161 2.99414 19.4968 3.32994 19.4968 3.74418C19.4968 4.15842 19.161 4.49422 18.7468 4.49422H15.4719L10.1148 19.4957H12.7469C13.1612 19.4957 13.497 19.8315 13.497 20.2458C13.497 20.66 13.1612 20.9958 12.7469 20.9958H5.24709C4.83286 20.9958 4.49707 20.66 4.49707 20.2458C4.49707 19.8315 4.83286 19.4957 5.24709 19.4957H8.52202L13.8791 4.49422H11.247C10.8327 4.49422 10.497 4.15842 10.497 3.74418Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.892 4.08973C18.4276 2.62514 16.0533 2.62514 14.5889 4.08973L10.089 8.59017C10.0149 8.66424 9.94467 8.74054 9.87822 8.81885L14.8436 13.7848C15.2095 12.5152 14.8919 11.0902 13.8921 10.0903C13.5813 9.77941 13.2307 9.53538 12.8575 9.35706C12.4837 9.1785 12.3255 8.73074 12.504 8.35697C12.6826 7.98319 13.1303 7.82495 13.5041 8.00352C14.0289 8.25423 14.5199 8.59666 14.9529 9.02964C16.5536 10.6306 16.9039 13.0067 16.0063 14.9476L21.5207 20.4627C21.8136 20.7556 21.8136 21.2305 21.5207 21.5234C21.2278 21.8163 20.7529 21.8163 20.46 21.5234L2.46036 3.52166C2.16747 3.22874 2.16749 2.75384 2.46041 2.46094C2.75332 2.16805 3.2282 2.16807 3.52109 2.46099L8.81504 7.75555C8.88349 7.67858 8.95456 7.60319 9.02825 7.5295L13.5282 3.02906C15.5784 0.978594 18.9025 0.978594 20.9527 3.02906C23.0029 5.07949 23.0029 8.40387 20.9527 10.4543L19.1958 12.2114C18.9029 12.5044 18.428 12.5044 18.1351 12.2115C17.8422 11.9186 17.8422 11.4437 18.1351 11.1508L19.892 9.39364C21.3565 7.92901 21.3565 5.55436 19.892 4.08973ZM5.84599 11.7729C6.1389 12.0658 6.13892 12.5407 5.84604 12.8336L4.0891 14.5907C2.62465 16.0554 2.62465 18.43 4.0891 19.8946C5.55352 21.3592 7.92779 21.3592 9.39221 19.8946L12.5208 16.7657C12.8137 16.4727 13.2886 16.4727 13.5815 16.7656C13.8744 17.0585 13.8744 17.5334 13.5816 17.8263L10.4529 20.9553C8.40271 23.0058 5.0786 23.0058 3.02837 20.9553C0.978174 18.9049 0.978174 15.5805 3.02837 13.5301L4.78531 11.7729C5.07819 11.48 5.55308 11.48 5.84599 11.7729ZM8.24712 12.0331C8.63782 11.8955 9.0661 12.1007 9.2037 12.4914C9.38378 13.0028 9.67828 13.4833 10.089 13.8941C10.3998 14.205 10.7504 14.449 11.1236 14.6273C11.4974 14.8059 11.6556 15.2536 11.4771 15.6274C11.2985 16.0012 10.8508 16.1594 10.477 15.9809C9.95224 15.7301 9.46118 15.3877 9.02825 14.9547C8.45558 14.382 8.04184 13.7081 7.78884 12.9897C7.65124 12.599 7.85642 12.1707 8.24712 12.0331Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.892 4.08973C18.4276 2.62514 16.0533 2.62514 14.5889 4.08973L10.089 8.59017C10.0149 8.66424 9.94467 8.74054 9.87822 8.81885L14.8436 13.7848C15.2095 12.5152 14.8919 11.0902 13.8921 10.0903C13.5813 9.77941 13.2307 9.53538 12.8575 9.35706C12.4837 9.1785 12.3255 8.73074 12.504 8.35697C12.6826 7.98319 13.1303 7.82495 13.5041 8.00352C14.0289 8.25423 14.5199 8.59666 14.9529 9.02964C16.5536 10.6306 16.9039 13.0067 16.0063 14.9476L21.5207 20.4627C21.8136 20.7556 21.8136 21.2305 21.5207 21.5234C21.2278 21.8163 20.7529 21.8163 20.46 21.5234L2.46036 3.52166C2.16747 3.22874 2.16749 2.75384 2.46041 2.46094C2.75332 2.16805 3.2282 2.16807 3.52109 2.46099L8.81504 7.75555C8.88349 7.67858 8.95456 7.60319 9.02825 7.5295L13.5282 3.02906C15.5784 0.978594 18.9025 0.978594 20.9527 3.02906C23.0029 5.07949 23.0029 8.40387 20.9527 10.4543L19.1958 12.2114C18.9029 12.5044 18.428 12.5044 18.1351 12.2115C17.8422 11.9186 17.8422 11.4437 18.1351 11.1508L19.892 9.39364C21.3565 7.92901 21.3565 5.55436 19.892 4.08973ZM5.84599 11.7729C6.1389 12.0658 6.13892 12.5407 5.84604 12.8336L4.0891 14.5907C2.62465 16.0554 2.62465 18.43 4.0891 19.8946C5.55352 21.3592 7.92779 21.3592 9.39221 19.8946L12.5208 16.7657C12.8137 16.4727 13.2886 16.4727 13.5815 16.7656C13.8744 17.0585 13.8744 17.5334 13.5816 17.8263L10.4529 20.9553C8.40271 23.0058 5.0786 23.0058 3.02837 20.9553C0.978174 18.9049 0.978174 15.5805 3.02837 13.5301L4.78531 11.7729C5.07819 11.48 5.55308 11.48 5.84599 11.7729ZM8.24712 12.0331C8.63782 11.8955 9.0661 12.1007 9.2037 12.4914C9.38378 13.0028 9.67828 13.4833 10.089 13.8941C10.3998 14.205 10.7504 14.449 11.1236 14.6273C11.4974 14.8059 11.6556 15.2536 11.4771 15.6274C11.2985 16.0012 10.8508 16.1594 10.477 15.9809C9.95224 15.7301 9.46118 15.3877 9.02825 14.9547C8.45558 14.382 8.04184 13.7081 7.78884 12.9897C7.65124 12.599 7.85642 12.1707 8.24712 12.0331Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.49136 5.99183C7.49136 5.57759 7.82715 5.24179 8.24138 5.24179H20.2411C20.6554 5.24179 20.9912 5.57759 20.9912 5.99183C20.9912 6.40606 20.6554 6.74187 20.2411 6.74187H8.24138C7.82715 6.74187 7.49136 6.40606 7.49136 5.99183Z" fill="
|
|
10
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.49069 11.9946C7.49069 11.5803 7.82649 11.2445 8.24071 11.2445H20.2405C20.6547 11.2445 20.9905 11.5803 20.9905 11.9946C20.9905 12.4088 20.6547 12.7446 20.2405 12.7446H8.24071C7.82649 12.7446 7.49069 12.4088 7.49069 11.9946Z" fill="
|
|
11
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.49136 17.9936C7.49136 17.5794 7.82715 17.2436 8.24138 17.2436H20.2411C20.6554 17.2436 20.9912 17.5794 20.9912 17.9936C20.9912 18.4078 20.6554 18.7436 20.2411 18.7436H8.24138C7.82715 18.7436 7.49136 18.4078 7.49136 17.9936Z" fill="
|
|
12
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.24023 3.74516C2.24023 3.33092 2.57603 2.99512 2.99025 2.99512H4.11523C4.52945 2.99512 4.86525 3.33092 4.86525 3.74516V6.74548H5.24021C5.65443 6.74548 5.99023 7.08128 5.99023 7.49552C5.99023 7.90975 5.65443 8.24556 5.24021 8.24556H2.99025C2.57603 8.24556 2.24023 7.90975 2.24023 7.49552C2.24023 7.08128 2.57603 6.74548 2.99025 6.74548H3.36521V4.4952H2.99025C2.57603 4.4952 2.24023 4.15939 2.24023 3.74516Z" fill="
|
|
13
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.79049 10.6019C2.4976 10.309 2.4976 9.83411 2.79049 9.54118C3.5227 8.80888 4.70987 8.80888 5.44208 9.54118C6.1743 10.2735 6.1743 11.4608 5.44208 12.1931L4.89284 12.7424L5.24142 12.7424C5.65562 12.7425 5.99137 13.0783 5.99133 13.4926C5.9913 13.9068 5.65548 14.2426 5.24128 14.2426L3.08231 14.2424C2.77898 14.2424 2.50554 14.0596 2.38947 13.7793C2.2734 13.499 2.33757 13.1764 2.55206 12.9619L4.38144 11.1323C4.52789 10.9859 4.52789 10.7484 4.38144 10.6019C4.235 10.4555 3.99757 10.4555 3.85113 10.6019C3.55824 10.8949 3.08337 10.8949 2.79049 10.6019Z" fill="
|
|
14
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.24023 15.7447C2.24023 15.3304 2.57603 14.9946 2.99025 14.9946H4.11513C5.15072 14.9946 5.99023 15.8342 5.99023 16.8698C5.99023 17.2915 5.85103 17.6807 5.61609 17.9939C5.85103 18.3071 5.99023 18.6963 5.99023 19.118C5.99023 20.1536 5.15072 20.9931 4.11513 20.9931H2.99025C2.57603 20.9931 2.24023 20.6573 2.24023 20.2431C2.24023 19.8288 2.57603 19.493 2.99025 19.493H4.11513C4.32227 19.493 4.49019 19.3251 4.49019 19.118C4.49019 18.9229 4.3413 18.7626 4.15098 18.7446C4.13906 18.7448 4.12711 18.7449 4.11513 18.7449H3.74024C3.32601 18.7449 2.99022 18.4091 2.99022 17.9949L2.99022 17.9939L2.99022 17.9929C2.99022 17.5786 3.32601 17.2428 3.74024 17.2428H4.11513C4.12711 17.2428 4.13906 17.2429 4.15098 17.2432C4.3413 17.2251 4.49019 17.0648 4.49019 16.8698C4.49019 16.6626 4.32227 16.4947 4.11513 16.4947H2.99025C2.57603 16.4947 2.24023 16.1589 2.24023 15.7447Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.49136 5.99183C7.49136 5.57759 7.82715 5.24179 8.24138 5.24179H20.2411C20.6554 5.24179 20.9912 5.57759 20.9912 5.99183C20.9912 6.40606 20.6554 6.74187 20.2411 6.74187H8.24138C7.82715 6.74187 7.49136 6.40606 7.49136 5.99183Z" fill="currentColor"/>
|
|
10
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.49069 11.9946C7.49069 11.5803 7.82649 11.2445 8.24071 11.2445H20.2405C20.6547 11.2445 20.9905 11.5803 20.9905 11.9946C20.9905 12.4088 20.6547 12.7446 20.2405 12.7446H8.24071C7.82649 12.7446 7.49069 12.4088 7.49069 11.9946Z" fill="currentColor"/>
|
|
11
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.49136 17.9936C7.49136 17.5794 7.82715 17.2436 8.24138 17.2436H20.2411C20.6554 17.2436 20.9912 17.5794 20.9912 17.9936C20.9912 18.4078 20.6554 18.7436 20.2411 18.7436H8.24138C7.82715 18.7436 7.49136 18.4078 7.49136 17.9936Z" fill="currentColor"/>
|
|
12
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.24023 3.74516C2.24023 3.33092 2.57603 2.99512 2.99025 2.99512H4.11523C4.52945 2.99512 4.86525 3.33092 4.86525 3.74516V6.74548H5.24021C5.65443 6.74548 5.99023 7.08128 5.99023 7.49552C5.99023 7.90975 5.65443 8.24556 5.24021 8.24556H2.99025C2.57603 8.24556 2.24023 7.90975 2.24023 7.49552C2.24023 7.08128 2.57603 6.74548 2.99025 6.74548H3.36521V4.4952H2.99025C2.57603 4.4952 2.24023 4.15939 2.24023 3.74516Z" fill="currentColor"/>
|
|
13
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.79049 10.6019C2.4976 10.309 2.4976 9.83411 2.79049 9.54118C3.5227 8.80888 4.70987 8.80888 5.44208 9.54118C6.1743 10.2735 6.1743 11.4608 5.44208 12.1931L4.89284 12.7424L5.24142 12.7424C5.65562 12.7425 5.99137 13.0783 5.99133 13.4926C5.9913 13.9068 5.65548 14.2426 5.24128 14.2426L3.08231 14.2424C2.77898 14.2424 2.50554 14.0596 2.38947 13.7793C2.2734 13.499 2.33757 13.1764 2.55206 12.9619L4.38144 11.1323C4.52789 10.9859 4.52789 10.7484 4.38144 10.6019C4.235 10.4555 3.99757 10.4555 3.85113 10.6019C3.55824 10.8949 3.08337 10.8949 2.79049 10.6019Z" fill="currentColor"/>
|
|
14
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.24023 15.7447C2.24023 15.3304 2.57603 14.9946 2.99025 14.9946H4.11513C5.15072 14.9946 5.99023 15.8342 5.99023 16.8698C5.99023 17.2915 5.85103 17.6807 5.61609 17.9939C5.85103 18.3071 5.99023 18.6963 5.99023 19.118C5.99023 20.1536 5.15072 20.9931 4.11513 20.9931H2.99025C2.57603 20.9931 2.24023 20.6573 2.24023 20.2431C2.24023 19.8288 2.57603 19.493 2.99025 19.493H4.11513C4.32227 19.493 4.49019 19.3251 4.49019 19.118C4.49019 18.9229 4.3413 18.7626 4.15098 18.7446C4.13906 18.7448 4.12711 18.7449 4.11513 18.7449H3.74024C3.32601 18.7449 2.99022 18.4091 2.99022 17.9949L2.99022 17.9939L2.99022 17.9929C2.99022 17.5786 3.32601 17.2428 3.74024 17.2428H4.11513C4.12711 17.2428 4.13906 17.2429 4.15098 17.2432C4.3413 17.2251 4.49019 17.0648 4.49019 16.8698C4.49019 16.6626 4.32227 16.4947 4.11513 16.4947H2.99025C2.57603 16.4947 2.24023 16.1589 2.24023 15.7447Z" fill="currentColor"/>
|
|
15
15
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9896 2.24316C10.6329 2.24316 9.41666 2.84416 8.5925 3.79207C7.3395 3.70461 6.05453 4.13977 5.09522 5.09919C4.1359 6.05862 3.70081 7.34372 3.78827 8.59683C2.84057 9.42108 2.23975 10.6374 2.23975 11.9941C2.23975 13.3507 2.84051 14.5669 3.78813 15.3912C3.70057 16.6444 4.13564 17.9296 5.09505 18.8891C6.05445 19.8487 7.33955 20.2838 8.59266 20.1962C9.41681 21.1441 10.633 21.745 11.9896 21.745C13.3463 21.745 14.5625 21.144 15.3866 20.1961C16.6395 20.2834 17.9243 19.8483 18.8836 18.8889C19.8428 17.9296 20.2779 16.6446 20.1905 15.3916C21.1384 14.5674 21.7394 13.3509 21.7394 11.9941C21.7394 10.6375 21.1387 9.42121 20.191 8.59697C20.2786 7.34376 19.8435 6.05853 18.8841 5.09903C17.9247 4.13952 16.6396 3.70437 15.3865 3.79193C14.5624 2.8441 13.3462 2.24316 11.9896 2.24316ZM15.52 9.52295C15.8129 9.23003 15.8128 8.75513 15.5199 8.46223C15.227 8.16934 14.7521 8.16936 14.4593 8.46228L8.45937 14.4629C8.16648 14.7558 8.1665 15.2307 8.45941 15.5236C8.75233 15.8165 9.22721 15.8164 9.5201 15.5235L15.52 9.52295ZM9.73972 8.61761C9.11833 8.61761 8.61471 9.12139 8.61471 9.74269C8.61471 10.364 9.11833 10.8678 9.73972 10.8678C10.3611 10.8678 10.8647 10.364 10.8647 9.74269C10.8647 9.12139 10.3611 8.61761 9.73972 8.61761ZM14.2396 13.118C13.6182 13.118 13.1146 13.6218 13.1146 14.2431C13.1146 14.8644 13.6182 15.3682 14.2396 15.3682C14.861 15.3682 15.3646 14.8644 15.3646 14.2431C15.3646 13.6218 14.861 13.118 14.2396 13.118Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9896 2.24316C10.6329 2.24316 9.41666 2.84416 8.5925 3.79207C7.3395 3.70461 6.05453 4.13977 5.09522 5.09919C4.1359 6.05862 3.70081 7.34372 3.78827 8.59683C2.84057 9.42108 2.23975 10.6374 2.23975 11.9941C2.23975 13.3507 2.84051 14.5669 3.78813 15.3912C3.70057 16.6444 4.13564 17.9296 5.09505 18.8891C6.05445 19.8487 7.33955 20.2838 8.59266 20.1962C9.41681 21.1441 10.633 21.745 11.9896 21.745C13.3463 21.745 14.5625 21.144 15.3866 20.1961C16.6395 20.2834 17.9243 19.8483 18.8836 18.8889C19.8428 17.9296 20.2779 16.6446 20.1905 15.3916C21.1384 14.5674 21.7394 13.3509 21.7394 11.9941C21.7394 10.6375 21.1387 9.42121 20.191 8.59697C20.2786 7.34376 19.8435 6.05853 18.8841 5.09903C17.9247 4.13952 16.6396 3.70437 15.3865 3.79193C14.5624 2.8441 13.3462 2.24316 11.9896 2.24316ZM15.52 9.52295C15.8129 9.23003 15.8128 8.75513 15.5199 8.46223C15.227 8.16934 14.7521 8.16936 14.4593 8.46228L8.45937 14.4629C8.16648 14.7558 8.1665 15.2307 8.45941 15.5236C8.75233 15.8165 9.22721 15.8164 9.5201 15.5235L15.52 9.52295ZM9.73972 8.61761C9.11833 8.61761 8.61471 9.12139 8.61471 9.74269C8.61471 10.364 9.11833 10.8678 9.73972 10.8678C10.3611 10.8678 10.8647 10.364 10.8647 9.74269C10.8647 9.12139 10.3611 8.61761 9.73972 8.61761ZM14.2396 13.118C13.6182 13.118 13.1146 13.6218 13.1146 14.2431C13.1146 14.8644 13.6182 15.3682 14.2396 15.3682C14.861 15.3682 15.3646 14.8644 15.3646 14.2431C15.3646 13.6218 14.861 13.118 14.2396 13.118Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.256 3.04243C15.6453 3.18399 15.8461 3.61434 15.7046 4.00364L9.7046 20.504C9.56304 20.8933 9.13271 21.0942 8.74342 20.9526C8.35414 20.811 8.15331 20.3807 8.29487 19.9914L14.2948 3.49099C14.4364 3.1017 14.8667 2.90087 15.256 3.04243Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.256 3.04243C15.6453 3.18399 15.8461 3.61434 15.7046 4.00364L9.7046 20.504C9.56304 20.8933 9.13271 21.0942 8.74342 20.9526C8.35414 20.811 8.15331 20.3807 8.29487 19.9914L14.2948 3.49099C14.4364 3.1017 14.8667 2.90087 15.256 3.04243Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.65664 4.72817C8.57127 5.11272 7.89072 5.78492 7.67823 6.57798C7.46376 7.37841 7.72395 8.31122 8.48795 9.1939C9.23446 10.0564 10.4173 10.8061 11.8758 11.1969C11.946 11.2157 12.0162 11.2335 12.0862 11.2503H20.2494C20.6636 11.2503 20.9994 11.5861 20.9994 12.0003C20.9994 12.4145 20.6636 12.7503 20.2494 12.7503H12.0098C12.0032 12.7504 11.9965 12.7504 11.9899 12.7503H3.74951C3.3353 12.7503 2.99951 12.4145 2.99951 12.0003C2.99951 11.5861 3.3353 11.2503 3.74951 11.2503H8.5287C8.08448 10.9248 7.68959 10.5635 7.35381 10.1756C6.37221 9.04154 5.84858 7.61084 6.22935 6.18974C6.60649 4.78219 7.75713 3.80977 9.15573 3.31425C10.5581 2.81739 12.283 2.76477 14.0111 3.22781C15.1181 3.52446 16.1141 4.00238 16.9399 4.60148C17.2751 4.84472 17.3497 5.31371 17.1065 5.64899C16.8633 5.98427 16.3943 6.05888 16.059 5.81563C15.3881 5.32888 14.5605 4.92799 13.6228 4.67673C12.1501 4.2821 10.7382 4.34497 9.65664 4.72817ZM16.1899 14.3595C16.5438 14.1442 17.0052 14.2567 17.2204 14.6106C17.8121 15.5836 18.0657 16.7043 17.7692 17.8106C17.3921 19.2182 16.2415 20.1906 14.8429 20.6861C13.4405 21.183 11.7156 21.2356 9.98753 20.7726C8.27574 20.3139 6.81996 19.4186 5.85377 18.3024C5.58268 17.9892 5.61681 17.5155 5.92999 17.2444C6.24318 16.9733 6.71682 17.0075 6.98791 17.3207C7.73442 18.1831 8.91722 18.9328 10.3758 19.3236C11.8485 19.7183 13.2604 19.6554 14.3419 19.2722C15.4273 18.8877 16.1079 18.2155 16.3204 17.4224C16.4888 16.7936 16.366 16.0925 15.9388 15.39C15.7236 15.0361 15.836 14.5747 16.1899 14.3595Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.65664 4.72817C8.57127 5.11272 7.89072 5.78492 7.67823 6.57798C7.46376 7.37841 7.72395 8.31122 8.48795 9.1939C9.23446 10.0564 10.4173 10.8061 11.8758 11.1969C11.946 11.2157 12.0162 11.2335 12.0862 11.2503H20.2494C20.6636 11.2503 20.9994 11.5861 20.9994 12.0003C20.9994 12.4145 20.6636 12.7503 20.2494 12.7503H12.0098C12.0032 12.7504 11.9965 12.7504 11.9899 12.7503H3.74951C3.3353 12.7503 2.99951 12.4145 2.99951 12.0003C2.99951 11.5861 3.3353 11.2503 3.74951 11.2503H8.5287C8.08448 10.9248 7.68959 10.5635 7.35381 10.1756C6.37221 9.04154 5.84858 7.61084 6.22935 6.18974C6.60649 4.78219 7.75713 3.80977 9.15573 3.31425C10.5581 2.81739 12.283 2.76477 14.0111 3.22781C15.1181 3.52446 16.1141 4.00238 16.9399 4.60148C17.2751 4.84472 17.3497 5.31371 17.1065 5.64899C16.8633 5.98427 16.3943 6.05888 16.059 5.81563C15.3881 5.32888 14.5605 4.92799 13.6228 4.67673C12.1501 4.2821 10.7382 4.34497 9.65664 4.72817ZM16.1899 14.3595C16.5438 14.1442 17.0052 14.2567 17.2204 14.6106C17.8121 15.5836 18.0657 16.7043 17.7692 17.8106C17.3921 19.2182 16.2415 20.1906 14.8429 20.6861C13.4405 21.183 11.7156 21.2356 9.98753 20.7726C8.27574 20.3139 6.81996 19.4186 5.85377 18.3024C5.58268 17.9892 5.61681 17.5155 5.92999 17.2444C6.24318 16.9733 6.71682 17.0075 6.98791 17.3207C7.73442 18.1831 8.91722 18.9328 10.3758 19.3236C11.8485 19.7183 13.2604 19.6554 14.3419 19.2722C15.4273 18.8877 16.1079 18.2155 16.3204 17.4224C16.4888 16.7936 16.366 16.0925 15.9388 15.39C15.7236 15.0361 15.836 14.5747 16.1899 14.3595Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.99509 2.99414C6.40931 2.99414 6.74511 3.32994 6.74511 3.74418V11.2449C6.74511 14.1448 9.09561 16.4954 11.995 16.4954C14.8943 16.4954 17.2448 14.1448 17.2448 11.2449V3.74418C17.2448 3.32994 17.5806 2.99414 17.9949 2.99414C18.4091 2.99414 18.7449 3.32994 18.7449 3.74418V11.2449C18.7449 14.9731 15.7229 17.9955 11.995 17.9955C8.26705 17.9955 5.24507 14.9731 5.24507 11.2449V3.74418C5.24507 3.32994 5.58087 2.99414 5.99509 2.99414ZM2.99512 20.2458C2.99512 19.8315 3.33091 19.4957 3.74514 19.4957H20.2448C20.659 19.4957 20.9948 19.8315 20.9948 20.2458C20.9948 20.66 20.659 20.9958 20.2448 20.9958H3.74514C3.33091 20.9958 2.99512 20.66 2.99512 20.2458Z" fill="
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.99509 2.99414C6.40931 2.99414 6.74511 3.32994 6.74511 3.74418V11.2449C6.74511 14.1448 9.09561 16.4954 11.995 16.4954C14.8943 16.4954 17.2448 14.1448 17.2448 11.2449V3.74418C17.2448 3.32994 17.5806 2.99414 17.9949 2.99414C18.4091 2.99414 18.7449 3.32994 18.7449 3.74418V11.2449C18.7449 14.9731 15.7229 17.9955 11.995 17.9955C8.26705 17.9955 5.24507 14.9731 5.24507 11.2449V3.74418C5.24507 3.32994 5.58087 2.99414 5.99509 2.99414ZM2.99512 20.2458C2.99512 19.8315 3.33091 19.4957 3.74514 19.4957H20.2448C20.659 19.4957 20.9948 19.8315 20.9948 20.2458C20.9948 20.66 20.659 20.9958 20.2448 20.9958H3.74514C3.33091 20.9958 2.99512 20.66 2.99512 20.2458Z" fill="currentColor"/>
|
|
10
10
|
</svg>
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
7
|
style:height={size}
|
|
8
8
|
style:width={size} viewBox="0 0 24 24" fill="none">
|
|
9
|
-
<path d="M0.96967 3.96967C1.26256 3.67678 1.73744 3.67678 2.03033 3.96967L17.0303 18.9697C17.3232 19.2626 17.3232 19.7374 17.0303 20.0303C16.7374 20.3232 16.2626 20.3232 15.9697 20.0303L0.96967 5.03033C0.676777 4.73744 0.676777 4.26256 0.96967 3.96967Z" fill="
|
|
10
|
-
<path d="M17.25 16.0606L19.9393 18.75C20.8843 19.6949 22.5 19.0257 22.5 17.6893V6.31063C22.5 4.97427 20.8843 4.30501 19.9393 5.24996L17.25 7.93931V16.0606Z" fill="
|
|
11
|
-
<path d="M15.75 7.5V15.568L4.68198 4.5H12.75C14.4069 4.5 15.75 5.84315 15.75 7.5Z" fill="
|
|
12
|
-
<path d="M1.5 16.5V7.68198L13.2727 19.4546C13.1029 19.4845 12.9283 19.5 12.75 19.5H4.5C2.84315 19.5 1.5 18.1569 1.5 16.5Z" fill="
|
|
9
|
+
<path d="M0.96967 3.96967C1.26256 3.67678 1.73744 3.67678 2.03033 3.96967L17.0303 18.9697C17.3232 19.2626 17.3232 19.7374 17.0303 20.0303C16.7374 20.3232 16.2626 20.3232 15.9697 20.0303L0.96967 5.03033C0.676777 4.73744 0.676777 4.26256 0.96967 3.96967Z" fill="currentColor"/>
|
|
10
|
+
<path d="M17.25 16.0606L19.9393 18.75C20.8843 19.6949 22.5 19.0257 22.5 17.6893V6.31063C22.5 4.97427 20.8843 4.30501 19.9393 5.24996L17.25 7.93931V16.0606Z" fill="currentColor"/>
|
|
11
|
+
<path d="M15.75 7.5V15.568L4.68198 4.5H12.75C14.4069 4.5 15.75 5.84315 15.75 7.5Z" fill="currentColor"/>
|
|
12
|
+
<path d="M1.5 16.5V7.68198L13.2727 19.4546C13.1029 19.4845 12.9283 19.5 12.75 19.5H4.5C2.84315 19.5 1.5 18.1569 1.5 16.5Z" fill="currentColor"/>
|
|
13
13
|
</svg>
|