fleetcor-lwc 3.9.5 → 3.9.7

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 (52) hide show
  1. package/README.md +11 -2
  2. package/frontend/components/flt/button/button.html +10 -2
  3. package/frontend/components/flt/icon/icon.scss +2 -2
  4. package/frontend/components/flt/icon/icons/tmpl-app-shortcut.html +4 -4
  5. package/frontend/components/flt/icon/icons/tmpl-arrow-left.html +1 -1
  6. package/frontend/components/flt/icon/icons/tmpl-arrow-right.html +1 -1
  7. package/frontend/components/flt/icon/icons/tmpl-blocked.html +1 -1
  8. package/frontend/components/flt/icon/icons/tmpl-both.html +7 -7
  9. package/frontend/components/flt/icon/icons/tmpl-car.html +8 -8
  10. package/frontend/components/flt/icon/icons/tmpl-carwash.html +17 -17
  11. package/frontend/components/flt/icon/icons/tmpl-check.html +1 -1
  12. package/frontend/components/flt/icon/icons/tmpl-close.html +1 -1
  13. package/frontend/components/flt/icon/icons/tmpl-credit-card.html +1 -1
  14. package/frontend/components/flt/icon/icons/tmpl-diesel.html +8 -8
  15. package/frontend/components/flt/icon/icons/tmpl-directions-car.html +3 -3
  16. package/frontend/components/flt/icon/icons/tmpl-discount.html +3 -3
  17. package/frontend/components/flt/icon/icons/tmpl-document.html +1 -1
  18. package/frontend/components/flt/icon/icons/tmpl-drag-indicator.html +1 -1
  19. package/frontend/components/flt/icon/icons/tmpl-driver.html +2 -2
  20. package/frontend/components/flt/icon/icons/tmpl-ev-and-fuel.html +3 -3
  21. package/frontend/components/flt/icon/icons/tmpl-ev.html +3 -3
  22. package/frontend/components/flt/icon/icons/tmpl-eye.html +1 -1
  23. package/frontend/components/flt/icon/icons/tmpl-fuel.html +5 -5
  24. package/frontend/components/flt/icon/icons/tmpl-gas-station.html +1 -1
  25. package/frontend/components/flt/icon/icons/tmpl-gear-wheel.html +2 -2
  26. package/frontend/components/flt/icon/icons/tmpl-headset-mic.html +1 -1
  27. package/frontend/components/flt/icon/icons/tmpl-hgv.html +1 -1
  28. package/frontend/components/flt/icon/icons/tmpl-hydrogen.html +8 -8
  29. package/frontend/components/flt/icon/icons/tmpl-key.html +1 -1
  30. package/frontend/components/flt/icon/icons/tmpl-local-shipping.html +1 -1
  31. package/frontend/components/flt/icon/icons/tmpl-map-pin.html +2 -2
  32. package/frontend/components/flt/icon/icons/tmpl-multiple-users.html +1 -1
  33. package/frontend/components/flt/icon/icons/tmpl-oil.html +4 -4
  34. package/frontend/components/flt/icon/icons/tmpl-parking-sign.html +2 -2
  35. package/frontend/components/flt/icon/icons/tmpl-pin-drop.html +2 -2
  36. package/frontend/components/flt/icon/icons/tmpl-place.html +1 -1
  37. package/frontend/components/flt/icon/icons/tmpl-plus.html +1 -1
  38. package/frontend/components/flt/icon/icons/tmpl-public.html +1 -1
  39. package/frontend/components/flt/icon/icons/tmpl-receipt.html +5 -5
  40. package/frontend/components/flt/icon/icons/tmpl-search.html +1 -1
  41. package/frontend/components/flt/icon/icons/tmpl-sell.html +2 -2
  42. package/frontend/components/flt/icon/icons/tmpl-shared-card.html +1 -1
  43. package/frontend/components/flt/icon/icons/tmpl-sign.html +1 -1
  44. package/frontend/components/flt/icon/icons/tmpl-signature.html +2 -2
  45. package/frontend/components/flt/icon/icons/tmpl-small-plus.html +1 -1
  46. package/frontend/components/flt/icon/icons/tmpl-unleaded.html +7 -7
  47. package/frontend/components/flt/icon/icons/tmpl-van.html +12 -12
  48. package/frontend/components/flt/icon/icons/tmpl-vehicle.html +8 -8
  49. package/frontend/components/flt/icon/icons/tmpl-world.html +1 -1
  50. package/frontend/components/flt/radioGroupChips/radioGroupChips.html +5 -2
  51. package/frontend/core/interface/SelectElement.js +2 -0
  52. package/package.json +1 -1
package/README.md CHANGED
@@ -171,8 +171,9 @@ Add / update `lwc.config.json` file in your project
171
171
  icon-right="arrow-left"
172
172
  disabled
173
173
  label="Next"
174
- ><!-- Any html element --></flt-button
175
174
  >
175
+ <!-- Any html element -->
176
+ </flt-button>
176
177
  ...
177
178
  ```
178
179
 
@@ -315,7 +316,7 @@ Add / update `lwc.config.json` file in your project
315
316
  | @api variables | type | values | required | description |
316
317
  | -------------- | ------ | --------- | -------- | ------------------------------------------------------------------ |
317
318
  | name | string | | + | |
318
- | options | array | | + | Array of available items with `label` and `value` as unique string |
319
+ | options | array | | + | Array of available items with parameters: `label` - string; `value` - unique string; `iconLeft` and `iconRight` - any value from `Icon` component |
319
320
  | size | string | `medium` | - | Size of buttons (button sizes) |
320
321
  | type | string | `primary` | - | Type of selected button (button types) |
321
322
  | value | string | | - | Current value from options items value |
@@ -726,6 +727,14 @@ You can override them as you wish by global css variables as priority.
726
727
 
727
728
  ## Release Notes:
728
729
 
730
+ - v.3.9.7
731
+
732
+ - Icon component updates to use `--flt-icon-color`
733
+
734
+ - v.3.9.6
735
+
736
+ - Added ability to use `iconLeft` and `iconRight` parameters in options (`flt-radio-group-chips`)
737
+
729
738
  - v.3.9.5
730
739
 
731
740
  - Added new icons: 'discount', 'pin-drop','credit-card','receipt','gear-wheel','app-shortcut','drug-indicator','sell','parking-sign','headset-mic','gas-station','directions-car','local-shipping','public','place'
@@ -1,11 +1,19 @@
1
1
  <template lwc:render-mode="light">
2
2
  <button class={cssClass} disabled={disabled}>
3
3
  <slot name="iconLeft">
4
- <flt-icon class="flt-button__icon-left" lwc:if={iconLeft} icon={iconLeft}></flt-icon>
4
+ <flt-icon
5
+ lwc:if={iconLeft}
6
+ class="flt-button__icon-left"
7
+ icon={iconLeft}
8
+ ></flt-icon>
5
9
  </slot>
6
10
  <span class="flt-button__label">{label}<slot></slot></span>
7
11
  <slot name="iconRight">
8
- <flt-icon class="flt-button__icon-right" lwc:if={iconRight} icon={iconRight}></flt-icon>
12
+ <flt-icon
13
+ lwc:if={iconRight}
14
+ class="flt-button__icon-right"
15
+ icon={iconRight}
16
+ ></flt-icon>
9
17
  </slot>
10
18
  </button>
11
19
  </template>
@@ -5,11 +5,11 @@ $FLT_ICON_COLOR: var(--flt-icon-color, #111827);
5
5
  height: 24px;
6
6
  display: inline-flex;
7
7
 
8
- &__path {
8
+ &__prop-stroke {
9
9
  stroke: $FLT_ICON_COLOR;
10
10
  }
11
11
 
12
- &__path-fill {
12
+ &__prop-fill {
13
13
  fill: $FLT_ICON_COLOR;
14
14
  }
15
15
  }
@@ -1,8 +1,8 @@
1
1
  <template lwc:render-mode="light">
2
2
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M12.5 15.0007H4.16667V5.00065H12.5V5.83398H14.1667V2.50065C14.1667 1.58398 13.4167 0.833984 12.5 0.833984H4.16667C3.25 0.833984 2.5 1.58398 2.5 2.50065V17.5007C2.5 18.4173 3.25 19.1673 4.16667 19.1673H12.5C13.4167 19.1673 14.1667 18.4173 14.1667 17.5007V14.1673H12.5V15.0007ZM4.16667 2.50065H12.5V3.33398H4.16667V2.50065ZM12.5 17.5007H4.16667V16.6673H12.5V17.5007Z" fill="#1A1A1A"/>
4
- <path d="M15.3167 8.01732L15.8333 9.16732L16.35 8.01732L17.5 7.50065L16.35 6.98398L15.8333 5.83398L15.3167 6.98398L14.1667 7.50065L15.3167 8.01732Z" fill="#1A1A1A"/>
5
- <path d="M11.6667 6.66732L10.625 8.95898L8.33333 10.0007L10.625 11.0423L11.6667 13.334L12.7083 11.0423L15 10.0007L12.7083 8.95898L11.6667 6.66732Z" fill="#1A1A1A"/>
6
- <path d="M15.8333 10.834L15.3167 11.984L14.1667 12.5007L15.3167 13.0173L15.8333 14.1673L16.35 13.0173L17.5 12.5007L16.35 11.984L15.8333 10.834Z" fill="#1A1A1A"/>
3
+ <path d="M12.5 15.0007H4.16667V5.00065H12.5V5.83398H14.1667V2.50065C14.1667 1.58398 13.4167 0.833984 12.5 0.833984H4.16667C3.25 0.833984 2.5 1.58398 2.5 2.50065V17.5007C2.5 18.4173 3.25 19.1673 4.16667 19.1673H12.5C13.4167 19.1673 14.1667 18.4173 14.1667 17.5007V14.1673H12.5V15.0007ZM4.16667 2.50065H12.5V3.33398H4.16667V2.50065ZM12.5 17.5007H4.16667V16.6673H12.5V17.5007Z" class="flt-icon__prop-fill"/>
4
+ <path d="M15.3167 8.01732L15.8333 9.16732L16.35 8.01732L17.5 7.50065L16.35 6.98398L15.8333 5.83398L15.3167 6.98398L14.1667 7.50065L15.3167 8.01732Z" class="flt-icon__prop-fill"/>
5
+ <path d="M11.6667 6.66732L10.625 8.95898L8.33333 10.0007L10.625 11.0423L11.6667 13.334L12.7083 11.0423L15 10.0007L12.7083 8.95898L11.6667 6.66732Z" class="flt-icon__prop-fill"/>
6
+ <path d="M15.8333 10.834L15.3167 11.984L14.1667 12.5007L15.3167 13.0173L15.8333 14.1673L16.35 13.0173L17.5 12.5007L16.35 11.984L15.8333 10.834Z" class="flt-icon__prop-fill"/>
7
7
  </svg>
8
8
  </template>
@@ -7,7 +7,7 @@
7
7
  fill="none"
8
8
  xmlns="http://www.w3.org/2000/svg">
9
9
  <path
10
- class="flt-icon__path"
10
+ class="flt-icon__prop-stroke"
11
11
  d="M3 12H21M10 19L3 12L10 19ZM3 12L10 5L3 12Z"
12
12
  stroke-linecap="round"
13
13
  stroke-linejoin="round"></path>
@@ -7,7 +7,7 @@
7
7
  fill="none"
8
8
  xmlns="http://www.w3.org/2000/svg">
9
9
  <path
10
- class="flt-icon__path"
10
+ class="flt-icon__prop-stroke"
11
11
  d="M21 12H3M14 5L21 12L14 5ZM21 12L14 19L21 12Z"
12
12
  stroke-linecap="round"
13
13
  stroke-linejoin="round"></path>
@@ -7,7 +7,7 @@
7
7
  fill="none"
8
8
  xmlns="http://www.w3.org/2000/svg">
9
9
  <path
10
- class="flt-icon__path"
10
+ class="flt-icon__prop-stroke"
11
11
  d="M18.364 18.364L5.63604 5.63604M18.364 18.364C21.8787 14.8492 21.8787 9.15076 18.364 5.63604C14.8492 2.12132 9.15076 2.12132 5.63604 5.63604L18.364 18.364ZM18.364 18.364C14.8492 21.8787 9.15076 21.8787 5.63604 18.364C2.12132 14.8492 2.12132 9.15076 5.63604 5.63604L18.364 18.364Z"
12
12
  stroke-linecap="round"
13
13
  stroke-linejoin="round"></path>
@@ -8,37 +8,37 @@
8
8
  xmlns="http://www.w3.org/2000/svg">
9
9
  <path
10
10
  d="M13.5 5C13.5 7.20914 11.7091 9 9.5 9C7.29086 9 5.5 7.20914 5.5 5C5.5 2.79086 7.29086 1 9.5 1C11.7091 1 13.5 2.79086 13.5 5Z"
11
- class="flt-icon__path"
11
+ class="flt-icon__prop-stroke"
12
12
  stroke-linecap="round"
13
13
  stroke-linejoin="round"></path>
14
14
  <path
15
15
  d="M2.5 19C2.5 15.134 5.63401 12 9.5 12C10 12 12 12 12 12.5M2 22.5L21.5 3"
16
- class="flt-icon__path"
16
+ class="flt-icon__prop-stroke"
17
17
  stroke-linecap="round"
18
18
  stroke-linejoin="round"></path>
19
19
  <path
20
20
  d="M5 19.5H19.9611C20.8364 19.5 21.5058 18.85 21.5058 18V15.4C21.5058 14.8 21.2998 14.25 20.9909 13.75L20.476 13L22.5355 12.5C22.8444 12.5 23.0504 12.3 23.0504 12V11C23.0504 10.7 22.8444 10.5 22.5355 10.5H19.9611L18.9314 12L17.3868 12.5L12 12.5001"
21
- class="flt-icon__path"
21
+ class="flt-icon__prop-stroke"
22
22
  stroke-miterlimit="10"
23
23
  stroke-linejoin="round"></path>
24
24
  <path
25
25
  d="M19.4462 11.5C19.4462 11.5 18.159 8.75 17.9016 8.5C17.6441 8.25 17.2322 8 16.8718 8C16.048 8 17.5812 8 16.5 8"
26
- class="flt-icon__path"
26
+ class="flt-icon__prop-stroke"
27
27
  stroke-miterlimit="10"
28
28
  stroke-linejoin="round"></path>
29
29
  <path
30
30
  d="M19.9611 14.5L19.7036 14.75C19.2402 15.2 18.5709 15.5 17.9016 15.5H16.3569"
31
- class="flt-icon__path"
31
+ class="flt-icon__prop-stroke"
32
32
  stroke-miterlimit="10"
33
33
  stroke-linejoin="round"></path>
34
34
  <path
35
35
  d="M20.9908 19V21C20.9908 21.3 20.7849 21.5 20.4759 21.5H16.8718C16.5629 21.5 16.3569 21.3 16.3569 21V19.5"
36
- class="flt-icon__path"
36
+ class="flt-icon__prop-stroke"
37
37
  stroke-miterlimit="10"
38
38
  stroke-linejoin="round"></path>
39
39
  <path
40
40
  d="M7.08936 17.5H16.3571"
41
- class="flt-icon__path"
41
+ class="flt-icon__prop-stroke"
42
42
  stroke-miterlimit="10"
43
43
  stroke-linejoin="round"></path>
44
44
  </svg>
@@ -8,25 +8,25 @@
8
8
  xmlns="http://www.w3.org/2000/svg">
9
9
  <path
10
10
  d="M15.9394 16.5181H7.26189C7.17326 16.5181 7.08827 16.4836 7.02561 16.4222C6.96294 16.3608 6.92773 16.2775 6.92773 16.1907C6.92773 16.1038 6.96294 16.0206 7.02561 15.9592C7.08827 15.8978 7.17326 15.8633 7.26189 15.8633L15.9394 15.8633C16.028 15.8633 16.113 15.8978 16.1756 15.9592C16.2383 16.0206 16.2735 16.1038 16.2735 16.1907C16.2735 16.2775 16.2383 16.3608 16.1756 16.4222C16.113 16.4836 16.028 16.5181 15.9394 16.5181Z"
11
- class="flt-icon__path-fill"></path>
11
+ class="flt-icon__prop-fill"></path>
12
12
  <path
13
13
  d="M22.1766 16.5198H20.6977C20.6091 16.5198 20.5241 16.4853 20.4614 16.4239C20.3987 16.3626 20.3635 16.2793 20.3635 16.1925C20.3635 16.1056 20.3987 16.0224 20.4614 15.961C20.5241 15.8996 20.6091 15.8651 20.6977 15.8651H22.1766C22.4021 15.8647 22.6183 15.7768 22.7777 15.6205C22.9371 15.4643 23.0268 15.2525 23.0271 15.0315V12.4694C23.0286 12.2693 22.9558 12.0754 22.8224 11.9239C22.6889 11.7724 22.5039 11.6735 22.3016 11.6457L18.3877 11.0849C18.3102 11.0736 18.2393 11.0361 18.1872 10.9788L14.2155 6.61865C14.1843 6.58311 14.1456 6.55465 14.1021 6.53526C14.0586 6.51586 14.0113 6.506 13.9635 6.50635H4.62795C4.57612 6.50592 4.52487 6.51712 4.47813 6.53908C4.43139 6.56104 4.3904 6.59318 4.35829 6.63305L1.04384 10.7843C0.997415 10.842 0.972431 10.9135 0.972995 10.987V14.8623C0.973261 15.1282 1.08117 15.3831 1.27305 15.5712C1.46492 15.7592 1.7251 15.865 1.9965 15.8654H2.67249C2.76112 15.8654 2.84611 15.8999 2.90878 15.9613C2.97144 16.0227 3.00665 16.106 3.00665 16.1928C3.00665 16.2796 2.97144 16.3629 2.90878 16.4243C2.84611 16.4857 2.76112 16.5202 2.67249 16.5202H1.9965C1.54791 16.5196 1.11785 16.3448 0.80068 16.034C0.483508 15.7232 0.305133 15.3018 0.304691 14.8623V10.987C0.304129 10.7675 0.378991 10.5543 0.517212 10.3816L3.83234 6.22938C3.92665 6.11101 4.04741 6.0154 4.18534 5.9499C4.32326 5.8844 4.47468 5.85077 4.62795 5.85158H13.9635C14.1059 5.85154 14.2466 5.88121 14.3764 5.93862C14.5061 5.99603 14.6219 6.07986 14.716 6.18453L18.6045 10.454L22.3978 10.9991C22.7592 11.0486 23.09 11.2249 23.3286 11.4954C23.5672 11.7658 23.6976 12.1119 23.6954 12.4694V15.0315C23.6949 15.4261 23.5348 15.8043 23.2501 16.0833C22.9654 16.3623 22.5793 16.5193 22.1766 16.5198V16.5198Z"
14
- class="flt-icon__path-fill"></path>
14
+ class="flt-icon__prop-fill"></path>
15
15
  <path
16
16
  d="M18.4044 18.7644C17.8849 18.7645 17.377 18.6136 16.945 18.3308C16.5129 18.048 16.1762 17.6461 15.9774 17.1758C15.7785 16.7055 15.7265 16.188 15.8278 15.6888C15.9291 15.1895 16.1793 14.7309 16.5467 14.371C16.9141 14.011 17.3822 13.7659 17.8917 13.6666C18.4013 13.5673 18.9295 13.6183 19.4095 13.8132C19.8895 14.008 20.2997 14.3379 20.5883 14.7612C20.8769 15.1845 21.031 15.6821 21.0309 16.1911C21.03 16.8733 20.753 17.5273 20.2606 18.0097C19.7683 18.4921 19.1008 18.7635 18.4044 18.7644V18.7644ZM18.4044 14.2723C18.0171 14.2722 17.6384 14.3847 17.3163 14.5955C16.9942 14.8063 16.7431 15.106 16.5948 15.4566C16.4465 15.8072 16.4077 16.193 16.4832 16.5653C16.5588 16.9375 16.7453 17.2794 17.0192 17.5478C17.293 17.8162 17.642 17.999 18.0219 18.073C18.4018 18.1471 18.7956 18.1091 19.1535 17.9639C19.5114 17.8187 19.8173 17.5727 20.0325 17.2572C20.2477 16.9416 20.3626 16.5706 20.3626 16.1911C20.3621 15.6823 20.1557 15.1945 19.7886 14.8347C19.4215 14.4748 18.9237 14.2723 18.4044 14.2716V14.2723Z"
17
- class="flt-icon__path-fill"></path>
17
+ class="flt-icon__prop-fill"></path>
18
18
  <path
19
19
  d="M4.96637 18.7644C4.44683 18.7644 3.93896 18.6134 3.50698 18.3306C3.075 18.0478 2.73832 17.6459 2.53952 17.1756C2.34072 16.7053 2.28872 16.1878 2.3901 15.6886C2.49148 15.1893 2.74169 14.7308 3.10908 14.3709C3.47648 14.011 3.94455 13.7659 4.45412 13.6666C4.96369 13.5673 5.49185 13.6183 5.97183 13.8132C6.4518 14.008 6.86202 14.3379 7.15062 14.7612C7.43921 15.1845 7.59321 15.6821 7.59315 16.1911C7.59226 16.8734 7.31522 17.5274 6.82279 18.0099C6.33035 18.4923 5.66274 18.7636 4.96637 18.7644V18.7644ZM4.96637 14.2723C4.57903 14.2723 4.20038 14.3848 3.87831 14.5957C3.55624 14.8065 3.30522 15.1062 3.15699 15.4568C3.00875 15.8074 2.96997 16.1932 3.04554 16.5655C3.12111 16.9377 3.30763 17.2796 3.58153 17.5479C3.85542 17.8163 4.20439 17.999 4.5843 18.0731C4.9642 18.1471 5.35798 18.1091 5.71585 17.9639C6.07371 17.8186 6.37958 17.5727 6.59478 17.2572C6.80998 16.9416 6.92484 16.5706 6.92484 16.1911C6.92449 15.6823 6.71806 15.1943 6.35087 14.8345C5.98368 14.4746 5.48574 14.2722 4.96637 14.2716V14.2723Z"
20
- class="flt-icon__path-fill"></path>
20
+ class="flt-icon__prop-fill"></path>
21
21
  <path
22
22
  d="M18.4358 11.0864H0.682297C0.593674 11.0864 0.508681 11.0519 0.446015 10.9905C0.38335 10.9291 0.348145 10.8459 0.348145 10.759C0.348145 10.6722 0.38335 10.5889 0.446015 10.5275C0.508681 10.4661 0.593674 10.4316 0.682297 10.4316H18.4358C18.5244 10.4316 18.6094 10.4661 18.6721 10.5275C18.7348 10.5889 18.77 10.6722 18.77 10.759C18.77 10.8459 18.7348 10.9291 18.6721 10.9905C18.6094 11.0519 18.5244 11.0864 18.4358 11.0864Z"
23
- class="flt-icon__path-fill"></path>
24
- <path d="M 9.25 6 L 10 6 L 10 11 L 9.25 11 z" class="flt-icon__path-fill"></path>
23
+ class="flt-icon__prop-fill"></path>
24
+ <path d="M 9.25 6 L 10 6 L 10 11 L 9.25 11 z" class="flt-icon__prop-fill"></path>
25
25
  <path
26
26
  d="M13.3813 13.6177H13.07H12.8295H12.5182C12.4296 13.6177 12.3446 13.5832 12.282 13.5218C12.2193 13.4604 12.1841 13.3771 12.1841 13.2903C12.1841 13.2035 12.2193 13.1202 12.282 13.0588C12.3446 12.9974 12.4296 12.9629 12.5182 12.9629H12.8295H13.07H13.3813C13.47 12.9629 13.555 12.9974 13.6176 13.0588C13.6803 13.1202 13.7155 13.2035 13.7155 13.2903C13.7155 13.3771 13.6803 13.4604 13.6176 13.5218C13.555 13.5832 13.47 13.6177 13.3813 13.6177Z"
27
- class="flt-icon__path-fill"></path>
27
+ class="flt-icon__prop-fill"></path>
28
28
  <path
29
29
  d="M8.63364 13.6177H8.32234H8.08148H7.77019C7.68156 13.6177 7.59657 13.5832 7.53391 13.5218C7.47124 13.4604 7.43604 13.3771 7.43604 13.2903C7.43604 13.2035 7.47124 13.1202 7.53391 13.0588C7.59657 12.9974 7.68156 12.9629 7.77019 12.9629H8.08148H8.32234H8.63364C8.72226 12.9629 8.80725 12.9974 8.86992 13.0588C8.93258 13.1202 8.96779 13.2035 8.96779 13.2903C8.96779 13.3771 8.93258 13.4604 8.86992 13.5218C8.80725 13.5832 8.72226 13.6177 8.63364 13.6177Z"
30
- class="flt-icon__path-fill"></path>
30
+ class="flt-icon__prop-fill"></path>
31
31
  </svg>
32
32
  </template>
@@ -9,87 +9,87 @@
9
9
  <g clip-path="url(#clip0_18868_187595)">
10
10
  <path
11
11
  d="M12.3272 21H4.08924C3.21396 21 2.54462 20.35 2.54462 19.5V16.9C2.54462 16.3 2.75057 15.75 3.0595 15.25L3.57437 14.5L1.51487 14C1.20595 14 1 13.8 1 13.5V12.5C1 12.2 1.20595 12 1.51487 12H4.08924L5.11899 13.5L6.66362 14H12.3272"
12
- class="flt-icon__path"
12
+ class="flt-icon__prop-stroke"
13
13
  stroke-miterlimit="10"
14
14
  stroke-linejoin="round"></path>
15
15
  <path
16
16
  d="M4.08911 16L4.34655 16.25C4.80994 16.7 5.47927 17 6.14861 17H7.69323"
17
- class="flt-icon__path"
17
+ class="flt-icon__prop-stroke"
18
18
  stroke-miterlimit="10"
19
19
  stroke-linejoin="round"></path>
20
20
  <path
21
21
  d="M3.05957 20.5V22.5C3.05957 22.8 3.26552 23 3.57444 23H7.17856C7.48749 23 7.69344 22.8 7.69344 22.5V21"
22
- class="flt-icon__path"
22
+ class="flt-icon__prop-stroke"
23
23
  stroke-miterlimit="10"
24
24
  stroke-linejoin="round"></path>
25
25
  <path
26
26
  d="M12.3274 21H20.5654C21.4407 21 22.11 20.35 22.11 19.5V16.9C22.11 16.3 21.9041 15.75 21.5951 15.25L21.0803 14.5L23.1398 14C23.4487 14 23.6546 13.8 23.6546 13.5V12.5C23.6546 12.2 23.4487 12 23.1398 12H20.5654L19.5356 13.5L17.991 14H12.3274"
27
- class="flt-icon__path"
27
+ class="flt-icon__prop-stroke"
28
28
  stroke-miterlimit="10"
29
29
  stroke-linejoin="round"></path>
30
30
  <path
31
31
  d="M20.0505 13C20.0505 13 18.7633 10.25 18.5058 10C18.2484 9.75 17.8365 9.5 17.4761 9.5C16.6523 9.5 8.25985 9.5 7.17862 9.5C6.81821 9.5 6.40631 9.75 6.14887 10C5.89143 10.25 4.60425 13 4.60425 13"
32
- class="flt-icon__path"
32
+ class="flt-icon__prop-stroke"
33
33
  stroke-miterlimit="10"
34
34
  stroke-linejoin="round"></path>
35
35
  <path
36
36
  d="M20.5653 16L20.3079 16.25C19.8445 16.7 19.1751 17 18.5058 17H16.9612"
37
- class="flt-icon__path"
37
+ class="flt-icon__prop-stroke"
38
38
  stroke-miterlimit="10"
39
39
  stroke-linejoin="round"></path>
40
40
  <path
41
41
  d="M21.5951 20.5V22.5C21.5951 22.8 21.3891 23 21.0802 23H17.4761C17.1671 23 16.9612 22.8 16.9612 22.5V21"
42
- class="flt-icon__path"
42
+ class="flt-icon__prop-stroke"
43
43
  stroke-miterlimit="10"
44
44
  stroke-linejoin="round"></path>
45
45
  <path
46
46
  d="M7.69336 19H16.9611"
47
- class="flt-icon__path"
47
+ class="flt-icon__prop-stroke"
48
48
  stroke-miterlimit="10"
49
49
  stroke-linejoin="round"></path>
50
50
  <path
51
51
  d="M13.8718 7.5V6"
52
- class="flt-icon__path"
52
+ class="flt-icon__prop-stroke"
53
53
  stroke-miterlimit="10"
54
54
  stroke-linejoin="round"></path>
55
55
  <path
56
56
  d="M16.4463 7.5V6"
57
- class="flt-icon__path"
57
+ class="flt-icon__prop-stroke"
58
58
  stroke-miterlimit="10"
59
59
  stroke-linejoin="round"></path>
60
60
  <path
61
61
  d="M15.4165 5V3.5"
62
- class="flt-icon__path"
62
+ class="flt-icon__prop-stroke"
63
63
  stroke-miterlimit="10"
64
64
  stroke-linejoin="round"></path>
65
65
  <path
66
66
  d="M10.7825 7.5V6"
67
- class="flt-icon__path"
67
+ class="flt-icon__prop-stroke"
68
68
  stroke-miterlimit="10"
69
69
  stroke-linejoin="round"></path>
70
70
  <path
71
71
  d="M12.3274 5V3.5"
72
- class="flt-icon__path"
72
+ class="flt-icon__prop-stroke"
73
73
  stroke-miterlimit="10"
74
74
  stroke-linejoin="round"></path>
75
75
  <path
76
76
  d="M13.8718 2.5V1"
77
- class="flt-icon__path"
77
+ class="flt-icon__prop-stroke"
78
78
  stroke-miterlimit="10"
79
79
  stroke-linejoin="round"></path>
80
80
  <path
81
81
  d="M10.7825 2.5V1"
82
- class="flt-icon__path"
82
+ class="flt-icon__prop-stroke"
83
83
  stroke-miterlimit="10"
84
84
  stroke-linejoin="round"></path>
85
85
  <path
86
86
  d="M7.69336 7.5V6"
87
- class="flt-icon__path"
87
+ class="flt-icon__prop-stroke"
88
88
  stroke-miterlimit="10"
89
89
  stroke-linejoin="round"></path>
90
90
  <path
91
91
  d="M9.23804 5V3.5"
92
- class="flt-icon__path"
92
+ class="flt-icon__prop-stroke"
93
93
  stroke-miterlimit="10"
94
94
  stroke-linejoin="round"></path>
95
95
  </g>
@@ -7,7 +7,7 @@
7
7
  fill="none"
8
8
  xmlns="http://www.w3.org/2000/svg">
9
9
  <path
10
- class="flt-icon__path-fill"
10
+ class="flt-icon__prop-fill"
11
11
  d="M7.32995 13.229L4.43828 10.3373C4.11328 10.0123 3.58828 10.0123 3.26328 10.3373C2.93828 10.6623 2.93828 11.1873 3.26328 11.5123L6.74661 14.9957C7.07162 15.3207 7.59661 15.3207 7.92162 14.9957L16.7383 6.179C17.0633 5.854 17.0633 5.329 16.7383 5.004C16.4133 4.679 15.8883 4.679 15.5633 5.004L7.32995 13.229Z"></path>
12
12
  </svg>
13
13
  </template>
@@ -1,7 +1,7 @@
1
1
  <template lwc:render-mode="light">
2
2
  <svg class="flt-icon flt-icon__close" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path
4
- class="flt-icon__path-fill"
4
+ class="flt-icon__prop-fill"
5
5
  fill-rule="evenodd"
6
6
  clip-rule="evenodd"
7
7
  d="M5.46967 5.46967C5.76256 5.17678 6.23744 5.17678 6.53033 5.46967L12 10.9393L17.4697 5.46967C17.7626 5.17678 18.2374 5.17678 18.5303 5.46967C18.8232 5.76256 18.8232 6.23744 18.5303 6.53033L13.0607 12L18.5303 17.4697C18.8232 17.7626 18.8232 18.2374 18.5303 18.5303C18.2374 18.8232 17.7626 18.8232 17.4697 18.5303L12 13.0607L6.53033 18.5303C6.23744 18.8232 5.76256 18.8232 5.46967 18.5303C5.17678 18.2374 5.17678 17.7626 5.46967 17.4697L10.9393 12L5.46967 6.53033C5.17678 6.23744 5.17678 5.76256 5.46967 5.46967Z"
@@ -1,5 +1,5 @@
1
1
  <template lwc:render-mode="light">
2
2
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M16.666 3.33398H3.33268C2.40768 3.33398 1.67435 4.07565 1.67435 5.00065L1.66602 15.0007C1.66602 15.9257 2.40768 16.6673 3.33268 16.6673H16.666C17.591 16.6673 18.3327 15.9257 18.3327 15.0007V5.00065C18.3327 4.07565 17.591 3.33398 16.666 3.33398ZM16.666 15.0007H3.33268V10.0007H16.666V15.0007ZM16.666 6.66732H3.33268V5.00065H16.666V6.66732Z" fill="#1A1A1A"/>
3
+ <path d="M16.666 3.33398H3.33268C2.40768 3.33398 1.67435 4.07565 1.67435 5.00065L1.66602 15.0007C1.66602 15.9257 2.40768 16.6673 3.33268 16.6673H16.666C17.591 16.6673 18.3327 15.9257 18.3327 15.0007V5.00065C18.3327 4.07565 17.591 3.33398 16.666 3.33398ZM16.666 15.0007H3.33268V10.0007H16.666V15.0007ZM16.666 6.66732H3.33268V5.00065H16.666V6.66732Z" class="flt-icon__prop-fill"/>
4
4
  </svg>
5
5
  </template>
@@ -8,42 +8,42 @@
8
8
  xmlns="http://www.w3.org/2000/svg">
9
9
  <path
10
10
  d="M2.96985 20.0666V4.91111C2.96985 2.90666 4.37611 1 6.36429 1H12.1833C14.1715 1 15.5778 2.90666 15.5778 4.91111V20.0666"
11
- class="flt-icon__path"
11
+ class="flt-icon__prop-stroke"
12
12
  stroke-miterlimit="10"
13
13
  stroke-linejoin="round"></path>
14
14
  <path
15
15
  d="M16.5477 20.0667H2.00005V23H16.5477V20.0667Z"
16
- class="flt-icon__path"
16
+ class="flt-icon__prop-stroke"
17
17
  stroke-miterlimit="10"
18
18
  stroke-linejoin="round"></path>
19
19
  <path
20
20
  d="M22.3667 8.33337H18.9723V10.2889L20.427 11.2667V14.6889H21.8818L22.3667 14.2V8.33337Z"
21
- class="flt-icon__path"
21
+ class="flt-icon__prop-stroke"
22
22
  stroke-miterlimit="10"
23
23
  stroke-linejoin="round"></path>
24
24
  <path
25
25
  d="M18.9723 1.48886L21.3969 4.91108V8.3333"
26
- class="flt-icon__path"
26
+ class="flt-icon__prop-stroke"
27
27
  stroke-miterlimit="10"
28
28
  stroke-linejoin="round"></path>
29
29
  <path
30
30
  d="M15.5777 17.1333H18.0023C18.5357 17.1333 18.9722 17.5733 18.9722 18.1111V22.0222C18.9722 22.5599 19.4086 22.9999 19.942 22.9999H20.9119C21.4453 22.9999 21.8817 22.5599 21.8817 22.0222V14.6888"
31
- class="flt-icon__path"
31
+ class="flt-icon__prop-stroke"
32
32
  stroke-miterlimit="10"
33
33
  stroke-linejoin="round"></path>
34
34
  <path
35
35
  d="M4.90957 8.33331H13.6381V4.91109C13.6381 3.83554 12.7653 2.95554 11.6985 2.95554H6.84925C5.78243 2.95554 4.90957 3.83554 4.90957 4.91109V8.33331Z"
36
- class="flt-icon__path"
36
+ class="flt-icon__prop-stroke"
37
37
  stroke-miterlimit="10"
38
38
  stroke-linejoin="round"></path>
39
39
  <path
40
40
  d="M7.7 11.7L7.7 16.7L9.60909 16.7C10.2091 16.7 10.7 16.2 10.7 15.5889L10.7 12.8111C10.7 12.2 10.2091 11.7 9.60909 11.7L7.7 11.7Z"
41
- class="flt-icon__path"
41
+ class="flt-icon__prop-stroke"
42
42
  stroke-miterlimit="10"
43
43
  stroke-linejoin="round"></path>
44
44
  <path
45
45
  d="M11.2136 8.33334V7.84445M7.33419 7.84445V8.33334"
46
- class="flt-icon__path"
46
+ class="flt-icon__prop-stroke"
47
47
  stroke-miterlimit="10"
48
48
  stroke-linejoin="round"></path>
49
49
  </svg>
@@ -1,7 +1,7 @@
1
1
  <template lwc:render-mode="light">
2
2
  <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M14.19 3.7575C14.04 3.315 13.62 3 13.125 3H4.875C4.38 3 3.9675 3.315 3.81 3.7575L2.25 8.25V14.25C2.25 14.6625 2.5875 15 3 15H3.75C4.1625 15 4.5 14.6625 4.5 14.25V13.5H13.5V14.25C13.5 14.6625 13.8375 15 14.25 15H15C15.4125 15 15.75 14.6625 15.75 14.25V8.25L14.19 3.7575ZM5.1375 4.5H12.855L13.665 6.8325H4.3275L5.1375 4.5ZM14.25 12H3.75V8.25H14.25V12Z" fill="#063778"/>
4
- <path d="M5.625 11.25C6.24632 11.25 6.75 10.7463 6.75 10.125C6.75 9.50368 6.24632 9 5.625 9C5.00368 9 4.5 9.50368 4.5 10.125C4.5 10.7463 5.00368 11.25 5.625 11.25Z" fill="#063778"/>
5
- <path d="M12.375 11.25C12.9963 11.25 13.5 10.7463 13.5 10.125C13.5 9.50368 12.9963 9 12.375 9C11.7537 9 11.25 9.50368 11.25 10.125C11.25 10.7463 11.7537 11.25 12.375 11.25Z" fill="#063778"/>
3
+ <path d="M14.19 3.7575C14.04 3.315 13.62 3 13.125 3H4.875C4.38 3 3.9675 3.315 3.81 3.7575L2.25 8.25V14.25C2.25 14.6625 2.5875 15 3 15H3.75C4.1625 15 4.5 14.6625 4.5 14.25V13.5H13.5V14.25C13.5 14.6625 13.8375 15 14.25 15H15C15.4125 15 15.75 14.6625 15.75 14.25V8.25L14.19 3.7575ZM5.1375 4.5H12.855L13.665 6.8325H4.3275L5.1375 4.5ZM14.25 12H3.75V8.25H14.25V12Z" class="flt-icon__prop-fill"/>
4
+ <path d="M5.625 11.25C6.24632 11.25 6.75 10.7463 6.75 10.125C6.75 9.50368 6.24632 9 5.625 9C5.00368 9 4.5 9.50368 4.5 10.125C4.5 10.7463 5.00368 11.25 5.625 11.25Z" class="flt-icon__prop-fill"/>
5
+ <path d="M12.375 11.25C12.9963 11.25 13.5 10.7463 13.5 10.125C13.5 9.50368 12.9963 9 12.375 9C11.7537 9 11.25 9.50368 11.25 10.125C11.25 10.7463 11.7537 11.25 12.375 11.25Z" class="flt-icon__prop-fill"/>
6
6
  </svg>
7
7
  </template>
@@ -1,9 +1,9 @@
1
1
  <template lwc:render-mode="light">
2
2
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <g clip-path="url(#clip0_6641_27009)">
4
- <path d="M10.6564 17.918L2.49805 9.75964V11.4263C2.49805 11.868 2.67305 12.293 2.98971 12.6013L9.48138 19.093C10.1314 19.743 11.1897 19.743 11.8397 19.093L17.0147 13.918C17.6647 13.268 17.6647 12.2096 17.0147 11.5596L10.6564 17.918Z" fill="#1A1A1A"/>
5
- <path d="M9.48138 14.9263C9.80638 15.2513 10.2314 15.418 10.6564 15.418C11.0814 15.418 11.5064 15.2513 11.8314 14.9263L17.0064 9.7513C17.6564 9.1013 17.6564 8.04297 17.0064 7.39297L10.5147 0.901302C10.2064 0.592969 9.78138 0.417969 9.33971 0.417969H4.16471C3.24805 0.417969 2.49805 1.16797 2.49805 2.08464V7.25964C2.49805 7.7013 2.67305 8.1263 2.98971 8.43464L9.48138 14.9263ZM4.16471 2.08464H9.33971L15.8314 8.5763L10.6564 13.7513L4.16471 7.25964V2.08464Z" fill="#1A1A1A"/>
6
- <path d="M6.03971 5.0013C6.61501 5.0013 7.08138 4.53493 7.08138 3.95964C7.08138 3.38434 6.61501 2.91797 6.03971 2.91797C5.46442 2.91797 4.99805 3.38434 4.99805 3.95964C4.99805 4.53493 5.46442 5.0013 6.03971 5.0013Z" fill="#1A1A1A"/>
4
+ <path d="M10.6564 17.918L2.49805 9.75964V11.4263C2.49805 11.868 2.67305 12.293 2.98971 12.6013L9.48138 19.093C10.1314 19.743 11.1897 19.743 11.8397 19.093L17.0147 13.918C17.6647 13.268 17.6647 12.2096 17.0147 11.5596L10.6564 17.918Z" class="flt-icon__prop-fill"/>
5
+ <path d="M9.48138 14.9263C9.80638 15.2513 10.2314 15.418 10.6564 15.418C11.0814 15.418 11.5064 15.2513 11.8314 14.9263L17.0064 9.7513C17.6564 9.1013 17.6564 8.04297 17.0064 7.39297L10.5147 0.901302C10.2064 0.592969 9.78138 0.417969 9.33971 0.417969H4.16471C3.24805 0.417969 2.49805 1.16797 2.49805 2.08464V7.25964C2.49805 7.7013 2.67305 8.1263 2.98971 8.43464L9.48138 14.9263ZM4.16471 2.08464H9.33971L15.8314 8.5763L10.6564 13.7513L4.16471 7.25964V2.08464Z" class="flt-icon__prop-fill"/>
6
+ <path d="M6.03971 5.0013C6.61501 5.0013 7.08138 4.53493 7.08138 3.95964C7.08138 3.38434 6.61501 2.91797 6.03971 2.91797C5.46442 2.91797 4.99805 3.38434 4.99805 3.95964C4.99805 4.53493 5.46442 5.0013 6.03971 5.0013Z" class="flt-icon__prop-fill"/>
7
7
  </g>
8
8
  <defs>
9
9
  <clipPath id="clip0_6641_27009">
@@ -7,7 +7,7 @@
7
7
  fill="none"
8
8
  xmlns="http://www.w3.org/2000/svg">
9
9
  <path
10
- class="flt-icon__path"
10
+ class="flt-icon__prop-stroke"
11
11
  d="M9 12H15H9ZM9 16H15H9ZM17 21H7C5.89543 21 5 20.1046 5 19V5C5 3.89543 5.89543 3 7 3H12.5858C12.851 3 13.1054 3.10536 13.2929 3.29289L18.7071 8.70711C18.8946 8.89464 19 9.149 19 9.41421V19C19 20.1046 18.1046 21 17 21Z"
12
12
  stroke-linecap="round"
13
13
  stroke-linejoin="round"></path>
@@ -1,5 +1,5 @@
1
1
  <template lwc:render-mode="light">
2
2
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M9.16732 15.0007C9.16732 15.9173 8.41732 16.6673 7.50065 16.6673C6.58398 16.6673 5.83398 15.9173 5.83398 15.0007C5.83398 14.084 6.58398 13.334 7.50065 13.334C8.41732 13.334 9.16732 14.084 9.16732 15.0007ZM7.50065 8.33398C6.58398 8.33398 5.83398 9.08398 5.83398 10.0007C5.83398 10.9173 6.58398 11.6673 7.50065 11.6673C8.41732 11.6673 9.16732 10.9173 9.16732 10.0007C9.16732 9.08398 8.41732 8.33398 7.50065 8.33398ZM7.50065 3.33398C6.58398 3.33398 5.83398 4.08398 5.83398 5.00065C5.83398 5.91732 6.58398 6.66732 7.50065 6.66732C8.41732 6.66732 9.16732 5.91732 9.16732 5.00065C9.16732 4.08398 8.41732 3.33398 7.50065 3.33398ZM12.5007 6.66732C13.4173 6.66732 14.1673 5.91732 14.1673 5.00065C14.1673 4.08398 13.4173 3.33398 12.5007 3.33398C11.584 3.33398 10.834 4.08398 10.834 5.00065C10.834 5.91732 11.584 6.66732 12.5007 6.66732ZM12.5007 8.33398C11.584 8.33398 10.834 9.08398 10.834 10.0007C10.834 10.9173 11.584 11.6673 12.5007 11.6673C13.4173 11.6673 14.1673 10.9173 14.1673 10.0007C14.1673 9.08398 13.4173 8.33398 12.5007 8.33398ZM12.5007 13.334C11.584 13.334 10.834 14.084 10.834 15.0007C10.834 15.9173 11.584 16.6673 12.5007 16.6673C13.4173 16.6673 14.1673 15.9173 14.1673 15.0007C14.1673 14.084 13.4173 13.334 12.5007 13.334Z" fill="#1A1A1A"/>
3
+ <path d="M9.16732 15.0007C9.16732 15.9173 8.41732 16.6673 7.50065 16.6673C6.58398 16.6673 5.83398 15.9173 5.83398 15.0007C5.83398 14.084 6.58398 13.334 7.50065 13.334C8.41732 13.334 9.16732 14.084 9.16732 15.0007ZM7.50065 8.33398C6.58398 8.33398 5.83398 9.08398 5.83398 10.0007C5.83398 10.9173 6.58398 11.6673 7.50065 11.6673C8.41732 11.6673 9.16732 10.9173 9.16732 10.0007C9.16732 9.08398 8.41732 8.33398 7.50065 8.33398ZM7.50065 3.33398C6.58398 3.33398 5.83398 4.08398 5.83398 5.00065C5.83398 5.91732 6.58398 6.66732 7.50065 6.66732C8.41732 6.66732 9.16732 5.91732 9.16732 5.00065C9.16732 4.08398 8.41732 3.33398 7.50065 3.33398ZM12.5007 6.66732C13.4173 6.66732 14.1673 5.91732 14.1673 5.00065C14.1673 4.08398 13.4173 3.33398 12.5007 3.33398C11.584 3.33398 10.834 4.08398 10.834 5.00065C10.834 5.91732 11.584 6.66732 12.5007 6.66732ZM12.5007 8.33398C11.584 8.33398 10.834 9.08398 10.834 10.0007C10.834 10.9173 11.584 11.6673 12.5007 11.6673C13.4173 11.6673 14.1673 10.9173 14.1673 10.0007C14.1673 9.08398 13.4173 8.33398 12.5007 8.33398ZM12.5007 13.334C11.584 13.334 10.834 14.084 10.834 15.0007C10.834 15.9173 11.584 16.6673 12.5007 16.6673C13.4173 16.6673 14.1673 15.9173 14.1673 15.0007C14.1673 14.084 13.4173 13.334 12.5007 13.334Z" class="flt-icon__prop-fill"/>
4
4
  </svg>
5
5
  </template>
@@ -8,12 +8,12 @@
8
8
  xmlns="http://www.w3.org/2000/svg">
9
9
  <path
10
10
  d="M16 7C16 9.20914 14.2091 11 12 11C9.79086 11 8 9.20914 8 7C8 4.79086 9.79086 3 12 3C14.2091 3 16 4.79086 16 7Z"
11
- class="flt-icon__path"
11
+ class="flt-icon__prop-stroke"
12
12
  stroke-linecap="round"
13
13
  stroke-linejoin="round"></path>
14
14
  <path
15
15
  d="M5 21C5 17.134 8.13401 14 12 14C15.866 14 19 17.134 19 21"
16
- class="flt-icon__path"
16
+ class="flt-icon__prop-stroke"
17
17
  stroke-linecap="round"
18
18
  stroke-linejoin="round"></path>
19
19
  </svg>
@@ -8,17 +8,17 @@
8
8
  xmlns="http://www.w3.org/2000/svg">
9
9
  <path
10
10
  d="M6.5 2C5.975 3.925 3 6.58333 3 9.33333C3 11.1667 4.575 13 6.5 13C8.425 13 10 11.1667 10 9.33333C10 6.58333 7.025 3.925 6.5 2Z"
11
- class="flt-icon__path"
11
+ class="flt-icon__prop-stroke"
12
12
  stroke-miterlimit="10"
13
13
  stroke-linejoin="round"></path>
14
14
  <path
15
15
  d="M5 22L19 2"
16
- class="flt-icon__path"
16
+ class="flt-icon__prop-stroke"
17
17
  stroke-linecap="round"
18
18
  stroke-linejoin="round"></path>
19
19
  <path
20
20
  d="M18.5 8L14 16H17.5V21L22 13H18.5V8Z"
21
- class="flt-icon__path"
21
+ class="flt-icon__prop-stroke"
22
22
  stroke-linejoin="round"></path>
23
23
  </svg>
24
24
  </template>
@@ -8,13 +8,13 @@
8
8
  xmlns="http://www.w3.org/2000/svg">
9
9
  <g clip-path="url(#clip0_18666_187419)">
10
10
  <path
11
- class="flt-icon__path-fill"
11
+ class="flt-icon__prop-fill"
12
12
  d="M16.8186 10.301C16.7848 10.2469 16.7378 10.2024 16.682 10.1716C16.6263 10.1407 16.5636 10.1246 16.4998 10.1247H12.3748V4.49973C12.3743 4.41576 12.3457 4.33439 12.2934 4.26865C12.2412 4.2029 12.1684 4.1566 12.0867 4.13715C12.005 4.1177 11.9192 4.12623 11.8429 4.16138C11.7666 4.19652 11.7044 4.25624 11.6661 4.33098L7.16609 13.331C7.13733 13.3881 7.12363 13.4516 7.12631 13.5154C7.12898 13.5793 7.14794 13.6414 7.18138 13.6959C7.21482 13.7504 7.26163 13.7954 7.31737 13.8267C7.3731 13.858 7.43592 13.8745 7.49984 13.8747H11.6248V19.4997C11.6251 19.584 11.6537 19.6657 11.7061 19.7317C11.7585 19.7977 11.8316 19.8441 11.9136 19.8635C11.9417 19.8709 11.9707 19.8747 11.9998 19.8747C12.0691 19.8745 12.1369 19.8551 12.1958 19.8187C12.2547 19.7823 12.3024 19.7303 12.3336 19.6685L16.8336 10.6685C16.8626 10.611 16.8765 10.5471 16.8739 10.4828C16.8712 10.4185 16.8522 10.3559 16.8186 10.301V10.301ZM12.3748 17.9097V13.4997C12.3748 13.4003 12.3353 13.3049 12.265 13.2346C12.1947 13.1642 12.0993 13.1247 11.9998 13.1247H8.10734L11.6248 6.08973V10.4997C11.6248 10.5992 11.6643 10.6946 11.7347 10.7649C11.805 10.8352 11.9004 10.8747 11.9998 10.8747H15.8923L12.3748 17.9097Z"></path>
13
13
  <path
14
- class="flt-icon__path-fill"
14
+ class="flt-icon__prop-fill"
15
15
  d="M21.1537 5.46766C21.4387 5.10873 21.582 4.65764 21.5565 4.20002C21.5309 3.74239 21.3382 3.31008 21.0149 2.98516L19.9537 1.92391C19.8823 1.85617 19.7877 1.81841 19.6893 1.81841C19.5909 1.81841 19.4963 1.85617 19.4249 1.92391L19.1587 2.19016L18.0974 1.12891L17.5687 1.65766L18.6299 2.71891L18.0974 3.25141L17.0362 2.19016L16.5074 2.71891L17.5687 3.78016L17.3024 4.04641C17.2326 4.11667 17.1934 4.21171 17.1934 4.31078C17.1934 4.40985 17.2326 4.50489 17.3024 4.57516L18.3637 5.6364C18.6478 5.92284 19.0176 6.10862 19.417 6.16549C19.8164 6.22235 20.2234 6.14717 20.5762 5.9514C21.8333 7.7173 22.506 9.83249 22.4999 12.0002C22.4984 13.7232 22.0732 15.4194 21.2619 16.9395C20.4505 18.4595 19.2779 19.7568 17.8472 20.717C16.4165 21.6772 14.7717 22.2709 13.0576 22.4458C11.3434 22.6208 9.61258 22.3716 8.01742 21.7202L7.73242 22.4139C9.44149 23.1121 11.296 23.3793 13.1327 23.1921C14.9694 23.0048 16.7318 22.3687 18.2648 21.34C19.7978 20.3112 21.0542 18.9212 21.9236 17.2925C22.7929 15.6638 23.2484 13.8463 23.2499 12.0002C23.2567 9.6562 22.5231 7.36998 21.1537 5.46766V5.46766ZM20.4862 5.10766C20.2736 5.31675 19.9874 5.43393 19.6893 5.43393C19.3912 5.43393 19.105 5.31675 18.8924 5.10766L18.0974 4.30891L19.6912 2.71891L20.4862 3.51391C20.6969 3.72558 20.8152 4.0121 20.8152 4.31078C20.8152 4.60946 20.6969 4.89598 20.4862 5.10766V5.10766Z"></path>
16
16
  <path
17
- class="flt-icon__path-fill"
17
+ class="flt-icon__prop-fill"
18
18
  d="M12 0.750012C9.01749 0.753684 6.15814 1.94013 4.04915 4.04912C1.94016 6.15811 0.753719 9.01745 0.750047 12C0.74323 14.344 1.47687 16.6302 2.8463 18.5325C2.56126 18.8914 2.41792 19.3425 2.4435 19.8002C2.46908 20.2578 2.66179 20.6901 2.98505 21.015L4.0463 22.0763C4.08048 22.1111 4.12135 22.1387 4.16645 22.1574C4.21156 22.1761 4.25998 22.1855 4.3088 22.185C4.35818 22.1855 4.40716 22.1761 4.45288 22.1575C4.4986 22.1388 4.54013 22.1112 4.57505 22.0763L4.8413 21.81L5.90255 22.8713L6.4313 22.3425L5.37005 21.2813L5.90255 20.7488L6.9638 21.81L7.49255 21.2813L6.4313 20.22L6.69755 19.9538C6.76739 19.8835 6.80659 19.7885 6.80659 19.6894C6.80659 19.5903 6.76739 19.4953 6.69755 19.425L5.6363 18.3638C5.35056 18.0801 4.9809 17.8962 4.58227 17.8394C4.18365 17.7827 3.77735 17.8561 3.4238 18.0488C2.16665 16.2829 1.49393 14.1677 1.50005 12C1.50312 9.21618 2.61036 6.54725 4.57882 4.57879C6.54729 2.61032 9.21622 1.50309 12 1.50001C13.3661 1.49716 14.7194 1.76348 15.9825 2.28376L16.2675 1.58626C14.9132 1.03197 13.4635 0.747886 12 0.750012V0.750012ZM3.5138 18.8925C3.72633 18.6834 4.01253 18.5662 4.31067 18.5662C4.60882 18.5662 4.89502 18.6834 5.10755 18.8925L5.90255 19.6913L4.3088 21.2813L3.5138 20.4863C3.30307 20.2746 3.18477 19.9881 3.18477 19.6894C3.18477 19.3907 3.30307 19.1042 3.5138 18.8925V18.8925Z"></path>
19
19
  </g>
20
20
  <defs>
@@ -7,7 +7,7 @@
7
7
  fill="none"
8
8
  xmlns="http://www.w3.org/2000/svg">
9
9
  <path
10
- class="flt-icon__path-fill"
10
+ class="flt-icon__prop-fill"
11
11
  d="M10.4997 3.75C6.33301 3.75 2.77467 6.34167 1.33301 10C2.77467 13.6583 6.33301 16.25 10.4997 16.25C14.6663 16.25 18.2247 13.6583 19.6663 10C18.2247 6.34167 14.6663 3.75 10.4997 3.75ZM10.4997 14.1667C8.19967 14.1667 6.33301 12.3 6.33301 10C6.33301 7.7 8.19967 5.83333 10.4997 5.83333C12.7997 5.83333 14.6663 7.7 14.6663 10C14.6663 12.3 12.7997 14.1667 10.4997 14.1667ZM10.4997 7.5C9.11634 7.5 7.99967 8.61667 7.99967 10C7.99967 11.3833 9.11634 12.5 10.4997 12.5C11.883 12.5 12.9997 11.3833 12.9997 10C12.9997 8.61667 11.883 7.5 10.4997 7.5Z"></path>
12
12
  </svg>
13
13
  </template>
@@ -8,27 +8,27 @@
8
8
  xmlns="http://www.w3.org/2000/svg">
9
9
  <path
10
10
  d="M15.3479 9.6087V7.69565L12.9566 5.30435L12 6.26087L9.13047 3.3913C8.4609 2.72174 7.40873 2.19565 6.50003 2.05217L2.43481 1V2.91304L5.78264 4.34783C6.45221 4.58696 7.21742 5.30435 7.69568 5.78261L10.087 8.17391L8.17394 10.087L9.13047 11.0435L8.31742 13.6739C8.03047 14.2957 8.17394 14.8696 8.65221 15.3478L14.8696 21.5652L21.087 15.3478L15.3479 9.6087Z"
11
- class="flt-icon__path"
11
+ class="flt-icon__prop-stroke"
12
12
  stroke-miterlimit="10"
13
13
  stroke-linejoin="round"></path>
14
14
  <path
15
15
  d="M16.3042 20.1308L18.2172 22.0438L22.0433 18.2177L20.1303 16.3047"
16
- class="flt-icon__path"
16
+ class="flt-icon__prop-stroke"
17
17
  stroke-miterlimit="10"
18
18
  stroke-linejoin="round"></path>
19
19
  <path
20
20
  d="M21.5652 18.6953L23 20.1301"
21
- class="flt-icon__path"
21
+ class="flt-icon__prop-stroke"
22
22
  stroke-miterlimit="10"
23
23
  stroke-linejoin="round"></path>
24
24
  <path
25
25
  d="M20.1303 22.9992L18.6956 21.5645"
26
- class="flt-icon__path"
26
+ class="flt-icon__prop-stroke"
27
27
  stroke-miterlimit="10"
28
28
  stroke-linejoin="round"></path>
29
29
  <path
30
30
  d="M2.91304 5.30469C2.62609 6.30904 1 7.69599 1 9.13077C1 10.0873 1.86087 11.0438 2.91304 11.0438C3.96522 11.0438 4.82609 10.0873 4.82609 9.13077C4.82609 7.69599 3.2 6.30904 2.91304 5.30469Z"
31
- class="flt-icon__path"
31
+ class="flt-icon__prop-stroke"
32
32
  stroke-miterlimit="10"
33
33
  stroke-linejoin="round"></path>
34
34
  </svg>
@@ -1,5 +1,5 @@
1
1
  <template lwc:render-mode="light">
2
2
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M16.2667 6.025L16.275 6.01667L13.175 2.91667L12.2917 3.8L14.05 5.55833C13.2667 5.85833 12.7083 6.60833 12.7083 7.5C12.7083 8.65 13.6417 9.58333 14.7917 9.58333C15.0917 9.58333 15.3667 9.51667 15.625 9.40833V15.4167C15.625 15.875 15.25 16.25 14.7917 16.25C14.3333 16.25 13.9583 15.875 13.9583 15.4167V11.6667C13.9583 10.75 13.2083 10 12.2917 10H11.4583V4.16667C11.4583 3.25 10.7083 2.5 9.79167 2.5H4.79167C3.875 2.5 3.125 3.25 3.125 4.16667V17.5H11.4583V11.25H12.7083V15.4167C12.7083 16.5667 13.6417 17.5 14.7917 17.5C15.9417 17.5 16.875 16.5667 16.875 15.4167V7.5C16.875 6.925 16.6417 6.4 16.2667 6.025ZM9.79167 15.8333H4.79167V10H9.79167V15.8333ZM9.79167 8.33333H4.79167V4.16667H9.79167V8.33333ZM14.7917 8.33333C14.3333 8.33333 13.9583 7.95833 13.9583 7.5C13.9583 7.04167 14.3333 6.66667 14.7917 6.66667C15.25 6.66667 15.625 7.04167 15.625 7.5C15.625 7.95833 15.25 8.33333 14.7917 8.33333Z" fill="#1A1A1A"/>
3
+ <path d="M16.2667 6.025L16.275 6.01667L13.175 2.91667L12.2917 3.8L14.05 5.55833C13.2667 5.85833 12.7083 6.60833 12.7083 7.5C12.7083 8.65 13.6417 9.58333 14.7917 9.58333C15.0917 9.58333 15.3667 9.51667 15.625 9.40833V15.4167C15.625 15.875 15.25 16.25 14.7917 16.25C14.3333 16.25 13.9583 15.875 13.9583 15.4167V11.6667C13.9583 10.75 13.2083 10 12.2917 10H11.4583V4.16667C11.4583 3.25 10.7083 2.5 9.79167 2.5H4.79167C3.875 2.5 3.125 3.25 3.125 4.16667V17.5H11.4583V11.25H12.7083V15.4167C12.7083 16.5667 13.6417 17.5 14.7917 17.5C15.9417 17.5 16.875 16.5667 16.875 15.4167V7.5C16.875 6.925 16.6417 6.4 16.2667 6.025ZM9.79167 15.8333H4.79167V10H9.79167V15.8333ZM9.79167 8.33333H4.79167V4.16667H9.79167V8.33333ZM14.7917 8.33333C14.3333 8.33333 13.9583 7.95833 13.9583 7.5C13.9583 7.04167 14.3333 6.66667 14.7917 6.66667C15.25 6.66667 15.625 7.04167 15.625 7.5C15.625 7.95833 15.25 8.33333 14.7917 8.33333Z" class="flt-icon__prop-fill"/>
4
4
  </svg>
5
5
  </template>
@@ -1,6 +1,6 @@
1
1
  <template lwc:render-mode="light">
2
2
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M11.8065 11.4419L12.9731 9.42526C13.0481 9.30026 13.0148 9.14193 12.9065 9.05026L11.6731 8.08359C11.6981 7.90026 11.7148 7.70859 11.7148 7.51693C11.7148 7.32526 11.6981 7.13359 11.6731 6.94193L12.9065 5.97526C13.0148 5.88359 13.0481 5.72526 12.9731 5.60026L11.8065 3.58359C11.7315 3.45859 11.5815 3.40859 11.4481 3.45859L9.99813 4.04193C9.69813 3.80859 9.37313 3.61693 9.0148 3.46693L8.79813 1.92526C8.77313 1.79193 8.64813 1.68359 8.50647 1.68359H6.17313C6.03146 1.68359 5.90646 1.79193 5.88146 1.93359L5.6648 3.47526C5.3148 3.62526 4.98146 3.81693 4.68146 4.05026L3.23146 3.46693C3.09813 3.41693 2.94813 3.46693 2.87313 3.59193L1.70646 5.60859C1.63146 5.73359 1.6648 5.89193 1.77313 5.98359L3.00646 6.95026C2.98146 7.13359 2.9648 7.32526 2.9648 7.51693C2.9648 7.70859 2.98146 7.90026 3.00646 8.09193L1.77313 9.05859C1.6648 9.15026 1.63146 9.30859 1.70646 9.43359L2.87313 11.4503C2.94813 11.5753 3.09813 11.6253 3.23146 11.5753L4.68146 10.9919C4.98146 11.2253 5.30646 11.4169 5.6648 11.5669L5.88146 13.1086C5.90646 13.2419 6.03146 13.3503 6.17313 13.3503H8.50647C8.64813 13.3503 8.77313 13.2419 8.79813 13.1003L9.0148 11.5586C9.3648 11.4086 9.69813 11.2169 9.99813 10.9836L11.4481 11.5669C11.5815 11.6169 11.7315 11.5669 11.8065 11.4419ZM7.3398 9.18359C6.42313 9.18359 5.67313 8.43359 5.67313 7.51693C5.67313 6.60026 6.42313 5.85026 7.3398 5.85026C8.25647 5.85026 9.00647 6.60026 9.00647 7.51693C9.00647 8.43359 8.25647 9.18359 7.3398 9.18359Z" fill="#1A1A1A"/>
4
- <path d="M18.2648 15.5753L17.4648 14.9586C17.4815 14.8419 17.4981 14.7169 17.4981 14.5919C17.4981 14.4669 17.4898 14.3419 17.4648 14.2253L18.2565 13.6086C18.3231 13.5503 18.3481 13.4503 18.2981 13.3669L17.5481 12.0753C17.5065 11.9919 17.4065 11.9669 17.3148 11.9919L16.3898 12.3669C16.1981 12.2169 15.9898 12.0919 15.7565 12.0003L15.6148 11.0169C15.6065 10.9169 15.5231 10.8503 15.4398 10.8503H13.9481C13.8565 10.8503 13.7731 10.9169 13.7648 11.0086L13.6231 11.9919C13.3981 12.0919 13.1815 12.2086 12.9898 12.3586L12.0648 11.9836C11.9815 11.9503 11.8815 11.9836 11.8315 12.0669L11.0815 13.3586C11.0398 13.4419 11.0481 13.5419 11.1231 13.6003L11.9148 14.2169C11.8981 14.3336 11.8898 14.4586 11.8898 14.5836C11.8898 14.7086 11.8981 14.8336 11.9148 14.9503L11.1231 15.5669C11.0565 15.6253 11.0315 15.7253 11.0815 15.8086L11.8315 17.1003C11.8731 17.1836 11.9731 17.2086 12.0648 17.1836L12.9898 16.8086C13.1815 16.9586 13.3898 17.0836 13.6231 17.1753L13.7648 18.1586C13.7815 18.2503 13.8565 18.3169 13.9481 18.3169H15.4398C15.5315 18.3169 15.6148 18.2503 15.6231 18.1586L15.7648 17.1753C15.9898 17.0753 16.2065 16.9586 16.3898 16.8086L17.3231 17.1836C17.4065 17.2169 17.5065 17.1836 17.5565 17.1003L18.3065 15.8086C18.3565 15.7336 18.3315 15.6336 18.2648 15.5753ZM14.6898 15.7086C14.0731 15.7086 13.5648 15.2086 13.5648 14.5836C13.5648 13.9586 14.0648 13.4586 14.6898 13.4586C15.3148 13.4586 15.8148 13.9586 15.8148 14.5836C15.8148 15.2086 15.3065 15.7086 14.6898 15.7086Z" fill="#1A1A1A"/>
3
+ <path d="M11.8065 11.4419L12.9731 9.42526C13.0481 9.30026 13.0148 9.14193 12.9065 9.05026L11.6731 8.08359C11.6981 7.90026 11.7148 7.70859 11.7148 7.51693C11.7148 7.32526 11.6981 7.13359 11.6731 6.94193L12.9065 5.97526C13.0148 5.88359 13.0481 5.72526 12.9731 5.60026L11.8065 3.58359C11.7315 3.45859 11.5815 3.40859 11.4481 3.45859L9.99813 4.04193C9.69813 3.80859 9.37313 3.61693 9.0148 3.46693L8.79813 1.92526C8.77313 1.79193 8.64813 1.68359 8.50647 1.68359H6.17313C6.03146 1.68359 5.90646 1.79193 5.88146 1.93359L5.6648 3.47526C5.3148 3.62526 4.98146 3.81693 4.68146 4.05026L3.23146 3.46693C3.09813 3.41693 2.94813 3.46693 2.87313 3.59193L1.70646 5.60859C1.63146 5.73359 1.6648 5.89193 1.77313 5.98359L3.00646 6.95026C2.98146 7.13359 2.9648 7.32526 2.9648 7.51693C2.9648 7.70859 2.98146 7.90026 3.00646 8.09193L1.77313 9.05859C1.6648 9.15026 1.63146 9.30859 1.70646 9.43359L2.87313 11.4503C2.94813 11.5753 3.09813 11.6253 3.23146 11.5753L4.68146 10.9919C4.98146 11.2253 5.30646 11.4169 5.6648 11.5669L5.88146 13.1086C5.90646 13.2419 6.03146 13.3503 6.17313 13.3503H8.50647C8.64813 13.3503 8.77313 13.2419 8.79813 13.1003L9.0148 11.5586C9.3648 11.4086 9.69813 11.2169 9.99813 10.9836L11.4481 11.5669C11.5815 11.6169 11.7315 11.5669 11.8065 11.4419ZM7.3398 9.18359C6.42313 9.18359 5.67313 8.43359 5.67313 7.51693C5.67313 6.60026 6.42313 5.85026 7.3398 5.85026C8.25647 5.85026 9.00647 6.60026 9.00647 7.51693C9.00647 8.43359 8.25647 9.18359 7.3398 9.18359Z" class="flt-icon__prop-fill"/>
4
+ <path d="M18.2648 15.5753L17.4648 14.9586C17.4815 14.8419 17.4981 14.7169 17.4981 14.5919C17.4981 14.4669 17.4898 14.3419 17.4648 14.2253L18.2565 13.6086C18.3231 13.5503 18.3481 13.4503 18.2981 13.3669L17.5481 12.0753C17.5065 11.9919 17.4065 11.9669 17.3148 11.9919L16.3898 12.3669C16.1981 12.2169 15.9898 12.0919 15.7565 12.0003L15.6148 11.0169C15.6065 10.9169 15.5231 10.8503 15.4398 10.8503H13.9481C13.8565 10.8503 13.7731 10.9169 13.7648 11.0086L13.6231 11.9919C13.3981 12.0919 13.1815 12.2086 12.9898 12.3586L12.0648 11.9836C11.9815 11.9503 11.8815 11.9836 11.8315 12.0669L11.0815 13.3586C11.0398 13.4419 11.0481 13.5419 11.1231 13.6003L11.9148 14.2169C11.8981 14.3336 11.8898 14.4586 11.8898 14.5836C11.8898 14.7086 11.8981 14.8336 11.9148 14.9503L11.1231 15.5669C11.0565 15.6253 11.0315 15.7253 11.0815 15.8086L11.8315 17.1003C11.8731 17.1836 11.9731 17.2086 12.0648 17.1836L12.9898 16.8086C13.1815 16.9586 13.3898 17.0836 13.6231 17.1753L13.7648 18.1586C13.7815 18.2503 13.8565 18.3169 13.9481 18.3169H15.4398C15.5315 18.3169 15.6148 18.2503 15.6231 18.1586L15.7648 17.1753C15.9898 17.0753 16.2065 16.9586 16.3898 16.8086L17.3231 17.1836C17.4065 17.2169 17.5065 17.1836 17.5565 17.1003L18.3065 15.8086C18.3565 15.7336 18.3315 15.6336 18.2648 15.5753ZM14.6898 15.7086C14.0731 15.7086 13.5648 15.2086 13.5648 14.5836C13.5648 13.9586 14.0648 13.4586 14.6898 13.4586C15.3148 13.4586 15.8148 13.9586 15.8148 14.5836C15.8148 15.2086 15.3065 15.7086 14.6898 15.7086Z" class="flt-icon__prop-fill"/>
5
5
  </svg>
6
6
  </template>
@@ -1,5 +1,5 @@
1
1
  <template lwc:render-mode="light">
2
2
  <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path d="M15.8333 11.6673V15.0007H14.1667V11.6673H15.8333ZM5.83333 11.6673V15.0007H5C4.54167 15.0007 4.16667 14.6257 4.16667 14.1673V11.6673H5.83333ZM10 0.833984C5.85833 0.833984 2.5 4.19232 2.5 8.33398V14.1673C2.5 15.5507 3.61667 16.6673 5 16.6673H7.5V10.0007H4.16667V8.33398C4.16667 5.10898 6.775 2.50065 10 2.50065C13.225 2.50065 15.8333 5.10898 15.8333 8.33398V10.0007H12.5V16.6673H15.8333V17.5007H10V19.1673H15C16.3833 19.1673 17.5 18.0507 17.5 16.6673V8.33398C17.5 4.19232 14.1417 0.833984 10 0.833984Z" fill="#1A1A1A"/>
3
+ <path d="M15.8333 11.6673V15.0007H14.1667V11.6673H15.8333ZM5.83333 11.6673V15.0007H5C4.54167 15.0007 4.16667 14.6257 4.16667 14.1673V11.6673H5.83333ZM10 0.833984C5.85833 0.833984 2.5 4.19232 2.5 8.33398V14.1673C2.5 15.5507 3.61667 16.6673 5 16.6673H7.5V10.0007H4.16667V8.33398C4.16667 5.10898 6.775 2.50065 10 2.50065C13.225 2.50065 15.8333 5.10898 15.8333 8.33398V10.0007H12.5V16.6673H15.8333V17.5007H10V19.1673H15C16.3833 19.1673 17.5 18.0507 17.5 16.6673V8.33398C17.5 4.19232 14.1417 0.833984 10 0.833984Z" class="flt-icon__prop-fill"/>
4
4
  </svg>
5
5
  </template>