@bytebrand/fe-ui-core 4.1.172 → 4.1.174

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 (130) hide show
  1. package/common.ts +5 -0
  2. package/media/svg/common/arrow_breadcrumps.svg +2 -2
  3. package/media/svg/common/home.svg +6 -8
  4. package/media/svg/common/whyAutodeIconSet-F.svg +8 -12
  5. package/media/svg/common/whyAutodeIconSet-G.svg +6 -8
  6. package/media/svg/common/whyAutodeIconSet-Q.svg +5 -15
  7. package/media/svg/common/whyAutodeIconSet-R.svg +8 -13
  8. package/media/svg/infoBlocks/whyAutodeIconSet-F.svg +8 -8
  9. package/media/svg/infoBlocks/whyAutodeIconSet-G.svg +7 -6
  10. package/media/svg/infoBlocks/whyAutodeIconSet-Q.svg +5 -11
  11. package/media/svg/infoBlocks/whyAutodeIconSet-R.svg +8 -9
  12. package/package.json +1 -1
  13. package/source/components/AccordionWidget/AccordionWidget.styl +0 -3
  14. package/source/components/AccordionWidget/AccordionWidget.tsx +1 -3
  15. package/source/components/Alternative/DealerInfo.styl +7 -1
  16. package/source/components/Alternative/DealerInfo.tsx +64 -38
  17. package/source/components/Breadcrumbs/Breadcrumbs.styl +31 -19
  18. package/source/components/Breadcrumbs/Breadcrumbs.tsx +3 -3
  19. package/source/components/Breadcrumbs/FirstInfoBlock/FirstInfoBlock.styl +11 -18
  20. package/source/components/PriceRating/PriceRating.styl +1 -0
  21. package/source/components/SearchFilters/common/RangeControlled/RangeControlled.tsx +2 -1
  22. package/source/components/SearchPage/SearchTopBar/SearchTopBar.styl +13 -3
  23. package/source/components/SearchPage/SearchTopBar/SearchTopBar.tsx +3 -3
  24. package/source/components/Vehicle/VehicleFormattedPrice/VehicleFormattedPrice.styl +23 -17
  25. package/source/components/VehicleDetailedSidebar/partials/Properties.styl +0 -4
  26. package/source/components/VehicleDetailedSidebar/partials/Properties.tsx +1 -1
  27. package/source/components/VehicleSmallCard/VehicleData/VechiclePriceItem/VechiclePriceItem.styl +54 -40
  28. package/source/components/VehicleSmallCard/VehicleData/VechiclePriceItem/VechiclePriceItem.tsx +38 -16
  29. package/source/components/VehicleSmallCard/VehicleData/VehicleInfo/VehicleInfo.styl +47 -18
  30. package/source/components/VehicleSmallCard/VehicleData/VehicleInfo/VehicleInfo.tsx +13 -6
  31. package/source/components/VehicleSmallCard/VehicleData/VehiclePrice/VehiclePrice.styl +48 -28
  32. package/source/components/VehicleSmallCard/VehicleData/VehiclePrice/VehiclePrice.tsx +50 -16
  33. package/source/components/VehicleSmallCard/VehicleData/VehicleProperty/VehicleProperty.styl +6 -8
  34. package/source/components/VehicleSmallCard/VehicleData/VehicleTitle/VehicleTitle.styl +31 -12
  35. package/source/components/VehicleSmallCard/VehicleData/VehicleTitle/VehicleTitle.tsx +8 -3
  36. package/source/components/VehicleSmallCard/VehicleSmallCard.styl +51 -19
  37. package/source/components/VehicleSmallCard/VehicleSmallCard.tsx +39 -9
  38. package/source/components/_common/Badge/Badge.styl +13 -7
  39. package/source/components/_common/Badge/Badge.tsx +1 -1
  40. package/source/components/_common/Button/Button.styled.tsx +13 -8
  41. package/source/components/_common/Button/Button.tsx +1 -1
  42. package/source/components/_common/ExpansionPanel/ExpansionPanel.tsx +14 -4
  43. package/source/components/_common/IconSVG/IconSVG.story.js +1 -1
  44. package/source/components/_common/IconSVG/IconSVGConfig.tsx +90 -1
  45. package/source/components/_common/IconSVG/SVG/CloseIconSelect.tsx +1 -1
  46. package/source/components/_common/IconSVG/SVG/common/AddressDashboard.tsx +29 -0
  47. package/source/components/_common/IconSVG/SVG/common/CallbackDashboard.tsx +30 -0
  48. package/source/components/_common/IconSVG/SVG/common/CloseGrey.tsx +22 -0
  49. package/source/components/_common/IconSVG/SVG/common/DashboardQuestionMark.tsx +20 -0
  50. package/source/components/_common/IconSVG/SVG/common/DeliveryDashboard.tsx +25 -0
  51. package/source/components/_common/IconSVG/SVG/common/EditPriceIcon.tsx +20 -0
  52. package/source/components/_common/IconSVG/SVG/common/HandingOverDashboard.tsx +32 -0
  53. package/source/components/_common/IconSVG/SVG/common/MenuGrey.tsx +22 -0
  54. package/source/components/_common/IconSVG/SVG/common/MyOrderIcon.tsx +20 -0
  55. package/source/components/_common/IconSVG/SVG/common/OrderReceivedDashboard.tsx +27 -0
  56. package/source/components/_common/IconSVG/SVG/common/PickupDashboard.tsx +30 -0
  57. package/source/components/_common/IconSVG/SVG/common/PreparationDashboard.tsx +29 -0
  58. package/source/components/_common/IconSVG/SVG/common/ProfileDashboard.tsx +24 -0
  59. package/source/components/_common/IconSVG/SVG/common/RegistrationDashboard.tsx +31 -0
  60. package/source/components/_common/IconSVG/SVG/common/SliderEye.tsx +2 -3
  61. package/source/components/_common/IconSVG/SVG/common/StarRoundedCorners.tsx +1 -1
  62. package/source/components/_common/IconSVG/SVG/flags/AT.tsx +19 -0
  63. package/source/components/_common/IconSVG/SVG/flags/BE.tsx +20 -0
  64. package/source/components/_common/IconSVG/SVG/flags/BG.tsx +20 -0
  65. package/source/components/_common/IconSVG/SVG/flags/CH.tsx +22 -0
  66. package/source/components/_common/IconSVG/SVG/flags/CZ.tsx +18 -0
  67. package/source/components/_common/IconSVG/SVG/flags/DE.tsx +18 -0
  68. package/source/components/_common/IconSVG/SVG/flags/DK.tsx +18 -0
  69. package/source/components/_common/IconSVG/SVG/flags/ES.tsx +2585 -0
  70. package/source/components/_common/IconSVG/SVG/flags/FI.tsx +18 -0
  71. package/source/components/_common/IconSVG/SVG/flags/FR.tsx +20 -0
  72. package/source/components/_common/IconSVG/SVG/flags/GB.tsx +26 -0
  73. package/source/components/_common/IconSVG/SVG/flags/HR.tsx +135 -0
  74. package/source/components/_common/IconSVG/SVG/flags/HU.tsx +20 -0
  75. package/source/components/_common/IconSVG/SVG/flags/IT.tsx +20 -0
  76. package/source/components/_common/IconSVG/SVG/flags/LI.tsx +106 -0
  77. package/source/components/_common/IconSVG/SVG/flags/LU.tsx +18 -0
  78. package/source/components/_common/IconSVG/SVG/flags/NL.tsx +18 -0
  79. package/source/components/_common/IconSVG/SVG/flags/NO.tsx +20 -0
  80. package/source/components/_common/IconSVG/SVG/flags/PL.tsx +19 -0
  81. package/source/components/_common/IconSVG/SVG/flags/RO.tsx +20 -0
  82. package/source/components/_common/IconSVG/SVG/flags/RU.tsx +20 -0
  83. package/source/components/_common/IconSVG/SVG/flags/SE.tsx +20 -0
  84. package/source/components/_common/IconSVG/SVG/flags/SI.tsx +54 -0
  85. package/source/components/_common/IconSVG/SVG/flags/SK.tsx +35 -0
  86. package/source/components/_common/IconSVG/SVG/flags/UA.tsx +19 -0
  87. package/source/components/_common/IconSVG/SVG/searchWidgets/drive/AllWheelDrive.tsx +2 -2
  88. package/source/components/_common/IconSVG/SVG/searchWidgets/drive/FrontWheelDrive.tsx +2 -2
  89. package/source/components/_common/IconSVG/SVG/searchWidgets/drive/RearWheelDrive.tsx +2 -2
  90. package/source/components/_common/IconSVG/SVG/searchWidgets/fuel/FuelDiesel.tsx +4 -14
  91. package/source/components/_common/IconSVG/SVG/searchWidgets/fuel/FuelPetrol.tsx +1 -1
  92. package/source/components/_common/IconSVG/SVG/settings/RemoveEye.tsx +1 -1
  93. package/source/components/_common/IconSVG/SVG/settings/RemoveEyeOff.tsx +1 -1
  94. package/source/components/_common/IconSVG/SVG/slider/360New.tsx +20 -0
  95. package/source/components/_common/IconSVG/SVG/vehicle/CarAvailability.tsx +3 -3
  96. package/source/components/_common/IconSVG/SVG/vehicle/CheckoutChecked.tsx +2 -2
  97. package/source/components/_common/IconSVG/SVG/vehicle/Date.tsx +2 -2
  98. package/source/components/_common/IconSVG/SVG/vehicle/Door.tsx +5 -7
  99. package/source/components/_common/IconSVG/SVG/vehicle/FuelConsumption.tsx +1 -1
  100. package/source/components/_common/IconSVG/SVG/vehicle/NewCar.tsx +7 -9
  101. package/source/components/_common/IconSVG/SVG/vehicle/Ps.tsx +1 -1
  102. package/source/components/_common/IconSVG/SVG/vehicle/SelectorGearboxAutomatic.tsx +2 -2
  103. package/source/components/_common/MaterialAccordionGroup/MaterialAccordionGroup.styled.tsx +17 -1
  104. package/source/components/_common/MaterialAccordionGroup/MaterialAccordionGroup.tsx +3 -4
  105. package/source/components/_common/MaterialAutocomplete/MaterialAutocomplete.styled.tsx +6 -3
  106. package/source/components/_common/MaterialAutocomplete/MaterialAutocomplete.tsx +28 -3
  107. package/source/components/_common/MaterialSelect/MaterialSelect.styled.tsx +0 -7
  108. package/source/components/_common/MaterialSelect/MaterialSelect.tsx +16 -9
  109. package/source/components/_common/Modal/CookieModal.tsx +10 -7
  110. package/source/components/_common/Modal/Modal.styled.tsx +2 -1
  111. package/source/components/_common/Modal/modals/ManageCookieModal/ManageCookieModal.styl +15 -3
  112. package/source/components/_common/Modal/modals/ManageCookieModal/ManageCookieModal.tsx +5 -3
  113. package/source/components/_common/Modal/modals/PreviewCookieModal/PreviewCookieModal.styl +11 -1
  114. package/source/components/_common/Modal/modals/PreviewCookieModal/PreviewCookieModal.tsx +2 -0
  115. package/source/components/_common/TimePicker/TimePicker.styl +3 -1
  116. package/source/components/_common/TimePicker/TimePicker.tsx +6 -2
  117. package/source/components/_common/UserMenu/MaterialMenu.styled.tsx +2 -1
  118. package/source/components/_common/withStats/withStats.styl +43 -87
  119. package/source/components/_common/withStats/withStats.tsx +17 -8
  120. package/source/components/containers/SearchPage/FiltersContainer/FiltersContainer.styl +7 -3
  121. package/source/framework/constants/common.ts +15 -3
  122. package/source/framework/factories/BreadcrumbsFactory.tsx +19 -8
  123. package/source/framework/factories/FactoryTypes.d.ts +1 -0
  124. package/source/framework/types/types.ts +4 -2
  125. package/source/framework/utils/CommonUtils.ts +26 -9
  126. package/source/framework/vehiclesProps/decoratedProps.tsx +19 -23
  127. package/source/framework/vehiclesProps/equipment.ts +4 -3
  128. package/source/locales/data.ts +2 -0
  129. package/source/theme/priceReviewColors.styl +3 -1
  130. package/utils.ts +16 -0
@@ -0,0 +1,29 @@
1
+ /* tslint:disable */
2
+ import React from 'react';
3
+
4
+ const PreparationDashboard = (
5
+ props: any
6
+ ) => {
7
+ const { disabled } = props;
8
+ return (
9
+ <svg
10
+ fill={disabled ? '#D8E2FF' : '#005CCB'}
11
+ id="Layer_2"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ viewBox="0 0 20.05 18.97"
14
+ {...props}
15
+ >
16
+ <g id="Layer_1-2">
17
+ <g>
18
+ <path d="M19.54,1.5c-.34-.33-.77-.51-1.24-.51h-1.5c-.04-.07-.09-.15-.14-.23-.33-.5-.86-.76-1.44-.76s-1.1,.27-1.43,.76c-.05,.08-.09,.15-.13,.23h-1.52c-.47,0-.9,.18-1.23,.51-.15,.15-.27,.32-.34,.5H4.43c-.82,0-1.42,.05-1.85,.25-.5,.24-.71,.66-.86,1.1v.02s-.02,.03-.02,.03L.62,8.21C-.23,11.13-.04,15.09,.23,17.43c.11,.9,.88,1.54,1.76,1.54h.68c.88,0,1.62-.65,1.77-1.48H13.37c.16,.83,.89,1.48,1.77,1.48h.68c.88,0,1.65-.64,1.76-1.54,.14-1.19,.26-2.76,.22-4.43h.5c.47,0,.91-.18,1.24-.51,.33-.34,.51-.77,.51-1.24V2.74c0-.47-.18-.9-.51-1.24ZM2.67,3.65c.12-.34,.21-.43,.34-.49,.2-.1,.58-.16,1.42-.16h5.97v5.83c-2.91,.15-5.84-.17-8.67-.96l.94-4.22Zm13.92,13.67c-.05,.37-.37,.65-.77,.65h-.68c-.43,0-.8-.37-.8-.81,0-.37-.29-.67-.67-.67H4.14c-.38,0-.67,.3-.67,.67,0,.44-.36,.81-.8,.81h-.68c-.4,0-.72-.28-.76-.65-.26-2.22-.43-5.8,.26-8.48,2.91,.81,5.92,1.14,8.91,.99v1.42c0,.47,.17,.9,.51,1.24s.76,.51,1.23,.51h4.66c.03,1.62-.07,3.16-.21,4.32Zm2.46-6.07c0,.21-.07,.39-.22,.53-.14,.15-.32,.22-.53,.22h-6.16c-.2,0-.38-.07-.53-.22-.14-.14-.21-.32-.21-.53V2.74c0-.21,.07-.38,.21-.53,.15-.14,.33-.22,.53-.22h2.41c-.03-.09-.05-.18-.05-.27s.02-.18,.05-.27c.02-.04,.05-.09,.08-.13,.02-.04,.05-.08,.08-.11,.13-.14,.3-.21,.51-.21s.39,.07,.52,.2c.03,.04,.06,.07,.09,.12,.03,.03,.05,.07,.06,.11,.05,.09,.07,.19,.07,.29,0,.09-.03,.18-.07,.27h2.41c.21,0,.39,.08,.53,.22,.15,.15,.22,.32,.22,.53V11.25Z"/>
19
+ <path d="M3.63,10.85c-.64,0-1.16,.51-1.16,1.15s.52,1.15,1.16,1.15,1.15-.51,1.15-1.15-.52-1.15-1.15-1.15Z"/>
20
+ <path d="M17.32,4.82l-3.16,3.16-.99-1.32c-.17-.22-.48-.27-.7-.1-.22,.17-.27,.48-.1,.7l.94,1.25,.4,.53c.09,.12,.22,.19,.36,.2,.15,.01,.29-.04,.39-.14l1.05-1.05,2.52-2.52c.19-.2,.19-.51,0-.71-.2-.19-.51-.19-.71,0Z"/>
21
+ <circle cx="15.23" cy="1.74" r=".39"/>
22
+ </g>
23
+ </g>
24
+ </svg>
25
+ )
26
+ }
27
+
28
+ export default PreparationDashboard;
29
+ /* tslint:enable */
@@ -0,0 +1,24 @@
1
+ /* tslint:disable */
2
+ import React from 'react';
3
+
4
+ const ProfileDashboard = (
5
+ props: any
6
+ ) => {
7
+ return (
8
+ <svg
9
+ width="40"
10
+ height="40"
11
+ viewBox="0 0 40 40"
12
+ fill="none"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ {...props}
15
+ >
16
+ <rect width="40" height="40" rx="8" fill="#666CFF"/>
17
+ <rect width="40" height="40" rx="8" fill="white" fillOpacity="0.88"/>
18
+ <path d="M20 13.9C21.16 13.9 22.1 14.84 22.1 16C22.1 17.16 21.16 18.1 20 18.1C18.84 18.1 17.9 17.16 17.9 16C17.9 14.84 18.84 13.9 20 13.9ZM20 22.9C22.97 22.9 26.1 24.36 26.1 25V26.1H13.9V25C13.9 24.36 17.03 22.9 20 22.9ZM20 12C17.79 12 16 13.79 16 16C16 18.21 17.79 20 20 20C22.21 20 24 18.21 24 16C24 13.79 22.21 12 20 12ZM20 21C17.33 21 12 22.34 12 25V28H28V25C28 22.34 22.67 21 20 21Z" fill="#005CCB"/>
19
+ </svg>
20
+ )
21
+ }
22
+
23
+ export default ProfileDashboard;
24
+ /* tslint:enable */
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ import React from 'react';
3
+
4
+ const RegistrationDashboard = (
5
+ props: any
6
+ ) => {
7
+ const { disabled } = props;
8
+ return (
9
+ <svg
10
+ fill={disabled ? '#D8E2FF' : '#005CCB'}
11
+ id="Layer_2"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ viewBox="0 0 95.53 64.5"
14
+ {...props}
15
+ >
16
+ <g id="Layer_1-2">
17
+ <g>
18
+ <path d="M77.07,61.55c-.33-.33-.74-.49-1.24-.49H7.39c-1.15,0-2.09-.37-2.83-1.11s-1.11-1.68-1.11-2.83V16.49c0-.49-.17-.9-.49-1.23-.33-.33-.74-.49-1.23-.49s-.91,.16-1.24,.49c-.32,.33-.49,.74-.49,1.23V57.12c0,2.13,.7,3.9,2.09,5.29,1.4,1.4,3.16,2.09,5.3,2.09H75.83c.5,0,.91-.16,1.24-.49,.32-.33,.49-.74,.49-1.23s-.17-.9-.49-1.23Z"/>
19
+ <polygon points="25.5 30.45 25.67 30.45 25.67 30.75 25.5 30.45"/>
20
+ <polygon points="25.67 17.52 25.39 17.52 25.67 17.28 25.67 17.52"/>
21
+ <path d="M25.67,30.45v-12.93h4.53c.86,0,1.61,.18,2.23,.53s1.14,.82,1.54,1.43c.4,.58,.7,1.27,.88,2.06,.2,.77,.3,1.59,.3,2.45,0,1.15-.17,2.23-.52,3.22-.33,.97-.86,1.76-1.59,2.36-.74,.59-1.68,.88-2.84,.88h-4.53Z"/>
22
+ <path d="M93.38,2.15c-1.44-1.43-3.18-2.15-5.23-2.15H20.68c-2.05,0-3.79,.72-5.23,2.15-1.43,1.44-2.15,3.18-2.15,5.23V43.82c0,2.14,.7,3.9,2.09,5.3,1.4,1.39,3.16,2.09,5.29,2.09H88.15c2.13,0,3.89-.7,5.29-2.09,1.39-1.4,2.09-3.16,2.09-5.3V7.38c0-2.05-.72-3.79-2.15-5.23ZM37.77,28.86c-.65,1.44-1.58,2.6-2.81,3.46-1.21,.86-2.7,1.29-4.48,1.29h-6.58c-.47,0-.88-.15-1.21-.46-.31-.33-.46-.74-.46-1.21v-15.9c0-.48,.15-.87,.46-1.18,.33-.33,.74-.5,1.21-.5h6.58c1.32,0,2.49,.25,3.52,.74,1.03,.5,1.89,1.2,2.58,2.09,.72,.88,1.25,1.91,1.6,3.08,.37,1.16,.55,2.4,.55,3.72,0,1.78-.32,3.4-.96,4.87Zm54.31,14.96c0,1.15-.36,2.1-1.1,2.83-.74,.74-1.69,1.11-2.83,1.11H45.02V3.45h43.13c1.14,0,2.09,.36,2.83,1.1s1.1,1.69,1.1,2.83V43.82Z"/>
23
+ <path d="M62.86,30.86c-.31-.31-.71-.46-1.19-.46h-7.17v-14.36c0-.48-.18-.87-.53-1.18-.33-.33-.71-.5-1.15-.5-.52,0-.94,.17-1.27,.5-.33,.31-.49,.7-.49,1.18v15.9c0,.47,.15,.88,.47,1.21,.33,.31,.73,.46,1.21,.46h8.93c.48,0,.88-.14,1.19-.44,.33-.31,.49-.69,.49-1.15s-.16-.86-.49-1.16Zm7.27-11.33c-.27-.29-.68-.44-1.21-.44h-.36c-.53,0-.94,.15-1.23,.44-.28,.28-.42,.68-.42,1.21v.47c0,.53,.14,.94,.42,1.24,.29,.27,.7,.41,1.23,.41h.36c.53,0,.94-.14,1.21-.41,.3-.3,.44-.71,.44-1.24v-.47c0-.53-.14-.93-.44-1.21Zm0,10.76c-.27-.3-.68-.44-1.21-.44h-.36c-.53,0-.94,.14-1.23,.44-.28,.27-.42,.67-.42,1.21v.46c0,.54,.14,.95,.42,1.24,.29,.28,.7,.41,1.23,.41h.36c.53,0,.94-.13,1.21-.41,.3-.29,.44-.7,.44-1.24v-.46c0-.54-.14-.94-.44-1.21Zm15.8-5.86c-.42-.9-1.03-1.63-1.84-2.18-.74-.52-1.61-.81-2.6-.84l3.67-3.94c.18-.18,.34-.39,.47-.61,.13-.23,.19-.47,.19-.71,0-.48-.15-.87-.44-1.18-.27-.32-.7-.47-1.26-.47h-8.42c-.44,0-.81,.15-1.1,.44-.29,.27-.44,.62-.44,1.04s.15,.81,.44,1.1c.29,.3,.66,.44,1.1,.44h5.43l-4.25,4.51c-.2,.24-.36,.46-.47,.66-.09,.21-.13,.44-.13,.69,0,.41,.11,.75,.33,1.05,.24,.29,.57,.44,.99,.44,.33,0,.61-.04,.85-.11,.26-.09,.51-.18,.77-.25,.28-.07,.61-.11,1.02-.11,.53,0,1.02,.12,1.48,.36,.48,.24,.86,.58,1.13,1.04,.29,.46,.44,1.04,.44,1.74s-.16,1.36-.49,1.89c-.33,.52-.76,.92-1.27,1.21-.49,.28-1.03,.42-1.59,.42s-1.08-.1-1.52-.28c-.42-.18-.79-.39-1.1-.63-.24-.17-.46-.28-.66-.33-.18-.06-.36-.08-.52-.08-.46,0-.84,.19-1.16,.57-.29,.37-.44,.76-.44,1.19,0,.23,.07,.49,.2,.77,.14,.25,.42,.49,.82,.71,.48,.28,1.05,.5,1.71,.66,.66,.17,1.33,.25,2.01,.25,1.46,0,2.75-.27,3.85-.8,1.1-.53,1.95-1.29,2.55-2.28,.61-.99,.91-2.17,.91-3.52,0-1.03-.22-1.98-.66-2.86Z"/>
24
+ </g>
25
+ </g>
26
+ </svg>
27
+ )
28
+ }
29
+
30
+ export default RegistrationDashboard;
31
+ /* tslint:enable */
@@ -3,14 +3,13 @@ import * as React from 'react';
3
3
 
4
4
  const SvgSliderEye = (props: any) => (
5
5
  <svg
6
- viewBox="0 0 14 8"
6
+ viewBox="0 0 18 13"
7
7
  width="1em"
8
8
  height="1em"
9
9
  fill="none"
10
10
  {...props}
11
11
  >
12
- <path d="M.8 4l-.4-.4a.5.5 0 000 .8L.8 4zm12 0l.3.4a.5.5 0 000-.8l-.3.4zm-5.5.5V5h.5v-.5h-.5zM.8 4l.3.4a4.8 4.8 0 01.1-.1 16 16 0 011.9-1.4 7.8 7.8 0 013.7-1.4v-1c-1.5 0-3 .8-4.3 1.6a19.1 19.1 0 00-2 1.5l.3.4zm6-2.5c1.1 0 2.5.7 3.7 1.4a18.2 18.2 0 012 1.4l.3-.3.3-.4a6.2 6.2 0 00-.6-.5l-1.4-1A8.7 8.7 0 006.8.5v1zm6 2.5l-.3-.4a9.6 9.6 0 01-.6.5l-1.4 1a7.8 7.8 0 01-3.7 1.4v1c1.5 0 3-.8 4.3-1.6a19.2 19.2 0 002-1.5l-.3-.4zm-6 2.5c-1.2 0-2.6-.7-3.7-1.4a18.2 18.2 0 01-2-1.5L.8 4l-.4.4a6.4 6.4 0 00.6.5l1.5 1c1.2.8 2.8 1.6 4.3 1.6v-1zm0-3.5v1.5h1V3h-1zm.5 1H5.8v1h1.5V4z" fill="#333"/>
13
- <path d="M4.8 1.5c-.7 2-.7 3 0 5m4-5c.7 2.4.7 2.5 0 5" stroke="#333"/>
12
+ <path d="M8.70068 9.70972C9.65934 9.70972 10.472 9.37638 11.1387 8.70972C11.8053 8.04305 12.1387 7.23038 12.1387 6.27172C12.1387 5.31372 11.8053 4.50138 11.1387 3.83472C10.472 3.16805 9.65934 2.83472 8.70068 2.83472C7.74201 2.83472 6.92934 3.16805 6.26268 3.83472C5.59601 4.50138 5.26268 5.31372 5.26268 6.27172C5.26268 7.23038 5.59601 8.04305 6.26268 8.70972C6.92934 9.37638 7.74201 9.70972 8.70068 9.70972ZM8.70068 8.52172C8.07534 8.52172 7.54401 8.30305 7.10668 7.86572C6.66934 7.42838 6.45068 6.89705 6.45068 6.27172C6.45068 5.64705 6.66934 5.11605 7.10668 4.67872C7.54401 4.24072 8.07534 4.02172 8.70068 4.02172C9.32601 4.02172 9.85734 4.24072 10.2947 4.67872C10.732 5.11605 10.9507 5.64705 10.9507 6.27172C10.9507 6.89705 10.732 7.42838 10.2947 7.86572C9.85734 8.30305 9.32601 8.52172 8.70068 8.52172ZM8.70068 12.1267C6.86734 12.1267 5.19034 11.644 3.66968 10.6787C2.14901 9.71338 0.992676 8.41105 0.200676 6.77172C0.186676 6.71638 0.169342 6.64372 0.148676 6.55372C0.128009 6.46305 0.117676 6.36905 0.117676 6.27172C0.117676 6.17505 0.128009 6.08138 0.148676 5.99072C0.169342 5.90072 0.186676 5.82772 0.200676 5.77172C0.992676 4.13305 2.14901 2.83805 3.66968 1.88672C5.19034 0.935383 6.86734 0.459717 8.70068 0.459717C10.534 0.459717 12.211 0.935383 13.7317 1.88672C15.2523 2.83805 16.4087 4.13305 17.2007 5.77172C17.2147 5.82772 17.232 5.90072 17.2527 5.99072C17.2733 6.08138 17.2837 6.17505 17.2837 6.27172C17.2837 6.36905 17.2733 6.46305 17.2527 6.55372C17.232 6.64372 17.2147 6.71638 17.2007 6.77172C16.4087 8.41105 15.2523 9.71338 13.7317 10.6787C12.211 11.644 10.534 12.1267 8.70068 12.1267ZM8.70068 10.7927C10.256 10.7927 11.683 10.3867 12.9817 9.57472C14.2803 8.76205 15.27 7.66105 15.9507 6.27172C15.27 4.88305 14.2803 3.78938 12.9817 2.99072C11.683 2.19205 10.256 1.79272 8.70068 1.79272C7.14534 1.79272 5.71468 2.19205 4.40868 2.99072C3.10334 3.78938 2.11034 4.88305 1.42968 6.27172C2.11034 7.66105 3.10334 8.76205 4.40868 9.57472C5.71468 10.3867 7.14534 10.7927 8.70068 10.7927Z" fill="#4C4E64" fillOpacity="0.87"/>
14
13
  </svg>
15
14
  );
16
15
 
@@ -10,7 +10,7 @@ const SvgStarRoundedCorners = (
10
10
  height="1em"
11
11
  {...props}
12
12
  >
13
- <path d="M7.65 4.47L5.81 1 4.17 4.47l-3.27.4 2.45 2.46L2.74 11 5.8 9.16 9.08 11l-.61-3.67 2.46-2.45-3.28-.41z"/>
13
+ <path d="M3.26393 11.4387C2.9726 11.6887 2.66726 11.6991 2.34793 11.4697C2.0286 11.2411 1.92426 10.9461 2.03493 10.5847L2.95193 7.54272L0.638931 5.89772C0.333598 5.66106 0.239931 5.36239 0.357931 5.00172C0.475931 4.64039 0.729598 4.45972 1.11893 4.45972H3.99293L4.90993 1.35572C4.97926 1.16106 5.0836 1.01872 5.22293 0.928724C5.3616 0.838058 5.51426 0.792725 5.68093 0.792725C5.8476 0.792725 6.00026 0.838058 6.13893 0.928724C6.27826 1.01872 6.3826 1.16106 6.45193 1.35572L7.36893 4.45972H10.2429C10.6323 4.45972 10.8859 4.64039 11.0039 5.00172C11.1219 5.36239 11.0283 5.66106 10.7229 5.89772L8.40993 7.54272L9.32693 10.5847C9.4376 10.9461 9.33326 11.2411 9.01393 11.4697C8.6946 11.6991 8.38926 11.6887 8.09793 11.4387L5.68093 9.60572L3.26393 11.4387Z" fill="#4C4E64" fillOpacity="0.87"/>
14
14
  </svg>
15
15
  );
16
16
 
@@ -0,0 +1,19 @@
1
+ /* tslint:disable */
2
+ import * as React from "react";
3
+
4
+ const AT = (props: any) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ id="flag-icons-at"
8
+ viewBox="0 0 640 480"
9
+ {...props}
10
+ >
11
+ <g fill-rule="evenodd">
12
+ <path fill="#fff" d="M640 480H0V0h640z" />
13
+ <path fill="#c8102e" d="M640 480H0V320h640zm0-319.9H0V.1h640z" />
14
+ </g>
15
+ </svg>
16
+ );
17
+
18
+ export default AT;
19
+ /* tslint:enable */
@@ -0,0 +1,20 @@
1
+ /* tslint:disable */
2
+ import * as React from "react";
3
+
4
+ const BE = (props: any) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ id="flag-icons-be"
8
+ viewBox="0 0 640 480"
9
+ {...props}
10
+ >
11
+ <g fill-rule="evenodd" stroke-width="1pt">
12
+ <path d="M0 0h213.3v480H0z" />
13
+ <path fill="#ffd90c" d="M213.3 0h213.4v480H213.3z" />
14
+ <path fill="#f31830" d="M426.7 0H640v480H426.7z" />
15
+ </g>
16
+ </svg>
17
+ );
18
+
19
+ export default BE;
20
+ /* tslint:enable */
@@ -0,0 +1,20 @@
1
+ /* tslint:disable */
2
+ import * as React from "react";
3
+
4
+ const BG = (props: any) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ id="flag-icons-bg"
8
+ viewBox="0 0 640 480"
9
+ {...props}
10
+ >
11
+ <g fill-rule="evenodd" stroke-width="1pt">
12
+ <path fill="#d62612" d="M0 320h640v160H0z" />
13
+ <path fill="#fff" d="M0 0h640v160H0z" />
14
+ <path fill="#00966e" d="M0 160h640v160H0z" />
15
+ </g>
16
+ </svg>
17
+ );
18
+
19
+ export default BG;
20
+ /* tslint:enable */
@@ -0,0 +1,22 @@
1
+ /* tslint:disable */
2
+ import * as React from "react";
3
+
4
+ const CH = (props: any) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ id="flag-icons-ch"
8
+ viewBox="0 0 640 480"
9
+ {...props}
10
+ >
11
+ <g fill-rule="evenodd" stroke-width="1pt">
12
+ <path fill="red" d="M0 0h640v480H0z" />
13
+ <g fill="#fff">
14
+ <path d="M170 195h300v90H170z" />
15
+ <path d="M275 90h90v300h-90z" />
16
+ </g>
17
+ </g>
18
+ </svg>
19
+ );
20
+
21
+ export default CH;
22
+ /* tslint:enable */
@@ -0,0 +1,18 @@
1
+ /* tslint:disable */
2
+ import * as React from "react";
3
+
4
+ const CZ = (props: any) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ id="flag-icons-cz"
8
+ viewBox="0 0 640 480"
9
+ {...props}
10
+ >
11
+ <path fill="#fff" d="M0 0h640v240H0z" />
12
+ <path fill="#d7141a" d="M0 240h640v240H0z" />
13
+ <path fill="#11457e" d="M360 240 0 0v480z" />
14
+ </svg>
15
+ );
16
+
17
+ export default CZ;
18
+ /* tslint:enable */
@@ -0,0 +1,18 @@
1
+ /* tslint:disable */
2
+ import * as React from "react";
3
+
4
+ const DE = (props: any) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ id="flag-icons-de"
8
+ viewBox="0 0 640 480"
9
+ {...props}
10
+ >
11
+ <path fill="#ffce00" d="M0 320h640v160H0z" />
12
+ <path d="M0 0h640v160H0z" />
13
+ <path fill="#d00" d="M0 160h640v160H0z" />
14
+ </svg>
15
+ );
16
+
17
+ export default DE;
18
+ /* tslint:enable */
@@ -0,0 +1,18 @@
1
+ /* tslint:disable */
2
+ import * as React from "react";
3
+
4
+ const DK = (props: any) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ id="flag-icons-dk"
8
+ viewBox="0 0 640 480"
9
+ {...props}
10
+ >
11
+ <path fill="#c8102e" d="M0 0h640.1v480H0z" />
12
+ <path fill="#fff" d="M205.7 0h68.6v480h-68.6z" />
13
+ <path fill="#fff" d="M0 205.7h640.1v68.6H0z" />
14
+ </svg>
15
+ );
16
+
17
+ export default DK;
18
+ /* tslint:enable */