stone-kit 0.0.875 → 0.0.877

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 (243) hide show
  1. package/dist/App.js +1 -1
  2. package/dist/Router.js +9 -9
  3. package/dist/_virtual/_commonjsHelpers.js +6 -0
  4. package/dist/_virtual/bind.js +4 -0
  5. package/dist/_virtual/index.js +4 -0
  6. package/dist/_virtual/index2.js +4 -0
  7. package/dist/_virtual/index3.js +4 -0
  8. package/dist/_virtual/react-is.development.js +4 -0
  9. package/dist/_virtual/react-is.production.min.js +4 -0
  10. package/dist/components/Button/ui/Button.js +44 -73
  11. package/dist/components/CheckBox/CheckBox.js +35 -46
  12. package/dist/components/CheckBoxNew/CheckBoxNew.js +19 -23
  13. package/dist/components/CheckboxSelect/ui/CheckboxSelect.js +24 -31
  14. package/dist/components/DestinationTab/ui/DestinationTab.js +35 -48
  15. package/dist/components/FieldInput/ui/FieldInput.js +7 -10
  16. package/dist/components/FilterWithSave/hooks/useFilterWithSave.js +61 -5
  17. package/dist/components/FilterWithSave/ui/FilterWithSave.js +266 -7
  18. package/dist/components/Flex/ui/Flex.js +26 -61
  19. package/dist/components/FormModal/ui/ModalForm.js +289 -14
  20. package/dist/components/GroupedInput/ui/GroupedInputs.js +5 -6
  21. package/dist/components/Input/ui/Input.js +74 -3307
  22. package/dist/components/Logo/ui/Logo.js +19 -31
  23. package/dist/components/Logo/ui/Logo.types.js +18 -10
  24. package/dist/components/LotCard/hooks/useLotCard.js +125 -11
  25. package/dist/components/LotCard/index.js +2 -2
  26. package/dist/components/LotCard/ui/LotCard.js +150 -9
  27. package/dist/components/LotCardSkeleton/ui/LotCardSkeleton.js +31 -58
  28. package/dist/components/MetroLabel/ui/MetroLabel.js +19 -24
  29. package/dist/components/MetroTag/ui/MetroTag.js +59 -72
  30. package/dist/components/Modal/ui/Modal.js +33 -38
  31. package/dist/components/ModalSuccess/ModalSuccess.js +26 -35
  32. package/dist/components/NewIcon/icons/PinTrans.js +3 -3
  33. package/dist/components/NewIcon/icons/SmallFilter.js +1 -1
  34. package/dist/components/NewIcon/ui/NewIcon.js +141 -301
  35. package/dist/components/ProjectCardSkeleton/ui/ProjectCardSkeleton.js +5 -15
  36. package/dist/components/RoundButton/ui/RoundButton.js +42 -60
  37. package/dist/components/Select/ui/Category.js +30 -29
  38. package/dist/components/Select/ui/Option.js +52 -5
  39. package/dist/components/Select/ui/Select.js +24 -23
  40. package/dist/components/SliderNavigation/ui/SliderNavigation.js +27 -28
  41. package/dist/components/SortSelect/hooks/useSortSelect.js +59 -4
  42. package/dist/components/SortSelect/index.js +1 -1
  43. package/dist/components/SortSelect/ui/SortSelect.js +114 -9
  44. package/dist/components/SummarySelect/ui/SummarySelect.js +59 -69
  45. package/dist/components/Switcher/ui/Switcher.js +13 -24
  46. package/dist/components/TabSelect/ui/TabSelect.js +28 -34
  47. package/dist/components/TabSwitcher/index.js +2 -2
  48. package/dist/components/TabSwitcher/ui/TabSwitcher.js +84 -7
  49. package/dist/components/Tag/ui/Tag.js +19 -67
  50. package/dist/components/Text/ui/Text.js +12 -13
  51. package/dist/components/TextArea/TextArea.js +11 -14
  52. package/dist/components/ZoomControls/ui/ZoomControls.js +8 -11
  53. package/dist/components/mobileButton/ui/MobileButton.js +34 -39
  54. package/dist/layout/Layout.js +7 -8
  55. package/dist/layout/components/Header/Header.js +41 -44
  56. package/dist/layout/components/Menu.js +111 -6
  57. package/dist/main.js +46 -42
  58. package/dist/node_modules/@remix-run/router/dist/router.js +431 -0
  59. package/dist/node_modules/classnames/bind.js +42 -0
  60. package/dist/{index-rKuIKazb.js → node_modules/classnames/index.js} +12 -15
  61. package/dist/node_modules/imask/esm/controls/html-contenteditable-mask-element.js +35 -0
  62. package/dist/node_modules/imask/esm/controls/html-input-mask-element.js +31 -0
  63. package/dist/node_modules/imask/esm/controls/html-mask-element.js +48 -0
  64. package/dist/node_modules/imask/esm/controls/input-history.js +30 -0
  65. package/dist/node_modules/imask/esm/controls/input.js +224 -0
  66. package/dist/node_modules/imask/esm/controls/mask-element.js +43 -0
  67. package/dist/node_modules/imask/esm/core/action-details.js +51 -0
  68. package/dist/node_modules/imask/esm/core/change-details.js +36 -0
  69. package/dist/node_modules/imask/esm/core/continuous-tail-details.js +44 -0
  70. package/dist/node_modules/imask/esm/core/holder.js +6 -0
  71. package/dist/node_modules/imask/esm/core/utils.js +80 -0
  72. package/dist/node_modules/imask/esm/index.js +50 -0
  73. package/dist/node_modules/imask/esm/masked/base.js +257 -0
  74. package/dist/node_modules/imask/esm/masked/date.js +118 -0
  75. package/dist/node_modules/imask/esm/masked/dynamic.js +224 -0
  76. package/dist/node_modules/imask/esm/masked/enum.js +70 -0
  77. package/dist/node_modules/imask/esm/masked/factory.js +51 -0
  78. package/dist/node_modules/imask/esm/masked/function.js +23 -0
  79. package/dist/node_modules/imask/esm/masked/number.js +215 -0
  80. package/dist/node_modules/imask/esm/masked/pattern/chunk-tail-details.js +110 -0
  81. package/dist/node_modules/imask/esm/masked/pattern/cursor.js +102 -0
  82. package/dist/node_modules/imask/esm/masked/pattern/fixed-definition.js +103 -0
  83. package/dist/node_modules/imask/esm/masked/pattern/input-definition.js +134 -0
  84. package/dist/node_modules/imask/esm/masked/pattern.js +339 -0
  85. package/dist/node_modules/imask/esm/masked/pipe.js +23 -0
  86. package/dist/node_modules/imask/esm/masked/range.js +82 -0
  87. package/dist/node_modules/imask/esm/masked/regexp.js +21 -0
  88. package/dist/node_modules/imask/esm/masked/repeat.js +106 -0
  89. package/dist/node_modules/object-assign/index.js +55 -0
  90. package/dist/node_modules/prop-types/checkPropTypes.js +55 -0
  91. package/dist/node_modules/prop-types/factoryWithThrowingShims.js +53 -0
  92. package/dist/node_modules/prop-types/factoryWithTypeCheckers.js +330 -0
  93. package/dist/node_modules/prop-types/index.js +15 -0
  94. package/dist/node_modules/prop-types/lib/ReactPropTypesSecret.js +11 -0
  95. package/dist/node_modules/prop-types/lib/has.js +7 -0
  96. package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js +95 -0
  97. package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.production.min.js +79 -0
  98. package/dist/node_modules/prop-types/node_modules/react-is/index.js +10 -0
  99. package/dist/node_modules/react-hook-form/dist/index.esm.js +1062 -0
  100. package/dist/node_modules/react-imask/esm/input.js +25 -0
  101. package/dist/node_modules/react-imask/esm/mixin.js +131 -0
  102. package/dist/node_modules/react-router/dist/index.js +486 -0
  103. package/dist/node_modules/react-router-dom/dist/index.js +424 -0
  104. package/dist/pages/ButtonsPage/ButtonState/ButtonState.js +1 -1
  105. package/dist/pages/ButtonsPage/Buttons.js +54 -62
  106. package/dist/pages/CheckboxPage/CheckboxPage.js +47 -51
  107. package/dist/pages/FormsPage/FormsPage.js +31 -32
  108. package/dist/pages/HomePage/HomePage.js +3 -4
  109. package/dist/pages/IconsPage/IconsPage.js +12 -10
  110. package/dist/pages/InputPage/InputPage.js +17 -12
  111. package/dist/pages/LogoPage/LogoPage.js +17 -14
  112. package/dist/pages/LotsPage/LotsPage.js +15 -15
  113. package/dist/pages/ModalsPage/ModalPage.js +19 -14
  114. package/dist/pages/SelectPage/SelectPage.js +42 -41
  115. package/dist/pages/TabsPage/TabsPage.js +49 -51
  116. package/dist/pages/TagsPage/TagsPage.js +10 -7
  117. package/dist/src/components/Button/ui/Button.module.scss.js +49 -0
  118. package/dist/src/components/CheckBox/s.module.scss.js +24 -0
  119. package/dist/src/components/CheckBoxNew/s.module.scss.js +13 -0
  120. package/dist/src/components/CheckboxSelect/ui/s.module.scss.js +19 -0
  121. package/dist/src/components/DestinationTab/ui/DestinationTab.module.scss.js +23 -0
  122. package/dist/src/components/FieldInput/ui/FieldInput.module.scss.js +11 -0
  123. package/dist/src/components/FilterWithSave/ui/s.module.scss.js +39 -0
  124. package/dist/src/components/Flex/ui/Flex.module.scss.js +41 -0
  125. package/dist/src/components/FormModal/ui/ModalForm.module.scss.js +31 -0
  126. package/dist/src/components/GroupedInput/ui/GroupedInputs.module.scss.js +7 -0
  127. package/dist/src/components/Input/ui/Input.module.scss.js +43 -0
  128. package/dist/src/components/Logo/assets/LogoBlack.svg.js +4 -0
  129. package/dist/src/components/Logo/assets/LogoDom.svg.js +4 -0
  130. package/dist/src/components/Logo/assets/LogoNewDom.svg.js +4 -0
  131. package/dist/src/components/Logo/assets/LogoNewOffice.svg.js +4 -0
  132. package/dist/src/components/Logo/assets/LogoOffice.svg.js +4 -0
  133. package/dist/src/components/Logo/assets/LogoRealty.svg.js +4 -0
  134. package/dist/src/components/Logo/assets/LogoValue.svg.js +4 -0
  135. package/dist/src/components/Logo/assets/LogoWhite.svg.js +4 -0
  136. package/dist/src/components/Logo/ui/Logo.module.scss.js +29 -0
  137. package/dist/src/components/LotCard/assets/testLot.webp.js +4 -0
  138. package/dist/src/components/LotCard/ui/LotCard.module.scss.js +71 -0
  139. package/dist/src/components/LotCardSkeleton/ui/LotCardSkeleton.module.scss.js +59 -0
  140. package/dist/src/components/MetroLabel/ui/MetroLabel.module.scss.js +15 -0
  141. package/dist/src/components/MetroTag/ui/MetroTag.module.scss.js +31 -0
  142. package/dist/src/components/Modal/ui/Modal.module.scss.js +15 -0
  143. package/dist/src/components/ModalSuccess/styles.module.scss.js +23 -0
  144. package/dist/src/components/NewIcon/assets/ArrowLong.svg.js +10 -0
  145. package/dist/src/components/NewIcon/assets/ArrowShort.svg.js +10 -0
  146. package/dist/src/components/NewIcon/assets/Auto.svg.js +10 -0
  147. package/dist/src/components/NewIcon/assets/Building.svg.js +10 -0
  148. package/dist/src/components/NewIcon/assets/Burger.svg.js +10 -0
  149. package/dist/src/components/NewIcon/assets/BurgerClose.svg.js +10 -0
  150. package/dist/src/components/NewIcon/assets/Call.svg.js +10 -0
  151. package/dist/src/components/NewIcon/assets/Callback.svg.js +10 -0
  152. package/dist/src/components/NewIcon/assets/Case.svg.js +10 -0
  153. package/dist/src/components/NewIcon/assets/Check.svg.js +10 -0
  154. package/dist/src/components/NewIcon/assets/Circle.svg.js +10 -0
  155. package/dist/src/components/NewIcon/assets/Close.svg.js +10 -0
  156. package/dist/src/components/NewIcon/assets/DirectionDown.svg.js +10 -0
  157. package/dist/src/components/NewIcon/assets/Download.svg.js +10 -0
  158. package/dist/src/components/NewIcon/assets/Filter.svg.js +10 -0
  159. package/dist/src/components/NewIcon/assets/Food.svg.js +10 -0
  160. package/dist/src/components/NewIcon/assets/Fullscreen.svg.js +10 -0
  161. package/dist/src/components/NewIcon/assets/Heart.svg.js +10 -0
  162. package/dist/src/components/NewIcon/assets/Layers.svg.js +10 -0
  163. package/dist/src/components/NewIcon/assets/LayersFilled.svg.js +10 -0
  164. package/dist/src/components/NewIcon/assets/Loader.svg.js +10 -0
  165. package/dist/src/components/NewIcon/assets/Lock.svg.js +10 -0
  166. package/dist/src/components/NewIcon/assets/Metro.svg.js +10 -0
  167. package/dist/src/components/NewIcon/assets/Minus.svg.js +10 -0
  168. package/dist/src/components/NewIcon/assets/MinusCheck.svg.js +10 -0
  169. package/dist/src/components/NewIcon/assets/Moon.svg.js +10 -0
  170. package/dist/src/components/NewIcon/assets/Park.svg.js +10 -0
  171. package/dist/src/components/NewIcon/assets/Pedestrian.svg.js +10 -0
  172. package/dist/src/components/NewIcon/assets/Phone.svg.js +10 -0
  173. package/dist/src/components/NewIcon/assets/PhoneFilled.svg.js +10 -0
  174. package/dist/src/components/NewIcon/assets/Pin.svg.js +10 -0
  175. package/dist/{PinTrans-D6OZq76b.js → src/components/NewIcon/assets/PinTrans.svg.js} +4 -4
  176. package/dist/src/components/NewIcon/assets/Play.svg.js +10 -0
  177. package/dist/src/components/NewIcon/assets/Play2.svg.js +10 -0
  178. package/dist/src/components/NewIcon/assets/Plus.svg.js +10 -0
  179. package/dist/src/components/NewIcon/assets/Redo.svg.js +10 -0
  180. package/dist/src/components/NewIcon/assets/Ruble.svg.js +10 -0
  181. package/dist/src/components/NewIcon/assets/Search.svg.js +10 -0
  182. package/dist/src/components/NewIcon/assets/SelectChecked.svg.js +10 -0
  183. package/dist/src/components/NewIcon/assets/SelectUnchecked.svg.js +10 -0
  184. package/dist/src/components/NewIcon/assets/Share.svg.js +10 -0
  185. package/dist/{SmallFilter-C-VKnbkP.js → src/components/NewIcon/assets/SmallFilter.svg.js} +3 -3
  186. package/dist/src/components/NewIcon/assets/Sport.svg.js +10 -0
  187. package/dist/src/components/NewIcon/assets/SquareMeter.svg.js +10 -0
  188. package/dist/src/components/NewIcon/assets/Star.svg.js +10 -0
  189. package/dist/src/components/NewIcon/assets/StarFilled.svg.js +10 -0
  190. package/dist/src/components/NewIcon/assets/Sun.svg.js +10 -0
  191. package/dist/src/components/NewIcon/assets/Telegram.svg.js +10 -0
  192. package/dist/src/components/NewIcon/assets/Timer.svg.js +10 -0
  193. package/dist/src/components/NewIcon/assets/TwoArrows.svg.js +10 -0
  194. package/dist/src/components/NewIcon/assets/User.svg.js +10 -0
  195. package/dist/src/components/NewIcon/assets/WhatsApp.svg.js +10 -0
  196. package/dist/src/components/NewIcon/assets/WithoutDecor.svg.js +10 -0
  197. package/dist/src/components/NewIcon/assets/arrowRight.svg.js +10 -0
  198. package/dist/src/components/NewIcon/assets/mail.svg.js +10 -0
  199. package/dist/src/components/NewIcon/ui/NewIcon.module.scss.js +4 -0
  200. package/dist/src/components/ProjectCardSkeleton/ui/ProjectCardSkeleton.module.scss.js +25 -0
  201. package/dist/src/components/RoundButton/ui/RoundButton.module.scss.js +29 -0
  202. package/dist/src/components/Select/ui/Select.module.scss.js +52 -0
  203. package/dist/src/components/SliderNavigation/ui/SliderNavigation.module.scss.js +7 -0
  204. package/dist/src/components/SortSelect/ui/SortSelect.module.scss.js +41 -0
  205. package/dist/src/components/SummarySelect/ui/SummarySelect.module.scss.js +25 -0
  206. package/dist/src/components/Switcher/ui/Switcher.module.scss.js +27 -0
  207. package/dist/src/components/TabSelect/ui/TabSelect.module.scss.js +17 -0
  208. package/dist/src/components/TabSwitcher/ui/TabSwitcher.module.scss.js +57 -0
  209. package/dist/src/components/Tag/ui/Tag.module.scss.js +70 -0
  210. package/dist/src/components/Text/ui/Text.module.scss.js +7 -0
  211. package/dist/src/components/TextArea/styles.module.scss.js +9 -0
  212. package/dist/src/components/ZoomControls/ui/ZoomControls.module.scss.js +11 -0
  213. package/dist/src/components/mobileButton/ui/MobileButton.module.scss.js +12 -0
  214. package/dist/src/layout/components/Header/s.module.scss.js +19 -0
  215. package/dist/src/layout/components/Menu.module.scss.js +9 -0
  216. package/dist/src/layout/style.module.scss.js +7 -0
  217. package/dist/src/pages/ButtonsPage/ButtonState/ButtonState.js +18 -0
  218. package/dist/{ButtonState.module-DtW3aevR.js → src/pages/ButtonsPage/ButtonState/ButtonState.module.scss.js} +4 -1
  219. package/dist/src/pages/ButtonsPage/ButtonsPage.module.scss.js +9 -0
  220. package/dist/src/pages/CheckboxPage/CheckboxPage.module.scss.js +13 -0
  221. package/dist/src/pages/FormsPage/FormsPage.module.scss.js +15 -0
  222. package/dist/src/pages/HomePage/HomePage.module.scss.js +7 -0
  223. package/dist/src/pages/IconsPage/IconsPage.module.scss.js +9 -0
  224. package/dist/src/pages/InputPage/InputPage.module.scss.js +4 -0
  225. package/dist/src/pages/LogoPage/LogoPage.module.scss.js +7 -0
  226. package/dist/src/pages/LotsPage/LotsPage.module.scss.js +13 -0
  227. package/dist/src/pages/ModalsPage/ModalPage.module.scss.js +4 -0
  228. package/dist/src/pages/SelectPage/SelectPage.module.scss.js +11 -0
  229. package/dist/src/pages/TabsPage/TabsPage.module.scss.js +17 -0
  230. package/dist/src/pages/TagsPage/TagsPage.module.scss.js +7 -0
  231. package/dist/src/stories/button.css.js +1 -0
  232. package/dist/src/stories/header.css.js +1 -0
  233. package/dist/src/stories/page.css.js +1 -0
  234. package/dist/stories/Button.js +24 -0
  235. package/dist/stories/Header.js +45 -0
  236. package/dist/stories/Page.js +59 -0
  237. package/dist/style.css +1 -1
  238. package/package.json +11 -6
  239. package/dist/FilterWithSave-Bp6rH8Pe.js +0 -2230
  240. package/dist/Menu-CgCfinVZ.js +0 -513
  241. package/dist/Option-BVIm7wOW.js +0 -83
  242. package/dist/index-DmANy9jd.js +0 -890
  243. package/dist/useSortSelect-CjZXLFOG.js +0 -80
@@ -1,83 +1,56 @@
1
- import { jsxs as p, jsx as e } from "react/jsx-runtime";
2
- import { c } from "../../../index-rKuIKazb.js";
3
- const l = "_root_7lz45_12", s = "_projectRoot_7lz45_22", i = "_lotImageWrapper_7lz45_26", a = "_pulsing_7lz45_1", n = "_projectLotImageWrapper_7lz45_37", _ = "_lotInfoWrapper_7lz45_41", m = "_projectLotInfoWrapper_7lz45_48", P = "_infoHeader_7lz45_52", L = "_projectInfoHeader_7lz45_60", d = "_decor_7lz45_64", W = "_lotPropertyListMobile_7lz45_71", j = "_lotPropertyItem_7lz45_79", I = "_projectLotPropertyItem_7lz45_104", y = "_lotPropertyListDesktop_7lz45_109", z = "_lotPriceWrapper_7lz45_113", v = "_projectLotPriceWrapper_7lz45_117", D = "_discountWrapper_7lz45_121", f = "_lotPricePerMetr_7lz45_134", N = "_btnWrapper_7lz45_139", u = "_projectBtnWrapper_7lz45_155", M = "_projectDecor_7lz45_201", k = "_projectLotPropertyListMobile_7lz45_210", b = "_projectLotPropertyListDesktop_7lz45_218", g = "_lotPropertyItemDesktop_7lz45_221", h = "_projectDiscountWrapper_7lz45_232", H = "_discountPrice_7lz45_235", x = "_projectLotPricePerMetr_7lz45_255", t = {
4
- root: l,
5
- projectRoot: s,
6
- lotImageWrapper: i,
7
- pulsing: a,
8
- projectLotImageWrapper: n,
9
- lotInfoWrapper: _,
10
- projectLotInfoWrapper: m,
11
- infoHeader: P,
12
- projectInfoHeader: L,
13
- decor: d,
14
- lotPropertyListMobile: W,
15
- lotPropertyItem: j,
16
- projectLotPropertyItem: I,
17
- lotPropertyListDesktop: y,
18
- lotPriceWrapper: z,
19
- projectLotPriceWrapper: v,
20
- discountWrapper: D,
21
- lotPricePerMetr: f,
22
- btnWrapper: N,
23
- projectBtnWrapper: u,
24
- projectDecor: M,
25
- projectLotPropertyListMobile: k,
26
- projectLotPropertyListDesktop: b,
27
- lotPropertyItemDesktop: g,
28
- projectDiscountWrapper: h,
29
- discountPrice: H,
30
- projectLotPricePerMetr: x
31
- }, r = c.bind(t), S = ({ isProjectCard: o }) => /* @__PURE__ */ p("div", { className: r(t.root, { [t.projectRoot]: o }), children: [
32
- /* @__PURE__ */ e("div", { className: r(t.lotImageWrapper, { [t.projectLotImageWrapper]: o }) }),
33
- /* @__PURE__ */ p("div", { className: r(t.lotInfoWrapper, { [t.projectLotInfoWrapper]: o }), children: [
34
- /* @__PURE__ */ e("div", { className: r(t.infoHeader, { [t.projectInfoHeader]: o }) }),
35
- /* @__PURE__ */ e("div", { className: r(t.decor, { [t.projectDecor]: o }) }),
1
+ import { jsxs as p, jsx as t } from "react/jsx-runtime";
2
+ import l from "../../../node_modules/classnames/index.js";
3
+ import e from "../../../src/components/LotCardSkeleton/ui/LotCardSkeleton.module.scss.js";
4
+ const o = l.bind(e), a = ({ isProjectCard: r }) => /* @__PURE__ */ p("div", { className: o(e.root, { [e.projectRoot]: r }), children: [
5
+ /* @__PURE__ */ t("div", { className: o(e.lotImageWrapper, { [e.projectLotImageWrapper]: r }) }),
6
+ /* @__PURE__ */ p("div", { className: o(e.lotInfoWrapper, { [e.projectLotInfoWrapper]: r }), children: [
7
+ /* @__PURE__ */ t("div", { className: o(e.infoHeader, { [e.projectInfoHeader]: r }) }),
8
+ /* @__PURE__ */ t("div", { className: o(e.decor, { [e.projectDecor]: r }) }),
36
9
  /* @__PURE__ */ p(
37
10
  "div",
38
11
  {
39
- className: r(t.lotPropertyListDesktop, {
40
- [t.projectLotPropertyListDesktop]: o
12
+ className: o(e.lotPropertyListDesktop, {
13
+ [e.projectLotPropertyListDesktop]: r
41
14
  }),
42
15
  children: [
43
- /* @__PURE__ */ e("div", { className: t.lotPropertyItemDesktop }),
44
- /* @__PURE__ */ e("div", { className: t.lotPropertyItemDesktop }),
45
- /* @__PURE__ */ e("div", { className: t.lotPropertyItemDesktop })
16
+ /* @__PURE__ */ t("div", { className: e.lotPropertyItemDesktop }),
17
+ /* @__PURE__ */ t("div", { className: e.lotPropertyItemDesktop }),
18
+ /* @__PURE__ */ t("div", { className: e.lotPropertyItemDesktop })
46
19
  ]
47
20
  }
48
21
  ),
49
22
  /* @__PURE__ */ p(
50
23
  "ul",
51
24
  {
52
- className: r(t.lotPropertyListMobile, {
53
- [t.projectLotPropertyListMobile]: o
25
+ className: o(e.lotPropertyListMobile, {
26
+ [e.projectLotPropertyListMobile]: r
54
27
  }),
55
28
  children: [
56
- /* @__PURE__ */ p("li", { className: r(t.lotPropertyItem, { [t.projectLotPropertyItem]: o }), children: [
57
- /* @__PURE__ */ e("div", {}),
58
- /* @__PURE__ */ e("div", {})
29
+ /* @__PURE__ */ p("li", { className: o(e.lotPropertyItem, { [e.projectLotPropertyItem]: r }), children: [
30
+ /* @__PURE__ */ t("div", {}),
31
+ /* @__PURE__ */ t("div", {})
59
32
  ] }),
60
- /* @__PURE__ */ p("li", { className: r(t.lotPropertyItem, { [t.projectLotPropertyItem]: o }), children: [
61
- /* @__PURE__ */ e("div", {}),
62
- /* @__PURE__ */ e("div", {})
33
+ /* @__PURE__ */ p("li", { className: o(e.lotPropertyItem, { [e.projectLotPropertyItem]: r }), children: [
34
+ /* @__PURE__ */ t("div", {}),
35
+ /* @__PURE__ */ t("div", {})
63
36
  ] }),
64
- /* @__PURE__ */ p("li", { className: r(t.lotPropertyItem, { [t.projectLotPropertyItem]: o }), children: [
65
- /* @__PURE__ */ e("div", {}),
66
- /* @__PURE__ */ e("div", {})
37
+ /* @__PURE__ */ p("li", { className: o(e.lotPropertyItem, { [e.projectLotPropertyItem]: r }), children: [
38
+ /* @__PURE__ */ t("div", {}),
39
+ /* @__PURE__ */ t("div", {})
67
40
  ] })
68
41
  ]
69
42
  }
70
43
  )
71
44
  ] }),
72
- /* @__PURE__ */ p("div", { className: r(t.lotPriceWrapper, { [t.projectLotPriceWrapper]: o }), children: [
73
- /* @__PURE__ */ e("div", { className: r(t.discountWrapper, { [t.projectDiscountWrapper]: o }), children: /* @__PURE__ */ e("div", {}) }),
74
- /* @__PURE__ */ e("div", { className: r(t.lotPricePerMetr, { [t.projectLotPricePerMetr]: o }) }),
75
- /* @__PURE__ */ p("div", { className: r(t.btnWrapper, { [t.projectBtnWrapper]: o }), children: [
76
- /* @__PURE__ */ e("div", {}),
77
- /* @__PURE__ */ e("div", {})
45
+ /* @__PURE__ */ p("div", { className: o(e.lotPriceWrapper, { [e.projectLotPriceWrapper]: r }), children: [
46
+ /* @__PURE__ */ t("div", { className: o(e.discountWrapper, { [e.projectDiscountWrapper]: r }), children: /* @__PURE__ */ t("div", {}) }),
47
+ /* @__PURE__ */ t("div", { className: o(e.lotPricePerMetr, { [e.projectLotPricePerMetr]: r }) }),
48
+ /* @__PURE__ */ p("div", { className: o(e.btnWrapper, { [e.projectBtnWrapper]: r }), children: [
49
+ /* @__PURE__ */ t("div", {}),
50
+ /* @__PURE__ */ t("div", {})
78
51
  ] })
79
52
  ] })
80
53
  ] });
81
54
  export {
82
- S as LotCardSkeleton
55
+ a as LotCardSkeleton
83
56
  };
@@ -1,44 +1,39 @@
1
- import { jsxs as s, jsx as r } from "react/jsx-runtime";
2
- import { c as _ } from "../../../index-rKuIKazb.js";
3
- import { NewIcon as m } from "../../NewIcon/ui/NewIcon.js";
4
- const f = "_root_1ml5t_1", d = "_metroColor_1ml5t_15", N = "_route_1ml5t_25", p = "_auto_1ml5t_35", x = "_full_1ml5t_39", t = {
5
- root: f,
6
- metroColor: d,
7
- route: N,
8
- auto: p,
9
- full: x
10
- }, C = _.bind(t), v = ({ addClassName: c, metro: o, width: n = "full", justifyContent: a = "flex-start", colorIcon: e = "#777E90", ...u }) => /* @__PURE__ */ s(
1
+ import { jsxs as c, jsx as l } from "react/jsx-runtime";
2
+ import u from "../../../node_modules/classnames/index.js";
3
+ import o from "../../../src/components/MetroLabel/ui/MetroLabel.module.scss.js";
4
+ import { NewIcon as f } from "../../NewIcon/ui/NewIcon.js";
5
+ const p = u.bind(o), h = ({ addClassName: n, metro: s, width: i = "full", justifyContent: r = "flex-start", colorIcon: e = "#777E90", ...t }) => /* @__PURE__ */ c(
11
6
  "div",
12
7
  {
13
- style: { justifyContent: `${a}` },
14
- className: C(t.root, c, t[n]),
15
- ...u,
8
+ style: { justifyContent: `${r}` },
9
+ className: p(o.root, n, o[i]),
10
+ ...t,
16
11
  children: [
17
- /* @__PURE__ */ s("div", { className: t.metroColor, children: [
18
- (o == null ? void 0 : o.color) && /* @__PURE__ */ r("span", { style: { background: (o == null ? void 0 : o.color) ?? "" } }),
19
- o.name
12
+ /* @__PURE__ */ c("div", { className: o.metroColor, children: [
13
+ (s == null ? void 0 : s.color) && /* @__PURE__ */ l("span", { style: { background: (s == null ? void 0 : s.color) ?? "" } }),
14
+ s.name
20
15
  ] }),
21
- o.routes && o.routes.map((l, i) => /* @__PURE__ */ s(
16
+ s.routes && s.routes.map((a, d) => /* @__PURE__ */ c(
22
17
  "div",
23
18
  {
24
- className: t.route,
19
+ className: o.route,
25
20
  children: [
26
- l.iconName && /* @__PURE__ */ r(
27
- m,
21
+ a.iconName && /* @__PURE__ */ l(
22
+ f,
28
23
  {
29
24
  size: "20",
30
- name: l.iconName,
25
+ name: a.iconName,
31
26
  color: e
32
27
  }
33
28
  ),
34
- l.timeTo + " мин"
29
+ a.timeTo + " мин"
35
30
  ]
36
31
  },
37
- i
32
+ d
38
33
  ))
39
34
  ]
40
35
  }
41
36
  );
42
37
  export {
43
- v as MetroLabel
38
+ h as MetroLabel
44
39
  };
@@ -1,142 +1,129 @@
1
- import { jsxs as c, jsx as r } from "react/jsx-runtime";
2
- import { c as w } from "../../../index-rKuIKazb.js";
3
- import { NewIcon as t } from "../../NewIcon/ui/NewIcon.js";
4
- const N = "_root_16fjr_1", W = "_iconsWrapper_16fjr_17", x = "_metroColor_16fjr_27", B = "_route_16fjr_37", T = "_auto_16fjr_47", $ = "_full_16fjr_51", C = "_transparent_16fjr_55", b = "_long_16fjr_60", v = "_mini_16fjr_64", y = "_metroColorMini_16fjr_68", I = "_routeMini_16fjr_77", z = "_withBg_16fjr_90", E = "_withWhiteBg_16fjr_94", n = {
5
- root: N,
6
- iconsWrapper: W,
7
- metroColor: x,
8
- route: B,
9
- auto: T,
10
- full: $,
11
- transparent: C,
12
- long: b,
13
- mini: v,
14
- metroColorMini: y,
15
- routeMini: I,
16
- withBg: z,
17
- withWhiteBg: E
18
- }, e = w.bind(n), q = ({
19
- addClassName: a,
20
- addClassNameColor: _,
21
- addClassNameTimeTo: j,
22
- metro: o,
23
- separatorColor: M = "#F4F5F6",
24
- width: u = "auto",
25
- variant: l = "default",
1
+ import { jsxs as l, jsx as s } from "react/jsx-runtime";
2
+ import b from "../../../node_modules/classnames/index.js";
3
+ import n from "../../../src/components/MetroTag/ui/MetroTag.module.scss.js";
4
+ import { NewIcon as d } from "../../NewIcon/ui/NewIcon.js";
5
+ const e = b.bind(n), z = ({
6
+ addClassName: r,
7
+ addClassNameColor: u,
8
+ addClassNameTimeTo: T,
9
+ metro: i,
10
+ separatorColor: $ = "#F4F5F6",
11
+ width: p = "auto",
12
+ variant: a = "default",
26
13
  isBetween: f = !1,
27
- withBg: d = !1,
28
- withWhiteBg: p = !1,
29
- ...h
14
+ withBg: h = !1,
15
+ withWhiteBg: g = !1,
16
+ ...N
30
17
  }) => {
31
- const g = ["pedestrian", "auto"];
32
- return Array.isArray(o) ? /* @__PURE__ */ c(
18
+ const x = ["pedestrian", "auto"];
19
+ return Array.isArray(i) ? /* @__PURE__ */ l(
33
20
  "div",
34
21
  {
35
22
  className: e(
36
23
  n.root,
37
- n[l],
24
+ n[a],
38
25
  n[f ? "long" : ""],
39
- n[d ? "withBg" : ""],
40
- n[p ? "withWhiteBg" : ""],
41
- a,
42
- n[u]
26
+ n[h ? "withBg" : ""],
27
+ n[g ? "withWhiteBg" : ""],
28
+ r,
29
+ n[p]
43
30
  ),
44
- ...h,
31
+ ...N,
45
32
  children: [
46
- /* @__PURE__ */ c("div", { className: e(n.metroColor, _), children: [
47
- /* @__PURE__ */ r("div", { className: n.iconsWrapper, children: o.map((i, s) => i.icon ? /* @__PURE__ */ r(
33
+ /* @__PURE__ */ l("div", { className: e(n.metroColor, u), children: [
34
+ /* @__PURE__ */ s("div", { className: n.iconsWrapper, children: i.map((c, o) => c.icon ? /* @__PURE__ */ s(
48
35
  "div",
49
36
  {
50
37
  className: n.icon,
51
- children: (i == null ? void 0 : i.icon) && /* @__PURE__ */ r(
52
- t,
38
+ children: (c == null ? void 0 : c.icon) && /* @__PURE__ */ s(
39
+ d,
53
40
  {
54
41
  size: "20",
55
- name: i.icon,
42
+ name: c.icon,
56
43
  color: "#777E90"
57
44
  }
58
45
  )
59
46
  },
60
- `metro + ${i.name} + ${s}`
61
- ) : /* @__PURE__ */ r(
47
+ `metro + ${c.name} + ${o}`
48
+ ) : /* @__PURE__ */ s(
62
49
  "span",
63
50
  {
64
51
  style: {
65
- background: (i == null ? void 0 : i.color) ?? "",
66
- border: s > 0 ? `1px solid ${M}` : ""
52
+ background: (c == null ? void 0 : c.color) ?? "",
53
+ border: o > 0 ? `1px solid ${$}` : ""
67
54
  }
68
55
  },
69
- `color + ${i.name} + ${s}`
56
+ `color + ${c.name} + ${o}`
70
57
  )) }),
71
- o.map((i) => i.name).join(", ")
58
+ i.map((c) => c.name).join(", ")
72
59
  ] }),
73
- o == null ? void 0 : o.map((i, s) => !i.mode || !i.timeTo ? null : /* @__PURE__ */ c(
60
+ i == null ? void 0 : i.map((c, o) => !c.mode || !c.timeTo ? null : /* @__PURE__ */ l(
74
61
  "div",
75
62
  {
76
63
  className: n.route,
77
64
  children: [
78
- g.includes(i.mode) && /* @__PURE__ */ r(
79
- t,
65
+ x.includes(c.mode) && /* @__PURE__ */ s(
66
+ d,
80
67
  {
81
68
  size: "20",
82
- name: i.mode,
69
+ name: c.mode,
83
70
  color: "#777E90"
84
71
  }
85
72
  ),
86
- i.timeTo + " " + (i.selfIconText ?? "мин")
73
+ c.timeTo + " " + (c.selfIconText ?? "мин")
87
74
  ]
88
75
  },
89
- `route - ${i.name} - ${s}`
76
+ `route - ${c.name} - ${o}`
90
77
  ))
91
78
  ]
92
79
  }
93
- ) : /* @__PURE__ */ c(
80
+ ) : /* @__PURE__ */ l(
94
81
  "div",
95
82
  {
96
83
  className: e(
97
84
  n.root,
98
- n[l],
85
+ n[a],
99
86
  n[f ? "long" : ""],
100
- n[d ? "withBg" : ""],
101
- n[p ? "withWhiteBg" : ""],
102
- a,
103
- n[u]
87
+ n[h ? "withBg" : ""],
88
+ n[g ? "withWhiteBg" : ""],
89
+ r,
90
+ n[p]
104
91
  ),
105
- ...h,
92
+ ...N,
106
93
  children: [
107
- /* @__PURE__ */ c(
94
+ /* @__PURE__ */ l(
108
95
  "div",
109
96
  {
110
- className: e(n.metroColor, _, { [n.metroColorMini]: l === "mini" }),
97
+ className: e(n.metroColor, u, { [n.metroColorMini]: a === "mini" }),
111
98
  children: [
112
- (o == null ? void 0 : o.icon) && /* @__PURE__ */ r(
99
+ (i == null ? void 0 : i.icon) && /* @__PURE__ */ s(
113
100
  "img",
114
101
  {
115
- src: o.icon,
102
+ src: i.icon,
116
103
  width: 20,
117
104
  height: 20
118
105
  }
119
106
  ),
120
- (o == null ? void 0 : o.color) && !(o != null && o.icon) && /* @__PURE__ */ r("span", { style: { background: (o == null ? void 0 : o.color) ?? "" } }),
121
- o.name
107
+ (i == null ? void 0 : i.color) && !(i != null && i.icon) && /* @__PURE__ */ s("span", { style: { background: (i == null ? void 0 : i.color) ?? "" } }),
108
+ i.name
122
109
  ]
123
110
  }
124
111
  ),
125
- o.timeTo && /* @__PURE__ */ c("div", { className: e(n.route, j, { [n.routeMini]: l === "mini" }), children: [
126
- o.mode && g.includes(o.mode) && /* @__PURE__ */ r(
127
- t,
112
+ i.timeTo && /* @__PURE__ */ l("div", { className: e(n.route, T, { [n.routeMini]: a === "mini" }), children: [
113
+ i.mode && x.includes(i.mode) && /* @__PURE__ */ s(
114
+ d,
128
115
  {
129
116
  size: "20",
130
- name: o.mode,
117
+ name: i.mode,
131
118
  color: "#777E90"
132
119
  }
133
120
  ),
134
- o.timeTo + " " + (o.selfIconText ?? "мин")
121
+ i.timeTo + " " + (i.selfIconText ?? "мин")
135
122
  ] })
136
123
  ]
137
124
  }
138
125
  );
139
126
  };
140
127
  export {
141
- q as MetroTag
128
+ z as MetroTag
142
129
  };
@@ -1,77 +1,72 @@
1
- import { jsxs as B, jsx as a } from "react/jsx-runtime";
2
- import { useEffect as $ } from "react";
3
- import { createPortal as N } from "react-dom";
4
- const C = "_root_1vbbc_11", L = "_modalBody_1vbbc_25", x = "_modalOverlay_1vbbc_30", I = "_isTransparentBack_1vbbc_41", T = "_fadeInUp_1vbbc_1", s = {
5
- root: C,
6
- modalBody: L,
7
- modalOverlay: x,
8
- isTransparentBack: I,
9
- fadeInUp: T
10
- }, h = ({
1
+ import { jsxs as k, jsx as n } from "react/jsx-runtime";
2
+ import { useEffect as L } from "react";
3
+ import { createPortal as x } from "react-dom";
4
+ import s from "../../../src/components/Modal/ui/Modal.module.scss.js";
5
+ const B = ({
11
6
  isOpen: d,
12
- emitIsOpen: c,
7
+ emitIsOpen: m,
13
8
  isTransparentBack: l = !1,
14
- isClickOutside: t = !0,
15
- leaveDisableScroll: r = !1,
9
+ isClickOutside: r = !0,
10
+ leaveDisableScroll: t = !1,
16
11
  createPortalObj: o,
17
- additionalClass: i,
18
- additionalClassOverlay: m,
19
- additionalClassModalBody: f,
12
+ additionalClass: c,
13
+ additionalClassOverlay: f,
14
+ additionalClassModalBody: a,
20
15
  opacity: u = 0.7,
21
16
  colorOverlay: e,
22
- notDisableScroll: v = !1,
23
- children: y,
24
- modalBodyRef: _,
25
- additionalStylesModalBody: b
17
+ notDisableScroll: y = !1,
18
+ children: v,
19
+ modalBodyRef: $,
20
+ additionalStylesModalBody: p
26
21
  }) => {
27
- const p = () => {
28
- t && c(!1);
22
+ const N = () => {
23
+ r && m(!1);
29
24
  };
30
- $(() => {
31
- if (!v) {
25
+ L(() => {
26
+ if (!y) {
32
27
  if (d) {
33
28
  if (document.body.classList.contains("disable-scroll"))
34
29
  return;
35
30
  document.body.classList.add("disable-scroll");
36
31
  } else {
37
- if (r)
32
+ if (t)
38
33
  return;
39
34
  document.body.classList.remove("disable-scroll");
40
35
  }
41
36
  return () => document.body.classList.remove("disable-scroll");
42
37
  }
43
38
  }, [d]);
44
- const n = /* @__PURE__ */ B(
39
+ const i = /* @__PURE__ */ k(
45
40
  "div",
46
41
  {
47
- className: `${s.root} ${i}`,
48
- onClick: (k) => k.stopPropagation(),
42
+ className: `${s.root} ${c}`,
43
+ onClick: (C) => C.stopPropagation(),
49
44
  children: [
50
- /* @__PURE__ */ a(
45
+ /* @__PURE__ */ n(
51
46
  "div",
52
47
  {
53
- onClick: p,
54
- className: `${s.modalOverlay} ${m} ${l ? s.isTransparentBack : ""}`,
48
+ onClick: N,
49
+ className: `${s.modalOverlay} ${f} ${l ? s.isTransparentBack : ""}`,
55
50
  style: {
56
51
  opacity: l ? u : void 0,
57
52
  backgroundColor: e || void 0
58
53
  }
59
54
  }
60
55
  ),
61
- /* @__PURE__ */ a(
56
+ /* @__PURE__ */ n(
62
57
  "div",
63
58
  {
64
- className: `${s.modalBody} ${f}`,
65
- ref: _,
66
- style: b,
67
- children: y
59
+ className: `${s.modalBody} ${a}`,
60
+ ref: $,
61
+ style: p,
62
+ children: v
68
63
  }
69
64
  )
70
65
  ]
71
66
  }
72
67
  );
73
- return d ? o != null && o.domNode && o.domNode.isConnected ? N(n, o.domNode, o.key) : n : null;
68
+ return d ? o != null && o.domNode && o.domNode.isConnected ? x(i, o.domNode, o.key) : i : null;
74
69
  };
75
70
  export {
76
- h as Modal
71
+ B as Modal
77
72
  };
@@ -1,46 +1,37 @@
1
- import { jsx as c, jsxs as t } from "react/jsx-runtime";
2
- import { Modal as a } from "../Modal/ui/Modal.js";
3
- import { Button as n } from "../Button/ui/Button.js";
4
- import { NewIcon as s } from "../NewIcon/ui/NewIcon.js";
5
- const d = "_modal_1og3m_1", m = "_modalBody_1og3m_9", r = "_root_1og3m_14", _ = "_check_1og3m_26", h = "_iconCircle_1og3m_32", C = "_iconCheck_1og3m_38", u = "_text_1og3m_44", k = "_successTitle_1og3m_52", g = "_title_1og3m_67", o = {
6
- modal: d,
7
- modalBody: m,
8
- root: r,
9
- check: _,
10
- iconCircle: h,
11
- iconCheck: C,
12
- text: u,
13
- successTitle: k,
14
- title: g
15
- }, v = ({ isSuccessOpen: i, setIsSuccess: e, createPortalObj: l }) => /* @__PURE__ */ c(
16
- a,
1
+ import { jsx as i, jsxs as s } from "react/jsx-runtime";
2
+ import { Modal as d } from "../Modal/ui/Modal.js";
3
+ import a from "../../src/components/ModalSuccess/styles.module.scss.js";
4
+ import { Button as c } from "../Button/ui/Button.js";
5
+ import { NewIcon as e } from "../NewIcon/ui/NewIcon.js";
6
+ const u = ({ isSuccessOpen: l, setIsSuccess: o, createPortalObj: t }) => /* @__PURE__ */ i(
7
+ d,
17
8
  {
18
- createPortalObj: l,
19
- emitIsOpen: e,
20
- isOpen: i,
21
- additionalClassModalBody: o.modalBody,
22
- additionalClass: o.modal,
9
+ createPortalObj: t,
10
+ emitIsOpen: o,
11
+ isOpen: l,
12
+ additionalClassModalBody: a.modalBody,
13
+ additionalClass: a.modal,
23
14
  opacity: 0.7,
24
15
  isTransparentBack: !0,
25
- children: /* @__PURE__ */ t("div", { className: o.root, children: [
26
- /* @__PURE__ */ t("div", { className: o.check, children: [
27
- /* @__PURE__ */ c(s, { name: "circle", size: "80", additionalClass: o.iconCircle, color: "#57C27D" }),
28
- /* @__PURE__ */ c(
29
- s,
16
+ children: /* @__PURE__ */ s("div", { className: a.root, children: [
17
+ /* @__PURE__ */ s("div", { className: a.check, children: [
18
+ /* @__PURE__ */ i(e, { name: "circle", size: "80", additionalClass: a.iconCircle, color: "#57C27D" }),
19
+ /* @__PURE__ */ i(
20
+ e,
30
21
  {
31
- additionalClass: o.iconCheck,
22
+ additionalClass: a.iconCheck,
32
23
  size: "32",
33
24
  name: "check",
34
25
  color: "#57C27D"
35
26
  }
36
27
  )
37
28
  ] }),
38
- /* @__PURE__ */ t("div", { className: o.text, children: [
39
- /* @__PURE__ */ c("div", { className: o.successTitle, children: "Запрос принят" }),
40
- /* @__PURE__ */ c("div", { className: o.successText, children: "Наш менеджер свяжется с вами в ближайшее время" })
29
+ /* @__PURE__ */ s("div", { className: a.text, children: [
30
+ /* @__PURE__ */ i("div", { className: a.successTitle, children: "Запрос принят" }),
31
+ /* @__PURE__ */ i("div", { className: a.successText, children: "Наш менеджер свяжется с вами в ближайшее время" })
41
32
  ] }),
42
- /* @__PURE__ */ c(
43
- n,
33
+ /* @__PURE__ */ i(
34
+ c,
44
35
  {
45
36
  "data-testid": "modal_submit",
46
37
  variant: "blue",
@@ -48,8 +39,8 @@ const d = "_modal_1og3m_1", m = "_modalBody_1og3m_9", r = "_root_1og3m_14", _ =
48
39
  type: "submit",
49
40
  size: "large",
50
41
  as: "button",
51
- onClick: () => e(!1),
52
- additionalClass: o.modalBtn,
42
+ onClick: () => o(!1),
43
+ additionalClass: a.modalBtn,
53
44
  children: "Хорошо"
54
45
  }
55
46
  )
@@ -57,5 +48,5 @@ const d = "_modal_1og3m_1", m = "_modalBody_1og3m_9", r = "_root_1og3m_14", _ =
57
48
  }
58
49
  );
59
50
  export {
60
- v as ModalSuccess
51
+ u as ModalSuccess
61
52
  };
@@ -1,6 +1,6 @@
1
1
  import { jsx as o } from "react/jsx-runtime";
2
- import { F as a } from "../../../PinTrans-D6OZq76b.js";
3
- const f = (r) => /* @__PURE__ */ o(a, { ...r });
2
+ import t from "../../../src/components/NewIcon/assets/PinTrans.svg.js";
3
+ const m = (r) => /* @__PURE__ */ o(t, { ...r });
4
4
  export {
5
- f as default
5
+ m as default
6
6
  };
@@ -1,5 +1,5 @@
1
1
  import { jsx as o } from "react/jsx-runtime";
2
- import { F as t } from "../../../SmallFilter-C-VKnbkP.js";
2
+ import t from "../../../src/components/NewIcon/assets/SmallFilter.svg.js";
3
3
  const e = (r) => /* @__PURE__ */ o(t, { ...r });
4
4
  export {
5
5
  e as default