@meistrari/tela-build 1.43.0 → 1.45.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/components/tela/code-block/code-block.vue +0 -2
  2. package/components/tela/combobox/combobox-anchor.vue +0 -2
  3. package/components/tela/combobox/combobox-empty.vue +0 -2
  4. package/components/tela/combobox/combobox-group.vue +0 -2
  5. package/components/tela/combobox/combobox-indicator.vue +0 -2
  6. package/components/tela/combobox/combobox-input.vue +0 -2
  7. package/components/tela/combobox/combobox-item.vue +0 -2
  8. package/components/tela/combobox/combobox-label.vue +0 -2
  9. package/components/tela/combobox/combobox-module-selector.vue +0 -1
  10. package/components/tela/copy-button.vue +0 -2
  11. package/components/tela/dropdown-menu/DropdownMenuCheckboxItem.vue +0 -1
  12. package/components/tela/dropdown-menu/DropdownMenuContent.vue +0 -1
  13. package/components/tela/dropdown-menu/DropdownMenuItem.vue +0 -1
  14. package/components/tela/dropdown-menu/DropdownMenuLabel.vue +0 -1
  15. package/components/tela/dropdown-menu/DropdownMenuRadioItem.vue +0 -1
  16. package/components/tela/dropdown-menu/DropdownMenuSeparator.vue +0 -1
  17. package/components/tela/dropdown-menu/DropdownMenuShortcut.vue +0 -1
  18. package/components/tela/dropdown-menu/DropdownMenuSubContent.vue +0 -1
  19. package/components/tela/dropdown-menu/DropdownMenuSubTrigger.vue +0 -1
  20. package/components/tela/menubar/menubar-content.vue +0 -1
  21. package/components/tela/menubar/menubar-item.vue +0 -1
  22. package/components/tela/menubar/menubar-label.vue +0 -1
  23. package/components/tela/menubar/menubar-root.vue +0 -1
  24. package/components/tela/menubar/menubar-separator.vue +0 -1
  25. package/components/tela/menubar/menubar-shortcut.vue +0 -1
  26. package/components/tela/menubar/menubar-sub-content.vue +0 -1
  27. package/components/tela/menubar/menubar-sub-trigger.vue +0 -1
  28. package/components/tela/menubar/menubar-trigger.vue +0 -1
  29. package/components/tela/menubar/menubar.vue +0 -2
  30. package/components/tela/preview/preview-content.vue +0 -1
  31. package/components/tela/preview/preview-select-variable.vue +0 -1
  32. package/components/tela/select-menu/select-menu-item.vue +0 -1
  33. package/components/tela/switch/switch.vue +0 -2
  34. package/components/tela/tabs/tabs-content.vue +0 -1
  35. package/components/tela/tabs/tabs-indicator.vue +0 -2
  36. package/components/tela/tabs/tabs-list.vue +0 -1
  37. package/components/tela/tabs/tabs-trigger.vue +0 -1
  38. package/components/tela/tooltip/tooltip.vue +0 -1
  39. package/components/tela/tooltip-group/tooltip-group-trigger.vue +0 -1
  40. package/modules/tela-build-docs/index.ts +1 -1
  41. package/nuxt.config.ts +11 -4
  42. package/package.json +7 -3
  43. package/plugins/test-id.ts +18 -2
  44. package/public/files/audio.svg +4 -0
  45. package/public/files/code.svg +5 -0
  46. package/public/files/doc.svg +5 -0
  47. package/public/files/generic.svg +4 -0
  48. package/public/files/image.svg +4 -0
  49. package/public/files/json.svg +5 -0
  50. package/public/files/pdf.svg +5 -0
  51. package/public/files/presentation.svg +5 -0
  52. package/public/files/sheet.svg +9 -0
  53. package/public/files/video.svg +5 -0
  54. package/public/tela-logo-square.png +0 -0
@@ -4,8 +4,6 @@ import type { HTMLAttributes } from 'vue'
4
4
  import type { BuiltinLanguage } from 'shiki'
5
5
  import { codeToHtml } from 'shiki'
6
6
 
7
- import { cn } from '@/lib/utils'
8
-
9
7
  import { TelaTheme } from './tela-theme'
10
8
 
11
9
  const props = withDefaults(defineProps<{
@@ -5,8 +5,6 @@ import { reactiveOmit } from '@vueuse/core'
5
5
  import { ComboboxAnchor, useForwardProps } from 'reka-ui'
6
6
  import type { ComboboxAnchorProps } from 'reka-ui'
7
7
 
8
- import { cn } from '@/lib/utils'
9
-
10
8
  const props = defineProps<ComboboxAnchorProps & { class?: HTMLAttributes['class'] }>()
11
9
 
12
10
  const delegatedProps = reactiveOmit(props, 'class')
@@ -5,8 +5,6 @@ import { reactiveOmit } from '@vueuse/core'
5
5
  import { ComboboxEmpty } from 'reka-ui'
6
6
  import type { ComboboxEmptyProps } from 'reka-ui'
7
7
 
8
- import { cn } from '@/lib/utils'
9
-
10
8
  const props = defineProps<ComboboxEmptyProps & { class?: HTMLAttributes['class'] }>()
11
9
 
12
10
  const delegatedProps = reactiveOmit(props, 'class')
@@ -5,8 +5,6 @@ import { reactiveOmit } from '@vueuse/core'
5
5
  import { ComboboxGroup } from 'reka-ui'
6
6
  import type { ComboboxGroupProps } from 'reka-ui'
7
7
 
8
- import { cn } from '@/lib/utils'
9
-
10
8
  const props = defineProps<ComboboxGroupProps & {
11
9
  class?: HTMLAttributes['class']
12
10
  }>()
@@ -5,8 +5,6 @@ import { reactiveOmit } from '@vueuse/core'
5
5
  import { ComboboxItemIndicator } from 'reka-ui'
6
6
  import type { ComboboxItemIndicatorProps } from 'reka-ui'
7
7
 
8
- import { cn } from '@/lib/utils'
9
-
10
8
  const props = defineProps<ComboboxItemIndicatorProps & { class?: HTMLAttributes['class'] }>()
11
9
 
12
10
  const delegatedProps = reactiveOmit(props, 'class')
@@ -8,8 +8,6 @@ import {
8
8
  } from 'reka-ui'
9
9
  import type { ComboboxInputEmits, ComboboxInputProps } from 'reka-ui'
10
10
 
11
- import { cn } from '@/lib/utils'
12
-
13
11
  const props = defineProps<ComboboxInputProps & {
14
12
  class?: HTMLAttributes['class']
15
13
  }>()
@@ -8,8 +8,6 @@ import {
8
8
  } from 'reka-ui'
9
9
  import type { ComboboxItemEmits, ComboboxItemProps } from 'reka-ui'
10
10
 
11
- import { cn } from '@/lib/utils'
12
-
13
11
  const props = defineProps<ComboboxItemProps & { class?: HTMLAttributes['class'] }>()
14
12
  const emits = defineEmits<ComboboxItemEmits>()
15
13
 
@@ -5,8 +5,6 @@ import { reactiveOmit } from '@vueuse/core'
5
5
  import { ComboboxLabel, useForwardProps } from 'reka-ui'
6
6
  import type { ComboboxLabelProps } from 'reka-ui'
7
7
 
8
- import { cn } from '@/lib/utils'
9
-
10
8
  const props = defineProps<ComboboxLabelProps & { class?: HTMLAttributes['class'] }>()
11
9
 
12
10
  const delegatedProps = reactiveOmit(props, 'class')
@@ -2,7 +2,6 @@
2
2
  import { ref, computed, watch } from 'vue'
3
3
  import { useMagicKeys } from '@vueuse/core'
4
4
  import { useI18n } from 'vue-i18n'
5
- import { cn } from '~/lib/utils'
6
5
 
7
6
  import { ComboboxRoot as Combobox, ComboboxTrigger } from 'reka-ui'
8
7
  import type { AllActionsInfo } from 'tela-workflow/src/compat-v1-schemas'
@@ -3,8 +3,6 @@ import type { HTMLAttributes } from 'vue'
3
3
 
4
4
  import { UseClipboard } from '@vueuse/components'
5
5
 
6
- import { cn } from '@/lib/utils'
7
-
8
6
  const props = withDefaults(defineProps<{
9
7
  content: string
10
8
  variant?: 'default' | 'ghost'
@@ -1,5 +1,4 @@
1
1
  <script setup lang="ts">
2
- import { cn } from '@/lib/utils'
3
2
  import { Check } from 'lucide-vue-next'
4
3
  import {
5
4
  DropdownMenuCheckboxItem,
@@ -1,5 +1,4 @@
1
1
  <script setup lang="ts">
2
- import { cn } from '@/lib/utils'
3
2
  import {
4
3
  DropdownMenuContent,
5
4
  DropdownMenuPortal,
@@ -1,6 +1,5 @@
1
1
  <script setup lang="ts">
2
2
  import type { HTMLAttributes } from 'vue'
3
- import { cn } from '@/lib/utils'
4
3
  import { DropdownMenuItem } from 'radix-vue'
5
4
  import type { DropdownMenuItemProps } from 'radix-vue'
6
5
  import Tooltip from '../tooltip/tooltip.vue'
@@ -1,5 +1,4 @@
1
1
  <script setup lang="ts">
2
- import { cn } from '@/lib/utils'
3
2
  import { DropdownMenuLabel, useForwardProps } from 'radix-vue'
4
3
  import type { DropdownMenuLabelProps } from 'radix-vue'
5
4
  import { computed } from 'vue'
@@ -1,5 +1,4 @@
1
1
  <script setup lang="ts">
2
- import { cn } from '@/lib/utils'
3
2
  import { Circle } from 'lucide-vue-next'
4
3
  import {
5
4
  DropdownMenuItemIndicator,
@@ -1,5 +1,4 @@
1
1
  <script setup lang="ts">
2
- import { cn } from '@/lib/utils'
3
2
  import { DropdownMenuSeparator } from 'radix-vue'
4
3
  import type { DropdownMenuSeparatorProps } from 'radix-vue'
5
4
  import { computed } from 'vue'
@@ -1,6 +1,5 @@
1
1
  <script setup lang="ts">
2
2
  import type { HTMLAttributes } from 'vue'
3
- import { cn } from '@/lib/utils'
4
3
 
5
4
  const props = defineProps<{
6
5
  class?: HTMLAttributes['class']
@@ -1,5 +1,4 @@
1
1
  <script setup lang="ts">
2
- import { cn } from '@/lib/utils'
3
2
  import {
4
3
  DropdownMenuSubContent,
5
4
  useForwardPropsEmits,
@@ -1,5 +1,4 @@
1
1
  <script setup lang="ts">
2
- import { cn } from '@/lib/utils'
3
2
  import { ChevronRight } from 'lucide-vue-next'
4
3
  import {
5
4
  DropdownMenuSubTrigger,
@@ -7,7 +7,6 @@ import {
7
7
  MenubarPortal,
8
8
  useForwardProps,
9
9
  } from 'reka-ui'
10
- import { cn } from '@/lib/utils'
11
10
 
12
11
  const props = withDefaults(
13
12
  defineProps<MenubarContentProps & { class?: HTMLAttributes['class'], disablePortal?: boolean }>(),
@@ -7,7 +7,6 @@ import {
7
7
 
8
8
  useForwardPropsEmits,
9
9
  } from 'reka-ui'
10
- import { cn } from '@/lib/utils'
11
10
 
12
11
  const props = defineProps<MenubarItemProps & { class?: HTMLAttributes['class'], inset?: boolean }>()
13
12
 
@@ -2,7 +2,6 @@
2
2
  import type { MenubarLabelProps } from 'reka-ui'
3
3
  import type { HTMLAttributes } from 'vue'
4
4
  import { MenubarLabel } from 'reka-ui'
5
- import { cn } from '@/lib/utils'
6
5
 
7
6
  const props = defineProps<MenubarLabelProps & { class?: HTMLAttributes['class'], inset?: boolean }>()
8
7
  </script>
@@ -6,7 +6,6 @@ import {
6
6
  MenubarRoot,
7
7
  useForwardPropsEmits,
8
8
  } from 'reka-ui'
9
- import { cn } from '@/lib/utils'
10
9
 
11
10
  const props = defineProps<MenubarRootProps & { class?: HTMLAttributes['class'] }>()
12
11
  const emits = defineEmits<MenubarRootEmits>()
@@ -3,7 +3,6 @@ import type { MenubarSeparatorProps } from 'reka-ui'
3
3
  import type { HTMLAttributes } from 'vue'
4
4
  import { reactiveOmit } from '@vueuse/core'
5
5
  import { MenubarSeparator, useForwardProps } from 'reka-ui'
6
- import { cn } from '@/lib/utils'
7
6
 
8
7
  const props = defineProps<MenubarSeparatorProps & { class?: HTMLAttributes['class'] }>()
9
8
 
@@ -1,6 +1,5 @@
1
1
  <script setup lang="ts">
2
2
  import type { HTMLAttributes } from 'vue'
3
- import { cn } from '@/lib/utils'
4
3
 
5
4
  const props = defineProps<{
6
5
  class?: HTMLAttributes['class']
@@ -8,7 +8,6 @@ import {
8
8
 
9
9
  useForwardPropsEmits,
10
10
  } from 'reka-ui'
11
- import { cn } from '@/lib/utils'
12
11
 
13
12
  const props = defineProps<MenubarSubContentProps & { class?: HTMLAttributes['class'] }>()
14
13
 
@@ -4,7 +4,6 @@ import type { HTMLAttributes } from 'vue'
4
4
  import { reactiveOmit } from '@vueuse/core'
5
5
  import { ChevronRight } from 'lucide-vue-next'
6
6
  import { MenubarSubTrigger, useForwardProps } from 'reka-ui'
7
- import { cn } from '@/lib/utils'
8
7
 
9
8
  const props = defineProps<MenubarSubTriggerProps & { class?: HTMLAttributes['class'], inset?: boolean }>()
10
9
 
@@ -3,7 +3,6 @@ import type { MenubarTriggerProps } from 'reka-ui'
3
3
  import type { HTMLAttributes } from 'vue'
4
4
  import { reactiveOmit } from '@vueuse/core'
5
5
  import { MenubarTrigger, useForwardProps } from 'reka-ui'
6
- import { cn } from '@/lib/utils'
7
6
 
8
7
  const props = defineProps<MenubarTriggerProps & { class?: HTMLAttributes['class'] }>()
9
8
 
@@ -1,6 +1,4 @@
1
1
  <script setup lang="ts">
2
- import { cn } from '@/lib/utils'
3
-
4
2
  const props = defineProps<{
5
3
  modelValue?: string
6
4
  readOnly?: boolean
@@ -1,6 +1,5 @@
1
1
  <script setup lang="ts">
2
2
  import { useThrottleFn, useEventListener, useScroll } from '@vueuse/core'
3
- import { cn } from '@/lib/utils'
4
3
  import type { PreviewFile, PreviewContentLabels, PdfDocumentHandle } from './types'
5
4
 
6
5
  const props = withDefaults(
@@ -1,5 +1,4 @@
1
1
  <script setup lang="ts">
2
- import { cn } from '@/lib/utils'
3
2
  import type { PreviewVariableOption } from './types'
4
3
 
5
4
  const props = withDefaults(
@@ -8,7 +8,6 @@ import {
8
8
  SelectItemText,
9
9
  useForwardProps,
10
10
  } from 'reka-ui'
11
- import { cn } from '@/lib/utils'
12
11
 
13
12
  const props = defineProps<SelectItemProps & { class?: HTMLAttributes['class'] }>()
14
13
 
@@ -9,8 +9,6 @@ import {
9
9
  } from 'reka-ui'
10
10
  import type { SwitchRootEmits, SwitchRootProps } from 'reka-ui'
11
11
 
12
- import { cn } from '@/lib/utils'
13
-
14
12
  type SwitchSize = 'sm' | 'md'
15
13
 
16
14
  const props = defineProps<SwitchRootProps & { class?: HTMLAttributes['class'], size?: SwitchSize }>()
@@ -3,7 +3,6 @@ import type { HTMLAttributes } from 'vue'
3
3
  import { reactiveOmit } from '@vueuse/core'
4
4
  import { TabsContent } from 'reka-ui'
5
5
  import type { TabsContentProps } from 'reka-ui'
6
- import { cn } from '@/lib/utils'
7
6
 
8
7
  const props = defineProps<TabsContentProps & { class?: HTMLAttributes['class'] }>()
9
8
 
@@ -5,8 +5,6 @@ import { reactiveOmit } from '@vueuse/core'
5
5
  import { TabsIndicator } from 'reka-ui'
6
6
  import type { TabsIndicatorProps } from 'reka-ui'
7
7
 
8
- import { cn } from '@/lib/utils'
9
-
10
8
  const props = defineProps<TabsIndicatorProps & { class?: HTMLAttributes['class'] }>()
11
9
 
12
10
  const delegatedProps = reactiveOmit(props, 'class')
@@ -3,7 +3,6 @@ import type { HTMLAttributes } from 'vue'
3
3
  import { reactiveOmit } from '@vueuse/core'
4
4
  import { TabsList } from 'reka-ui'
5
5
  import type { TabsListProps } from 'reka-ui'
6
- import { cn } from '@/lib/utils'
7
6
 
8
7
  const props = defineProps<TabsListProps & { class?: HTMLAttributes['class'] }>()
9
8
 
@@ -3,7 +3,6 @@ import type { HTMLAttributes } from 'vue'
3
3
  import { reactiveOmit } from '@vueuse/core'
4
4
  import { TabsTrigger, useForwardProps } from 'reka-ui'
5
5
  import type { TabsTriggerProps } from 'reka-ui'
6
- import { cn } from '@/lib/utils'
7
6
 
8
7
  const props = defineProps<TabsTriggerProps & { class?: HTMLAttributes['class'], textClass?: HTMLAttributes['class'] }>()
9
8
 
@@ -5,7 +5,6 @@ import TelaTooltipRoot from './tooltip-root.vue'
5
5
  import TelaTooltipTrigger from './tooltip-trigger.vue'
6
6
  import TelaTooltipContent from './tooltip-content.vue'
7
7
  import { computed } from 'vue'
8
- import { cn } from '@/lib/utils'
9
8
 
10
9
  export type TooltipProps = {
11
10
  content?: string
@@ -4,7 +4,6 @@ import TelaTooltipRoot from '../tooltip/tooltip-root.vue'
4
4
  import TelaTooltipTrigger from '../tooltip/tooltip-trigger.vue'
5
5
  import TelaTooltipContent from '../tooltip/tooltip-content.vue'
6
6
  import { computed } from 'vue'
7
- import { cn } from '@/lib/utils'
8
7
 
9
8
  export type TooltipProps = {
10
9
  content?: string
@@ -1,6 +1,6 @@
1
1
  /* eslint-disable no-console */
2
2
  import { existsSync, writeFileSync, mkdirSync, lstatSync, readFileSync, symlinkSync } from 'node:fs'
3
- import { defineNuxtModule, createResolver } from '@nuxt/kit'
3
+ import { defineNuxtModule, createResolver } from 'nuxt/kit'
4
4
  import { dirname, resolve } from 'pathe'
5
5
  import { collectComponentDocs, generateMarkdown, generateDocsToDirectory } from '../../lib/doc-generator'
6
6
  import { ensureOverlayTsconfig } from '../../lib/extractors/volar-extract'
package/nuxt.config.ts CHANGED
@@ -8,8 +8,15 @@ import { createResolver } from 'nuxt/kit'
8
8
 
9
9
  const currentDir = dirname(fileURLToPath(import.meta.url))
10
10
  const { resolve } = createResolver(import.meta.url)
11
+ const componentsDir = join(currentDir, './components')
12
+ const composablesDir = join(currentDir, './composables')
13
+ const utilsDir = join(currentDir, './utils')
11
14
 
12
15
  export default defineNuxtConfig({
16
+ $meta: {
17
+ name: 'tela-build',
18
+ },
19
+
13
20
  compatibilityDate: '2024-11-13',
14
21
  devtools: { enabled: true },
15
22
 
@@ -22,15 +29,15 @@ export default defineNuxtConfig({
22
29
 
23
30
  imports: {
24
31
  dirs: [
25
- './composables',
26
- './utils',
32
+ composablesDir,
33
+ utilsDir,
27
34
  ],
28
35
  },
29
36
 
30
37
  components: {
31
38
  dirs: [
32
- 'components',
33
- { path: 'composables', pattern: '**/*.vue' },
39
+ { path: componentsDir, pattern: '**/*.vue' },
40
+ { path: composablesDir, pattern: '**/*.vue' },
34
41
  ],
35
42
  },
36
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/tela-build",
3
- "version": "1.43.0",
3
+ "version": "1.45.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "app.config.ts",
@@ -12,6 +12,7 @@
12
12
  "modules",
13
13
  "nuxt.config.ts",
14
14
  "plugins",
15
+ "public",
15
16
  "tsconfig.json",
16
17
  "types",
17
18
  "unocss.config.ts",
@@ -33,7 +34,6 @@
33
34
  "@internationalized/number": "3.6.0",
34
35
  "@number-flow/vue": "^0.3.2",
35
36
  "@nuxt/icon": "^1.9.0",
36
- "@nuxt/kit": "3.17.7",
37
37
  "@nuxtjs/color-mode": "^3.5.2",
38
38
  "@nuxtjs/tailwindcss": "6.12.2",
39
39
  "@unocss/nuxt": "66.5.12",
@@ -51,7 +51,6 @@
51
51
  "motion-v": "0.11.1",
52
52
  "nitropack": "2.9.7",
53
53
  "number-flow": "0.4.1",
54
- "nuxt": "3.17.7",
55
54
  "pathe": "1.1.2",
56
55
  "pdfjs-dist": "4.10.38",
57
56
  "radix-vue": "1.9.17",
@@ -69,7 +68,11 @@
69
68
  "vue-input-otp": "0.3.2",
70
69
  "vue-router": "4.5.0"
71
70
  },
71
+ "peerDependencies": {
72
+ "nuxt": "^3.17.0 || ^4.0.0"
73
+ },
72
74
  "devDependencies": {
75
+ "@nuxt/kit": "3.17.7",
73
76
  "@storybook-vue/nuxt": "8.3.3",
74
77
  "@storybook-vue/vue3": "7.4.0-alpha.2.1",
75
78
  "@storybook/addon-essentials": "8.6.4",
@@ -84,6 +87,7 @@
84
87
  "remark-gfm": "4.0.0",
85
88
  "remark-parse": "11.0.0",
86
89
  "remark-stringify": "11.0.0",
90
+ "nuxt": "3.17.7",
87
91
  "storybook": "8.6.17",
88
92
  "unified": "11.0.0"
89
93
  }
@@ -1,9 +1,25 @@
1
1
  import { defineNuxtPlugin } from 'nuxt/app'
2
2
 
3
3
  export default defineNuxtPlugin((nuxtApp) => {
4
+ if (!import.meta.dev) {
5
+ return
6
+ }
7
+
8
+ function updateTestId(el: HTMLElement, value: unknown) {
9
+ if (value === undefined || value === null || value === '') {
10
+ el.removeAttribute('data-testid')
11
+ return
12
+ }
13
+
14
+ el.setAttribute('data-testid', String(value))
15
+ }
16
+
4
17
  nuxtApp.vueApp.directive('test', {
5
- created(el: HTMLElement, binding: any) {
6
- el.setAttribute('data-testid', String(binding.value))
18
+ created: (el, binding) => updateTestId(el, binding.value),
19
+ updated(el, binding) {
20
+ if (binding.value !== binding.oldValue) {
21
+ updateTestId(el, binding.value)
22
+ }
7
23
  },
8
24
  })
9
25
  })
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#148EB4"/>
3
+ <path d="M6.125 3.0752C6.23772 3.0752 6.34608 3.11952 6.42578 3.19922C6.50548 3.27892 6.5498 3.38728 6.5498 3.5V12.5C6.5498 12.6127 6.50548 12.7211 6.42578 12.8008C6.34608 12.8805 6.23772 12.9248 6.125 12.9248C6.01228 12.9248 5.90392 12.8805 5.82422 12.8008C5.74452 12.7211 5.7002 12.6127 5.7002 12.5V3.5C5.7002 3.38728 5.74452 3.27892 5.82422 3.19922C5.90392 3.11952 6.01228 3.0752 6.125 3.0752ZM8 4.5752C8.11272 4.5752 8.22108 4.61952 8.30078 4.69922C8.38048 4.77892 8.4248 4.88728 8.4248 5V11C8.4248 11.1127 8.38048 11.2211 8.30078 11.3008C8.22108 11.3805 8.11272 11.4248 8 11.4248C7.88728 11.4248 7.77892 11.3805 7.69922 11.3008C7.61952 11.2211 7.5752 11.1127 7.5752 11V5C7.5752 4.88728 7.61952 4.77892 7.69922 4.69922C7.77892 4.61952 7.88728 4.5752 8 4.5752ZM11.75 5.3252C11.8627 5.3252 11.9711 5.36952 12.0508 5.44922C12.1305 5.52892 12.1748 5.63728 12.1748 5.75V10.25C12.1748 10.3627 12.1305 10.4711 12.0508 10.5508C11.9711 10.6305 11.8627 10.6748 11.75 10.6748C11.6373 10.6748 11.5289 10.6305 11.4492 10.5508C11.3695 10.4711 11.3252 10.3627 11.3252 10.25V5.75C11.3252 5.63728 11.3695 5.52892 11.4492 5.44922C11.5289 5.36952 11.6373 5.3252 11.75 5.3252ZM4.25 6.0752C4.36272 6.0752 4.47108 6.11952 4.55078 6.19922C4.63048 6.27892 4.6748 6.38728 4.6748 6.5V9.5C4.6748 9.61272 4.63048 9.72108 4.55078 9.80078C4.47108 9.88048 4.36272 9.9248 4.25 9.9248C4.13728 9.9248 4.02892 9.88048 3.94922 9.80078C3.86952 9.72108 3.8252 9.61272 3.8252 9.5V6.5C3.8252 6.38728 3.86952 6.27892 3.94922 6.19922C4.02892 6.11952 4.13728 6.0752 4.25 6.0752ZM9.875 6.0752C9.98772 6.0752 10.0961 6.11952 10.1758 6.19922C10.2555 6.27892 10.2998 6.38728 10.2998 6.5V9.5C10.2998 9.61272 10.2555 9.72108 10.1758 9.80078C10.0961 9.88048 9.98772 9.9248 9.875 9.9248C9.76228 9.9248 9.65392 9.88048 9.57422 9.80078C9.49452 9.72108 9.4502 9.61272 9.4502 9.5V6.5C9.4502 6.38728 9.49452 6.27892 9.57422 6.19922C9.65392 6.11952 9.76228 6.0752 9.875 6.0752Z" fill="white" stroke="white" stroke-width="0.1"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#9E5BEF"/>
3
+ <path d="M6.65385 6L4.72031 7.8852C4.59955 8.00294 4.59955 8.19706 4.72031 8.3148L6.65385 10.2" stroke="white" stroke-linecap="round"/>
4
+ <path d="M9.5461 6L11.4796 7.8852C11.6004 8.00294 11.6004 8.19706 11.4796 8.3148L9.5461 10.2" stroke="white" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#397DF6"/>
3
+ <rect x="2.46155" y="8.8" width="10.4615" height="1.2" rx="0.6" fill="white"/>
4
+ <rect x="2.46155" y="11.2" width="8.61539" height="1.2" rx="0.6" fill="white" fill-opacity="0.6"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#A3A3A3"/>
3
+ <path d="M8.9375 3.8877L9.00781 3.89453C9.03116 3.89913 9.05407 3.90591 9.07617 3.91504C9.12018 3.93323 9.16065 3.95951 9.19434 3.99316L11.3818 6.18066C11.4155 6.21435 11.4418 6.25482 11.46 6.29883C11.4781 6.34281 11.4873 6.38991 11.4873 6.4375V11.4375C11.4873 11.6165 11.4166 11.7885 11.29 11.915C11.1635 12.0416 10.9915 12.1123 10.8125 12.1123H5.1875C5.00848 12.1123 4.83655 12.0416 4.70996 11.915C4.58337 11.7885 4.5127 11.6165 4.5127 11.4375V4.5625C4.5127 4.38348 4.58337 4.21155 4.70996 4.08496C4.83655 3.95837 5.00848 3.8877 5.1875 3.8877H8.9375ZM5.2373 11.3877H10.7627V6.7998H8.9375C8.84136 6.7998 8.74962 6.76134 8.68164 6.69336C8.61366 6.62538 8.5752 6.53364 8.5752 6.4375V4.6123H5.2373V11.3877ZM9.2998 6.0752H10.25L9.2998 5.125V6.0752Z" fill="white" stroke="white" stroke-width="0.1"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#46A1E3"/>
3
+ <path d="M11.4375 3.875H4.5625C4.38016 3.875 4.2053 3.94743 4.07636 4.07636C3.94743 4.2053 3.875 4.38016 3.875 4.5625V11.4375C3.875 11.6198 3.94743 11.7947 4.07636 11.9236C4.2053 12.0526 4.38016 12.125 4.5625 12.125H11.4375C11.6198 12.125 11.7947 12.0526 11.9236 11.9236C12.0526 11.7947 12.125 11.6198 12.125 11.4375V4.5625C12.125 4.38016 12.0526 4.2053 11.9236 4.07636C11.7947 3.94743 11.6198 3.875 11.4375 3.875ZM4.5625 4.5625H11.4375V7.88742L10.3766 6.82609C10.2477 6.69726 10.0729 6.62489 9.89062 6.62489C9.70837 6.62489 9.53357 6.69726 9.40465 6.82609L4.79324 11.4375H4.5625V4.5625ZM11.4375 11.4375H5.76562L9.89062 7.3125L11.4375 8.85938V11.4375ZM6.625 7.65625C6.82896 7.65625 7.02834 7.59577 7.19793 7.48245C7.36752 7.36914 7.4997 7.20808 7.57775 7.01964C7.6558 6.83121 7.67623 6.62386 7.63643 6.42381C7.59664 6.22377 7.49843 6.04002 7.3542 5.8958C7.20998 5.75157 7.02623 5.65336 6.82619 5.61357C6.62614 5.57377 6.41879 5.5942 6.23036 5.67225C6.04192 5.7503 5.88086 5.88248 5.76755 6.05207C5.65423 6.22166 5.59375 6.42104 5.59375 6.625C5.59375 6.8985 5.7024 7.16081 5.8958 7.3542C6.08919 7.5476 6.3515 7.65625 6.625 7.65625ZM6.625 6.28125C6.69299 6.28125 6.75945 6.30141 6.81598 6.33918C6.87251 6.37695 6.91657 6.43064 6.94258 6.49345C6.9686 6.55626 6.97541 6.62538 6.96214 6.69206C6.94888 6.75874 6.91614 6.81999 6.86807 6.86807C6.81999 6.91614 6.75874 6.94888 6.69206 6.96214C6.62538 6.97541 6.55626 6.9686 6.49345 6.94258C6.43064 6.91657 6.37695 6.87251 6.33918 6.81598C6.30141 6.75945 6.28125 6.69299 6.28125 6.625C6.28125 6.53383 6.31747 6.4464 6.38193 6.38193C6.4464 6.31747 6.53383 6.28125 6.625 6.28125Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#5A10CC"/>
3
+ <path d="M6.65385 6L4.72031 7.8852C4.59955 8.00294 4.59955 8.19706 4.72031 8.3148L6.65385 10.2" stroke="white" stroke-linecap="round"/>
4
+ <path d="M9.5461 6L11.4796 7.8852C11.6004 8.00294 11.6004 8.19706 11.4796 8.3148L9.5461 10.2" stroke="white" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#F45E43"/>
3
+ <path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#B30B00" fill-opacity="0.4"/>
4
+ <path d="M8.56925 4.43331C8.57266 4.66281 8.54963 4.89026 8.51609 5.11683C8.49335 5.27091 8.47857 5.42616 8.44986 5.57877C8.39188 5.89074 8.32878 6.20154 8.2381 6.50588C8.19404 6.65409 8.1534 6.80347 8.09967 6.94845C8.08035 7.0004 8.11218 7.03855 8.13378 7.07612C8.30916 7.38075 8.49705 7.67687 8.70597 7.95803C8.91318 8.23684 9.12722 8.51007 9.36741 8.76041C9.39896 8.79328 9.43221 8.8241 9.4632 8.85726C9.48338 8.87927 9.50527 8.87223 9.52857 8.86783C10.032 8.77538 10.5402 8.72901 11.051 8.73224C11.36 8.73429 11.6698 8.75894 11.9719 8.83143C12.2556 8.89952 12.5237 9.00547 12.7437 9.21619C13.0458 9.50556 13.068 9.93199 12.8775 10.2613C12.7667 10.4529 12.5848 10.5551 12.3784 10.6129C12.0683 10.6997 11.7588 10.6813 11.4461 10.6226C11.2511 10.5859 11.0604 10.5354 10.8742 10.4676C10.6127 10.3722 10.3631 10.2487 10.1241 10.1028C9.85034 9.93581 9.59224 9.74681 9.35263 9.5311C9.33216 9.51261 9.31368 9.50821 9.28867 9.51466C9.11073 9.56015 8.92967 9.59038 8.75259 9.64027C8.6369 9.67285 8.51837 9.69339 8.40154 9.72186C8.04709 9.80844 7.69406 9.90089 7.34671 10.015C7.17901 10.0699 7.01301 10.1298 6.84559 10.1853C6.81205 10.1964 6.7913 10.2137 6.7731 10.2466C6.5946 10.568 6.40387 10.8814 6.20063 11.1869C6.00593 11.4795 5.799 11.7622 5.56876 12.0251C5.35302 12.2716 5.12136 12.5017 4.84962 12.6852C4.63928 12.8272 4.41956 12.9402 4.16772 12.9807C3.81866 13.037 3.49974 12.9751 3.23056 12.728C3.04694 12.5595 2.97531 12.3415 3.00743 12.0909C3.04978 11.758 3.24335 11.5147 3.46734 11.294C3.7223 11.0425 4.01422 10.8424 4.31808 10.6592C4.63416 10.4685 4.96104 10.3009 5.29617 10.1495C5.43346 10.0875 5.57103 10.0265 5.71088 9.97161C5.74357 9.9587 5.76432 9.93904 5.78166 9.90793C5.97637 9.56191 6.15658 9.20885 6.31149 8.84171C6.40813 8.61279 6.5025 8.38329 6.58835 8.15026C6.72876 7.76785 6.86946 7.38545 7.00789 7.00245C7.05536 6.87068 7.09686 6.73656 7.14063 6.60332C7.15996 6.54462 7.12045 6.49913 7.10055 6.45305C7.03802 6.30661 6.98373 6.15722 6.93058 6.00696C6.82541 5.70996 6.74212 5.4062 6.68613 5.09599C6.60711 4.66017 6.57271 4.22024 6.66481 3.78178C6.71824 3.52762 6.82256 3.29665 7.04143 3.14609C7.31942 2.95504 7.61134 2.96355 7.90639 3.10119C8.16221 3.22034 8.314 3.43664 8.41831 3.69579C8.51354 3.93175 8.56129 4.17798 8.56896 4.43301L8.56925 4.43331ZM9.83527 9.30805C9.85375 9.33094 9.85972 9.3418 9.86853 9.34884C10.1275 9.55135 10.3989 9.73301 10.6968 9.86919C10.8253 9.92789 10.9563 9.98042 11.0905 10.0256C11.2528 10.0805 11.4151 10.1286 11.5876 10.116C11.7133 10.1069 11.8301 10.0746 11.9373 9.99597C12.0751 9.89472 12.1439 9.56602 11.958 9.42515C11.8759 9.36293 11.7832 9.31979 11.6826 9.29954C11.5271 9.26843 11.3682 9.26726 11.2113 9.24818C10.7531 9.19271 10.3017 9.26784 9.83499 9.30746L9.83527 9.30805ZM5.50509 10.6C5.4525 10.6061 5.42237 10.6349 5.38713 10.651C5.12619 10.7722 4.87321 10.9087 4.62649 11.0584C4.29591 11.2591 3.97642 11.4757 3.7206 11.7762C3.62793 11.8851 3.55915 12.0096 3.54835 12.1598C3.54067 12.2649 3.59098 12.3459 3.68535 12.3902C3.82691 12.4568 3.95169 12.3955 4.06539 12.3259C4.36072 12.146 4.58641 11.8839 4.80442 11.6166C5.00737 11.368 5.18673 11.1009 5.3641 10.8327C5.41214 10.7599 5.45449 10.6833 5.5048 10.5997L5.50509 10.6ZM7.49253 5.91334C7.50958 5.90982 7.51157 5.90043 7.51413 5.89103C7.57325 5.68677 7.62925 5.48163 7.6716 5.27296C7.75176 4.87735 7.8123 4.4785 7.8177 4.0735C7.81998 3.90797 7.81372 3.74128 7.70855 3.6004C7.64972 3.52146 7.57126 3.49211 7.47945 3.5106C7.28105 3.55081 7.21283 3.71251 7.17645 3.88714C7.12045 4.15655 7.13296 4.43008 7.16906 4.70155C7.20061 4.93956 7.25177 5.17376 7.31885 5.40385C7.36917 5.57671 7.42317 5.7484 7.49281 5.91334H7.49253ZM8.75969 8.9817C8.44901 8.5855 8.13748 8.20133 7.87143 7.75758C7.69662 8.33075 7.44108 8.85022 7.21624 9.38876C7.72788 9.24994 8.22986 9.08941 8.75941 8.9817H8.75969Z" fill="#FEFDFC"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#F4B540"/>
3
+ <rect x="5.5" y="6.5" width="7.5" height="5.5" rx="1" stroke="white"/>
4
+ <path d="M5.85294 10H5C4.17157 10 3.5 9.32843 3.5 8.5V5.5C3.5 4.67157 4.17157 4 5 4H10C10.8284 4 11.5 4.67157 11.5 5.5V6.30769" stroke="white"/>
5
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#52AC7F"/>
3
+ <rect x="2.46155" y="8.8" width="3.69231" height="1.2" rx="0.6" fill="white"/>
4
+ <rect x="7.38464" y="8.8" width="2.46154" height="1.2" rx="0.6" fill="white"/>
5
+ <rect x="11.077" y="8.8" width="2.46154" height="1.2" rx="0.6" fill="white"/>
6
+ <rect x="2.46155" y="11.2" width="3.69231" height="1.2" rx="0.6" fill="white" fill-opacity="0.6"/>
7
+ <rect x="7.38464" y="11.2" width="2.46154" height="1.2" rx="0.6" fill="white" fill-opacity="0.6"/>
8
+ <rect x="11.077" y="11.2" width="2.46154" height="1.2" rx="0.6" fill="white" fill-opacity="0.6"/>
9
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0V0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8V8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16V16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8V8Z" fill="#ED3151"/>
3
+ <rect x="3.5" y="4.5" width="9" height="7" rx="1" stroke="white"/>
4
+ <path d="M9.75 8C9.7501 8.04244 9.73922 8.08419 9.71841 8.12118C9.6976 8.15817 9.66758 8.18915 9.63125 8.2111L7.38 9.58828C7.34204 9.61152 7.29857 9.62421 7.25407 9.62504C7.20958 9.62586 7.16566 9.61479 7.12688 9.59297C7.08845 9.57149 7.05645 9.54016 7.03415 9.50221C7.01185 9.46426 7.00006 9.42105 7 9.37703V6.62297C7.00006 6.57895 7.01185 6.53575 7.03415 6.49779C7.05645 6.45984 7.08845 6.42851 7.12688 6.40703C7.16566 6.38521 7.20958 6.37414 7.25407 6.37497C7.29857 6.37579 7.34204 6.38848 7.38 6.41172L9.63125 7.78891C9.66758 7.81086 9.6976 7.84183 9.71841 7.87882C9.73922 7.91581 9.7501 7.95756 9.75 8Z" fill="white"/>
5
+ </svg>
Binary file