lau-ecom-design-system 1.0.17 → 1.0.19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. package/dist/lau-ecom-design-system.esm.css +13 -1
  2. package/dist/lau-ecom-design-system.esm.js +1577 -258
  3. package/dist/lau-ecom-design-system.min.css +13 -1
  4. package/dist/lau-ecom-design-system.min.js +1 -1
  5. package/dist/lau-ecom-design-system.ssr.css +13 -1
  6. package/dist/lau-ecom-design-system.ssr.js +1491 -211
  7. package/dist/style.css +194 -19
  8. package/package.json +80 -80
  9. package/src/components/LauEcomBannerCookies/LauEcomBannerCookies.vue +8 -39
  10. package/src/components/LauEcomBannerCookies/LauEcomBannerCookiesConfig.vue +8 -46
  11. package/src/components/LauEcomBannerCookies/LauEcomBannerCookiesConfigAccordion.vue +2 -13
  12. package/src/components/LauEcomButton/LauEcomButton.vue +137 -150
  13. package/src/components/LauEcomCheckbox/LauEcomCheckbox.vue +143 -148
  14. package/src/components/LauEcomDisclamer/LauEcomDisclamer.vue +79 -82
  15. package/src/components/LauEcomDropdown/LauEcomDropdown.vue +203 -203
  16. package/src/components/LauEcomIcon/LauEcomCoreIconBook.vue +26 -29
  17. package/src/components/LauEcomIcon/LauEcomCoreIconFileCode.vue +28 -31
  18. package/src/components/LauEcomIcon/LauEcomUpcIconCertificate.vue +28 -31
  19. package/src/components/LauEcomIcon/LauEcomUpcIconCheck.vue +26 -29
  20. package/src/components/LauEcomIcon/LauEcomUpcIconCheckCircle.vue +28 -31
  21. package/src/components/LauEcomIcon/LauEcomUpcIconCreditCard.vue +28 -31
  22. package/src/components/LauEcomIcon/LauEcomUpcIconExclamationCircle.vue +28 -31
  23. package/src/components/LauEcomIcon/LauEcomUpcIconExclamationTriangle.vue +28 -31
  24. package/src/components/LauEcomIcon/LauEcomUpcIconInfoCircle.vue +26 -29
  25. package/src/components/LauEcomIcon/LauEcomUpcIconNavArrow.vue +26 -28
  26. package/src/components/LauEcomIcon/LauEcomUpcIconNavCheckmark.vue +26 -29
  27. package/src/components/LauEcomInput/LauEcomInput.vue +207 -208
  28. package/src/components/LauEcomLoaderPage/LauEcomLoaderPage.vue +2 -28
  29. package/src/components/LauEcomRadioButton/LauEcomRadioButton.vue +103 -115
  30. package/src/components/LauEcomRtb/LauEcomRtb.vue +71 -92
  31. package/src/components/LauEcomStepbar/LauEcomStepbar.vue +43 -49
  32. package/src/components/LauEcomStepbar/LauEcomStepbarItem.vue +128 -172
  33. package/src/components/LauEcomSwitch/LauEcomSwitch.vue +9 -20
  34. package/src/components/LauEcomTab/LauEcomTab.vue +82 -113
  35. package/src/components/LauEcomTextButton/LauEcomTextButton.vue +13 -75
@@ -1,29 +1,26 @@
1
- <script lang="ts" setup>
2
- withDefaults(
3
- defineProps<{
4
- color?: string;
5
- width?: string;
6
- height?: string;
7
- }>(),
8
- {
9
- color: "#000",
10
- width: "24",
11
- height: "24",
12
- },
13
- );
14
- </script>
15
-
16
- <template>
17
- <svg
18
- :width="width"
19
- :height="height"
20
- viewBox="0 0 24 24"
21
- fill="none"
22
- xmlns="http://www.w3.org/2000/svg"
23
- >
24
- <path
25
- d="M7.10119 18.7499C7.02501 18.7495 6.94976 18.7311 6.88044 18.6959C6.81112 18.6608 6.74932 18.6095 6.69913 18.5457L3.12993 13.9678C3.03818 13.8497 2.99192 13.6962 3.00116 13.5404C3.0104 13.3846 3.07441 13.2391 3.17931 13.1355C3.23196 13.0846 3.29314 13.0458 3.35933 13.0214C3.42552 12.997 3.4954 12.9875 3.56492 12.9933C3.63445 12.9992 3.70225 13.0203 3.7644 13.0555C3.82655 13.0906 3.88181 13.1392 3.927 13.1983L7.15762 17.3443L20.1224 5.39308C20.1759 5.34181 20.2381 5.30294 20.3053 5.27873C20.3725 5.25453 20.4433 5.24548 20.5137 5.25211C20.584 5.25874 20.6525 5.28092 20.715 5.31735C20.7776 5.35379 20.833 5.40374 20.878 5.4643C20.9231 5.52486 20.9568 5.5948 20.9772 5.67003C20.9977 5.74526 21.0045 5.82428 20.9972 5.90246C20.9898 5.98065 20.9686 6.05642 20.9347 6.12536C20.9008 6.1943 20.8548 6.25501 20.7996 6.30395L7.43977 18.6164C7.34512 18.705 7.22484 18.7524 7.10119 18.7499Z"
26
- :fill="color"
27
- />
28
- </svg>
29
- </template>
1
+ <script lang="ts" setup>
2
+ withDefaults(
3
+ defineProps<{
4
+ width?: string;
5
+ height?: string;
6
+ }>(),
7
+ {
8
+ width: "24",
9
+ height: "24",
10
+ },
11
+ );
12
+ </script>
13
+
14
+ <template>
15
+ <svg
16
+ :width="width"
17
+ :height="height"
18
+ viewBox="0 0 24 24"
19
+ fill="none"
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ >
22
+ <path
23
+ d="M7.10119 18.7499C7.02501 18.7495 6.94976 18.7311 6.88044 18.6959C6.81112 18.6608 6.74932 18.6095 6.69913 18.5457L3.12993 13.9678C3.03818 13.8497 2.99192 13.6962 3.00116 13.5404C3.0104 13.3846 3.07441 13.2391 3.17931 13.1355C3.23196 13.0846 3.29314 13.0458 3.35933 13.0214C3.42552 12.997 3.4954 12.9875 3.56492 12.9933C3.63445 12.9992 3.70225 13.0203 3.7644 13.0555C3.82655 13.0906 3.88181 13.1392 3.927 13.1983L7.15762 17.3443L20.1224 5.39308C20.1759 5.34181 20.2381 5.30294 20.3053 5.27873C20.3725 5.25453 20.4433 5.24548 20.5137 5.25211C20.584 5.25874 20.6525 5.28092 20.715 5.31735C20.7776 5.35379 20.833 5.40374 20.878 5.4643C20.9231 5.52486 20.9568 5.5948 20.9772 5.67003C20.9977 5.74526 21.0045 5.82428 20.9972 5.90246C20.9898 5.98065 20.9686 6.05642 20.9347 6.12536C20.9008 6.1943 20.8548 6.25501 20.7996 6.30395L7.43977 18.6164C7.34512 18.705 7.22484 18.7524 7.10119 18.7499Z"
24
+ />
25
+ </svg>
26
+ </template>
@@ -1,31 +1,28 @@
1
- <script lang="ts" setup>
2
- withDefaults(
3
- defineProps<{
4
- color?: string;
5
- width?: string;
6
- height?: string;
7
- }>(),
8
- {
9
- color: "#000",
10
- width: "24",
11
- height: "24",
12
- },
13
- );
14
- </script>
15
-
16
- <template>
17
- <svg
18
- :width="width"
19
- :height="height"
20
- viewBox="0 0 24 24"
21
- fill="none"
22
- xmlns="http://www.w3.org/2000/svg"
23
- >
24
- <path
25
- fill-rule="evenodd"
26
- clip-rule="evenodd"
27
- d="M6.99987 19.4832C8.47991 20.4722 10.22 21 12 21C14.3861 20.9972 16.6736 20.0481 18.3609 18.3609C20.0481 16.6736 20.9972 14.3861 21 12C21 10.22 20.4722 8.47991 19.4832 6.99987C18.4943 5.51983 17.0887 4.36628 15.4442 3.68509C13.7996 3.0039 11.99 2.82567 10.2442 3.17294C8.49836 3.5202 6.89471 4.37737 5.63604 5.63604C4.37737 6.89471 3.5202 8.49836 3.17294 10.2442C2.82567 11.99 3.0039 13.7996 3.68509 15.4442C4.36628 17.0887 5.51983 18.4943 6.99987 19.4832ZM7.58812 5.39716C8.89404 4.52457 10.4294 4.05883 12 4.05883C14.1052 4.062 16.1232 4.89968 17.6118 6.38825C19.1003 7.87682 19.938 9.89485 19.9412 12C19.9412 13.5706 19.4754 15.106 18.6028 16.4119C17.7303 17.7178 16.49 18.7356 15.039 19.3367C13.5879 19.9377 11.9912 20.095 10.4508 19.7886C8.91032 19.4822 7.49534 18.7259 6.38474 17.6153C5.27415 16.5047 4.51783 15.0897 4.21141 13.5492C3.905 12.0088 4.06226 10.4121 4.66331 8.96105C5.26436 7.50999 6.2822 6.26974 7.58812 5.39716ZM9.7532 15.2903C9.82257 15.322 9.89787 15.3385 9.97411 15.3388C10.0936 15.3359 10.2094 15.2965 10.3059 15.2259L16.6729 9.95296C16.7784 9.86217 16.8441 9.7336 16.8559 9.5949C16.8676 9.45619 16.8245 9.31841 16.7357 9.21117C16.647 9.10393 16.5197 9.03578 16.3812 9.02138C16.2428 9.00698 16.1042 9.04746 15.9953 9.13414L10.0306 14.0753L8.66823 12.5083C8.623 12.4551 8.56769 12.4115 8.5055 12.3798C8.44331 12.3482 8.37546 12.3292 8.30589 12.324C8.23631 12.3187 8.16638 12.3273 8.10015 12.3493C8.03391 12.3712 7.97268 12.406 7.91999 12.4518C7.81501 12.5449 7.75096 12.6757 7.74172 12.8158C7.73247 12.9558 7.77876 13.0939 7.87058 13.2L9.57176 15.1553C9.62198 15.2127 9.68383 15.2587 9.7532 15.2903Z"
28
- :fill="color"
29
- />
30
- </svg>
31
- </template>
1
+ <script lang="ts" setup>
2
+ withDefaults(
3
+ defineProps<{
4
+ width?: string;
5
+ height?: string;
6
+ }>(),
7
+ {
8
+ width: "24",
9
+ height: "24",
10
+ },
11
+ );
12
+ </script>
13
+
14
+ <template>
15
+ <svg
16
+ :width="width"
17
+ :height="height"
18
+ viewBox="0 0 24 24"
19
+ fill="none"
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ >
22
+ <path
23
+ fill-rule="evenodd"
24
+ clip-rule="evenodd"
25
+ d="M6.99987 19.4832C8.47991 20.4722 10.22 21 12 21C14.3861 20.9972 16.6736 20.0481 18.3609 18.3609C20.0481 16.6736 20.9972 14.3861 21 12C21 10.22 20.4722 8.47991 19.4832 6.99987C18.4943 5.51983 17.0887 4.36628 15.4442 3.68509C13.7996 3.0039 11.99 2.82567 10.2442 3.17294C8.49836 3.5202 6.89471 4.37737 5.63604 5.63604C4.37737 6.89471 3.5202 8.49836 3.17294 10.2442C2.82567 11.99 3.0039 13.7996 3.68509 15.4442C4.36628 17.0887 5.51983 18.4943 6.99987 19.4832ZM7.58812 5.39716C8.89404 4.52457 10.4294 4.05883 12 4.05883C14.1052 4.062 16.1232 4.89968 17.6118 6.38825C19.1003 7.87682 19.938 9.89485 19.9412 12C19.9412 13.5706 19.4754 15.106 18.6028 16.4119C17.7303 17.7178 16.49 18.7356 15.039 19.3367C13.5879 19.9377 11.9912 20.095 10.4508 19.7886C8.91032 19.4822 7.49534 18.7259 6.38474 17.6153C5.27415 16.5047 4.51783 15.0897 4.21141 13.5492C3.905 12.0088 4.06226 10.4121 4.66331 8.96105C5.26436 7.50999 6.2822 6.26974 7.58812 5.39716ZM9.7532 15.2903C9.82257 15.322 9.89787 15.3385 9.97411 15.3388C10.0936 15.3359 10.2094 15.2965 10.3059 15.2259L16.6729 9.95296C16.7784 9.86217 16.8441 9.7336 16.8559 9.5949C16.8676 9.45619 16.8245 9.31841 16.7357 9.21117C16.647 9.10393 16.5197 9.03578 16.3812 9.02138C16.2428 9.00698 16.1042 9.04746 15.9953 9.13414L10.0306 14.0753L8.66823 12.5083C8.623 12.4551 8.56769 12.4115 8.5055 12.3798C8.44331 12.3482 8.37546 12.3292 8.30589 12.324C8.23631 12.3187 8.16638 12.3273 8.10015 12.3493C8.03391 12.3712 7.97268 12.406 7.91999 12.4518C7.81501 12.5449 7.75096 12.6757 7.74172 12.8158C7.73247 12.9558 7.77876 13.0939 7.87058 13.2L9.57176 15.1553C9.62198 15.2127 9.68383 15.2587 9.7532 15.2903Z"
26
+ />
27
+ </svg>
28
+ </template>
@@ -1,31 +1,28 @@
1
- <script lang="ts" setup>
2
- withDefaults(
3
- defineProps<{
4
- color?: string;
5
- width?: string;
6
- height?: string;
7
- }>(),
8
- {
9
- color: "#000",
10
- width: "24",
11
- height: "24",
12
- },
13
- );
14
- </script>
15
-
16
- <template>
17
- <svg
18
- :width="width"
19
- :height="height"
20
- viewBox="0 0 32 32"
21
- fill="none"
22
- xmlns="http://www.w3.org/2000/svg"
23
- >
24
- <path
25
- fill-rule="evenodd"
26
- clip-rule="evenodd"
27
- d="M25.4118 7H6.58824C6.24827 6.99973 5.9116 7.07177 5.59747 7.21198C5.28334 7.35219 4.99791 7.55782 4.75753 7.81713C4.51714 8.07643 4.3265 8.38431 4.19651 8.72316C4.06653 9.062 3.99975 9.42517 4 9.79188V22.2081C3.99975 22.5748 4.06653 22.938 4.19651 23.2768C4.3265 23.6157 4.51714 23.9236 4.75753 24.1829C4.99791 24.4422 5.28334 24.6478 5.59747 24.788C5.9116 24.9282 6.24827 25.0003 6.58824 25H25.4118C25.7517 25.0003 26.0884 24.9282 26.4025 24.788C26.7167 24.6478 27.0021 24.4422 27.2425 24.1829C27.4829 23.9236 27.6735 23.6157 27.8035 23.2768C27.9335 22.938 28.0002 22.5748 28 22.2081V9.79188C28.0002 9.42517 27.9335 9.062 27.8035 8.72316C27.6735 8.38431 27.4829 8.07643 27.2425 7.81713C27.0021 7.55782 26.7167 7.35219 26.4025 7.21198C26.0884 7.07177 25.7517 6.99973 25.4118 7ZM26.5882 22.198C26.5882 22.5345 26.4643 22.8573 26.2437 23.0953C26.023 23.3333 25.7238 23.467 25.4118 23.467H6.58824C6.27622 23.467 5.97698 23.3333 5.75635 23.0953C5.53571 22.8573 5.41177 22.5345 5.41177 22.198V14.797H26.5882V22.198ZM5.41177 11.7513V9.79188C5.41177 9.45531 5.53571 9.13253 5.75635 8.89453C5.97698 8.65654 6.27622 8.52284 6.58824 8.52284H25.4118C25.7238 8.52284 26.023 8.65654 26.2437 8.89453C26.4643 9.13253 26.5882 9.45531 26.5882 9.79188V11.7614H5.41177V11.7513ZM8.21647 21.2132H13.8635C14.0507 21.2132 14.2303 21.133 14.3627 20.9902C14.495 20.8474 14.5694 20.6537 14.5694 20.4518C14.5694 20.2498 14.495 20.0562 14.3627 19.9134C14.2303 19.7706 14.0507 19.6904 13.8635 19.6904H8.21647C8.02926 19.6904 7.84972 19.7706 7.71734 19.9134C7.58496 20.0562 7.51059 20.2498 7.51059 20.4518C7.51059 20.6537 7.58496 20.8474 7.71734 20.9902C7.84972 21.133 8.02926 21.2132 8.21647 21.2132ZM19.5388 21.2132H16.7153C16.5281 21.2132 16.3485 21.133 16.2162 20.9902C16.0838 20.8474 16.0094 20.6537 16.0094 20.4518C16.0094 20.2498 16.0838 20.0562 16.2162 19.9134C16.3485 19.7706 16.5281 19.6904 16.7153 19.6904H19.5388C19.726 19.6904 19.9056 19.7706 20.038 19.9134C20.1703 20.0562 20.2447 20.2498 20.2447 20.4518C20.2447 20.6537 20.1703 20.8474 20.038 20.9902C19.9056 21.133 19.726 21.2132 19.5388 21.2132Z"
28
- :fill="color"
29
- />
30
- </svg>
31
- </template>
1
+ <script lang="ts" setup>
2
+ withDefaults(
3
+ defineProps<{
4
+ width?: string;
5
+ height?: string;
6
+ }>(),
7
+ {
8
+ width: "24",
9
+ height: "24",
10
+ },
11
+ );
12
+ </script>
13
+
14
+ <template>
15
+ <svg
16
+ :width="width"
17
+ :height="height"
18
+ viewBox="0 0 32 32"
19
+ fill="none"
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ >
22
+ <path
23
+ fill-rule="evenodd"
24
+ clip-rule="evenodd"
25
+ d="M25.4118 7H6.58824C6.24827 6.99973 5.9116 7.07177 5.59747 7.21198C5.28334 7.35219 4.99791 7.55782 4.75753 7.81713C4.51714 8.07643 4.3265 8.38431 4.19651 8.72316C4.06653 9.062 3.99975 9.42517 4 9.79188V22.2081C3.99975 22.5748 4.06653 22.938 4.19651 23.2768C4.3265 23.6157 4.51714 23.9236 4.75753 24.1829C4.99791 24.4422 5.28334 24.6478 5.59747 24.788C5.9116 24.9282 6.24827 25.0003 6.58824 25H25.4118C25.7517 25.0003 26.0884 24.9282 26.4025 24.788C26.7167 24.6478 27.0021 24.4422 27.2425 24.1829C27.4829 23.9236 27.6735 23.6157 27.8035 23.2768C27.9335 22.938 28.0002 22.5748 28 22.2081V9.79188C28.0002 9.42517 27.9335 9.062 27.8035 8.72316C27.6735 8.38431 27.4829 8.07643 27.2425 7.81713C27.0021 7.55782 26.7167 7.35219 26.4025 7.21198C26.0884 7.07177 25.7517 6.99973 25.4118 7ZM26.5882 22.198C26.5882 22.5345 26.4643 22.8573 26.2437 23.0953C26.023 23.3333 25.7238 23.467 25.4118 23.467H6.58824C6.27622 23.467 5.97698 23.3333 5.75635 23.0953C5.53571 22.8573 5.41177 22.5345 5.41177 22.198V14.797H26.5882V22.198ZM5.41177 11.7513V9.79188C5.41177 9.45531 5.53571 9.13253 5.75635 8.89453C5.97698 8.65654 6.27622 8.52284 6.58824 8.52284H25.4118C25.7238 8.52284 26.023 8.65654 26.2437 8.89453C26.4643 9.13253 26.5882 9.45531 26.5882 9.79188V11.7614H5.41177V11.7513ZM8.21647 21.2132H13.8635C14.0507 21.2132 14.2303 21.133 14.3627 20.9902C14.495 20.8474 14.5694 20.6537 14.5694 20.4518C14.5694 20.2498 14.495 20.0562 14.3627 19.9134C14.2303 19.7706 14.0507 19.6904 13.8635 19.6904H8.21647C8.02926 19.6904 7.84972 19.7706 7.71734 19.9134C7.58496 20.0562 7.51059 20.2498 7.51059 20.4518C7.51059 20.6537 7.58496 20.8474 7.71734 20.9902C7.84972 21.133 8.02926 21.2132 8.21647 21.2132ZM19.5388 21.2132H16.7153C16.5281 21.2132 16.3485 21.133 16.2162 20.9902C16.0838 20.8474 16.0094 20.6537 16.0094 20.4518C16.0094 20.2498 16.0838 20.0562 16.2162 19.9134C16.3485 19.7706 16.5281 19.6904 16.7153 19.6904H19.5388C19.726 19.6904 19.9056 19.7706 20.038 19.9134C20.1703 20.0562 20.2447 20.2498 20.2447 20.4518C20.2447 20.6537 20.1703 20.8474 20.038 20.9902C19.9056 21.133 19.726 21.2132 19.5388 21.2132Z"
26
+ />
27
+ </svg>
28
+ </template>
@@ -1,31 +1,28 @@
1
- <script lang="ts" setup>
2
- withDefaults(
3
- defineProps<{
4
- color?: string;
5
- width?: string;
6
- height?: string;
7
- }>(),
8
- {
9
- color: "#000",
10
- width: "24",
11
- height: "24",
12
- },
13
- );
14
- </script>
15
-
16
- <template>
17
- <svg
18
- :width="width"
19
- :height="height"
20
- viewBox="0 0 24 24"
21
- fill="none"
22
- xmlns="http://www.w3.org/2000/svg"
23
- >
24
- <path
25
- fill-rule="evenodd"
26
- clip-rule="evenodd"
27
- d="M12 21C10.22 21 8.47991 20.4722 6.99987 19.4832C5.51983 18.4943 4.36628 17.0887 3.68509 15.4442C3.0039 13.7996 2.82567 11.99 3.17294 10.2442C3.5202 8.49836 4.37737 6.89471 5.63604 5.63604C6.89471 4.37737 8.49836 3.5202 10.2442 3.17294C11.99 2.82567 13.7996 3.0039 15.4442 3.68509C17.0887 4.36628 18.4943 5.51983 19.4832 6.99987C20.4722 8.47991 21 10.22 21 12C20.9972 14.3861 20.0481 16.6736 18.3609 18.3609C16.6736 20.0481 14.3861 20.9972 12 21ZM12 4.05883C10.4294 4.05883 8.89404 4.52457 7.58812 5.39716C6.2822 6.26974 5.26436 7.50999 4.66331 8.96105C4.06226 10.4121 3.905 12.0088 4.21141 13.5492C4.51783 15.0897 5.27415 16.5047 6.38474 17.6153C7.49534 18.7259 8.91032 19.4822 10.4508 19.7886C11.9912 20.095 13.5879 19.9377 15.039 19.3367C16.49 18.7356 17.7303 17.7178 18.6028 16.4119C19.4754 15.106 19.9412 13.5706 19.9412 12C19.938 9.89485 19.1003 7.87682 17.6118 6.38825C16.1232 4.89968 14.1052 4.062 12 4.05883ZM12 13.2282C11.8599 13.2273 11.7258 13.1712 11.6267 13.0721C11.5276 12.9731 11.4715 12.8389 11.4706 12.6988V8.47059C11.4706 8.33018 11.5264 8.19552 11.6257 8.09624C11.7249 7.99695 11.8596 7.94118 12 7.94118C12.1404 7.94118 12.2751 7.99695 12.3744 8.09624C12.4736 8.19552 12.5294 8.33018 12.5294 8.47059V12.6988C12.5295 12.7684 12.5159 12.8373 12.4893 12.9015C12.4627 12.9658 12.4237 13.0242 12.3746 13.0734C12.3254 13.1226 12.267 13.1616 12.2027 13.1881C12.1384 13.2147 12.0696 13.2283 12 13.2282ZM11.6337 16.0086C11.7328 16.1077 11.8669 16.1638 12.0071 16.1647C12.0766 16.1648 12.1455 16.1512 12.2098 16.1246C12.274 16.098 12.3324 16.059 12.3816 16.0098C12.4308 15.9607 12.4698 15.9023 12.4964 15.838C12.5229 15.7737 12.5366 15.7048 12.5365 15.6353V15.5435C12.5365 15.4031 12.4807 15.2685 12.3814 15.1692C12.2821 15.0699 12.1475 15.0141 12.0071 15.0141C11.8666 15.0141 11.732 15.0699 11.6327 15.1692C11.5334 15.2685 11.4776 15.4031 11.4776 15.5435V15.6353C11.4786 15.7754 11.5346 15.9095 11.6337 16.0086Z"
28
- :fill="color"
29
- />
30
- </svg>
31
- </template>
1
+ <script lang="ts" setup>
2
+ withDefaults(
3
+ defineProps<{
4
+ width?: string;
5
+ height?: string;
6
+ }>(),
7
+ {
8
+ width: "24",
9
+ height: "24",
10
+ },
11
+ );
12
+ </script>
13
+
14
+ <template>
15
+ <svg
16
+ :width="width"
17
+ :height="height"
18
+ viewBox="0 0 24 24"
19
+ fill="none"
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ >
22
+ <path
23
+ fill-rule="evenodd"
24
+ clip-rule="evenodd"
25
+ d="M12 21C10.22 21 8.47991 20.4722 6.99987 19.4832C5.51983 18.4943 4.36628 17.0887 3.68509 15.4442C3.0039 13.7996 2.82567 11.99 3.17294 10.2442C3.5202 8.49836 4.37737 6.89471 5.63604 5.63604C6.89471 4.37737 8.49836 3.5202 10.2442 3.17294C11.99 2.82567 13.7996 3.0039 15.4442 3.68509C17.0887 4.36628 18.4943 5.51983 19.4832 6.99987C20.4722 8.47991 21 10.22 21 12C20.9972 14.3861 20.0481 16.6736 18.3609 18.3609C16.6736 20.0481 14.3861 20.9972 12 21ZM12 4.05883C10.4294 4.05883 8.89404 4.52457 7.58812 5.39716C6.2822 6.26974 5.26436 7.50999 4.66331 8.96105C4.06226 10.4121 3.905 12.0088 4.21141 13.5492C4.51783 15.0897 5.27415 16.5047 6.38474 17.6153C7.49534 18.7259 8.91032 19.4822 10.4508 19.7886C11.9912 20.095 13.5879 19.9377 15.039 19.3367C16.49 18.7356 17.7303 17.7178 18.6028 16.4119C19.4754 15.106 19.9412 13.5706 19.9412 12C19.938 9.89485 19.1003 7.87682 17.6118 6.38825C16.1232 4.89968 14.1052 4.062 12 4.05883ZM12 13.2282C11.8599 13.2273 11.7258 13.1712 11.6267 13.0721C11.5276 12.9731 11.4715 12.8389 11.4706 12.6988V8.47059C11.4706 8.33018 11.5264 8.19552 11.6257 8.09624C11.7249 7.99695 11.8596 7.94118 12 7.94118C12.1404 7.94118 12.2751 7.99695 12.3744 8.09624C12.4736 8.19552 12.5294 8.33018 12.5294 8.47059V12.6988C12.5295 12.7684 12.5159 12.8373 12.4893 12.9015C12.4627 12.9658 12.4237 13.0242 12.3746 13.0734C12.3254 13.1226 12.267 13.1616 12.2027 13.1881C12.1384 13.2147 12.0696 13.2283 12 13.2282ZM11.6337 16.0086C11.7328 16.1077 11.8669 16.1638 12.0071 16.1647C12.0766 16.1648 12.1455 16.1512 12.2098 16.1246C12.274 16.098 12.3324 16.059 12.3816 16.0098C12.4308 15.9607 12.4698 15.9023 12.4964 15.838C12.5229 15.7737 12.5366 15.7048 12.5365 15.6353V15.5435C12.5365 15.4031 12.4807 15.2685 12.3814 15.1692C12.2821 15.0699 12.1475 15.0141 12.0071 15.0141C11.8666 15.0141 11.732 15.0699 11.6327 15.1692C11.5334 15.2685 11.4776 15.4031 11.4776 15.5435V15.6353C11.4786 15.7754 11.5346 15.9095 11.6337 16.0086Z"
26
+ />
27
+ </svg>
28
+ </template>
@@ -1,31 +1,28 @@
1
- <script lang="ts" setup>
2
- withDefaults(
3
- defineProps<{
4
- color?: string;
5
- width?: string;
6
- height?: string;
7
- }>(),
8
- {
9
- color: "#000",
10
- width: "24",
11
- height: "24",
12
- },
13
- );
14
- </script>
15
-
16
- <template>
17
- <svg
18
- :width="width"
19
- :height="height"
20
- viewBox="0 0 16 16"
21
- fill="none"
22
- xmlns="http://www.w3.org/2000/svg"
23
- >
24
- <path
25
- fill-rule="evenodd"
26
- clip-rule="evenodd"
27
- d="M3.31702 13.5C3.08563 13.4994 2.85847 13.4365 2.65828 13.3178C2.4581 13.1991 2.29192 13.0286 2.17638 12.8235C2.06085 12.6184 2.00003 12.3858 2 12.1491C1.99997 11.9124 2.06075 11.6798 2.17623 11.4746L6.85921 3.17692C6.97422 2.97126 7.14029 2.80035 7.34062 2.68148C7.54095 2.5626 7.76842 2.5 8 2.5C8.23158 2.5 8.45905 2.5626 8.65938 2.68148C8.85971 2.80035 9.02578 2.97126 9.14079 3.17692L13.8238 11.4746C13.9393 11.6798 14 11.9124 14 12.1491C14 12.3858 13.9391 12.6184 13.8236 12.8235C13.7081 13.0286 13.5419 13.1991 13.3417 13.3178C13.1415 13.4365 12.9144 13.4994 12.683 13.5H3.31702ZM7.48233 3.54963L2.79935 11.8424C2.74521 11.9351 2.71663 12.041 2.71663 12.1489C2.71663 12.2569 2.74521 12.3628 2.79935 12.4554C2.85169 12.5484 2.92717 12.6255 3.0181 12.6789C3.10903 12.7323 3.21217 12.7601 3.31702 12.7595H12.6782C12.7832 12.7598 12.8864 12.7317 12.9774 12.6781C13.0684 12.6245 13.144 12.5473 13.1965 12.4543C13.249 12.3613 13.2766 12.2557 13.2765 12.1483C13.2764 12.0408 13.2486 11.9353 13.1959 11.8424L8.51767 3.54963C8.46186 3.46106 8.38523 3.38823 8.29479 3.33779C8.20435 3.28735 8.103 3.26092 8 3.26092C7.897 3.26092 7.79565 3.28735 7.70521 3.33779C7.61477 3.38823 7.53814 3.46106 7.48233 3.54963ZM7.9952 9.46395C7.90005 9.46331 7.80898 9.42436 7.7417 9.35552C7.67442 9.28668 7.63634 9.1935 7.63571 9.09615V6.15861C7.63571 6.06106 7.67359 5.96751 7.741 5.89853C7.80842 5.82955 7.89986 5.7908 7.9952 5.7908C8.09055 5.7908 8.18198 5.82955 8.2494 5.89853C8.31682 5.96751 8.3547 6.06106 8.3547 6.15861V9.09615C8.35476 9.14447 8.3455 9.19233 8.32746 9.23698C8.30942 9.28163 8.28294 9.3222 8.24954 9.35637C8.21615 9.39054 8.17649 9.41763 8.13285 9.43609C8.08921 9.45455 8.04243 9.46402 7.9952 9.46395ZM7.74649 11.3956C7.81377 11.4645 7.90485 11.5034 7.99999 11.5041C8.04722 11.5041 8.094 11.4947 8.13764 11.4762C8.18128 11.4577 8.22094 11.4306 8.25433 11.3965C8.28773 11.3623 8.31421 11.3217 8.33225 11.2771C8.3503 11.2324 8.35955 11.1846 8.35949 11.1363V11.0725C8.35949 10.975 8.32161 10.8814 8.25419 10.8124C8.18678 10.7434 8.09534 10.7047 7.99999 10.7047C7.90465 10.7047 7.81321 10.7434 7.7458 10.8124C7.67838 10.8814 7.6405 10.975 7.6405 11.0725V11.1363C7.64113 11.2336 7.67921 11.3268 7.74649 11.3956Z"
28
- :fill="color"
29
- />
30
- </svg>
31
- </template>
1
+ <script lang="ts" setup>
2
+ withDefaults(
3
+ defineProps<{
4
+ width?: string;
5
+ height?: string;
6
+ }>(),
7
+ {
8
+ width: "24",
9
+ height: "24",
10
+ },
11
+ );
12
+ </script>
13
+
14
+ <template>
15
+ <svg
16
+ :width="width"
17
+ :height="height"
18
+ viewBox="0 0 16 16"
19
+ fill="none"
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ >
22
+ <path
23
+ fill-rule="evenodd"
24
+ clip-rule="evenodd"
25
+ d="M3.31702 13.5C3.08563 13.4994 2.85847 13.4365 2.65828 13.3178C2.4581 13.1991 2.29192 13.0286 2.17638 12.8235C2.06085 12.6184 2.00003 12.3858 2 12.1491C1.99997 11.9124 2.06075 11.6798 2.17623 11.4746L6.85921 3.17692C6.97422 2.97126 7.14029 2.80035 7.34062 2.68148C7.54095 2.5626 7.76842 2.5 8 2.5C8.23158 2.5 8.45905 2.5626 8.65938 2.68148C8.85971 2.80035 9.02578 2.97126 9.14079 3.17692L13.8238 11.4746C13.9393 11.6798 14 11.9124 14 12.1491C14 12.3858 13.9391 12.6184 13.8236 12.8235C13.7081 13.0286 13.5419 13.1991 13.3417 13.3178C13.1415 13.4365 12.9144 13.4994 12.683 13.5H3.31702ZM7.48233 3.54963L2.79935 11.8424C2.74521 11.9351 2.71663 12.041 2.71663 12.1489C2.71663 12.2569 2.74521 12.3628 2.79935 12.4554C2.85169 12.5484 2.92717 12.6255 3.0181 12.6789C3.10903 12.7323 3.21217 12.7601 3.31702 12.7595H12.6782C12.7832 12.7598 12.8864 12.7317 12.9774 12.6781C13.0684 12.6245 13.144 12.5473 13.1965 12.4543C13.249 12.3613 13.2766 12.2557 13.2765 12.1483C13.2764 12.0408 13.2486 11.9353 13.1959 11.8424L8.51767 3.54963C8.46186 3.46106 8.38523 3.38823 8.29479 3.33779C8.20435 3.28735 8.103 3.26092 8 3.26092C7.897 3.26092 7.79565 3.28735 7.70521 3.33779C7.61477 3.38823 7.53814 3.46106 7.48233 3.54963ZM7.9952 9.46395C7.90005 9.46331 7.80898 9.42436 7.7417 9.35552C7.67442 9.28668 7.63634 9.1935 7.63571 9.09615V6.15861C7.63571 6.06106 7.67359 5.96751 7.741 5.89853C7.80842 5.82955 7.89986 5.7908 7.9952 5.7908C8.09055 5.7908 8.18198 5.82955 8.2494 5.89853C8.31682 5.96751 8.3547 6.06106 8.3547 6.15861V9.09615C8.35476 9.14447 8.3455 9.19233 8.32746 9.23698C8.30942 9.28163 8.28294 9.3222 8.24954 9.35637C8.21615 9.39054 8.17649 9.41763 8.13285 9.43609C8.08921 9.45455 8.04243 9.46402 7.9952 9.46395ZM7.74649 11.3956C7.81377 11.4645 7.90485 11.5034 7.99999 11.5041C8.04722 11.5041 8.094 11.4947 8.13764 11.4762C8.18128 11.4577 8.22094 11.4306 8.25433 11.3965C8.28773 11.3623 8.31421 11.3217 8.33225 11.2771C8.3503 11.2324 8.35955 11.1846 8.35949 11.1363V11.0725C8.35949 10.975 8.32161 10.8814 8.25419 10.8124C8.18678 10.7434 8.09534 10.7047 7.99999 10.7047C7.90465 10.7047 7.81321 10.7434 7.7458 10.8124C7.67838 10.8814 7.6405 10.975 7.6405 11.0725V11.1363C7.64113 11.2336 7.67921 11.3268 7.74649 11.3956Z"
26
+ />
27
+ </svg>
28
+ </template>
@@ -1,29 +1,26 @@
1
- <script lang="ts" setup>
2
- withDefaults(
3
- defineProps<{
4
- color?: string;
5
- width?: string;
6
- height?: string;
7
- }>(),
8
- {
9
- color: "#000",
10
- width: "24",
11
- height: "24",
12
- },
13
- );
14
- </script>
15
-
16
- <template>
17
- <svg
18
- :width="width"
19
- :height="height"
20
- viewBox="0 0 24 24"
21
- fill="none"
22
- xmlns="http://www.w3.org/2000/svg"
23
- >
24
- <path
25
- d="M13.2353 16.2353C13.2353 16.3757 13.1795 16.5104 13.0802 16.6096C12.981 16.7089 12.8463 16.7647 12.7059 16.7647C12.3783 16.7647 12.0641 16.6346 11.8324 16.4029C11.6007 16.1712 11.4706 15.857 11.4706 15.5294V12C11.4706 11.9532 11.452 11.9083 11.4189 11.8752C11.3858 11.8421 11.3409 11.8235 11.2941 11.8235C11.1537 11.8235 11.0191 11.7677 10.9198 11.6685C10.8205 11.5692 10.7647 11.4345 10.7647 11.2941C10.7647 11.1537 10.8205 11.019 10.9198 10.9198C11.0191 10.8205 11.1537 10.7647 11.2941 10.7647C11.6217 10.7647 11.9359 10.8948 12.1676 11.1265C12.3993 11.3582 12.5294 11.6724 12.5294 12V15.5294C12.5294 15.5762 12.548 15.6211 12.5811 15.6542C12.6142 15.6873 12.6591 15.7059 12.7059 15.7059C12.8463 15.7059 12.981 15.7617 13.0802 15.8609C13.1795 15.9602 13.2353 16.0949 13.2353 16.2353ZM11.6471 9C11.8216 9 11.9922 8.94825 12.1373 8.8513C12.2824 8.75434 12.3955 8.61654 12.4622 8.45531C12.529 8.29408 12.5465 8.11667 12.5125 7.94551C12.4784 7.77435 12.3944 7.61713 12.271 7.49373C12.1476 7.37033 11.9904 7.28629 11.8192 7.25225C11.648 7.2182 11.4706 7.23568 11.3094 7.30246C11.1482 7.36924 11.0104 7.48233 10.9134 7.62744C10.8165 7.77254 10.7647 7.94313 10.7647 8.11765C10.7647 8.35166 10.8577 8.57609 11.0231 8.74156C11.1886 8.90704 11.413 9 11.6471 9ZM21 12C21 13.78 20.4722 15.5201 19.4832 17.0001C18.4943 18.4802 17.0887 19.6337 15.4442 20.3149C13.7996 20.9961 11.99 21.1743 10.2442 20.8271C8.49836 20.4798 6.89471 19.6226 5.63604 18.364C4.37737 17.1053 3.5202 15.5016 3.17294 13.7558C2.82567 12.01 3.0039 10.2004 3.68509 8.55585C4.36628 6.91131 5.51983 5.50571 6.99987 4.51677C8.47991 3.52784 10.22 3 12 3C14.3861 3.0028 16.6736 3.95191 18.3609 5.63913C20.0481 7.32635 20.9972 9.61391 21 12ZM19.9412 12C19.9412 10.4294 19.4754 8.89404 18.6028 7.58812C17.7303 6.2822 16.49 5.26436 15.039 4.66331C13.5879 4.06226 11.9912 3.905 10.4508 4.21141C8.91032 4.51782 7.49534 5.27415 6.38474 6.38474C5.27415 7.49533 4.51783 8.91031 4.21141 10.4508C3.905 11.9912 4.06226 13.5879 4.66331 15.039C5.26436 16.49 6.2822 17.7303 7.58812 18.6028C8.89404 19.4754 10.4294 19.9412 12 19.9412C14.1054 19.9388 16.1239 19.1014 17.6127 17.6127C19.1014 16.1239 19.9388 14.1054 19.9412 12Z"
26
- :fill="color"
27
- />
28
- </svg>
29
- </template>
1
+ <script lang="ts" setup>
2
+ withDefaults(
3
+ defineProps<{
4
+ width?: string;
5
+ height?: string;
6
+ }>(),
7
+ {
8
+ width: "24",
9
+ height: "24",
10
+ },
11
+ );
12
+ </script>
13
+
14
+ <template>
15
+ <svg
16
+ :width="width"
17
+ :height="height"
18
+ viewBox="0 0 24 24"
19
+ fill="none"
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ >
22
+ <path
23
+ d="M13.2353 16.2353C13.2353 16.3757 13.1795 16.5104 13.0802 16.6096C12.981 16.7089 12.8463 16.7647 12.7059 16.7647C12.3783 16.7647 12.0641 16.6346 11.8324 16.4029C11.6007 16.1712 11.4706 15.857 11.4706 15.5294V12C11.4706 11.9532 11.452 11.9083 11.4189 11.8752C11.3858 11.8421 11.3409 11.8235 11.2941 11.8235C11.1537 11.8235 11.0191 11.7677 10.9198 11.6685C10.8205 11.5692 10.7647 11.4345 10.7647 11.2941C10.7647 11.1537 10.8205 11.019 10.9198 10.9198C11.0191 10.8205 11.1537 10.7647 11.2941 10.7647C11.6217 10.7647 11.9359 10.8948 12.1676 11.1265C12.3993 11.3582 12.5294 11.6724 12.5294 12V15.5294C12.5294 15.5762 12.548 15.6211 12.5811 15.6542C12.6142 15.6873 12.6591 15.7059 12.7059 15.7059C12.8463 15.7059 12.981 15.7617 13.0802 15.8609C13.1795 15.9602 13.2353 16.0949 13.2353 16.2353ZM11.6471 9C11.8216 9 11.9922 8.94825 12.1373 8.8513C12.2824 8.75434 12.3955 8.61654 12.4622 8.45531C12.529 8.29408 12.5465 8.11667 12.5125 7.94551C12.4784 7.77435 12.3944 7.61713 12.271 7.49373C12.1476 7.37033 11.9904 7.28629 11.8192 7.25225C11.648 7.2182 11.4706 7.23568 11.3094 7.30246C11.1482 7.36924 11.0104 7.48233 10.9134 7.62744C10.8165 7.77254 10.7647 7.94313 10.7647 8.11765C10.7647 8.35166 10.8577 8.57609 11.0231 8.74156C11.1886 8.90704 11.413 9 11.6471 9ZM21 12C21 13.78 20.4722 15.5201 19.4832 17.0001C18.4943 18.4802 17.0887 19.6337 15.4442 20.3149C13.7996 20.9961 11.99 21.1743 10.2442 20.8271C8.49836 20.4798 6.89471 19.6226 5.63604 18.364C4.37737 17.1053 3.5202 15.5016 3.17294 13.7558C2.82567 12.01 3.0039 10.2004 3.68509 8.55585C4.36628 6.91131 5.51983 5.50571 6.99987 4.51677C8.47991 3.52784 10.22 3 12 3C14.3861 3.0028 16.6736 3.95191 18.3609 5.63913C20.0481 7.32635 20.9972 9.61391 21 12ZM19.9412 12C19.9412 10.4294 19.4754 8.89404 18.6028 7.58812C17.7303 6.2822 16.49 5.26436 15.039 4.66331C13.5879 4.06226 11.9912 3.905 10.4508 4.21141C8.91032 4.51782 7.49534 5.27415 6.38474 6.38474C5.27415 7.49533 4.51783 8.91031 4.21141 10.4508C3.905 11.9912 4.06226 13.5879 4.66331 15.039C5.26436 16.49 6.2822 17.7303 7.58812 18.6028C8.89404 19.4754 10.4294 19.9412 12 19.9412C14.1054 19.9388 16.1239 19.1014 17.6127 17.6127C19.1014 16.1239 19.9388 14.1054 19.9412 12Z"
24
+ />
25
+ </svg>
26
+ </template>
@@ -1,28 +1,26 @@
1
- <script lang="ts" setup>
2
- withDefaults(
3
- defineProps<{
4
- color?: string;
5
- width?: string;
6
- height?: string;
7
- }>(),
8
- {
9
- color: "#000",
10
- width: "24",
11
- height: "24",
12
- },
13
- );
14
- </script>
15
-
16
- <template>
17
- <svg
18
- :width="width"
19
- :height="height"
20
- viewBox="0 0 16 16"
21
- fill="none"
22
- xmlns="http://www.w3.org/2000/svg"
23
- >
24
- <path
25
- d="M8.0101 6.79111L12.5555 10.7793C12.6425 10.8583 12.7495 10.9192 12.8684 10.9572C12.9873 10.9951 13.1148 11.0092 13.2411 10.9983C13.3674 10.9873 13.489 10.9517 13.5966 10.8942C13.7041 10.8366 13.7947 10.7587 13.8613 10.6664C13.9537 10.5445 14.0025 10.4022 14.0018 10.257C14.0006 10.1602 13.9782 10.0644 13.9357 9.97464C13.8949 9.88489 13.833 9.80321 13.7539 9.73464L8.60514 5.21699C8.52804 5.14766 8.43526 5.09242 8.33241 5.05464C8.22731 5.01838 8.11519 4.99922 8.00183 4.99817C7.89105 4.99835 7.78144 5.01755 7.67952 5.05464C7.57372 5.09158 7.47804 5.14686 7.39853 5.21699L2.22498 9.7417C2.08201 9.88017 2.00272 10.0582 2.00185 10.2429C2.0012 10.3375 2.02281 10.4312 2.0654 10.5185C2.10799 10.6058 2.17069 10.6849 2.24978 10.7511C2.32563 10.8191 2.41659 10.8735 2.51735 10.911C2.6181 10.9486 2.72662 10.9686 2.83655 10.9699C2.94809 10.9724 3.05904 10.9555 3.16272 10.9203C3.26641 10.8851 3.36068 10.8324 3.43986 10.7652L8.0101 6.79111Z"
26
- />
27
- </svg>
28
- </template>
1
+ <script lang="ts" setup>
2
+ withDefaults(
3
+ defineProps<{
4
+ width?: string;
5
+ height?: string;
6
+ }>(),
7
+ {
8
+ width: "24",
9
+ height: "24",
10
+ },
11
+ );
12
+ </script>
13
+
14
+ <template>
15
+ <svg
16
+ :width="width"
17
+ :height="height"
18
+ viewBox="0 0 16 16"
19
+ fill="none"
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ >
22
+ <path
23
+ d="M8.0101 6.79111L12.5555 10.7793C12.6425 10.8583 12.7495 10.9192 12.8684 10.9572C12.9873 10.9951 13.1148 11.0092 13.2411 10.9983C13.3674 10.9873 13.489 10.9517 13.5966 10.8942C13.7041 10.8366 13.7947 10.7587 13.8613 10.6664C13.9537 10.5445 14.0025 10.4022 14.0018 10.257C14.0006 10.1602 13.9782 10.0644 13.9357 9.97464C13.8949 9.88489 13.833 9.80321 13.7539 9.73464L8.60514 5.21699C8.52804 5.14766 8.43526 5.09242 8.33241 5.05464C8.22731 5.01838 8.11519 4.99922 8.00183 4.99817C7.89105 4.99835 7.78144 5.01755 7.67952 5.05464C7.57372 5.09158 7.47804 5.14686 7.39853 5.21699L2.22498 9.7417C2.08201 9.88017 2.00272 10.0582 2.00185 10.2429C2.0012 10.3375 2.02281 10.4312 2.0654 10.5185C2.10799 10.6058 2.17069 10.6849 2.24978 10.7511C2.32563 10.8191 2.41659 10.8735 2.51735 10.911C2.6181 10.9486 2.72662 10.9686 2.83655 10.9699C2.94809 10.9724 3.05904 10.9555 3.16272 10.9203C3.26641 10.8851 3.36068 10.8324 3.43986 10.7652L8.0101 6.79111Z"
24
+ />
25
+ </svg>
26
+ </template>
@@ -1,29 +1,26 @@
1
- <script lang="ts" setup>
2
- withDefaults(
3
- defineProps<{
4
- color?: string;
5
- width?: string;
6
- height?: string;
7
- }>(),
8
- {
9
- color: "#000",
10
- width: "24",
11
- height: "24",
12
- },
13
- );
14
- </script>
15
-
16
- <template>
17
- <svg
18
- :width="width"
19
- :height="height"
20
- viewBox="0 0 16 16"
21
- fill="none"
22
- xmlns="http://www.w3.org/2000/svg"
23
- >
24
- <path
25
- d="M13.9644 4.57682C13.9301 4.47657 13.8755 4.38358 13.8037 4.30302C13.7315 4.22286 13.6443 4.15585 13.5467 4.10528C13.4481 4.05907 13.3423 4.02825 13.2333 4.01401C13.1244 3.99533 13.0129 3.99533 12.904 4.01401C12.8054 4.06008 12.7179 4.12479 12.6469 4.20415L5.10333 10.0833L3.49661 8.29597C3.42333 8.21905 3.33423 8.15711 3.23476 8.11395C3.1353 8.07079 3.02757 8.04733 2.91819 8.04499C2.80938 8.03625 2.69983 8.0486 2.59624 8.08129C2.49264 8.11399 2.39717 8.16633 2.31567 8.23513C2.14485 8.36947 2.03313 8.55931 2.00236 8.76752C1.9857 8.9801 2.05782 9.19038 2.2032 9.35315L4.37227 11.7261C4.4518 11.8117 4.55064 11.8793 4.66148 11.9238C4.76829 11.9757 4.88693 12.0018 5.00693 11.9999C5.20648 11.9967 5.39902 11.9297 5.55321 11.8098L13.6913 5.42865C13.7771 5.36436 13.8482 5.28412 13.9001 5.19288C13.9545 5.09902 13.9874 4.99536 13.9965 4.88865C14.0063 4.78372 13.9954 4.67799 13.9644 4.57682Z"
26
- :fill="color"
27
- />
28
- </svg>
29
- </template>
1
+ <script lang="ts" setup>
2
+ withDefaults(
3
+ defineProps<{
4
+ width?: string;
5
+ height?: string;
6
+ }>(),
7
+ {
8
+ width: "24",
9
+ height: "24",
10
+ },
11
+ );
12
+ </script>
13
+
14
+ <template>
15
+ <svg
16
+ :width="width"
17
+ :height="height"
18
+ viewBox="0 0 16 16"
19
+ fill="none"
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ >
22
+ <path
23
+ d="M13.9644 4.57682C13.9301 4.47657 13.8755 4.38358 13.8037 4.30302C13.7315 4.22286 13.6443 4.15585 13.5467 4.10528C13.4481 4.05907 13.3423 4.02825 13.2333 4.01401C13.1244 3.99533 13.0129 3.99533 12.904 4.01401C12.8054 4.06008 12.7179 4.12479 12.6469 4.20415L5.10333 10.0833L3.49661 8.29597C3.42333 8.21905 3.33423 8.15711 3.23476 8.11395C3.1353 8.07079 3.02757 8.04733 2.91819 8.04499C2.80938 8.03625 2.69983 8.0486 2.59624 8.08129C2.49264 8.11399 2.39717 8.16633 2.31567 8.23513C2.14485 8.36947 2.03313 8.55931 2.00236 8.76752C1.9857 8.9801 2.05782 9.19038 2.2032 9.35315L4.37227 11.7261C4.4518 11.8117 4.55064 11.8793 4.66148 11.9238C4.76829 11.9757 4.88693 12.0018 5.00693 11.9999C5.20648 11.9967 5.39902 11.9297 5.55321 11.8098L13.6913 5.42865C13.7771 5.36436 13.8482 5.28412 13.9001 5.19288C13.9545 5.09902 13.9874 4.99536 13.9965 4.88865C14.0063 4.78372 13.9954 4.67799 13.9644 4.57682Z"
24
+ />
25
+ </svg>
26
+ </template>