@joyautomation/salt 0.1.0 → 0.1.2
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/README.md +332 -29
- package/dist/components/forms/Form.svelte +25 -25
- package/dist/components/forms/Input.svelte +6 -6
- package/dist/components/forms/SearchableSelect.svelte +58 -58
- package/dist/components/forms/Select.svelte +6 -6
- 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 +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import { slide } from 'svelte/transition'
|
|
3
|
-
import type { FormInputs, InputProps } from './types.js'
|
|
2
|
+
import { slide } from 'svelte/transition'
|
|
3
|
+
import type { FormInputs, InputProps } from './types.js'
|
|
4
4
|
|
|
5
5
|
let {
|
|
6
6
|
id,
|
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
validations,
|
|
11
11
|
inputs,
|
|
12
12
|
options
|
|
13
|
-
}: InputProps & { inputs?: FormInputs; options: { value: string; label: string }[] } = $props()
|
|
13
|
+
}: InputProps & { inputs?: FormInputs; options: { value: string; label: string }[] } = $props()
|
|
14
14
|
const validationResult = $derived(
|
|
15
|
-
validations.find(([validation
|
|
16
|
-
return validation(value, inputs ?? [])
|
|
15
|
+
validations.find(([validation]) => {
|
|
16
|
+
return validation(value, inputs ?? [])
|
|
17
17
|
})?.[1] || null
|
|
18
|
-
)
|
|
18
|
+
)
|
|
19
19
|
</script>
|
|
20
20
|
|
|
21
21
|
<div class="select-field" class:select-field--invalid={validationResult != null}>
|
|
@@ -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>
|