ublo-lib 1.31.42 → 1.31.44
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.
- package/es/common/components/admin-links/admin-links.d.ts +11 -0
- package/es/common/components/admin-links/admin-links.jsx +65 -0
- package/es/common/components/admin-links/{index.js → index.d.ts} +1 -1
- package/es/common/components/admin-links/index.jsx +2 -0
- package/es/common/components/analytics.d.ts +5 -0
- package/es/common/components/analytics.js +36 -34
- package/es/common/components/breadcrumb.d.ts +16 -0
- package/es/common/components/breadcrumb.jsx +32 -0
- package/es/common/components/carousel-zone.d.ts +7 -0
- package/es/common/components/carousel-zone.js +36 -55
- package/es/common/components/carousel.d.ts +14 -0
- package/es/common/components/carousel.js +288 -343
- package/es/common/components/cart-preview/api.d.ts +1 -0
- package/es/common/components/cart-preview/api.js +23 -19
- package/es/common/components/cart-preview/cart-pill.d.ts +5 -0
- package/es/common/components/cart-preview/cart-pill.js +5 -10
- package/es/common/components/cart-preview/cart-preview.d.ts +6 -0
- package/es/common/components/cart-preview/cart-preview.js +73 -102
- package/es/common/components/cart-preview/index.d.ts +2 -0
- package/es/common/components/cart-preview/index.js +1 -1
- package/es/common/components/cart-preview/utils.d.ts +2 -0
- package/es/common/components/cart-preview/utils.js +23 -13
- package/es/common/components/collapsible/collapsible.d.ts +9 -0
- package/es/common/components/collapsible/collapsible.jsx +51 -0
- package/es/common/components/collapsible/{index.js → index.d.ts} +1 -1
- package/es/common/components/collapsible/index.jsx +2 -0
- package/es/common/components/cookie-consent/cookie-consent.d.ts +7 -0
- package/es/common/components/cookie-consent/cookie-consent.js +99 -112
- package/es/common/components/cookie-consent/index.d.ts +4 -0
- package/es/common/components/cookie-consent/index.js +1 -1
- package/es/common/components/cookie-consent/messages.d.ts +1 -0
- package/es/common/components/cookie-consent/messages.js +27 -27
- package/es/common/components/cookie-consent/utils.d.ts +1 -0
- package/es/common/components/cookie-consent/utils.js +30 -21
- package/es/common/components/cross-selling-editor/cross-selling-editor.d.ts +18 -0
- package/es/common/components/cross-selling-editor/cross-selling-editor.jsx +35 -0
- package/es/common/components/cross-selling-editor/editor.d.ts +8 -0
- package/es/common/components/cross-selling-editor/editor.jsx +89 -0
- package/es/common/components/cross-selling-editor/hooks/use-custom-offers.d.ts +6 -0
- package/es/common/components/cross-selling-editor/hooks/use-custom-offers.js +56 -51
- package/es/common/components/cross-selling-editor/hooks/use-tunnel-offers.d.ts +1 -0
- package/es/common/components/cross-selling-editor/hooks/use-tunnel-offers.js +39 -31
- package/es/common/components/cross-selling-editor/{index.js → index.d.ts} +1 -1
- package/es/common/components/cross-selling-editor/index.jsx +2 -0
- package/es/common/components/cross-selling-editor/override-trigger-form.d.ts +10 -0
- package/es/common/components/cross-selling-editor/override-trigger-form.jsx +68 -0
- package/es/common/components/cross-selling-editor/override.d.ts +16 -0
- package/es/common/components/cross-selling-editor/override.jsx +102 -0
- package/es/common/components/cross-selling-editor/overrides-list.d.ts +13 -0
- package/es/common/components/cross-selling-editor/overrides-list.jsx +74 -0
- package/es/common/components/cross-selling-editor/rule.d.ts +13 -0
- package/es/common/components/cross-selling-editor/rule.jsx +55 -0
- package/es/common/components/cross-selling-editor/rules.d.ts +11 -0
- package/es/common/components/cross-selling-editor/rules.jsx +53 -0
- package/es/common/components/cross-selling-editor/services/api.d.ts +2 -0
- package/es/common/components/cross-selling-editor/services/api.js +27 -27
- package/es/common/components/cross-selling-editor/services/utils.d.ts +61 -0
- package/es/common/components/cross-selling-editor/services/utils.js +177 -175
- package/es/common/components/cross-selling-editor/tester-tunnel-offer.d.ts +13 -0
- package/es/common/components/cross-selling-editor/tester-tunnel-offer.jsx +26 -0
- package/es/common/components/cross-selling-editor/tester.d.ts +10 -0
- package/es/common/components/cross-selling-editor/tester.jsx +134 -0
- package/es/common/components/cross-selling-editor/types.d.ts +29 -0
- package/es/common/components/cross-selling-editor/types.js +1 -1
- package/es/common/components/custom-contact-form/attachment.d.ts +9 -0
- package/es/common/components/custom-contact-form/attachment.js +131 -201
- package/es/common/components/custom-contact-form/custom-contact-form.d.ts +24 -0
- package/es/common/components/custom-contact-form/custom-contact-form.jsx +121 -0
- package/es/common/components/custom-contact-form/field.d.ts +10 -0
- package/es/common/components/custom-contact-form/field.js +115 -218
- package/es/common/components/custom-contact-form/icons.d.ts +5 -0
- package/es/common/components/custom-contact-form/icons.js +35 -50
- package/es/common/components/custom-contact-form/index.d.ts +2 -0
- package/es/common/components/custom-contact-form/index.js +1 -1
- package/es/common/components/custom-contact-form/messages.d.ts +1 -0
- package/es/common/components/custom-contact-form/messages.js +78 -77
- package/es/common/components/custom-contact-form/utils.d.ts +29 -0
- package/es/common/components/custom-contact-form/utils.js +101 -124
- package/es/common/components/date-picker/calendar.d.ts +14 -0
- package/es/common/components/date-picker/calendar.js +172 -250
- package/es/common/components/date-picker/data.d.ts +86 -0
- package/es/common/components/date-picker/data.js +72 -78
- package/es/common/components/date-picker/date-item.d.ts +21 -0
- package/es/common/components/date-picker/date-item.js +123 -117
- package/es/common/components/date-picker/date-picker.d.ts +16 -0
- package/es/common/components/date-picker/date-picker.js +28 -56
- package/es/common/components/date-picker/helper.d.ts +9 -0
- package/es/common/components/date-picker/helper.js +37 -51
- package/es/common/components/date-picker/index.d.ts +3 -0
- package/es/common/components/date-picker/index.js +1 -1
- package/es/common/components/date-picker/messages.d.ts +1 -0
- package/es/common/components/date-picker/messages.js +47 -46
- package/es/common/components/date-picker/month.d.ts +20 -0
- package/es/common/components/date-picker/month.js +27 -72
- package/es/common/components/date-picker/utils.d.ts +24 -0
- package/es/common/components/date-picker/utils.js +104 -88
- package/es/common/components/editable-calendar/calendar-caption.d.ts +5 -0
- package/es/common/components/editable-calendar/calendar-caption.js +93 -144
- package/es/common/components/editable-calendar/calendar-date.d.ts +12 -0
- package/es/common/components/editable-calendar/calendar-date.js +64 -79
- package/es/common/components/editable-calendar/calendar-editor.d.ts +7 -0
- package/es/common/components/editable-calendar/calendar-editor.js +49 -83
- package/es/common/components/editable-calendar/calendar-header.d.ts +8 -0
- package/es/common/components/editable-calendar/calendar-header.js +13 -26
- package/es/common/components/editable-calendar/calendar.d.ts +6 -0
- package/es/common/components/editable-calendar/calendar.js +81 -115
- package/es/common/components/editable-calendar/data.d.ts +131 -0
- package/es/common/components/editable-calendar/data.js +95 -101
- package/es/common/components/editable-calendar/index.d.ts +1 -0
- package/es/common/components/editable-calendar/index.js +37 -49
- package/es/common/components/editable-calendar/utils.d.ts +18 -0
- package/es/common/components/editable-calendar/utils.js +58 -52
- package/es/common/components/editable-map/cluster.d.ts +4 -0
- package/es/common/components/editable-map/cluster.js +7 -12
- package/es/common/components/editable-map/edit-form.d.ts +7 -0
- package/es/common/components/editable-map/edit-form.js +43 -97
- package/es/common/components/editable-map/editable-map.d.ts +6 -0
- package/es/common/components/editable-map/editable-map.js +56 -111
- package/es/common/components/editable-map/full-screen-button.d.ts +6 -0
- package/es/common/components/editable-map/full-screen-button.js +61 -59
- package/es/common/components/editable-map/helper.d.ts +2 -0
- package/es/common/components/editable-map/helper.js +22 -23
- package/es/common/components/editable-map/icon-picker.d.ts +6 -0
- package/es/common/components/editable-map/icon-picker.js +41 -63
- package/es/common/components/editable-map/icons/esf-pralognan.d.ts +51 -0
- package/es/common/components/editable-map/icons/esf-pralognan.js +372 -1088
- package/es/common/components/editable-map/icons/esf.d.ts +39 -0
- package/es/common/components/editable-map/icons/esf.js +266 -758
- package/es/common/components/editable-map/icons/index.d.ts +6 -0
- package/es/common/components/editable-map/icons/index.js +1 -1
- package/es/common/components/editable-map/icons/lavovelo.d.ts +5 -0
- package/es/common/components/editable-map/icons/lavovelo.js +43 -84
- package/es/common/components/editable-map/icons/sata-huez.d.ts +29 -0
- package/es/common/components/editable-map/icons/sata-huez.js +169 -468
- package/es/common/components/editable-map/icons/sedev-vars.d.ts +29 -0
- package/es/common/components/editable-map/icons/sedev-vars.js +169 -468
- package/es/common/components/editable-map/icons/viarmonia.d.ts +3 -0
- package/es/common/components/editable-map/icons/viarmonia.js +26 -40
- package/es/common/components/editable-map/index.d.ts +4 -0
- package/es/common/components/editable-map/index.js +66 -74
- package/es/common/components/editable-map/map-events.d.ts +9 -0
- package/es/common/components/editable-map/map-events.js +33 -40
- package/es/common/components/editable-map/marker-list.d.ts +7 -0
- package/es/common/components/editable-map/marker-list.js +64 -87
- package/es/common/components/editable-map/markers.d.ts +6 -0
- package/es/common/components/editable-map/markers.js +39 -88
- package/es/common/components/editable-map/popup-data.d.ts +4 -0
- package/es/common/components/editable-map/popup-data.js +14 -35
- package/es/common/components/editable-map/slopes-toggle.d.ts +5 -0
- package/es/common/components/editable-map/slopes-toggle.js +9 -18
- package/es/common/components/error-404/error-404.d.ts +6 -0
- package/es/common/components/error-404/error-404.js +22 -42
- package/es/common/components/error-404/index.d.ts +2 -0
- package/es/common/components/error-404/index.js +1 -1
- package/es/common/components/error-404/messages.d.ts +1 -0
- package/es/common/components/error-404/messages.js +14 -13
- package/es/common/components/faq.d.ts +6 -0
- package/es/common/components/faq.js +45 -49
- package/es/common/components/gesco-contact-form/gesco-contact-form.d.ts +18 -0
- package/es/common/components/gesco-contact-form/gesco-contact-form.jsx +152 -0
- package/es/common/components/gesco-contact-form/hooks/use-params.d.ts +14 -0
- package/es/common/components/gesco-contact-form/hooks/use-params.js +30 -36
- package/es/common/components/gesco-contact-form/index.d.ts +2 -0
- package/es/common/components/gesco-contact-form/index.js +1 -1
- package/es/common/components/gesco-contact-form/phone-code-select.d.ts +7 -0
- package/es/common/components/gesco-contact-form/phone-code-select.jsx +61 -0
- package/es/common/components/gesco-contact-form/services/api.d.ts +29 -0
- package/es/common/components/gesco-contact-form/services/api.js +23 -9
- package/es/common/components/gesco-contact-form/services/form.d.ts +30 -0
- package/es/common/components/gesco-contact-form/services/form.js +25 -39
- package/es/common/components/gesco-contact-form/services/messages.d.ts +33 -0
- package/es/common/components/gesco-contact-form/services/messages.js +65 -68
- package/es/common/components/gesco-contact-form/services/plausible.d.ts +2 -0
- package/es/common/components/gesco-contact-form/services/plausible.js +10 -8
- package/es/common/components/gesco-contact-form/types.d.ts +33 -0
- package/es/common/components/gesco-contact-form/types.js +1 -1
- package/es/common/components/info-buttons.d.ts +7 -0
- package/es/common/components/info-buttons.js +91 -95
- package/es/common/components/information/index.d.ts +2 -0
- package/es/common/components/information/index.js +1 -1
- package/es/common/components/information/information.d.ts +6 -0
- package/es/common/components/information/information.jsx +49 -0
- package/es/common/components/instant-search/hooks/use-constant.d.ts +1 -0
- package/es/common/components/instant-search/hooks/use-constant.js +6 -8
- package/es/common/components/instant-search/hooks/use-debounced-search.d.ts +6 -0
- package/es/common/components/instant-search/hooks/use-debounced-search.js +14 -14
- package/es/common/components/instant-search/hooks/use-search.d.ts +15 -0
- package/es/common/components/instant-search/hooks/use-search.js +15 -10
- package/es/common/components/instant-search/{index.js → index.d.ts} +1 -1
- package/es/common/components/instant-search/index.jsx +2 -0
- package/es/common/components/instant-search/input.d.ts +15 -0
- package/es/common/components/instant-search/input.jsx +64 -0
- package/es/common/components/instant-search/instant-search.d.ts +19 -0
- package/es/common/components/instant-search/instant-search.jsx +98 -0
- package/es/common/components/instant-search/links.d.ts +12 -0
- package/es/common/components/instant-search/links.jsx +45 -0
- package/es/common/components/instant-search/no-product.d.ts +6 -0
- package/es/common/components/instant-search/no-product.jsx +19 -0
- package/es/common/components/instant-search/products.d.ts +13 -0
- package/es/common/components/instant-search/products.jsx +67 -0
- package/es/common/components/instant-search/results.d.ts +76 -0
- package/es/common/components/instant-search/results.jsx +68 -0
- package/es/common/components/instant-search/services/api.d.ts +1 -0
- package/es/common/components/instant-search/services/api.js +10 -12
- package/es/common/components/instant-search/services/dates.d.ts +1 -0
- package/es/common/components/instant-search/services/dates.js +41 -36
- package/es/common/components/instant-search/services/messages.d.ts +1 -0
- package/es/common/components/instant-search/services/messages.js +3 -3
- package/es/common/components/instant-search/services/utils.d.ts +3 -0
- package/es/common/components/instant-search/services/utils.js +35 -34
- package/es/common/components/msem-preset-editor/components/facet-selector.d.ts +6 -0
- package/es/common/components/msem-preset-editor/components/facet-selector.jsx +20 -0
- package/es/common/components/msem-preset-editor/components/form.d.ts +8 -0
- package/es/common/components/msem-preset-editor/components/form.jsx +28 -0
- package/es/common/components/msem-preset-editor/components/stay-picker.d.ts +14 -0
- package/es/common/components/msem-preset-editor/components/stay-picker.jsx +38 -0
- package/es/common/components/msem-preset-editor/components/widget-list-item.d.ts +11 -0
- package/es/common/components/msem-preset-editor/components/widget-list-item.jsx +97 -0
- package/es/common/components/msem-preset-editor/components/widget-list.d.ts +16 -0
- package/es/common/components/msem-preset-editor/components/widget-list.jsx +46 -0
- package/es/common/components/msem-preset-editor/editor-dialog.d.ts +29 -0
- package/es/common/components/msem-preset-editor/editor-dialog.jsx +45 -0
- package/es/common/components/msem-preset-editor/editors/elloha.d.ts +14 -0
- package/es/common/components/msem-preset-editor/editors/elloha.jsx +95 -0
- package/es/common/components/msem-preset-editor/editors/index.d.ts +15 -0
- package/es/common/components/msem-preset-editor/editors/{index.js → index.jsx} +7 -7
- package/es/common/components/msem-preset-editor/editors/lodgings.d.ts +16 -0
- package/es/common/components/msem-preset-editor/editors/lodgings.jsx +235 -0
- package/es/common/components/msem-preset-editor/editors/ski-passes-jb.d.ts +15 -0
- package/es/common/components/msem-preset-editor/editors/ski-passes-jb.jsx +89 -0
- package/es/common/components/msem-preset-editor/editors/ski-passes.d.ts +15 -0
- package/es/common/components/msem-preset-editor/editors/ski-passes.jsx +215 -0
- package/es/common/components/msem-preset-editor/editors/standard-products.d.ts +15 -0
- package/es/common/components/msem-preset-editor/editors/standard-products.jsx +70 -0
- package/es/common/components/msem-preset-editor/editors/vakario.d.ts +14 -0
- package/es/common/components/msem-preset-editor/editors/vakario.jsx +177 -0
- package/es/common/components/msem-preset-editor/index.d.ts +2 -0
- package/es/common/components/msem-preset-editor/index.js +1 -1
- package/es/common/components/msem-preset-editor/msem-preset-editor.d.ts +27 -0
- package/es/common/components/msem-preset-editor/msem-preset-editor.jsx +176 -0
- package/es/common/components/msem-preset-editor/services/api.d.ts +14 -0
- package/es/common/components/msem-preset-editor/services/api.js +90 -82
- package/es/common/components/msem-preset-editor/services/offers.d.ts +22 -0
- package/es/common/components/msem-preset-editor/services/offers.js +68 -77
- package/es/common/components/msem-preset-editor/services/preset.d.ts +31 -0
- package/es/common/components/msem-preset-editor/services/preset.js +18 -26
- package/es/common/components/msem-preset-editor/services/url-params.d.ts +2 -0
- package/es/common/components/msem-preset-editor/services/url-params.js +24 -24
- package/es/common/components/msem-preset-linker/components/actions.d.ts +11 -0
- package/es/common/components/msem-preset-linker/components/actions.jsx +60 -0
- package/es/common/components/msem-preset-linker/components/overlays.d.ts +8 -0
- package/es/common/components/msem-preset-linker/components/overlays.jsx +59 -0
- package/es/common/components/msem-preset-linker/components/resort-selector.d.ts +6 -0
- package/es/common/components/msem-preset-linker/components/resort-selector.jsx +12 -0
- package/es/common/components/msem-preset-linker/hooks/use-msem-presets.d.ts +4 -0
- package/es/common/components/msem-preset-linker/hooks/use-msem-presets.js +32 -48
- package/es/common/components/msem-preset-linker/{index.js → index.d.ts} +1 -1
- package/es/common/components/msem-preset-linker/index.jsx +2 -0
- package/es/common/components/msem-preset-linker/msem-preset-linker.d.ts +29 -0
- package/es/common/components/msem-preset-linker/msem-preset-linker.jsx +56 -0
- package/es/common/components/msem-preset-linker/services/url-params.d.ts +1 -0
- package/es/common/components/msem-preset-linker/services/url-params.js +13 -10
- package/es/common/components/packages-selector/index.d.ts +7 -0
- package/es/common/components/packages-selector/index.js +41 -49
- package/es/common/components/plausible/hooks/use-plausible.d.ts +11 -0
- package/es/common/components/plausible/hooks/use-plausible.js +18 -22
- package/es/common/components/plausible/index.d.ts +7 -0
- package/es/common/components/plausible/index.js +1 -1
- package/es/common/components/plausible/plausible.d.ts +7 -0
- package/es/common/components/plausible/plausible.jsx +17 -0
- package/es/common/components/plausible/services/callback.d.ts +23 -0
- package/es/common/components/plausible/services/callback.js +123 -186
- package/es/common/components/plausible/services/load.d.ts +1 -0
- package/es/common/components/plausible/services/load.js +6 -4
- package/es/common/components/plausible/services/send-goal.d.ts +6 -0
- package/es/common/components/plausible/services/send-goal.js +3 -6
- package/es/common/components/popup.d.ts +6 -0
- package/es/common/components/popup.js +51 -80
- package/es/common/components/scroll-spy.d.ts +13 -0
- package/es/common/components/scroll-spy.jsx +56 -0
- package/es/common/components/scrolling-carousel/{index.js → index.d.ts} +1 -1
- package/es/common/components/scrolling-carousel/index.jsx +2 -0
- package/es/common/components/scrolling-carousel/scrolling-carousel.d.ts +7 -0
- package/es/common/components/scrolling-carousel/scrolling-carousel.jsx +78 -0
- package/es/common/components/search-bar/hooks/use-constant.d.ts +1 -0
- package/es/common/components/search-bar/hooks/use-constant.js +6 -8
- package/es/common/components/search-bar/hooks/use-debounced-search.d.ts +6 -0
- package/es/common/components/search-bar/hooks/use-debounced-search.js +14 -14
- package/es/common/components/search-bar/hooks/use-search.d.ts +11 -0
- package/es/common/components/search-bar/hooks/use-search.js +14 -11
- package/es/common/components/search-bar/index.d.ts +2 -0
- package/es/common/components/search-bar/index.js +1 -1
- package/es/common/components/search-bar/messages.d.ts +14 -0
- package/es/common/components/search-bar/messages.js +16 -16
- package/es/common/components/search-bar/search-bar.d.ts +12 -0
- package/es/common/components/search-bar/search-bar.js +147 -204
- package/es/common/components/search-bar/utils/fetcher.d.ts +1 -0
- package/es/common/components/search-bar/utils/fetcher.js +16 -13
- package/es/common/components/search-bar/utils/keyboard-keys.d.ts +5 -0
- package/es/common/components/search-bar/utils/keyboard-keys.js +1 -1
- package/es/common/components/search-bar/utils/params.d.ts +1 -0
- package/es/common/components/search-bar/utils/params.js +11 -8
- package/es/common/components/tabbed-zones.d.ts +12 -0
- package/es/common/components/tabbed-zones.jsx +68 -0
- package/es/common/components/video-player/controls.d.ts +16 -0
- package/es/common/components/video-player/controls.js +71 -114
- package/es/common/components/video-player/icons.d.ts +7 -0
- package/es/common/components/video-player/icons.js +35 -48
- package/es/common/components/video-player/index.d.ts +1 -0
- package/es/common/components/video-player/index.js +1 -1
- package/es/common/components/video-player/utils.d.ts +4 -0
- package/es/common/components/video-player/utils.js +42 -34
- package/es/common/components/video-player/video-player.d.ts +9 -0
- package/es/common/components/video-player/video-player.js +77 -101
- package/es/common/hooks/use-account.d.ts +6 -0
- package/es/common/hooks/use-account.js +33 -25
- package/es/common/hooks/use-faq.d.ts +2 -0
- package/es/common/hooks/use-faq.js +36 -37
- package/es/common/hooks/use-in-view.d.ts +4 -0
- package/es/common/hooks/use-in-view.js +74 -74
- package/es/common/hooks/use-injected-cms-markup.d.ts +2 -0
- package/es/common/hooks/use-injected-cms-markup.js +46 -39
- package/es/common/hooks/use-packages.d.ts +2 -0
- package/es/common/hooks/use-packages.js +98 -97
- package/es/common/hooks/use-scroll-direction.d.ts +10 -0
- package/es/common/hooks/use-scroll-direction.js +32 -37
- package/es/common/hooks/use-stay.d.ts +3 -0
- package/es/common/hooks/use-stay.js +13 -16
- package/es/common/hooks/use-sticky.d.ts +3 -0
- package/es/common/hooks/use-sticky.js +35 -35
- package/es/common/hooks/use-tunnel.d.ts +10 -0
- package/es/common/hooks/use-tunnel.js +56 -51
- package/es/common/hooks/use-update-effect.d.ts +1 -0
- package/es/common/hooks/use-update-effect.js +9 -9
- package/es/common/hooks/use-window-sizes.d.ts +6 -0
- package/es/common/hooks/use-window-sizes.js +28 -29
- package/es/common/hooks/use-youtube-popup.d.ts +2 -0
- package/es/common/hooks/use-youtube-popup.js +46 -53
- package/es/common/hooks/use-zone-sync.d.ts +2 -0
- package/es/common/hooks/use-zone-sync.js +54 -52
- package/es/common/utils/cms.d.ts +3 -0
- package/es/common/utils/cms.js +32 -17
- package/es/common/utils/cookies.d.ts +1 -0
- package/es/common/utils/cookies.js +11 -10
- package/es/common/utils/copy.d.ts +1 -0
- package/es/common/utils/copy.js +11 -11
- package/es/common/utils/dates.d.ts +1 -0
- package/es/common/utils/dates.js +10 -8
- package/es/common/utils/elements.d.ts +4 -0
- package/es/common/utils/elements.js +16 -14
- package/es/common/utils/events.d.ts +3 -0
- package/es/common/utils/events.js +19 -4
- package/es/common/utils/fetcher.d.ts +4 -0
- package/es/common/utils/fetcher.js +48 -28
- package/es/common/utils/file-manager.d.ts +12 -0
- package/es/common/utils/file-manager.js +20 -13
- package/es/common/utils/load-js.d.ts +2 -0
- package/es/common/utils/load-js.js +11 -10
- package/es/common/utils/msem-widget.d.ts +16 -0
- package/es/common/utils/msem-widget.jsx +49 -0
- package/es/common/utils/scrollbar-size.d.ts +1 -0
- package/es/common/utils/scrollbar-size.js +1 -1
- package/es/common/utils/touch-device.d.ts +1 -0
- package/es/common/utils/touch-device.js +3 -1
- package/es/common/utils/url-parameters.d.ts +1 -0
- package/es/common/utils/url-parameters.js +7 -11
- package/es/esf/components/account-button/account-button.d.ts +14 -0
- package/es/esf/components/account-button/account-button.jsx +16 -0
- package/es/esf/components/account-button/index.d.ts +2 -0
- package/es/esf/components/account-button/index.js +1 -1
- package/es/esf/components/booking-form/booking-form.d.ts +3 -0
- package/es/esf/components/booking-form/booking-form.js +31 -65
- package/es/esf/components/booking-form/data.d.ts +334 -0
- package/es/esf/components/booking-form/data.js +212 -206
- package/es/esf/components/booking-form/field.d.ts +10 -0
- package/es/esf/components/booking-form/field.js +79 -102
- package/es/esf/components/booking-form/hooks/use-custom-fields.d.ts +2 -0
- package/es/esf/components/booking-form/hooks/use-custom-fields.js +17 -23
- package/es/esf/components/booking-form/hooks/use-stay.d.ts +2 -0
- package/es/esf/components/booking-form/hooks/use-stay.js +9 -9
- package/es/esf/components/booking-form/index.d.ts +2 -0
- package/es/esf/components/booking-form/index.js +1 -1
- package/es/esf/components/booking-form/lesson.d.ts +9 -0
- package/es/esf/components/booking-form/lesson.js +31 -48
- package/es/esf/components/booking-form/lessons.d.ts +12 -0
- package/es/esf/components/booking-form/lessons.js +51 -77
- package/es/esf/components/booking-form/messages.d.ts +1 -0
- package/es/esf/components/booking-form/messages.js +51 -50
- package/es/esf/components/booking-form/personal-data.d.ts +10 -0
- package/es/esf/components/booking-form/personal-data.js +31 -55
- package/es/esf/components/booking-form/progress-bar.d.ts +6 -0
- package/es/esf/components/booking-form/progress-bar.js +16 -29
- package/es/esf/components/booking-form/steps.d.ts +14 -0
- package/es/esf/components/booking-form/steps.js +38 -70
- package/es/esf/components/booking-form/summary.d.ts +11 -0
- package/es/esf/components/booking-form/summary.js +101 -131
- package/es/esf/components/booking-form/utils.d.ts +5 -0
- package/es/esf/components/booking-form/utils.js +53 -58
- package/es/esf/components/covid-link/index.d.ts +2 -0
- package/es/esf/components/covid-link/index.js +133 -2
- package/es/esf/components/covid-link/mask-icon.d.ts +3 -0
- package/es/esf/components/covid-link/mask-icon.js +5 -15
- package/es/esf/components/covid-link/vax-pass-icon.d.ts +3 -0
- package/es/esf/components/covid-link/vax-pass-icon.js +13 -32
- package/es/esf/components/cp-form.d.ts +14 -0
- package/es/esf/components/cp-form.js +58 -57
- package/es/esf/components/instructors-book/api.d.ts +3 -0
- package/es/esf/components/instructors-book/api.js +66 -57
- package/es/esf/components/instructors-book/book.d.ts +5 -0
- package/es/esf/components/instructors-book/book.js +66 -75
- package/es/esf/components/instructors-book/filters.d.ts +9 -0
- package/es/esf/components/instructors-book/filters.js +23 -56
- package/es/esf/components/instructors-book/flags.d.ts +34 -0
- package/es/esf/components/instructors-book/flags.js +108 -246
- package/es/esf/components/instructors-book/index.d.ts +6 -0
- package/es/esf/components/instructors-book/index.js +1 -1
- package/es/esf/components/instructors-book/instructor.d.ts +8 -0
- package/es/esf/components/instructors-book/instructor.js +64 -103
- package/es/esf/components/instructors-book/list.d.ts +10 -0
- package/es/esf/components/instructors-book/list.js +21 -40
- package/es/esf/components/instructors-book/messages.d.ts +1 -0
- package/es/esf/components/instructors-book/messages.js +38 -38
- package/es/esf/components/instructors-book/prefixes.d.ts +5 -0
- package/es/esf/components/instructors-book/prefixes.js +3 -3
- package/es/esf/components/instructors-book/sheet.d.ts +8 -0
- package/es/esf/components/instructors-book/sheet.js +93 -159
- package/es/esf/components/instructors-book/suggestions.d.ts +7 -0
- package/es/esf/components/instructors-book/suggestions.js +43 -51
- package/es/esf/components/instructors-book/utils.d.ts +13 -0
- package/es/esf/components/instructors-book/utils.js +42 -39
- package/es/esf/components/levels/detail.d.ts +5 -0
- package/es/esf/components/levels/detail.js +14 -34
- package/es/esf/components/levels/index.d.ts +2 -0
- package/es/esf/components/levels/index.js +1 -1
- package/es/esf/components/levels/levels.d.ts +5 -0
- package/es/esf/components/levels/levels.js +239 -325
- package/es/esf/components/loyal-customers/api.d.ts +4 -0
- package/es/esf/components/loyal-customers/api.js +25 -20
- package/es/esf/components/loyal-customers/components/bin-icon.d.ts +3 -0
- package/es/esf/components/loyal-customers/components/bin-icon.js +9 -25
- package/es/esf/components/loyal-customers/components/customer-form.d.ts +18 -0
- package/es/esf/components/loyal-customers/components/customer-form.js +54 -89
- package/es/esf/components/loyal-customers/components/field.d.ts +9 -0
- package/es/esf/components/loyal-customers/components/field.js +67 -91
- package/es/esf/components/loyal-customers/components/row.d.ts +10 -0
- package/es/esf/components/loyal-customers/components/row.js +31 -66
- package/es/esf/components/loyal-customers/components/rows.d.ts +9 -0
- package/es/esf/components/loyal-customers/components/rows.js +14 -30
- package/es/esf/components/loyal-customers/components/stay.d.ts +5 -0
- package/es/esf/components/loyal-customers/components/stay.js +24 -30
- package/es/esf/components/loyal-customers/components/student-form.d.ts +10 -0
- package/es/esf/components/loyal-customers/components/student-form.js +59 -106
- package/es/esf/components/loyal-customers/components/voucher.d.ts +7 -0
- package/es/esf/components/loyal-customers/components/voucher.js +5 -19
- package/es/esf/components/loyal-customers/content.d.ts +17 -0
- package/es/esf/components/loyal-customers/content.js +43 -46
- package/es/esf/components/loyal-customers/data.d.ts +166 -0
- package/es/esf/components/loyal-customers/data.js +62 -113
- package/es/esf/components/loyal-customers/hooks/use-stored-rows.d.ts +3 -0
- package/es/esf/components/loyal-customers/hooks/use-stored-rows.js +9 -8
- package/es/esf/components/loyal-customers/index.d.ts +2 -0
- package/es/esf/components/loyal-customers/index.js +1 -1
- package/es/esf/components/loyal-customers/loyal-customers.d.ts +17 -0
- package/es/esf/components/loyal-customers/loyal-customers.js +62 -120
- package/es/esf/components/loyal-customers/messages.d.ts +1 -0
- package/es/esf/components/loyal-customers/messages.js +57 -56
- package/es/esf/components/loyal-customers/utils.d.ts +20 -0
- package/es/esf/components/loyal-customers/utils.js +42 -67
- package/es/esf/components/magic-box/booking.d.ts +11 -0
- package/es/esf/components/magic-box/booking.js +97 -90
- package/es/esf/components/magic-box/filter.d.ts +8 -0
- package/es/esf/components/magic-box/filter.js +16 -38
- package/es/esf/components/magic-box/filters.d.ts +7 -0
- package/es/esf/components/magic-box/filters.js +7 -18
- package/es/esf/components/magic-box/index.d.ts +2 -0
- package/es/esf/components/magic-box/index.js +1 -1
- package/es/esf/components/magic-box/magic-box.d.ts +27 -0
- package/es/esf/components/magic-box/magic-box.jsx +142 -0
- package/es/esf/components/magic-box/messages.d.ts +1 -0
- package/es/esf/components/magic-box/messages.js +27 -26
- package/es/esf/components/magic-box/services/api.d.ts +18 -0
- package/es/esf/components/magic-box/services/api.js +39 -48
- package/es/esf/components/magic-box/services/widgets.d.ts +1 -0
- package/es/esf/components/magic-box/services/widgets.js +15 -3
- package/es/esf/components/parcours-esf/index.d.ts +2 -0
- package/es/esf/components/parcours-esf/index.js +1 -1
- package/es/esf/components/parcours-esf/parcours-esf.d.ts +14 -0
- package/es/esf/components/parcours-esf/parcours-esf.jsx +42 -0
- package/es/esf/components/period-picker/controls.d.ts +5 -0
- package/es/esf/components/period-picker/controls.js +22 -38
- package/es/esf/components/period-picker/date-display.d.ts +4 -0
- package/es/esf/components/period-picker/date-display.js +40 -59
- package/es/esf/components/period-picker/days.d.ts +3 -0
- package/es/esf/components/period-picker/days.js +68 -102
- package/es/esf/components/period-picker/extended-stay-picker.d.ts +12 -0
- package/es/esf/components/period-picker/extended-stay-picker.js +23 -48
- package/es/esf/components/period-picker/index.d.ts +2 -0
- package/es/esf/components/period-picker/index.js +1 -1
- package/es/esf/components/period-picker/messages.d.ts +1 -0
- package/es/esf/components/period-picker/messages.js +87 -87
- package/es/esf/components/period-picker/period-picker.d.ts +8 -0
- package/es/esf/components/period-picker/period-picker.js +125 -183
- package/es/esf/components/period-picker/popup.d.ts +7 -0
- package/es/esf/components/period-picker/popup.js +16 -33
- package/es/esf/components/period-picker/services/dates.d.ts +15 -0
- package/es/esf/components/period-picker/services/dates.js +70 -68
- package/es/esf/components/period-picker/services/events.d.ts +1 -0
- package/es/esf/components/period-picker/services/events.js +3 -6
- package/es/esf/components/period-picker/services/motions.d.ts +50 -0
- package/es/esf/components/period-picker/services/motions.js +8 -33
- package/es/esf/components/period-picker/services/sections.d.ts +2 -0
- package/es/esf/components/period-picker/services/sections.js +39 -31
- package/es/esf/components/period-picker/services/stay.d.ts +2 -0
- package/es/esf/components/period-picker/services/stay.js +20 -21
- package/es/esf/components/period-picker/title.d.ts +5 -0
- package/es/esf/components/period-picker/title.js +9 -22
- package/es/esf/components/period-picker/warning.d.ts +8 -0
- package/es/esf/components/period-picker/warning.js +24 -43
- package/es/esf/components/period-picker/weeks.d.ts +3 -0
- package/es/esf/components/period-picker/weeks.js +98 -137
- package/es/esf/components/reviews.d.ts +7 -0
- package/es/esf/components/reviews.js +27 -25
- package/es/esf/components/village-maps/icons.d.ts +6 -0
- package/es/esf/components/village-maps/icons.js +32 -38
- package/es/esf/components/village-maps/index.d.ts +8 -0
- package/es/esf/components/village-maps/index.js +100 -193
- package/es/esf/components/village-maps/messages.d.ts +2 -0
- package/es/esf/components/village-maps/messages.js +13 -13
- package/es/esf/components/village-maps/utils.d.ts +4 -0
- package/es/esf/components/village-maps/utils.js +20 -19
- package/es/esf/components/week-picker/index.d.ts +14 -0
- package/es/esf/components/week-picker/index.js +182 -222
- package/es/esf/components/week-picker/messages.d.ts +27 -0
- package/es/esf/components/week-picker/messages.js +31 -30
- package/es/esf/components/week-picker/utils.d.ts +5 -0
- package/es/esf/components/week-picker/utils.js +52 -47
- package/es/esf/components/week-picker/week.d.ts +10 -0
- package/es/esf/components/week-picker/week.js +31 -46
- package/es/esf/components/week-picker-2/index.d.ts +14 -0
- package/es/esf/components/week-picker-2/index.js +207 -259
- package/es/esf/components/week-picker-2/messages.d.ts +31 -0
- package/es/esf/components/week-picker-2/messages.js +29 -29
- package/es/esf/components/week-picker-2/utils.d.ts +5 -0
- package/es/esf/components/week-picker-2/utils.js +52 -47
- package/es/esf/components/week-picker-2/week.d.ts +10 -0
- package/es/esf/components/week-picker-2/week.js +32 -49
- package/es/esf/hooks/use-affiliation.d.ts +1 -0
- package/es/esf/hooks/use-affiliation.js +12 -16
- package/es/esf/hooks/use-booking-links.d.ts +1 -0
- package/es/esf/hooks/use-booking-links.js +52 -34
- package/es/esf/hooks/use-reviews.d.ts +2 -0
- package/es/esf/hooks/use-reviews.js +27 -22
- package/es/esf/hooks/use-season-products.d.ts +1 -0
- package/es/esf/hooks/use-season-products.js +83 -79
- package/es/future/components/msem/index.d.ts +3 -0
- package/es/future/components/msem/index.js +1 -1
- package/es/future/components/msem/script.d.ts +6 -0
- package/es/future/components/msem/script.jsx +7 -0
- package/es/future/components/msem/tunnel.d.ts +41 -0
- package/es/future/components/msem/tunnel.jsx +18 -0
- package/es/future/components/msem/types.d.ts +15 -0
- package/es/future/components/msem/types.js +1 -1
- package/es/future/components/msem/utils.d.ts +3 -0
- package/es/future/components/msem/utils.js +19 -20
- package/es/future/components/plausible/hooks/use-plausible.d.ts +11 -0
- package/es/future/components/plausible/hooks/use-plausible.js +18 -22
- package/es/future/components/plausible/index.d.ts +7 -0
- package/es/future/components/plausible/index.js +1 -1
- package/es/future/components/plausible/plausible.d.ts +7 -0
- package/es/future/components/plausible/plausible.jsx +17 -0
- package/es/future/components/plausible/services/callback.d.ts +23 -0
- package/es/future/components/plausible/services/callback.js +123 -186
- package/es/future/components/plausible/services/load.d.ts +1 -0
- package/es/future/components/plausible/services/load.js +6 -4
- package/es/future/components/plausible/services/send-goal.d.ts +6 -0
- package/es/future/components/plausible/services/send-goal.js +3 -6
- package/es/lbm/components/lumiplan/api.d.ts +8 -0
- package/es/lbm/components/lumiplan/api.js +60 -54
- package/es/lbm/components/lumiplan/domain.d.ts +7 -0
- package/es/lbm/components/lumiplan/domain.jsx +74 -0
- package/es/lbm/components/lumiplan/header.d.ts +8 -0
- package/es/lbm/components/lumiplan/header.jsx +25 -0
- package/es/lbm/components/lumiplan/i18n/translations.d.ts +7 -0
- package/es/lbm/components/lumiplan/i18n/translations.jsx +20 -0
- package/es/lbm/components/lumiplan/icons/alert.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/alert.js +6 -21
- package/es/lbm/components/lumiplan/icons/avalanche-risk.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/avalanche-risk.js +5 -14
- package/es/lbm/components/lumiplan/icons/cabin.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/cabin.js +5 -14
- package/es/lbm/components/lumiplan/icons/check.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/check.js +5 -16
- package/es/lbm/components/lumiplan/icons/close.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/close.js +6 -21
- package/es/lbm/components/lumiplan/icons/cloud.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/cloud.js +6 -20
- package/es/lbm/components/lumiplan/icons/dawn.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/dawn.js +6 -19
- package/es/lbm/components/lumiplan/icons/fog.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/fog.js +7 -23
- package/es/lbm/components/lumiplan/icons/heavy-snow.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/heavy-snow.js +10 -32
- package/es/lbm/components/lumiplan/icons/information.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/information.js +6 -21
- package/es/lbm/components/lumiplan/icons/isothermal.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/isothermal.js +10 -25
- package/es/lbm/components/lumiplan/icons/lifts/index.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/lifts/index.js +1 -1
- package/es/lbm/components/lumiplan/icons/lifts/tapis-roulant.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/lifts/tapis-roulant.js +5 -16
- package/es/lbm/components/lumiplan/icons/lifts/telecabine.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/lifts/telecabine.js +5 -16
- package/es/lbm/components/lumiplan/icons/lifts/telesiege-debrayable.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/lifts/telesiege-debrayable.js +8 -27
- package/es/lbm/components/lumiplan/icons/lifts/telesiege.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/lifts/telesiege.js +5 -16
- package/es/lbm/components/lumiplan/icons/lifts/teleski.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/lifts/teleski.js +5 -16
- package/es/lbm/components/lumiplan/icons/link.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/link.js +6 -17
- package/es/lbm/components/lumiplan/icons/night.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/night.js +5 -14
- package/es/lbm/components/lumiplan/icons/rain.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/rain.js +10 -24
- package/es/lbm/components/lumiplan/icons/rainy-rainy.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/rainy-rainy.js +6 -20
- package/es/lbm/components/lumiplan/icons/rainy.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/rainy.js +6 -20
- package/es/lbm/components/lumiplan/icons/reload.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/reload.js +13 -30
- package/es/lbm/components/lumiplan/icons/road-condition.d.ts +7 -0
- package/es/lbm/components/lumiplan/icons/road-condition.js +10 -28
- package/es/lbm/components/lumiplan/icons/slopes.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/slopes.js +5 -14
- package/es/lbm/components/lumiplan/icons/snow-cover.d.ts +7 -0
- package/es/lbm/components/lumiplan/icons/snow-cover.js +5 -16
- package/es/lbm/components/lumiplan/icons/snow.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/snow.js +8 -26
- package/es/lbm/components/lumiplan/icons/storm.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/storm.js +5 -15
- package/es/lbm/components/lumiplan/icons/sun.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/sun.js +5 -16
- package/es/lbm/components/lumiplan/icons/sunny.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/sunny.js +7 -23
- package/es/lbm/components/lumiplan/icons/time.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/time.js +6 -21
- package/es/lbm/components/lumiplan/icons/trails/accrobranche.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/accrobranche.js +6 -17
- package/es/lbm/components/lumiplan/icons/trails/boarder-cross.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/boarder-cross.js +7 -21
- package/es/lbm/components/lumiplan/icons/trails/champ-de-bosse.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/champ-de-bosse.js +6 -19
- package/es/lbm/components/lumiplan/icons/trails/freeride.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/freeride.js +5 -16
- package/es/lbm/components/lumiplan/icons/trails/index.d.ts +16 -0
- package/es/lbm/components/lumiplan/icons/trails/index.js +1 -1
- package/es/lbm/components/lumiplan/icons/trails/luge-sur-rail.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/luge-sur-rail.js +6 -19
- package/es/lbm/components/lumiplan/icons/trails/luge.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/luge.js +5 -16
- package/es/lbm/components/lumiplan/icons/trails/pieton.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/pieton.js +5 -16
- package/es/lbm/components/lumiplan/icons/trails/piste-eclairee.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/piste-eclairee.js +6 -19
- package/es/lbm/components/lumiplan/icons/trails/raquette.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/raquette.js +17 -65
- package/es/lbm/components/lumiplan/icons/trails/ski-alpin.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/ski-alpin.js +5 -16
- package/es/lbm/components/lumiplan/icons/trails/ski-fond.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/ski-fond.js +5 -16
- package/es/lbm/components/lumiplan/icons/trails/snowpark.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/snowpark.js +5 -16
- package/es/lbm/components/lumiplan/icons/trails/snowtubing.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/snowtubing.js +7 -23
- package/es/lbm/components/lumiplan/icons/trails/tyrolienne.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/tyrolienne.js +5 -16
- package/es/lbm/components/lumiplan/icons/trails/vtt.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/vtt.js +6 -19
- package/es/lbm/components/lumiplan/icons/trails/zone-freeride.d.ts +5 -0
- package/es/lbm/components/lumiplan/icons/trails/zone-freeride.js +5 -16
- package/es/lbm/components/lumiplan/icons/variable-snow.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/variable-snow.js +9 -29
- package/es/lbm/components/lumiplan/icons/variable-storm.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/variable-storm.js +6 -22
- package/es/lbm/components/lumiplan/icons/variable.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/variable.js +6 -20
- package/es/lbm/components/lumiplan/icons/warning.d.ts +6 -0
- package/es/lbm/components/lumiplan/icons/warning.js +6 -21
- package/es/lbm/components/lumiplan/icons/wind.d.ts +7 -0
- package/es/lbm/components/lumiplan/icons/wind.js +13 -26
- package/es/lbm/components/lumiplan/index.d.ts +2 -0
- package/es/lbm/components/lumiplan/index.js +1 -1
- package/es/lbm/components/lumiplan/lumiplan.d.ts +2 -0
- package/es/lbm/components/lumiplan/lumiplan.jsx +179 -0
- package/es/lbm/components/lumiplan/opening.d.ts +8 -0
- package/es/lbm/components/lumiplan/opening.jsx +108 -0
- package/es/lbm/components/lumiplan/pois.d.ts +7 -0
- package/es/lbm/components/lumiplan/pois.jsx +233 -0
- package/es/lbm/components/lumiplan/print-button.d.ts +9 -0
- package/es/lbm/components/lumiplan/print-button.jsx +27 -0
- package/es/lbm/components/lumiplan/resort-selector.d.ts +12 -0
- package/es/lbm/components/lumiplan/resort-selector.jsx +47 -0
- package/es/lbm/components/lumiplan/road-condition.d.ts +7 -0
- package/es/lbm/components/lumiplan/road-condition.jsx +59 -0
- package/es/lbm/components/lumiplan/signature.d.ts +7 -0
- package/es/lbm/components/lumiplan/signature.jsx +12 -0
- package/es/lbm/components/lumiplan/todays-tips.d.ts +7 -0
- package/es/lbm/components/lumiplan/todays-tips.jsx +28 -0
- package/es/lbm/components/lumiplan/toolbar.d.ts +7 -0
- package/es/lbm/components/lumiplan/toolbar.jsx +15 -0
- package/es/lbm/components/lumiplan/types.d.ts +291 -0
- package/es/lbm/components/lumiplan/types.js +1 -1
- package/es/lbm/components/lumiplan/weather/avalanche-risk.d.ts +4 -0
- package/es/lbm/components/lumiplan/weather/avalanche-risk.jsx +22 -0
- package/es/lbm/components/lumiplan/weather/index.d.ts +2 -0
- package/es/lbm/components/lumiplan/weather/index.js +1 -1
- package/es/lbm/components/lumiplan/weather/snow-data.d.ts +8 -0
- package/es/lbm/components/lumiplan/weather/snow-data.jsx +44 -0
- package/es/lbm/components/lumiplan/weather/weather-data.d.ts +9 -0
- package/es/lbm/components/lumiplan/weather/weather-data.jsx +85 -0
- package/es/lbm/components/lumiplan/weather/weather-days.d.ts +7 -0
- package/es/lbm/components/lumiplan/weather/weather-days.jsx +60 -0
- package/es/lbm/components/lumiplan/weather/weather-icon.d.ts +68 -0
- package/es/lbm/components/lumiplan/weather/weather-icon.jsx +34 -0
- package/es/lbm/components/lumiplan/weather/weather-zones.d.ts +6 -0
- package/es/lbm/components/lumiplan/weather/weather-zones.jsx +56 -0
- package/es/lbm/components/lumiplan/weather/weather.d.ts +7 -0
- package/es/lbm/components/lumiplan/weather/weather.jsx +80 -0
- package/package.json +4 -13
- package/es/common/components/admin-links/admin-links.js +0 -102
- package/es/common/components/breadcrumb.js +0 -82
- package/es/common/components/collapsible/collapsible.js +0 -69
- package/es/common/components/cross-selling-editor/cross-selling-editor.js +0 -60
- package/es/common/components/cross-selling-editor/editor.js +0 -109
- package/es/common/components/cross-selling-editor/override-trigger-form.js +0 -166
- package/es/common/components/cross-selling-editor/override.js +0 -167
- package/es/common/components/cross-selling-editor/overrides-list.js +0 -131
- package/es/common/components/cross-selling-editor/rule.js +0 -105
- package/es/common/components/cross-selling-editor/rules.js +0 -86
- package/es/common/components/cross-selling-editor/tester-tunnel-offer.js +0 -65
- package/es/common/components/cross-selling-editor/tester.js +0 -197
- package/es/common/components/custom-contact-form/custom-contact-form.js +0 -164
- package/es/common/components/gesco-contact-form/gesco-contact-form.js +0 -262
- package/es/common/components/gesco-contact-form/phone-code-select.js +0 -81
- package/es/common/components/information/information.js +0 -58
- package/es/common/components/instant-search/input.js +0 -86
- package/es/common/components/instant-search/instant-search.js +0 -138
- package/es/common/components/instant-search/links.js +0 -81
- package/es/common/components/instant-search/no-product.js +0 -81
- package/es/common/components/instant-search/products.js +0 -129
- package/es/common/components/instant-search/results.js +0 -130
- package/es/common/components/msem-preset-editor/components/facet-selector.js +0 -40
- package/es/common/components/msem-preset-editor/components/form.js +0 -58
- package/es/common/components/msem-preset-editor/components/stay-picker.js +0 -74
- package/es/common/components/msem-preset-editor/components/widget-list-item.js +0 -137
- package/es/common/components/msem-preset-editor/components/widget-list.js +0 -59
- package/es/common/components/msem-preset-editor/editor-dialog.js +0 -74
- package/es/common/components/msem-preset-editor/editors/elloha.js +0 -113
- package/es/common/components/msem-preset-editor/editors/lodgings.js +0 -333
- package/es/common/components/msem-preset-editor/editors/ski-passes-jb.js +0 -130
- package/es/common/components/msem-preset-editor/editors/ski-passes.js +0 -285
- package/es/common/components/msem-preset-editor/editors/standard-products.js +0 -94
- package/es/common/components/msem-preset-editor/editors/vakario.js +0 -252
- package/es/common/components/msem-preset-editor/msem-preset-editor.js +0 -251
- package/es/common/components/msem-preset-linker/components/actions.js +0 -57
- package/es/common/components/msem-preset-linker/components/overlays.js +0 -68
- package/es/common/components/msem-preset-linker/components/resort-selector.js +0 -22
- package/es/common/components/msem-preset-linker/msem-preset-linker.js +0 -84
- package/es/common/components/plausible/plausible.js +0 -26
- package/es/common/components/scroll-spy.js +0 -59
- package/es/common/components/scrolling-carousel/scrolling-carousel.js +0 -105
- package/es/common/components/tabbed-zones.js +0 -103
- package/es/common/utils/msem-widget.js +0 -45
- package/es/esf/components/account-button/account-button.js +0 -40
- package/es/esf/components/magic-box/magic-box.js +0 -186
- package/es/esf/components/parcours-esf/parcours-esf.js +0 -52
- package/es/future/components/msem/script.js +0 -14
- package/es/future/components/msem/tunnel.js +0 -25
- package/es/future/components/plausible/plausible.js +0 -26
- package/es/lbm/components/lumiplan/domain.js +0 -118
- package/es/lbm/components/lumiplan/header.js +0 -39
- package/es/lbm/components/lumiplan/i18n/translations.js +0 -29
- package/es/lbm/components/lumiplan/lumiplan.js +0 -189
- package/es/lbm/components/lumiplan/opening.js +0 -147
- package/es/lbm/components/lumiplan/pois.js +0 -299
- package/es/lbm/components/lumiplan/print-button.js +0 -29
- package/es/lbm/components/lumiplan/resort-selector.js +0 -64
- package/es/lbm/components/lumiplan/road-condition.js +0 -108
- package/es/lbm/components/lumiplan/signature.js +0 -24
- package/es/lbm/components/lumiplan/todays-tips.js +0 -52
- package/es/lbm/components/lumiplan/toolbar.js +0 -31
- package/es/lbm/components/lumiplan/weather/avalanche-risk.js +0 -37
- package/es/lbm/components/lumiplan/weather/snow-data.js +0 -74
- package/es/lbm/components/lumiplan/weather/weather-data.js +0 -131
- package/es/lbm/components/lumiplan/weather/weather-days.js +0 -82
- package/es/lbm/components/lumiplan/weather/weather-icon.js +0 -37
- package/es/lbm/components/lumiplan/weather/weather-zones.js +0 -77
- package/es/lbm/components/lumiplan/weather/weather.js +0 -139
|
@@ -1,523 +1,224 @@
|
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
+
var t = {};
|
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
+
t[p] = s[p];
|
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
+
t[p[i]] = s[p[i]];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
1
12
|
import * as React from "react";
|
|
2
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
-
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
4
13
|
export function Location(props) {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}), _jsx("path", {
|
|
10
|
-
fillRule: "evenodd",
|
|
11
|
-
clipRule: "evenodd",
|
|
12
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
13
|
-
fill: "#fff"
|
|
14
|
-
})]
|
|
15
|
-
}, "1");
|
|
14
|
+
return (<Icon key="1" {...props}>
|
|
15
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z"/>
|
|
16
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
17
|
+
</Icon>);
|
|
16
18
|
}
|
|
19
|
+
// STATION DEBUT
|
|
17
20
|
export function Chairlift(props) {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
d
|
|
22
|
-
|
|
23
|
-
}), _jsx("path", {
|
|
24
|
-
fillRule: "evenodd",
|
|
25
|
-
clipRule: "evenodd",
|
|
26
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
27
|
-
fill: "#fff"
|
|
28
|
-
}), _jsx("path", {
|
|
29
|
-
d: "M11.93 6h-.32v5.2l.32-.09V6Zm4.81 6.76-.29.1c.1.22-.03.44-.25.5l-7.04 2.39.1.25 7-2.35a.71.71 0 0 0 .41-.35.69.69 0 0 0 .04-.54h.03Zm-5.84.9.42-.07.9-.29c.49-.13.3-.7-.16-.57l-.87.25-.29.04a.9.9 0 0 1-.77-.45l-.65-1.33c-.22-.41-.77-.13-.55.32l.65 1.27a1.5 1.5 0 0 0 1.35.82h-.03Zm-1.42-3 .9 1.69c.07.13.2.24.33.3.15.06.3.06.45.02l1.58-.45v1.53c0 .54.8.54.8 0v-2.1c0-.32-.35-.6-.6-.5l-1.52.4-.8-1.49c-.4-.7-1.5-.12-1.1.64l-.04-.03Zm.3-.98a.75.75 0 0 0 .47-.34.72.72 0 0 0-.3-1.02.75.75 0 0 0-.6-.03.74.74 0 0 0-.43.36.72.72 0 0 0 .32.99c.17.08.38.1.56.04h-.03Z",
|
|
30
|
-
fill: "#fff"
|
|
31
|
-
})]
|
|
32
|
-
}, "12");
|
|
21
|
+
return (<Icon key="12" {...props}>
|
|
22
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
23
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
24
|
+
<path d="M11.93 6h-.32v5.2l.32-.09V6Zm4.81 6.76-.29.1c.1.22-.03.44-.25.5l-7.04 2.39.1.25 7-2.35a.71.71 0 0 0 .41-.35.69.69 0 0 0 .04-.54h.03Zm-5.84.9.42-.07.9-.29c.49-.13.3-.7-.16-.57l-.87.25-.29.04a.9.9 0 0 1-.77-.45l-.65-1.33c-.22-.41-.77-.13-.55.32l.65 1.27a1.5 1.5 0 0 0 1.35.82h-.03Zm-1.42-3 .9 1.69c.07.13.2.24.33.3.15.06.3.06.45.02l1.58-.45v1.53c0 .54.8.54.8 0v-2.1c0-.32-.35-.6-.6-.5l-1.52.4-.8-1.49c-.4-.7-1.5-.12-1.1.64l-.04-.03Zm.3-.98a.75.75 0 0 0 .47-.34.72.72 0 0 0-.3-1.02.75.75 0 0 0-.6-.03.74.74 0 0 0-.43.36.72.72 0 0 0 .32.99c.17.08.38.1.56.04h-.03Z" fill="#fff"/>
|
|
25
|
+
</Icon>);
|
|
33
26
|
}
|
|
34
27
|
export function CableCar(props) {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
}), _jsx("path", {
|
|
41
|
-
fillRule: "evenodd",
|
|
42
|
-
clipRule: "evenodd",
|
|
43
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
44
|
-
fill: "#fff"
|
|
45
|
-
}), _jsx("path", {
|
|
46
|
-
fillRule: "evenodd",
|
|
47
|
-
clipRule: "evenodd",
|
|
48
|
-
d: "m8.77 9.56-.37.05c-.08 0-.13 0-.18-.03a.36.36 0 0 1-.16-.13.35.35 0 0 1-.06-.2c0-.05.03-.12.05-.16.03-.05.07-.1.13-.14a8.97 8.97 0 0 0 2.97-.64c.35-.13.85-.32 1.8-.6l1.9-.64a.96.96 0 0 1 .3-.07c.09 0 .16.03.23.09.13.11.16.29.07.44-.05.07-.12.12-.28.18-.17.07-.46.16-1 .34-.9.3-1.49.52-1.94.7l-.05.01a.4.4 0 0 1 0 .04v1.56h1.1a2.1 2.1 0 0 1 2.12 2.1v2.44a2.1 2.1 0 0 1-2.11 2.1h-3.05a2.1 2.1 0 0 1-2.11-2.1v-2.44c0-1.16.94-2.1 2.1-2.1h1.21V9.03c-.6.2-1.2.32-2.67.53Zm5.88 2.9v.88h-1v-2.2c.58.17 1 .7 1 1.32Zm-1.75.88V11.1h-2.2v2.24h2.2Zm-4.03-.88c0-.65.46-1.2 1.08-1.33v2.21H8.87v-.88Zm0 2.44v-.81h5.78v.8c0 .76-.6 1.37-1.36 1.37h-3.05c-.76 0-1.37-.61-1.37-1.36Z",
|
|
49
|
-
fill: "#fff"
|
|
50
|
-
})]
|
|
51
|
-
}, "13");
|
|
28
|
+
return (<Icon key="13" {...props}>
|
|
29
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
30
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
31
|
+
<path fillRule="evenodd" clipRule="evenodd" d="m8.77 9.56-.37.05c-.08 0-.13 0-.18-.03a.36.36 0 0 1-.16-.13.35.35 0 0 1-.06-.2c0-.05.03-.12.05-.16.03-.05.07-.1.13-.14a8.97 8.97 0 0 0 2.97-.64c.35-.13.85-.32 1.8-.6l1.9-.64a.96.96 0 0 1 .3-.07c.09 0 .16.03.23.09.13.11.16.29.07.44-.05.07-.12.12-.28.18-.17.07-.46.16-1 .34-.9.3-1.49.52-1.94.7l-.05.01a.4.4 0 0 1 0 .04v1.56h1.1a2.1 2.1 0 0 1 2.12 2.1v2.44a2.1 2.1 0 0 1-2.11 2.1h-3.05a2.1 2.1 0 0 1-2.11-2.1v-2.44c0-1.16.94-2.1 2.1-2.1h1.21V9.03c-.6.2-1.2.32-2.67.53Zm5.88 2.9v.88h-1v-2.2c.58.17 1 .7 1 1.32Zm-1.75.88V11.1h-2.2v2.24h2.2Zm-4.03-.88c0-.65.46-1.2 1.08-1.33v2.21H8.87v-.88Zm0 2.44v-.81h5.78v.8c0 .76-.6 1.37-1.36 1.37h-3.05c-.76 0-1.37-.61-1.37-1.36Z" fill="#fff"/>
|
|
32
|
+
</Icon>);
|
|
52
33
|
}
|
|
53
34
|
export function NordicSkiing(props) {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
d
|
|
58
|
-
|
|
59
|
-
}), _jsx("path", {
|
|
60
|
-
fillRule: "evenodd",
|
|
61
|
-
clipRule: "evenodd",
|
|
62
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
63
|
-
fill: "#fff"
|
|
64
|
-
}), _jsx("path", {
|
|
65
|
-
d: "M16.75 15.36H17s-.07.36-.33.39h-5.68v-.22h5.67c.04 0 .1-.16.1-.16Zm-2.16-.07 2.12-4.4.2.09-2.09 4.31h-.23ZM8.58 11.7l3.2 3.3c.04.02.2-.04.2-.04l.15.17s-.29.2-.5.03L8.27 11.7H7.1L7 11.5h1.05l-.42-.44.15-.16.58.6 3.43-.02.01.24H8.58Zm6.05 3.37a.37.37 0 0 1-.16.23.36.36 0 0 1-.5-.11.38.38 0 0 1-.05-.29l.35-1.6-.87-.87-.74.86s-.12.15-.44.14H10.7a.36.36 0 0 1-.23-.08.37.37 0 0 1-.13-.38.37.37 0 0 1 .2-.25c.05-.02.11-.03.17-.03H12l1.92-2.28h-.5l-.87 1.03a.28.28 0 0 1-.45-.02.3.3 0 0 1-.05-.17.3.3 0 0 1 .09-.21l.94-1.11a.28.28 0 0 1 .22-.1h1.37c.1 0 .18.03.25.1l.87.89.72-.74a.29.29 0 0 1 .4.01.3.3 0 0 1 .01.4l-.86.9c-.27.28-.48.05-.48.05l-.53-.55-.84.99.77.78s.16.15.07.46l-.43 1.95Zm.64-5.06a.65.65 0 0 1-.41-.31.7.7 0 0 1 .23-.94.65.65 0 0 1 .9.24.7.7 0 0 1-.22.93.65.65 0 0 1-.5.08Z",
|
|
66
|
-
fill: "#fff"
|
|
67
|
-
})]
|
|
68
|
-
}, "14");
|
|
35
|
+
return (<Icon key="14" {...props}>
|
|
36
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
37
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
38
|
+
<path d="M16.75 15.36H17s-.07.36-.33.39h-5.68v-.22h5.67c.04 0 .1-.16.1-.16Zm-2.16-.07 2.12-4.4.2.09-2.09 4.31h-.23ZM8.58 11.7l3.2 3.3c.04.02.2-.04.2-.04l.15.17s-.29.2-.5.03L8.27 11.7H7.1L7 11.5h1.05l-.42-.44.15-.16.58.6 3.43-.02.01.24H8.58Zm6.05 3.37a.37.37 0 0 1-.16.23.36.36 0 0 1-.5-.11.38.38 0 0 1-.05-.29l.35-1.6-.87-.87-.74.86s-.12.15-.44.14H10.7a.36.36 0 0 1-.23-.08.37.37 0 0 1-.13-.38.37.37 0 0 1 .2-.25c.05-.02.11-.03.17-.03H12l1.92-2.28h-.5l-.87 1.03a.28.28 0 0 1-.45-.02.3.3 0 0 1-.05-.17.3.3 0 0 1 .09-.21l.94-1.11a.28.28 0 0 1 .22-.1h1.37c.1 0 .18.03.25.1l.87.89.72-.74a.29.29 0 0 1 .4.01.3.3 0 0 1 .01.4l-.86.9c-.27.28-.48.05-.48.05l-.53-.55-.84.99.77.78s.16.15.07.46l-.43 1.95Zm.64-5.06a.65.65 0 0 1-.41-.31.7.7 0 0 1 .23-.94.65.65 0 0 1 .9.24.7.7 0 0 1-.22.93.65.65 0 0 1-.5.08Z" fill="#fff"/>
|
|
39
|
+
</Icon>);
|
|
69
40
|
}
|
|
70
41
|
export function CrossCountry(props) {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
}), _jsx("path", {
|
|
77
|
-
fillRule: "evenodd",
|
|
78
|
-
clipRule: "evenodd",
|
|
79
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
80
|
-
fill: "#fff"
|
|
81
|
-
}), _jsx("path", {
|
|
82
|
-
fillRule: "evenodd",
|
|
83
|
-
clipRule: "evenodd",
|
|
84
|
-
d: "m8.74 10.1-.1 1.18v-.03a.88.88 0 0 0 .83.95c.32 0 .64-.13.77-.38l.28-.1c-.2 1.2-.46 2.38-.76 3.55a.5.5 0 0 0-.02.26l-1.16-.32c-.13-.03-.29.03-.32.16a.25.25 0 0 0 .16.32v.03l4.84 1.27c.1.03.16 0 .22-.03l.32-.1a.22.22 0 0 0 .16-.32c-.03-.16-.19-.22-.32-.19l-.38.13-1.05-.29h3.15c.07 0 .16-.03.16-.1l.32-.15c.13-.06.16-.25.06-.38-.06-.1-.22-.16-.38-.1l-.32.23h-1.5a.14.14 0 0 0 .07-.13l.48-4.1a.53.53 0 0 0 .1-.75l.02-.29c0-.1-.06-.19-.15-.22-.1 0-.23.03-.23.16l-.01.15a3.82 3.82 0 0 1-1.52-1c-.22-.77-1.36-.8-1.65-.07h-.06a1.09 1.09 0 0 0-.64 0 .75.75 0 0 0-.42-.16.9.9 0 0 0-.95.83Zm3.34 5.59h-1.41l.08-.16c.17-.57.32-1.16.46-1.75l.2-.79c.5.67.73 1.52.6 2.35-.01.13.02.25.07.35Zm1.4 0H13l.02-.07c.19-1.23-.1-2.34-.8-3.3l.02-.11c.09-.47.17-.9.2-1.37a4.73 4.73 0 0 0 1.43.67l-.44 3.99a.19.19 0 0 0 .07.19Zm-2.76-5.35c-.01.24-.03.49-.07.72l-.22.16.06-.99a.52.52 0 0 0-.03-.31c.1 0 .19 0 .29.06l-.03.36Zm.71-1.85a.88.88 0 0 0 1.5-.62.87.87 0 0 0-.88-.87.88.88 0 0 0-.87.87c0 .23.09.45.25.62Z",
|
|
85
|
-
fill: "#fff"
|
|
86
|
-
})]
|
|
87
|
-
}, "15");
|
|
42
|
+
return (<Icon key="15" {...props}>
|
|
43
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
44
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
45
|
+
<path fillRule="evenodd" clipRule="evenodd" d="m8.74 10.1-.1 1.18v-.03a.88.88 0 0 0 .83.95c.32 0 .64-.13.77-.38l.28-.1c-.2 1.2-.46 2.38-.76 3.55a.5.5 0 0 0-.02.26l-1.16-.32c-.13-.03-.29.03-.32.16a.25.25 0 0 0 .16.32v.03l4.84 1.27c.1.03.16 0 .22-.03l.32-.1a.22.22 0 0 0 .16-.32c-.03-.16-.19-.22-.32-.19l-.38.13-1.05-.29h3.15c.07 0 .16-.03.16-.1l.32-.15c.13-.06.16-.25.06-.38-.06-.1-.22-.16-.38-.1l-.32.23h-1.5a.14.14 0 0 0 .07-.13l.48-4.1a.53.53 0 0 0 .1-.75l.02-.29c0-.1-.06-.19-.15-.22-.1 0-.23.03-.23.16l-.01.15a3.82 3.82 0 0 1-1.52-1c-.22-.77-1.36-.8-1.65-.07h-.06a1.09 1.09 0 0 0-.64 0 .75.75 0 0 0-.42-.16.9.9 0 0 0-.95.83Zm3.34 5.59h-1.41l.08-.16c.17-.57.32-1.16.46-1.75l.2-.79c.5.67.73 1.52.6 2.35-.01.13.02.25.07.35Zm1.4 0H13l.02-.07c.19-1.23-.1-2.34-.8-3.3l.02-.11c.09-.47.17-.9.2-1.37a4.73 4.73 0 0 0 1.43.67l-.44 3.99a.19.19 0 0 0 .07.19Zm-2.76-5.35c-.01.24-.03.49-.07.72l-.22.16.06-.99a.52.52 0 0 0-.03-.31c.1 0 .19 0 .29.06l-.03.36Zm.71-1.85a.88.88 0 0 0 1.5-.62.87.87 0 0 0-.88-.87.88.88 0 0 0-.87.87c0 .23.09.45.25.62Z" fill="#fff"/>
|
|
46
|
+
</Icon>);
|
|
88
47
|
}
|
|
89
48
|
export function AlpineSki(props) {
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
d
|
|
94
|
-
|
|
95
|
-
}), _jsx("path", {
|
|
96
|
-
fillRule: "evenodd",
|
|
97
|
-
clipRule: "evenodd",
|
|
98
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
99
|
-
fill: "#fff"
|
|
100
|
-
}), _jsx("path", {
|
|
101
|
-
d: "M16.1 7.7a1.05 1.05 0 0 0-1.35-.64 1.06 1.06 0 0 0-.63 1.35 1.05 1.05 0 0 0 1.35.63 1.05 1.05 0 0 0 .63-1.35ZM15 16.03c.16.08.31.22.24.39a1 1 0 0 1-1.33.48L7.2 13.8a.33.33 0 1 1 .28-.6l3.25 1.5 1.32-1.43-1.71-1.53a.65.65 0 0 1 .11-.93l-.88-.38c-.23.12-.43.14-.6.05l.16-.29-.16-.07c-.16-.08-.25-.22-.2-.31.07-.1.2-.16.36-.08l.17.08.14-.27c.17.04.28.2.32.47l.84.42a40.19 40.19 0 0 1 2.47-1.88c.15-.06.34-.02.57.2.08.07.21.24.4.5l.56.68.22 1.73.72.41c.28.16.38.48.24.69-.2.28-.44.33-.78.18l-1.36-.63-1.43-.7-.17.13 1.28 1.11c.16.2.2.46.09.69l-1.6 1.66 2.4 1.1c.16.08.36 0 .44-.16.07-.17.18-.19.35-.1v-.01Zm-2.46-4.71 1.19.57-.22-1.32-.96.75Z",
|
|
102
|
-
fill: "#fff"
|
|
103
|
-
})]
|
|
104
|
-
}, "16");
|
|
49
|
+
return (<Icon key="16" {...props}>
|
|
50
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
51
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
52
|
+
<path d="M16.1 7.7a1.05 1.05 0 0 0-1.35-.64 1.06 1.06 0 0 0-.63 1.35 1.05 1.05 0 0 0 1.35.63 1.05 1.05 0 0 0 .63-1.35ZM15 16.03c.16.08.31.22.24.39a1 1 0 0 1-1.33.48L7.2 13.8a.33.33 0 1 1 .28-.6l3.25 1.5 1.32-1.43-1.71-1.53a.65.65 0 0 1 .11-.93l-.88-.38c-.23.12-.43.14-.6.05l.16-.29-.16-.07c-.16-.08-.25-.22-.2-.31.07-.1.2-.16.36-.08l.17.08.14-.27c.17.04.28.2.32.47l.84.42a40.19 40.19 0 0 1 2.47-1.88c.15-.06.34-.02.57.2.08.07.21.24.4.5l.56.68.22 1.73.72.41c.28.16.38.48.24.69-.2.28-.44.33-.78.18l-1.36-.63-1.43-.7-.17.13 1.28 1.11c.16.2.2.46.09.69l-1.6 1.66 2.4 1.1c.16.08.36 0 .44-.16.07-.17.18-.19.35-.1v-.01Zm-2.46-4.71 1.19.57-.22-1.32-.96.75Z" fill="#fff"/>
|
|
53
|
+
</Icon>);
|
|
105
54
|
}
|
|
106
55
|
export function Teleski(props) {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
fillRule: "evenodd",
|
|
114
|
-
clipRule: "evenodd",
|
|
115
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
116
|
-
fill: "#fff"
|
|
117
|
-
}), _jsx("path", {
|
|
118
|
-
fillRule: "evenodd",
|
|
119
|
-
clipRule: "evenodd",
|
|
120
|
-
d: "M9.87 9.01 9.8 9a.93.93 0 0 0-.14-.02c-.53-.06-.59.2-.59.33V12c0 .48.96.97 1.62 1.3.28.15.5.27.58.34.16.18.31.62.42.95l.1.27c.1.26.34.42.6.32.25-.1.3-.25.19-.59a51.91 51.91 0 0 1-.33-.96c-.14-.55-.28-.71-.47-.84l-.2-.16a3.72 3.72 0 0 0-.7-.48.81.81 0 0 1-.13-.1l3.14-4.7a.21.21 0 0 0 .03-.16.21.21 0 0 0-.03-.09.25.25 0 0 0-.25-.09.24.24 0 0 0-.1.05.23.23 0 0 0-.05.06l-1.56 2.33L9.88 9Zm1.78.85-1.17 1.76a.99.99 0 0 1-.04-.29V9.71l-.01-.1 1.22.25Z",
|
|
121
|
-
fill: "#fff"
|
|
122
|
-
}), _jsx("path", {
|
|
123
|
-
d: "M10.21 8.63a.86.86 0 0 1-1.03-.1.73.73 0 0 1-.1-.96.81.81 0 0 1 .36-.28.88.88 0 0 1 .9.17c.11.1.19.24.22.39.03.15.02.3-.05.44a.78.78 0 0 1-.3.34ZM16.9 13.15c.05.03.08.08.1.14.1.86-.84 1.31-.88 1.33l-.03.02-7.78 2.35a.25.25 0 0 1-.18-.01.23.23 0 0 1-.12-.13.2.2 0 0 1 .02-.17c.02-.05.07-.09.13-.1l7.76-2.36c.1-.05.66-.37.6-.88 0-.06.01-.11.05-.16s.1-.07.16-.08c.06 0 .13 0 .17.05ZM9.5 12.77a.1.1 0 0 1 .04.01l.57.43a.1.1 0 0 1 .03.07c0 .02 0 .05-.03.08a.1.1 0 0 1-.07.03.1.1 0 0 1-.07-.01l-.57-.43a.09.09 0 0 1-.01-.13c0-.02.03-.04.04-.05a.11.11 0 0 1 .08 0Z",
|
|
124
|
-
fill: "#fff"
|
|
125
|
-
})]
|
|
126
|
-
}, "17");
|
|
56
|
+
return (<Icon key="17" {...props}>
|
|
57
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
58
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
59
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M9.87 9.01 9.8 9a.93.93 0 0 0-.14-.02c-.53-.06-.59.2-.59.33V12c0 .48.96.97 1.62 1.3.28.15.5.27.58.34.16.18.31.62.42.95l.1.27c.1.26.34.42.6.32.25-.1.3-.25.19-.59a51.91 51.91 0 0 1-.33-.96c-.14-.55-.28-.71-.47-.84l-.2-.16a3.72 3.72 0 0 0-.7-.48.81.81 0 0 1-.13-.1l3.14-4.7a.21.21 0 0 0 .03-.16.21.21 0 0 0-.03-.09.25.25 0 0 0-.25-.09.24.24 0 0 0-.1.05.23.23 0 0 0-.05.06l-1.56 2.33L9.88 9Zm1.78.85-1.17 1.76a.99.99 0 0 1-.04-.29V9.71l-.01-.1 1.22.25Z" fill="#fff"/>
|
|
60
|
+
<path d="M10.21 8.63a.86.86 0 0 1-1.03-.1.73.73 0 0 1-.1-.96.81.81 0 0 1 .36-.28.88.88 0 0 1 .9.17c.11.1.19.24.22.39.03.15.02.3-.05.44a.78.78 0 0 1-.3.34ZM16.9 13.15c.05.03.08.08.1.14.1.86-.84 1.31-.88 1.33l-.03.02-7.78 2.35a.25.25 0 0 1-.18-.01.23.23 0 0 1-.12-.13.2.2 0 0 1 .02-.17c.02-.05.07-.09.13-.1l7.76-2.36c.1-.05.66-.37.6-.88 0-.06.01-.11.05-.16s.1-.07.16-.08c.06 0 .13 0 .17.05ZM9.5 12.77a.1.1 0 0 1 .04.01l.57.43a.1.1 0 0 1 .03.07c0 .02 0 .05-.03.08a.1.1 0 0 1-.07.03.1.1 0 0 1-.07-.01l-.57-.43a.09.09 0 0 1-.01-.13c0-.02.03-.04.04-.05a.11.11 0 0 1 .08 0Z" fill="#fff"/>
|
|
61
|
+
</Icon>);
|
|
127
62
|
}
|
|
128
63
|
export function Biathlon(props) {
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
d
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
fillRule: "evenodd",
|
|
136
|
-
clipRule: "evenodd",
|
|
137
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
138
|
-
fill: "#fff"
|
|
139
|
-
}), _jsx("path", {
|
|
140
|
-
d: "M16.14 8.93h-.16v-.2a.11.11 0 1 0-.22 0v.2h-4.57a1 1 0 1 0-.86-.05c-.47 0-.86.55-.86.88v2.54c0 .35.1.57.1.57l.14 1.23s-.48 2.02-.56 2.26c-.05.16 0 .28.08.36H7.86a.14.14 0 0 0 0 .28h6.22c.28 0 .51-.1.67-.26a.9.9 0 0 0 .25-.65.14.14 0 0 0-.28 0c0 .2-.06.35-.17.46-.1.1-.25.17-.47.17h-2.21a.28.28 0 0 0 .1-.28l-.42-2.97-.23-.49s.13-.1.13-.38v-1.44s-.18.03-.46-.25l-.71-.7s.65.5.78.62c.19.19.38.15.57.04.2-.11 1.17-.83 1.46-1.04.15-.1.17-.34.07-.47h.7c.1 0 .15-.07.19-.15h2.1a.14.14 0 0 0 0-.28Zm-5.63 4.5h.07l.12.28.42 2.79c.02.1.07.17.14.22h-1.4a.3.3 0 0 0 .07-.14l.64-2.37-.06-.78Zm1.99-4.02-1.04.7v-.29s-.42.11-.66.11c-.26 0-.34-.05-.34-.33v-.66l.1.03v.58c0 .23.05.27.21.27 0 0 .34-.02.5-.09a26 26 0 0 0 .77-.37h.54l-.08.05Z",
|
|
141
|
-
fill: "#fff"
|
|
142
|
-
}), _jsx("path", {
|
|
143
|
-
d: "M12.05 10.7s.3.13.37.2c.06.06.25.03.41-.08.22-.15 1.26-.9 1.54-1.13.24-.19.28-.29.28-.4h-.5s-.08.17-.24.17h-.44l-.1.07s-.03.17-.11.3c-.09.15-1.2.86-1.2.86Z",
|
|
144
|
-
fill: "#fff"
|
|
145
|
-
})]
|
|
146
|
-
}, "18");
|
|
64
|
+
return (<Icon key="18" {...props}>
|
|
65
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
66
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
67
|
+
<path d="M16.14 8.93h-.16v-.2a.11.11 0 1 0-.22 0v.2h-4.57a1 1 0 1 0-.86-.05c-.47 0-.86.55-.86.88v2.54c0 .35.1.57.1.57l.14 1.23s-.48 2.02-.56 2.26c-.05.16 0 .28.08.36H7.86a.14.14 0 0 0 0 .28h6.22c.28 0 .51-.1.67-.26a.9.9 0 0 0 .25-.65.14.14 0 0 0-.28 0c0 .2-.06.35-.17.46-.1.1-.25.17-.47.17h-2.21a.28.28 0 0 0 .1-.28l-.42-2.97-.23-.49s.13-.1.13-.38v-1.44s-.18.03-.46-.25l-.71-.7s.65.5.78.62c.19.19.38.15.57.04.2-.11 1.17-.83 1.46-1.04.15-.1.17-.34.07-.47h.7c.1 0 .15-.07.19-.15h2.1a.14.14 0 0 0 0-.28Zm-5.63 4.5h.07l.12.28.42 2.79c.02.1.07.17.14.22h-1.4a.3.3 0 0 0 .07-.14l.64-2.37-.06-.78Zm1.99-4.02-1.04.7v-.29s-.42.11-.66.11c-.26 0-.34-.05-.34-.33v-.66l.1.03v.58c0 .23.05.27.21.27 0 0 .34-.02.5-.09a26 26 0 0 0 .77-.37h.54l-.08.05Z" fill="#fff"/>
|
|
68
|
+
<path d="M12.05 10.7s.3.13.37.2c.06.06.25.03.41-.08.22-.15 1.26-.9 1.54-1.13.24-.19.28-.29.28-.4h-.5s-.08.17-.24.17h-.44l-.1.07s-.03.17-.11.3c-.09.15-1.2.86-1.2.86Z" fill="#fff"/>
|
|
69
|
+
</Icon>);
|
|
147
70
|
}
|
|
148
71
|
export function Snowshoes(props) {
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
d
|
|
153
|
-
|
|
154
|
-
}), _jsx("path", {
|
|
155
|
-
fillRule: "evenodd",
|
|
156
|
-
clipRule: "evenodd",
|
|
157
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
158
|
-
fill: "#fff"
|
|
159
|
-
}), _jsx("path", {
|
|
160
|
-
d: "M11.82 9.08c.15-.1.3-.16.52-.16.24 0 .43.19.55.34l.7 1.38.93.62c.09.1.15.19.15.31 0 .16-.19.29-.34.29l-.15-.07-1.04-.72a.31.31 0 0 1-.07-.06l-.27-.53-.3 1.38 1.22 1.43.06.13.3 1.74v.1c0 .25-.2.44-.48.44a.54.54 0 0 1-.43-.38l-.31-1.62-.98-1.1-.25 1.07-.09.18-.73 1.28a.45.45 0 0 1-.46.22c-.25 0-.43-.22-.43-.5l.06-.18.7-1.16.74-3.25-.5.38-.24 1.15a.32.32 0 0 1-.1.21.3.3 0 0 1-.23.07.3.3 0 0 1-.24-.1.32.32 0 0 1-.07-.27l.3-1.37.13-.13 1.35-1.12Zm.98-.22a.91.91 0 0 1-.6-.4.94.94 0 0 1 .58-1.44.9.9 0 0 1 .36 0 .9.9 0 0 1 .6.38.94.94 0 0 1 .03 1.06.93.93 0 0 1-.6.4.9.9 0 0 1-.37 0Zm-2.94 6.5.8.02a.76.76 0 0 1 .5.4.8.8 0 0 1-.42 1.1.75.75 0 0 1-.64-.06l-2.27-1.19.1-.37 1.93.1Zm4.29.3.73-.21a.75.75 0 0 1 .64.22.78.78 0 0 1 .22.65.79.79 0 0 1-.37.57.76.76 0 0 1-.67.05l-2.45-.56v-.31l1.84-.44.06.03Z",
|
|
161
|
-
fill: "#fff"
|
|
162
|
-
})]
|
|
163
|
-
}, "19");
|
|
72
|
+
return (<Icon key="19" {...props}>
|
|
73
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
74
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
75
|
+
<path d="M11.82 9.08c.15-.1.3-.16.52-.16.24 0 .43.19.55.34l.7 1.38.93.62c.09.1.15.19.15.31 0 .16-.19.29-.34.29l-.15-.07-1.04-.72a.31.31 0 0 1-.07-.06l-.27-.53-.3 1.38 1.22 1.43.06.13.3 1.74v.1c0 .25-.2.44-.48.44a.54.54 0 0 1-.43-.38l-.31-1.62-.98-1.1-.25 1.07-.09.18-.73 1.28a.45.45 0 0 1-.46.22c-.25 0-.43-.22-.43-.5l.06-.18.7-1.16.74-3.25-.5.38-.24 1.15a.32.32 0 0 1-.1.21.3.3 0 0 1-.23.07.3.3 0 0 1-.24-.1.32.32 0 0 1-.07-.27l.3-1.37.13-.13 1.35-1.12Zm.98-.22a.91.91 0 0 1-.6-.4.94.94 0 0 1 .58-1.44.9.9 0 0 1 .36 0 .9.9 0 0 1 .6.38.94.94 0 0 1 .03 1.06.93.93 0 0 1-.6.4.9.9 0 0 1-.37 0Zm-2.94 6.5.8.02a.76.76 0 0 1 .5.4.8.8 0 0 1-.42 1.1.75.75 0 0 1-.64-.06l-2.27-1.19.1-.37 1.93.1Zm4.29.3.73-.21a.75.75 0 0 1 .64.22.78.78 0 0 1 .22.65.79.79 0 0 1-.37.57.76.76 0 0 1-.67.05l-2.45-.56v-.31l1.84-.44.06.03Z" fill="#fff"/>
|
|
76
|
+
</Icon>);
|
|
164
77
|
}
|
|
165
78
|
export function SkiPass(props) {
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
clipRule: "evenodd",
|
|
174
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
175
|
-
fill: "#fff"
|
|
176
|
-
}), _jsx("path", {
|
|
177
|
-
fillRule: "evenodd",
|
|
178
|
-
clipRule: "evenodd",
|
|
179
|
-
d: "M14.49 16.26h-.36a.04.04 0 0 1-.04-.03V14.8c0-.03.02-.04.04-.04h.36c.02 0 .04 0 .04.03v1.42c0 .02-.02.04-.04.04Zm-1.26 0h-.3c-.02 0-.04-.01-.04-.03V14.8c0-.02.02-.04.04-.04h.3c.02 0 .04.02.04.04v1.42c0 .02-.02.04-.04.04Zm-1.18 0h-.36c-.02 0-.04-.02-.04-.04V14.8c0-.02.02-.04.04-.04h.36c.02 0 .04.02.04.04v1.42c0 .02-.02.04-.04.04Zm1.8 0h-.27l-.02-.02v-1.46c0-.01 0-.02.02-.02h.27s.02 0 .02.02v1.46l-.02.02Zm-1.2 0h-.25c-.01 0-.02 0-.02-.02v-1.46s0-.02.02-.02h.25l.02.02v1.46c0 .02 0 .02-.02.02Zm-1.3 0h-.15l-.02-.02v-1.46l.02-.02h.15c.01 0 .02 0 .02.02v1.46c0 .01 0 .02-.02.02Zm-.44 0h-.25l-.02-.02v-1.46c0-.01 0-.02.02-.02h.25s.02 0 .02.02v1.46l-.02.02Zm-.6 0h-.3c-.02 0-.04-.02-.04-.04V14.8c0-.02.02-.04.05-.04h.3c.02 0 .04.02.04.04v1.42c0 .02-.02.04-.04.04Zm4.6 0 .01-.02v-1.46c0-.01 0-.02-.02-.02h-.15c-.01 0-.02 0-.02.02v1.46s0 .02.02.02h.15Z",
|
|
180
|
-
fill: "#fff"
|
|
181
|
-
}), _jsx("path", {
|
|
182
|
-
fillRule: "evenodd",
|
|
183
|
-
clipRule: "evenodd",
|
|
184
|
-
d: "M13.74 7.18c.09-.16.3-.22.46-.15.17.08.24.28.15.45l-.8 1.49h1.5c.23 0 .43.09.58.23.15.14.24.33.24.55v6.68c0 .22-.09.41-.24.55l-.03.03a.84.84 0 0 1-.55.2H9.82a.84.84 0 0 1-.57-.22.76.76 0 0 1-.25-.56V9.75c0-.22.1-.41.24-.55a.85.85 0 0 1 .58-.23h1.55a275.35 275.35 0 0 0-.73-1.3l-.1-.16a.32.32 0 0 1 .14-.46.35.35 0 0 1 .46.14l.04.06.1.16a524.26 524.26 0 0 1 .87 1.56h.63l.96-1.8Zm-3.92 2.5c-.02 0-.04.02-.05.03a.06.06 0 0 0-.02.04v6.68c0 .01 0 .03.02.04l.05.02h5.23l.05-.01v-.01a.06.06 0 0 0 .03-.04V9.75l-.02-.04a.08.08 0 0 0-.06-.02h-1.88l-.02.03a.92.92 0 0 1 0 1.33c-.2.17-.44.28-.71.28-.28 0-.52-.1-.7-.28a.92.92 0 0 1-.3-.67.92.92 0 0 1 .32-.7H9.82Zm2.66.23-.21.45c-.03.05-.01.13.06.16.07.03.15 0 .18-.06l.24-.45s.08.05.12.1c.05.06.08.18.08.27 0 .14-.06.27-.15.35a.53.53 0 0 1-.73 0 .48.48 0 0 1 0-.7.54.54 0 0 1 .23-.12c.08-.02.18 0 .18 0Z",
|
|
185
|
-
fill: "#fff"
|
|
186
|
-
}), _jsx("path", {
|
|
187
|
-
fillRule: "evenodd",
|
|
188
|
-
clipRule: "evenodd",
|
|
189
|
-
d: "M11.91 13.9h-.99c-.08.02-.16-.04-.16-.13 0-.03 0-.04.02-.06l.74-1.44c.1-.2.2-.28.4-.28.18 0 .28.09.38.28l.74 1.43c.05.08 0 .19-.1.2a.22.22 0 0 1-.04 0h-.99Zm.67-1.85.1-.24c.1-.25.21-.38.4-.39.2 0 .28.12.4.39l.81 1.57c.03.05.06.09.06.13 0 .06-.05.12-.12.13h-.87a.17.17 0 0 1-.13-.06c-.03-.03-.1-.17-.13-.22l-.53-.99c-.03-.06-.06-.1-.04-.18 0-.04.04-.1.05-.14Z",
|
|
190
|
-
fill: "#fff"
|
|
191
|
-
})]
|
|
192
|
-
}, "20");
|
|
79
|
+
return (<Icon key="20" {...props}>
|
|
80
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
81
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
82
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M14.49 16.26h-.36a.04.04 0 0 1-.04-.03V14.8c0-.03.02-.04.04-.04h.36c.02 0 .04 0 .04.03v1.42c0 .02-.02.04-.04.04Zm-1.26 0h-.3c-.02 0-.04-.01-.04-.03V14.8c0-.02.02-.04.04-.04h.3c.02 0 .04.02.04.04v1.42c0 .02-.02.04-.04.04Zm-1.18 0h-.36c-.02 0-.04-.02-.04-.04V14.8c0-.02.02-.04.04-.04h.36c.02 0 .04.02.04.04v1.42c0 .02-.02.04-.04.04Zm1.8 0h-.27l-.02-.02v-1.46c0-.01 0-.02.02-.02h.27s.02 0 .02.02v1.46l-.02.02Zm-1.2 0h-.25c-.01 0-.02 0-.02-.02v-1.46s0-.02.02-.02h.25l.02.02v1.46c0 .02 0 .02-.02.02Zm-1.3 0h-.15l-.02-.02v-1.46l.02-.02h.15c.01 0 .02 0 .02.02v1.46c0 .01 0 .02-.02.02Zm-.44 0h-.25l-.02-.02v-1.46c0-.01 0-.02.02-.02h.25s.02 0 .02.02v1.46l-.02.02Zm-.6 0h-.3c-.02 0-.04-.02-.04-.04V14.8c0-.02.02-.04.05-.04h.3c.02 0 .04.02.04.04v1.42c0 .02-.02.04-.04.04Zm4.6 0 .01-.02v-1.46c0-.01 0-.02-.02-.02h-.15c-.01 0-.02 0-.02.02v1.46s0 .02.02.02h.15Z" fill="#fff"/>
|
|
83
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M13.74 7.18c.09-.16.3-.22.46-.15.17.08.24.28.15.45l-.8 1.49h1.5c.23 0 .43.09.58.23.15.14.24.33.24.55v6.68c0 .22-.09.41-.24.55l-.03.03a.84.84 0 0 1-.55.2H9.82a.84.84 0 0 1-.57-.22.76.76 0 0 1-.25-.56V9.75c0-.22.1-.41.24-.55a.85.85 0 0 1 .58-.23h1.55a275.35 275.35 0 0 0-.73-1.3l-.1-.16a.32.32 0 0 1 .14-.46.35.35 0 0 1 .46.14l.04.06.1.16a524.26 524.26 0 0 1 .87 1.56h.63l.96-1.8Zm-3.92 2.5c-.02 0-.04.02-.05.03a.06.06 0 0 0-.02.04v6.68c0 .01 0 .03.02.04l.05.02h5.23l.05-.01v-.01a.06.06 0 0 0 .03-.04V9.75l-.02-.04a.08.08 0 0 0-.06-.02h-1.88l-.02.03a.92.92 0 0 1 0 1.33c-.2.17-.44.28-.71.28-.28 0-.52-.1-.7-.28a.92.92 0 0 1-.3-.67.92.92 0 0 1 .32-.7H9.82Zm2.66.23-.21.45c-.03.05-.01.13.06.16.07.03.15 0 .18-.06l.24-.45s.08.05.12.1c.05.06.08.18.08.27 0 .14-.06.27-.15.35a.53.53 0 0 1-.73 0 .48.48 0 0 1 0-.7.54.54 0 0 1 .23-.12c.08-.02.18 0 .18 0Z" fill="#fff"/>
|
|
84
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M11.91 13.9h-.99c-.08.02-.16-.04-.16-.13 0-.03 0-.04.02-.06l.74-1.44c.1-.2.2-.28.4-.28.18 0 .28.09.38.28l.74 1.43c.05.08 0 .19-.1.2a.22.22 0 0 1-.04 0h-.99Zm.67-1.85.1-.24c.1-.25.21-.38.4-.39.2 0 .28.12.4.39l.81 1.57c.03.05.06.09.06.13 0 .06-.05.12-.12.13h-.87a.17.17 0 0 1-.13-.06c-.03-.03-.1-.17-.13-.22l-.53-.99c-.03-.06-.06-.1-.04-.18 0-.04.04-.1.05-.14Z" fill="#fff"/>
|
|
85
|
+
</Icon>);
|
|
193
86
|
}
|
|
194
87
|
export function PiouPiouMat(props) {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
d
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
204
|
-
fill: "#fff"
|
|
205
|
-
}), _jsx("path", {
|
|
206
|
-
d: "M13.98 12.57c0 .21-.08.28-.25.31l-1.8.22c.07-.21.14-.25.2-.44.08-.23.07-.38.01-.66-.06-.27-.24-.7-.3-.84-.05-.14.02-.16.08-.1.15.15.35.4.35.4.22.21.57-.1.34-.33-.37-.37-.7-.78-.87-1.1-.09-.2-.25-.3-.56-.3-.3 0-.4.2-.4.34l.02 1.07c0 .53.36.65.36.65l.04 1.4-2.09.24.03.32 4.67-.53c.35-.04.54-.34.5-.7l-.33.05Zm2.98 1.2c-.1-.33-.43-.5-.74-.49h-.03l-8.44.98h-.02c-.38.04-.73.33-.73.75 0 .2.08.4.22.53a.18.18 0 1 0 .26-.26.38.38 0 0 1-.11-.27c0-.2.16-.36.4-.4l1.17-.13.11-.01a.49.49 0 0 0-.09.67.5.5 0 1 0 .79-.6.47.47 0 0 0-.18-.13l.13-.01 1.98-.23.11-.02a.49.49 0 0 0-.08.67.5.5 0 1 0 .79-.6.49.49 0 0 0-.17-.13l.12-.01 1.97-.23.12-.01a.49.49 0 0 0-.17.49.5.5 0 0 0 .97-.24.5.5 0 0 0-.25-.32h.11l.9-.11h.11c.22 0 .34.07.4.23l.02.12c0 .08-.03.16-.07.22a.18.18 0 0 0-.04.1.19.19 0 0 0 .2.2.19.19 0 0 0 .14-.09.76.76 0 0 0 .1-.66Zm-5.89-4.2a.58.58 0 1 0 0-1.16.58.58 0 0 0 0 1.15Z",
|
|
207
|
-
fill: "#fff"
|
|
208
|
-
})]
|
|
209
|
-
}, "21");
|
|
210
|
-
}
|
|
88
|
+
return (<Icon key="21" {...props}>
|
|
89
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
90
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
91
|
+
<path d="M13.98 12.57c0 .21-.08.28-.25.31l-1.8.22c.07-.21.14-.25.2-.44.08-.23.07-.38.01-.66-.06-.27-.24-.7-.3-.84-.05-.14.02-.16.08-.1.15.15.35.4.35.4.22.21.57-.1.34-.33-.37-.37-.7-.78-.87-1.1-.09-.2-.25-.3-.56-.3-.3 0-.4.2-.4.34l.02 1.07c0 .53.36.65.36.65l.04 1.4-2.09.24.03.32 4.67-.53c.35-.04.54-.34.5-.7l-.33.05Zm2.98 1.2c-.1-.33-.43-.5-.74-.49h-.03l-8.44.98h-.02c-.38.04-.73.33-.73.75 0 .2.08.4.22.53a.18.18 0 1 0 .26-.26.38.38 0 0 1-.11-.27c0-.2.16-.36.4-.4l1.17-.13.11-.01a.49.49 0 0 0-.09.67.5.5 0 1 0 .79-.6.47.47 0 0 0-.18-.13l.13-.01 1.98-.23.11-.02a.49.49 0 0 0-.08.67.5.5 0 1 0 .79-.6.49.49 0 0 0-.17-.13l.12-.01 1.97-.23.12-.01a.49.49 0 0 0-.17.49.5.5 0 0 0 .97-.24.5.5 0 0 0-.25-.32h.11l.9-.11h.11c.22 0 .34.07.4.23l.02.12c0 .08-.03.16-.07.22a.18.18 0 0 0-.04.1.19.19 0 0 0 .2.2.19.19 0 0 0 .14-.09.76.76 0 0 0 .1-.66Zm-5.89-4.2a.58.58 0 1 0 0-1.16.58.58 0 0 0 0 1.15Z" fill="#fff"/>
|
|
92
|
+
</Icon>);
|
|
93
|
+
}
|
|
94
|
+
// STATION FIN
|
|
95
|
+
// DIVERS DÉBUT
|
|
211
96
|
export function Cabin(props) {
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
}), _jsx("path", {
|
|
218
|
-
fillRule: "evenodd",
|
|
219
|
-
clipRule: "evenodd",
|
|
220
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
221
|
-
fill: "#fff"
|
|
222
|
-
}), _jsx("path", {
|
|
223
|
-
fillRule: "evenodd",
|
|
224
|
-
clipRule: "evenodd",
|
|
225
|
-
d: "M16.9 11.9 12 7l-4.9 4.9a.37.37 0 0 0 .52.52l.7-.7v.01a.37.37 0 0 0 .36.37h6.83a.36.36 0 0 0 .34-.23l.54.55a.37.37 0 0 0 .52-.52Zm-1.56-.53-.91-.92H9.59l-.92.92h6.67Zm-4.28-2.4-.74.75h3.38l-.75-.74H11.1a.2.2 0 0 1-.03 0Zm1.16-.72-.21-.22-.22.22h.43ZM8 12.99a.37.37 0 0 0 .26.62h2.53v.79H8.24a.37.37 0 0 0 0 .73h2.54v.78H8.24a.37.37 0 0 0 0 .73h7.71a.37.37 0 0 0 0-.73H13.4v-.78h2.54a.36.36 0 0 0 .26-.63.36.36 0 0 0-.26-.1H13.4v-.79h2.54a.37.37 0 0 0 .38-.36.37.37 0 0 0-.38-.37H8.24c-.1 0-.18.04-.25.1Zm4.56.75h-.91v2.04h.91v-2.04Z",
|
|
226
|
-
fill: "#000"
|
|
227
|
-
})]
|
|
228
|
-
}, "22");
|
|
97
|
+
return (<Icon key="22" {...props}>
|
|
98
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
99
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
100
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M16.9 11.9 12 7l-4.9 4.9a.37.37 0 0 0 .52.52l.7-.7v.01a.37.37 0 0 0 .36.37h6.83a.36.36 0 0 0 .34-.23l.54.55a.37.37 0 0 0 .52-.52Zm-1.56-.53-.91-.92H9.59l-.92.92h6.67Zm-4.28-2.4-.74.75h3.38l-.75-.74H11.1a.2.2 0 0 1-.03 0Zm1.16-.72-.21-.22-.22.22h.43ZM8 12.99a.37.37 0 0 0 .26.62h2.53v.79H8.24a.37.37 0 0 0 0 .73h2.54v.78H8.24a.37.37 0 0 0 0 .73h7.71a.37.37 0 0 0 0-.73H13.4v-.78h2.54a.36.36 0 0 0 .26-.63.36.36 0 0 0-.26-.1H13.4v-.79h2.54a.37.37 0 0 0 .38-.36.37.37 0 0 0-.38-.37H8.24c-.1 0-.18.04-.25.1Zm4.56.75h-.91v2.04h.91v-2.04Z" fill="#000"/>
|
|
101
|
+
</Icon>);
|
|
229
102
|
}
|
|
230
103
|
export function Building(props) {
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
}), _jsx("path", {
|
|
237
|
-
fillRule: "evenodd",
|
|
238
|
-
clipRule: "evenodd",
|
|
239
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
240
|
-
fill: "#fff"
|
|
241
|
-
}), _jsx("path", {
|
|
242
|
-
fillRule: "evenodd",
|
|
243
|
-
clipRule: "evenodd",
|
|
244
|
-
d: "M7 9.26 9.5 7 12 9.26 14.5 7 17 9.26V16H7V9.26Zm.72.85h1.45v1.36H7.72v-1.36Zm2.11 0h1.46v1.36H9.83v-1.36Zm-.66 1.85H7.72v1.36h1.45v-1.36Zm.66 0h1.46v1.36H9.83v-1.36Zm-.66 1.85H7.72v1.36h1.45v-1.36Zm.66 0h1.46v1.36H9.83v-1.36Zm2.89-3.7h1.45v1.36h-1.45v-1.36Zm2.11 0h1.46v1.36h-1.46v-1.36Zm-.66 1.85h-1.45v1.36h1.45v-1.36Zm.66 0h1.46v1.36h-1.46v-1.36Zm-.66 1.85h-1.45v1.36h1.45v-1.36Zm.66 0h1.46v1.36h-1.46v-1.36Z",
|
|
245
|
-
fill: "#000"
|
|
246
|
-
})]
|
|
247
|
-
}, "23");
|
|
104
|
+
return (<Icon key="23" {...props}>
|
|
105
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
106
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
107
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M7 9.26 9.5 7 12 9.26 14.5 7 17 9.26V16H7V9.26Zm.72.85h1.45v1.36H7.72v-1.36Zm2.11 0h1.46v1.36H9.83v-1.36Zm-.66 1.85H7.72v1.36h1.45v-1.36Zm.66 0h1.46v1.36H9.83v-1.36Zm-.66 1.85H7.72v1.36h1.45v-1.36Zm.66 0h1.46v1.36H9.83v-1.36Zm2.89-3.7h1.45v1.36h-1.45v-1.36Zm2.11 0h1.46v1.36h-1.46v-1.36Zm-.66 1.85h-1.45v1.36h1.45v-1.36Zm.66 0h1.46v1.36h-1.46v-1.36Zm-.66 1.85h-1.45v1.36h1.45v-1.36Zm.66 0h1.46v1.36h-1.46v-1.36Z" fill="#000"/>
|
|
108
|
+
</Icon>);
|
|
248
109
|
}
|
|
249
110
|
export function SkiMask(props) {
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
d
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
fillRule: "evenodd",
|
|
257
|
-
clipRule: "evenodd",
|
|
258
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
259
|
-
fill: "#fff"
|
|
260
|
-
}), _jsx("path", {
|
|
261
|
-
d: "m10.7 9.21-.77.2-.13.04c-.47.15-.89.4-1.24.75l-.42.42-.78.23a.5.5 0 0 0-.36.48v1.31a.5.5 0 0 0 .4.43l.78.15L10 14.75a.83.83 0 0 0 1.18-.1l.03-.05.53-.72h.5l.52.73a.83.83 0 0 0 1.17.18l.03-.02 1.94-1.55.7-.15a.5.5 0 0 0 .4-.49v-1.3a.5.5 0 0 0-.38-.43l-.72-.18-.59-.47a4.78 4.78 0 0 0-1.62-.84l-.38-.11a4.84 4.84 0 0 0-2.61-.04Zm2.38.84.37.1c.5.15.94.39 1.34.7l.65.52.05.03.14.07.54.13v.7l-.52.12a.5.5 0 0 0-.2.1l-2.01 1.6-.54-.73a.83.83 0 0 0-.67-.34h-.5a.83.83 0 0 0-.66.34l-.53.72-1.9-1.59-.04-.03a.5.5 0 0 0-.18-.07l-.59-.12v-.72l.63-.18a.5.5 0 0 0 .21-.13l.48-.48c.28-.27.62-.47.99-.57l.77-.2a4 4 0 0 1 2.17.03Z",
|
|
262
|
-
fill: "#000"
|
|
263
|
-
}), _jsx("path", {
|
|
264
|
-
d: "M9.66 10.3v3.1h-.84v-3.1h.84Zm5.53 0v3.1h-.84v-3.1h.84Z",
|
|
265
|
-
fill: "#000"
|
|
266
|
-
})]
|
|
267
|
-
}, "24");
|
|
111
|
+
return (<Icon key="24" {...props}>
|
|
112
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
113
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
114
|
+
<path d="m10.7 9.21-.77.2-.13.04c-.47.15-.89.4-1.24.75l-.42.42-.78.23a.5.5 0 0 0-.36.48v1.31a.5.5 0 0 0 .4.43l.78.15L10 14.75a.83.83 0 0 0 1.18-.1l.03-.05.53-.72h.5l.52.73a.83.83 0 0 0 1.17.18l.03-.02 1.94-1.55.7-.15a.5.5 0 0 0 .4-.49v-1.3a.5.5 0 0 0-.38-.43l-.72-.18-.59-.47a4.78 4.78 0 0 0-1.62-.84l-.38-.11a4.84 4.84 0 0 0-2.61-.04Zm2.38.84.37.1c.5.15.94.39 1.34.7l.65.52.05.03.14.07.54.13v.7l-.52.12a.5.5 0 0 0-.2.1l-2.01 1.6-.54-.73a.83.83 0 0 0-.67-.34h-.5a.83.83 0 0 0-.66.34l-.53.72-1.9-1.59-.04-.03a.5.5 0 0 0-.18-.07l-.59-.12v-.72l.63-.18a.5.5 0 0 0 .21-.13l.48-.48c.28-.27.62-.47.99-.57l.77-.2a4 4 0 0 1 2.17.03Z" fill="#000"/>
|
|
115
|
+
<path d="M9.66 10.3v3.1h-.84v-3.1h.84Zm5.53 0v3.1h-.84v-3.1h.84Z" fill="#000"/>
|
|
116
|
+
</Icon>);
|
|
268
117
|
}
|
|
269
118
|
export function SkiShoe(props) {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
d
|
|
274
|
-
|
|
275
|
-
}), _jsx("path", {
|
|
276
|
-
fillRule: "evenodd",
|
|
277
|
-
clipRule: "evenodd",
|
|
278
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
279
|
-
fill: "#fff"
|
|
280
|
-
}), _jsx("path", {
|
|
281
|
-
d: "M15.95 15.75a2.02 2.02 0 0 0-1.1-1.67l-2.18-1.13a.39.39 0 0 1-.2-.44l.84-3.58-.29-.06.24-.92-.4-.1a3.33 3.33 0 0 0-1.65-.07 2.65 2.65 0 0 0-1.25-.7L9.66 7l-.23 1.1-.37-.08-1.08 5.1c-.18.84-.2 1.71-.05 2.57V17h3.57v-.42h.89V17h3.78v-1.04l-.22-.21Zm-3.3-2.15.4.21-.63.91-.38-.26.6-.86Zm-.12-5.22-.09.36-.61-.13-.22-.31c.22-.02.51-.01.92.08Zm-1.3.7 1.36.3-.31 1.34-1.36-.28.3-1.36ZM10.1 7.74c.35.15.65.38.88.7L10 8.21l.1-.48Zm-.6.98 1.13.24-.1.47-1.12-.24.1-.47Zm6.06 7.7h-2.59V16H10.9v.41H8.52V16h.58v-.59H8.5c-.07-.5-.08-1-.03-1.49l1.32 1.62h1.2v-.59h-.91l-1.48-1.81.7-3.38 1.12.24-.2.89 1.93.4-.12.54h-1.97v1.63h1.97l-.81 1.15 1.36.93 1.02-1.45.99.51c.33.18.58.47.7.81h-.71V16h.79l.21.2v.21Zm-3.67-3.55h-1.25v-.46h1.24a.96.96 0 0 0 .01.46Z",
|
|
282
|
-
fill: "#000"
|
|
283
|
-
})]
|
|
284
|
-
}, "25");
|
|
119
|
+
return (<Icon key="25" {...props}>
|
|
120
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
121
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
122
|
+
<path d="M15.95 15.75a2.02 2.02 0 0 0-1.1-1.67l-2.18-1.13a.39.39 0 0 1-.2-.44l.84-3.58-.29-.06.24-.92-.4-.1a3.33 3.33 0 0 0-1.65-.07 2.65 2.65 0 0 0-1.25-.7L9.66 7l-.23 1.1-.37-.08-1.08 5.1c-.18.84-.2 1.71-.05 2.57V17h3.57v-.42h.89V17h3.78v-1.04l-.22-.21Zm-3.3-2.15.4.21-.63.91-.38-.26.6-.86Zm-.12-5.22-.09.36-.61-.13-.22-.31c.22-.02.51-.01.92.08Zm-1.3.7 1.36.3-.31 1.34-1.36-.28.3-1.36ZM10.1 7.74c.35.15.65.38.88.7L10 8.21l.1-.48Zm-.6.98 1.13.24-.1.47-1.12-.24.1-.47Zm6.06 7.7h-2.59V16H10.9v.41H8.52V16h.58v-.59H8.5c-.07-.5-.08-1-.03-1.49l1.32 1.62h1.2v-.59h-.91l-1.48-1.81.7-3.38 1.12.24-.2.89 1.93.4-.12.54h-1.97v1.63h1.97l-.81 1.15 1.36.93 1.02-1.45.99.51c.33.18.58.47.7.81h-.71V16h.79l.21.2v.21Zm-3.67-3.55h-1.25v-.46h1.24a.96.96 0 0 0 .01.46Z" fill="#000"/>
|
|
123
|
+
</Icon>);
|
|
285
124
|
}
|
|
286
125
|
export function SkiHelmet(props) {
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
}), _jsx("path", {
|
|
293
|
-
fillRule: "evenodd",
|
|
294
|
-
clipRule: "evenodd",
|
|
295
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
296
|
-
fill: "#fff"
|
|
297
|
-
}), _jsx("path", {
|
|
298
|
-
fillRule: "evenodd",
|
|
299
|
-
clipRule: "evenodd",
|
|
300
|
-
d: "M14.94 7.55c.6.37 1.08.88 1.4 1.5.4.78.66 1.88.66 2.74v.3h-3.1a.66.66 0 0 0-.63.44l-.94 2.97h-.35v1.08c0 .23-.2.42-.42.42h-.86a.42.42 0 0 1-.42-.42V15.5h-.25l-1.6-1.4-1.26-.97a.42.42 0 0 1-.16-.35l.1-2.28v-.13c.09-.93.52-1.78 1.23-2.4.7-.63 1.61-.97 2.56-.97h2.04c.7 0 1.4.2 2 .55Zm-3.81 8.86c.14 0 .25-.1.25-.24v-.67h-.5v.67c0 .13.11.24.25.24Zm.76-1.5.7-2.18h-.79l-.42 1.45h-.98l-1.11-.92-.44.43 1.41 1.23h1.63ZM9.57 12.1v.64l1.05.86h.3l.29-.96-.19-.54H9.57Zm3.22.05c.22-.39.64-.64 1.1-.64h2.5a5.78 5.78 0 0 0-.1-.7h-1.04a.3.3 0 1 1 0-.58h.9c-.1-.33-.21-.64-.35-.9a3.13 3.13 0 0 0-1.18-1.27c-.5-.3-1.08-.46-1.68-.46H10.9c-.8 0-1.57.29-2.16.81a3.05 3.05 0 0 0-1.03 2.13l-.09 1.98c0 .14.05.27.16.35l.58.45.02-.03.02.02.57-.56v-.82c0-.23.19-.42.42-.42h1.77c.17 0 .33.11.4.28l.11.36h1.12Zm-2.25-3.76a.3.3 0 1 0 .6 0 .3.3 0 0 0-.6 0Zm1.3.3a.3.3 0 1 1 0-.6.3.3 0 0 1 0 .6Zm.99 0a.3.3 0 1 1 0-.6.3.3 0 0 1 0 .6Z",
|
|
301
|
-
fill: "#000"
|
|
302
|
-
})]
|
|
303
|
-
}, "26");
|
|
126
|
+
return (<Icon key="26" {...props}>
|
|
127
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
128
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
129
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M14.94 7.55c.6.37 1.08.88 1.4 1.5.4.78.66 1.88.66 2.74v.3h-3.1a.66.66 0 0 0-.63.44l-.94 2.97h-.35v1.08c0 .23-.2.42-.42.42h-.86a.42.42 0 0 1-.42-.42V15.5h-.25l-1.6-1.4-1.26-.97a.42.42 0 0 1-.16-.35l.1-2.28v-.13c.09-.93.52-1.78 1.23-2.4.7-.63 1.61-.97 2.56-.97h2.04c.7 0 1.4.2 2 .55Zm-3.81 8.86c.14 0 .25-.1.25-.24v-.67h-.5v.67c0 .13.11.24.25.24Zm.76-1.5.7-2.18h-.79l-.42 1.45h-.98l-1.11-.92-.44.43 1.41 1.23h1.63ZM9.57 12.1v.64l1.05.86h.3l.29-.96-.19-.54H9.57Zm3.22.05c.22-.39.64-.64 1.1-.64h2.5a5.78 5.78 0 0 0-.1-.7h-1.04a.3.3 0 1 1 0-.58h.9c-.1-.33-.21-.64-.35-.9a3.13 3.13 0 0 0-1.18-1.27c-.5-.3-1.08-.46-1.68-.46H10.9c-.8 0-1.57.29-2.16.81a3.05 3.05 0 0 0-1.03 2.13l-.09 1.98c0 .14.05.27.16.35l.58.45.02-.03.02.02.57-.56v-.82c0-.23.19-.42.42-.42h1.77c.17 0 .33.11.4.28l.11.36h1.12Zm-2.25-3.76a.3.3 0 1 0 .6 0 .3.3 0 0 0-.6 0Zm1.3.3a.3.3 0 1 1 0-.6.3.3 0 0 1 0 .6Zm.99 0a.3.3 0 1 1 0-.6.3.3 0 0 1 0 .6Z" fill="#000"/>
|
|
130
|
+
</Icon>);
|
|
304
131
|
}
|
|
305
132
|
export function Skis(props) {
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
d
|
|
310
|
-
|
|
311
|
-
}), _jsx("path", {
|
|
312
|
-
fillRule: "evenodd",
|
|
313
|
-
clipRule: "evenodd",
|
|
314
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
315
|
-
fill: "#fff"
|
|
316
|
-
}), _jsx("path", {
|
|
317
|
-
d: "m16.93 15.38-3.56-3.39 3.29-3.14a1.06 1.06 0 0 0 .25-1.18 1.07 1.07 0 0 0-1-.67 1.06 1.06 0 0 0-.77.33L12 10.63l-3.14-3.3a1.06 1.06 0 0 0-1.53-.02 1.07 1.07 0 0 0 .01 1.54l3.3 3.14-3.57 3.39-.07.81.8.81.82-.07L12 13.37l3.38 3.56.81.07.81-.8-.07-.82Zm-1.36-7.64a.48.48 0 0 1 .69-.01.48.48 0 0 1 0 .7L14.8 9.8l-.88-.35 1.64-1.71ZM13.49 9.9l.85.34-1.1 1.05v-.55h-.54l.8-.84ZM7.75 8.42a.48.48 0 0 1-.01-.7.48.48 0 0 1 .35-.13c.13 0 .25.05.34.15l1.64 1.71-.88.35-1.44-1.38Zm1.9 1.83.86-.34 1.08 1.14-.53.54-1.4-1.34Zm-1.3 6.11-.32.03-.42-.42.03-.32 1.95-1.86.35.9-1.6 1.67Zm2.04-2.15-.34-.85.64-.62.56.56-.86.91Zm1.27-1.33-.54-.54 1.02-1h.52v.52l-1 1.02Zm1.95 1.33-1.2-1.27.53-.54 1.01.96-.34.85Zm2.36 2.18-.32-.03-1.6-1.68.36-.89 1.95 1.86.03.32-.42.42Z",
|
|
318
|
-
fill: "#000"
|
|
319
|
-
})]
|
|
320
|
-
}, "27");
|
|
133
|
+
return (<Icon key="27" {...props}>
|
|
134
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
135
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
136
|
+
<path d="m16.93 15.38-3.56-3.39 3.29-3.14a1.06 1.06 0 0 0 .25-1.18 1.07 1.07 0 0 0-1-.67 1.06 1.06 0 0 0-.77.33L12 10.63l-3.14-3.3a1.06 1.06 0 0 0-1.53-.02 1.07 1.07 0 0 0 .01 1.54l3.3 3.14-3.57 3.39-.07.81.8.81.82-.07L12 13.37l3.38 3.56.81.07.81-.8-.07-.82Zm-1.36-7.64a.48.48 0 0 1 .69-.01.48.48 0 0 1 0 .7L14.8 9.8l-.88-.35 1.64-1.71ZM13.49 9.9l.85.34-1.1 1.05v-.55h-.54l.8-.84ZM7.75 8.42a.48.48 0 0 1-.01-.7.48.48 0 0 1 .35-.13c.13 0 .25.05.34.15l1.64 1.71-.88.35-1.44-1.38Zm1.9 1.83.86-.34 1.08 1.14-.53.54-1.4-1.34Zm-1.3 6.11-.32.03-.42-.42.03-.32 1.95-1.86.35.9-1.6 1.67Zm2.04-2.15-.34-.85.64-.62.56.56-.86.91Zm1.27-1.33-.54-.54 1.02-1h.52v.52l-1 1.02Zm1.95 1.33-1.2-1.27.53-.54 1.01.96-.34.85Zm2.36 2.18-.32-.03-1.6-1.68.36-.89 1.95 1.86.03.32-.42.42Z" fill="#000"/>
|
|
137
|
+
</Icon>);
|
|
321
138
|
}
|
|
322
139
|
export function Snowboard(props) {
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
d
|
|
327
|
-
|
|
328
|
-
}), _jsx("path", {
|
|
329
|
-
fillRule: "evenodd",
|
|
330
|
-
clipRule: "evenodd",
|
|
331
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
332
|
-
fill: "#fff"
|
|
333
|
-
}), _jsx("path", {
|
|
334
|
-
d: "M16.39 7.61a2.1 2.1 0 0 0-3.15.22l-.51.68-.08.09-.14.16h-.14a1.2 1.2 0 0 0-1.2 1.2c0 .09 0 .17.02.25l-.98.98a1.21 1.21 0 0 0-1.45 1.32l-.16.14a1.5 1.5 0 0 1-.1.08l-.67.5a2.1 2.1 0 1 0 2.93 2.94l.51-.68.08-.09.48-.54a35.86 35.86 0 0 1 3.03-3.03l.54-.48.1-.08.67-.5a2.1 2.1 0 0 0 .22-3.16Zm-4.46 1.91a.62.62 0 0 1 .88 0l.63.63-.88.88-.63-.62a.62.62 0 0 1 0-.89Zm-2.4 2.41a.62.62 0 0 1 .88 0l.62.63-.88.88-.63-.63a.62.62 0 0 1 0-.88Zm1.27 3.21-.5.67a1.5 1.5 0 1 1-2.11-2.1l.67-.51.13-.1v-.01l.12.13 1.8 1.8-.1.12Zm.45-.6-.69-.69.88-.88.67.67-.86.9Zm1.29-1.3-1.72-1.72a1.3 1.3 0 0 0-.06-.06l.7-.7.06.06 1.71 1.72-.7.7Zm1.1-1.13-.67-.66.88-.89.69.7-.9.85ZM16.4 9.2a1.5 1.5 0 0 1-.6 1.1l-.67.5a2.1 2.1 0 0 0-.12.1l-1.8-1.79a1.23 1.23 0 0 0-.13-.12l.1-.13.51-.67a1.5 1.5 0 0 1 2.71 1Z",
|
|
335
|
-
fill: "#000"
|
|
336
|
-
})]
|
|
337
|
-
}, "28");
|
|
140
|
+
return (<Icon key="28" {...props}>
|
|
141
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
142
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
143
|
+
<path d="M16.39 7.61a2.1 2.1 0 0 0-3.15.22l-.51.68-.08.09-.14.16h-.14a1.2 1.2 0 0 0-1.2 1.2c0 .09 0 .17.02.25l-.98.98a1.21 1.21 0 0 0-1.45 1.32l-.16.14a1.5 1.5 0 0 1-.1.08l-.67.5a2.1 2.1 0 1 0 2.93 2.94l.51-.68.08-.09.48-.54a35.86 35.86 0 0 1 3.03-3.03l.54-.48.1-.08.67-.5a2.1 2.1 0 0 0 .22-3.16Zm-4.46 1.91a.62.62 0 0 1 .88 0l.63.63-.88.88-.63-.62a.62.62 0 0 1 0-.89Zm-2.4 2.41a.62.62 0 0 1 .88 0l.62.63-.88.88-.63-.63a.62.62 0 0 1 0-.88Zm1.27 3.21-.5.67a1.5 1.5 0 1 1-2.11-2.1l.67-.51.13-.1v-.01l.12.13 1.8 1.8-.1.12Zm.45-.6-.69-.69.88-.88.67.67-.86.9Zm1.29-1.3-1.72-1.72a1.3 1.3 0 0 0-.06-.06l.7-.7.06.06 1.71 1.72-.7.7Zm1.1-1.13-.67-.66.88-.89.69.7-.9.85ZM16.4 9.2a1.5 1.5 0 0 1-.6 1.1l-.67.5a2.1 2.1 0 0 0-.12.1l-1.8-1.79a1.23 1.23 0 0 0-.13-.12l.1-.13.51-.67a1.5 1.5 0 0 1 2.71 1Z" fill="#000"/>
|
|
144
|
+
</Icon>);
|
|
338
145
|
}
|
|
339
146
|
export function Parking(props) {
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
d
|
|
344
|
-
|
|
345
|
-
}), _jsx("path", {
|
|
346
|
-
fillRule: "evenodd",
|
|
347
|
-
clipRule: "evenodd",
|
|
348
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
349
|
-
fill: "#fff"
|
|
350
|
-
}), _jsx("path", {
|
|
351
|
-
d: "M15.83 7c.64 0 1.17.53 1.17 1.17v7.66c0 .64-.53 1.17-1.17 1.17H8.17C7.53 17 7 16.47 7 15.83V8.17C7 7.53 7.53 7 8.17 7h7.66Zm0 .78H8.17a.4.4 0 0 0-.39.4v7.65c0 .21.18.39.4.39h7.65a.4.4 0 0 0 .39-.4V8.18a.4.4 0 0 0-.4-.39Zm-3.24 1.17a1.96 1.96 0 0 1 0 3.9h-1.96v2.2h-.78v-6.1h2.74Zm0 .78h-1.96v2.35h1.96a1.17 1.17 0 0 0 0-2.35Z",
|
|
352
|
-
fill: "#000"
|
|
353
|
-
})]
|
|
354
|
-
}, "29");
|
|
147
|
+
return (<Icon key="29" {...props}>
|
|
148
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
149
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
150
|
+
<path d="M15.83 7c.64 0 1.17.53 1.17 1.17v7.66c0 .64-.53 1.17-1.17 1.17H8.17C7.53 17 7 16.47 7 15.83V8.17C7 7.53 7.53 7 8.17 7h7.66Zm0 .78H8.17a.4.4 0 0 0-.39.4v7.65c0 .21.18.39.4.39h7.65a.4.4 0 0 0 .39-.4V8.18a.4.4 0 0 0-.4-.39Zm-3.24 1.17a1.96 1.96 0 0 1 0 3.9h-1.96v2.2h-.78v-6.1h2.74Zm0 .78h-1.96v2.35h1.96a1.17 1.17 0 0 0 0-2.35Z" fill="#000"/>
|
|
151
|
+
</Icon>);
|
|
355
152
|
}
|
|
356
153
|
export function Bus(props) {
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
366
|
-
fill: "#fff"
|
|
367
|
-
}), _jsx("path", {
|
|
368
|
-
fillRule: "evenodd",
|
|
369
|
-
clipRule: "evenodd",
|
|
370
|
-
d: "M7 9.84c0-.98.79-1.76 1.76-1.76h6.48c.97 0 1.76.78 1.76 1.76v2.74c0 .75-.47 1.39-1.14 1.64l.01.13a1.57 1.57 0 0 1-3.14 0h-1.46a1.57 1.57 0 1 1-3.13-.13A1.76 1.76 0 0 1 7 12.58V9.84Zm1.76-1.08c-.6 0-1.07.48-1.07 1.08v1.11h2.08V8.76h-1Zm1.7 0v2.2h3.35v-2.2h-3.35Zm4.04 0v2.2h1.81V9.83c0-.6-.48-1.08-1.07-1.08h-.74Zm-6.81 2.88v.94c0 .44.27.82.66.98a1.56 1.56 0 0 1 2.76.1h1.78a1.57 1.57 0 0 1 2.76-.1c.39-.16.66-.54.66-.98v-.94H7.7Zm2.01 1.83a.88.88 0 0 0-.76.45.87.87 0 0 0-.06.13l-.02.04a.86.86 0 0 0-.04.26.88.88 0 1 0 1.75-.15.97.97 0 0 0-.03-.1l-.01-.05-.01-.03a.88.88 0 0 0-.82-.55Zm4.6 0a.88.88 0 0 0-.77.47l-.05.08v.04l-.02.04a.82.82 0 0 0-.04.25.88.88 0 1 0 1.75-.15.93.93 0 0 0-.03-.11l-.01-.03a.3.3 0 0 0-.01-.04.88.88 0 0 0-.82-.55Z",
|
|
371
|
-
fill: "#000"
|
|
372
|
-
})]
|
|
373
|
-
}, "30");
|
|
374
|
-
}
|
|
154
|
+
return (<Icon key="30" {...props}>
|
|
155
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
156
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
157
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M7 9.84c0-.98.79-1.76 1.76-1.76h6.48c.97 0 1.76.78 1.76 1.76v2.74c0 .75-.47 1.39-1.14 1.64l.01.13a1.57 1.57 0 0 1-3.14 0h-1.46a1.57 1.57 0 1 1-3.13-.13A1.76 1.76 0 0 1 7 12.58V9.84Zm1.76-1.08c-.6 0-1.07.48-1.07 1.08v1.11h2.08V8.76h-1Zm1.7 0v2.2h3.35v-2.2h-3.35Zm4.04 0v2.2h1.81V9.83c0-.6-.48-1.08-1.07-1.08h-.74Zm-6.81 2.88v.94c0 .44.27.82.66.98a1.56 1.56 0 0 1 2.76.1h1.78a1.57 1.57 0 0 1 2.76-.1c.39-.16.66-.54.66-.98v-.94H7.7Zm2.01 1.83a.88.88 0 0 0-.76.45.87.87 0 0 0-.06.13l-.02.04a.86.86 0 0 0-.04.26.88.88 0 1 0 1.75-.15.97.97 0 0 0-.03-.1l-.01-.05-.01-.03a.88.88 0 0 0-.82-.55Zm4.6 0a.88.88 0 0 0-.77.47l-.05.08v.04l-.02.04a.82.82 0 0 0-.04.25.88.88 0 1 0 1.75-.15.93.93 0 0 0-.03-.11l-.01-.03a.3.3 0 0 0-.01-.04.88.88 0 0 0-.82-.55Z" fill="#000"/>
|
|
158
|
+
</Icon>);
|
|
159
|
+
}
|
|
160
|
+
// DIVERS FIN
|
|
161
|
+
// DIRECTIONS DÉBUT
|
|
375
162
|
export function EastDirection(props) {
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
d
|
|
380
|
-
|
|
381
|
-
}), _jsx("path", {
|
|
382
|
-
fillRule: "evenodd",
|
|
383
|
-
clipRule: "evenodd",
|
|
384
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
385
|
-
fill: "#fff"
|
|
386
|
-
}), _jsx("path", {
|
|
387
|
-
d: "m15.92 12.27-3.16 3.27a.36.36 0 0 1-.26.13.35.35 0 0 1-.27-.13c-.13-.18-.13-.4 0-.54l2.54-2.64H8.36A.35.35 0 0 1 8 12c0-.23.18-.36.36-.36h6.4L12.24 9c-.13-.13-.13-.36 0-.54a.36.36 0 0 1 .27-.13.35.35 0 0 1 .26.13l3.12 3.27A.36.36 0 0 1 16 12a.37.37 0 0 1-.12.27h.04Z",
|
|
388
|
-
fill: "#fff"
|
|
389
|
-
})]
|
|
390
|
-
}, "31");
|
|
163
|
+
return (<Icon key="31" {...props}>
|
|
164
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
165
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
166
|
+
<path d="m15.92 12.27-3.16 3.27a.36.36 0 0 1-.26.13.35.35 0 0 1-.27-.13c-.13-.18-.13-.4 0-.54l2.54-2.64H8.36A.35.35 0 0 1 8 12c0-.23.18-.36.36-.36h6.4L12.24 9c-.13-.13-.13-.36 0-.54a.36.36 0 0 1 .27-.13.35.35 0 0 1 .26.13l3.12 3.27A.36.36 0 0 1 16 12a.37.37 0 0 1-.12.27h.04Z" fill="#fff"/>
|
|
167
|
+
</Icon>);
|
|
391
168
|
}
|
|
392
169
|
export function WestDirection(props) {
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
d
|
|
397
|
-
|
|
398
|
-
}), _jsx("path", {
|
|
399
|
-
fillRule: "evenodd",
|
|
400
|
-
clipRule: "evenodd",
|
|
401
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
402
|
-
fill: "#fff"
|
|
403
|
-
}), _jsx("path", {
|
|
404
|
-
d: "m8.08 12.27 3.16 3.27a.36.36 0 0 0 .26.13.35.35 0 0 0 .27-.13c.13-.18.13-.4 0-.54l-2.54-2.64h6.41c.18 0 .36-.13.36-.36a.35.35 0 0 0-.36-.36h-6.4L11.76 9c.13-.13.13-.36 0-.54a.36.36 0 0 0-.27-.13.35.35 0 0 0-.26.13l-3.12 3.27A.36.36 0 0 0 8 12a.37.37 0 0 0 .12.27h-.04Z",
|
|
405
|
-
fill: "#fff"
|
|
406
|
-
})]
|
|
407
|
-
}, "32");
|
|
170
|
+
return (<Icon key="32" {...props}>
|
|
171
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
172
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
173
|
+
<path d="m8.08 12.27 3.16 3.27a.36.36 0 0 0 .26.13.35.35 0 0 0 .27-.13c.13-.18.13-.4 0-.54l-2.54-2.64h6.41c.18 0 .36-.13.36-.36a.35.35 0 0 0-.36-.36h-6.4L11.76 9c.13-.13.13-.36 0-.54a.36.36 0 0 0-.27-.13.35.35 0 0 0-.26.13l-3.12 3.27A.36.36 0 0 0 8 12a.37.37 0 0 0 .12.27h-.04Z" fill="#fff"/>
|
|
174
|
+
</Icon>);
|
|
408
175
|
}
|
|
409
176
|
export function NorthDirection(props) {
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
d
|
|
414
|
-
|
|
415
|
-
}), _jsx("path", {
|
|
416
|
-
fillRule: "evenodd",
|
|
417
|
-
clipRule: "evenodd",
|
|
418
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
419
|
-
fill: "#fff"
|
|
420
|
-
}), _jsx("path", {
|
|
421
|
-
d: "m11.73 8.08-3.27 3.16a.36.36 0 0 0-.13.26.35.35 0 0 0 .13.27c.18.13.4.13.54 0l2.64-2.54v6.41c0 .18.13.36.36.36.23 0 .36-.18.36-.36v-6.4L15 11.76c.13.13.36.13.54 0a.36.36 0 0 0 .13-.27.35.35 0 0 0-.13-.26l-3.27-3.12A.36.36 0 0 0 12 8a.37.37 0 0 0-.27.12v-.04Z",
|
|
422
|
-
fill: "#fff"
|
|
423
|
-
})]
|
|
424
|
-
}, "33");
|
|
177
|
+
return (<Icon key="33" {...props}>
|
|
178
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
179
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
180
|
+
<path d="m11.73 8.08-3.27 3.16a.36.36 0 0 0-.13.26.35.35 0 0 0 .13.27c.18.13.4.13.54 0l2.64-2.54v6.41c0 .18.13.36.36.36.23 0 .36-.18.36-.36v-6.4L15 11.76c.13.13.36.13.54 0a.36.36 0 0 0 .13-.27.35.35 0 0 0-.13-.26l-3.27-3.12A.36.36 0 0 0 12 8a.37.37 0 0 0-.27.12v-.04Z" fill="#fff"/>
|
|
181
|
+
</Icon>);
|
|
425
182
|
}
|
|
426
183
|
export function SouthDirection(props) {
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
d
|
|
431
|
-
|
|
432
|
-
}), _jsx("path", {
|
|
433
|
-
fillRule: "evenodd",
|
|
434
|
-
clipRule: "evenodd",
|
|
435
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
436
|
-
fill: "#fff"
|
|
437
|
-
}), _jsx("path", {
|
|
438
|
-
d: "m11.73 15.92-3.27-3.16a.36.36 0 0 1-.13-.26.35.35 0 0 1 .13-.27c.18-.13.4-.13.54 0l2.64 2.54V8.36c0-.18.13-.36.36-.36.23 0 .36.18.36.36v6.4L15 12.24c.13-.13.36-.13.54 0a.36.36 0 0 1 .13.27.35.35 0 0 1-.13.26l-3.27 3.12A.36.36 0 0 1 12 16a.37.37 0 0 1-.27-.12v.04Z",
|
|
439
|
-
fill: "#fff"
|
|
440
|
-
})]
|
|
441
|
-
}, "34");
|
|
184
|
+
return (<Icon key="34" {...props}>
|
|
185
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
186
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
187
|
+
<path d="m11.73 15.92-3.27-3.16a.36.36 0 0 1-.13-.26.35.35 0 0 1 .13-.27c.18-.13.4-.13.54 0l2.64 2.54V8.36c0-.18.13-.36.36-.36.23 0 .36.18.36.36v6.4L15 12.24c.13-.13.36-.13.54 0a.36.36 0 0 1 .13.27.35.35 0 0 1-.13.26l-3.27 3.12A.36.36 0 0 1 12 16a.37.37 0 0 1-.27-.12v.04Z" fill="#fff"/>
|
|
188
|
+
</Icon>);
|
|
442
189
|
}
|
|
443
190
|
export function NorthEastDirection(props) {
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
d
|
|
448
|
-
|
|
449
|
-
}), _jsx("path", {
|
|
450
|
-
fillRule: "evenodd",
|
|
451
|
-
clipRule: "evenodd",
|
|
452
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
453
|
-
fill: "#fff"
|
|
454
|
-
}), _jsx("path", {
|
|
455
|
-
d: "m14.58 8.69-4.55-.08a.36.36 0 0 0-.27.1.35.35 0 0 0-.1.28c.03.22.2.38.38.38l3.66.07-4.53 4.54a.35.35 0 0 0 0 .5c.16.17.38.14.51.01l4.53-4.53.07 3.66c0 .19.16.35.39.38a.36.36 0 0 0 .27-.1.35.35 0 0 0 .1-.28l-.1-4.51a.36.36 0 0 0-.11-.28.37.37 0 0 0-.28-.1l.03-.04Z",
|
|
456
|
-
fill: "#fff"
|
|
457
|
-
})]
|
|
458
|
-
}, "35");
|
|
191
|
+
return (<Icon key="35" {...props}>
|
|
192
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
193
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
194
|
+
<path d="m14.58 8.69-4.55-.08a.36.36 0 0 0-.27.1.35.35 0 0 0-.1.28c.03.22.2.38.38.38l3.66.07-4.53 4.54a.35.35 0 0 0 0 .5c.16.17.38.14.51.01l4.53-4.53.07 3.66c0 .19.16.35.39.38a.36.36 0 0 0 .27-.1.35.35 0 0 0 .1-.28l-.1-4.51a.36.36 0 0 0-.11-.28.37.37 0 0 0-.28-.1l.03-.04Z" fill="#fff"/>
|
|
195
|
+
</Icon>);
|
|
459
196
|
}
|
|
460
197
|
export function NorthWestDirection(props) {
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
d
|
|
465
|
-
|
|
466
|
-
}), _jsx("path", {
|
|
467
|
-
fillRule: "evenodd",
|
|
468
|
-
clipRule: "evenodd",
|
|
469
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
470
|
-
fill: "#fff"
|
|
471
|
-
}), _jsx("path", {
|
|
472
|
-
d: "m8.69 9.42-.08 4.55a.36.36 0 0 0 .1.27.35.35 0 0 0 .28.1c.22-.03.38-.2.38-.38l.07-3.66 4.54 4.53c.12.13.34.16.5 0a.35.35 0 0 0 .01-.51L9.96 9.79l3.66-.07c.19 0 .35-.16.38-.39a.36.36 0 0 0-.1-.27.35.35 0 0 0-.28-.1l-4.51.1a.36.36 0 0 0-.28.11.37.37 0 0 0-.1.28l-.04-.03Z",
|
|
473
|
-
fill: "#fff"
|
|
474
|
-
})]
|
|
475
|
-
}, "36");
|
|
198
|
+
return (<Icon key="36" {...props}>
|
|
199
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
200
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
201
|
+
<path d="m8.69 9.42-.08 4.55a.36.36 0 0 0 .1.27.35.35 0 0 0 .28.1c.22-.03.38-.2.38-.38l.07-3.66 4.54 4.53c.12.13.34.16.5 0a.35.35 0 0 0 .01-.51L9.96 9.79l3.66-.07c.19 0 .35-.16.38-.39a.36.36 0 0 0-.1-.27.35.35 0 0 0-.28-.1l-4.51.1a.36.36 0 0 0-.28.11.37.37 0 0 0-.1.28l-.04-.03Z" fill="#fff"/>
|
|
202
|
+
</Icon>);
|
|
476
203
|
}
|
|
477
204
|
export function SouthWestDirection(props) {
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
d
|
|
482
|
-
|
|
483
|
-
}), _jsx("path", {
|
|
484
|
-
fillRule: "evenodd",
|
|
485
|
-
clipRule: "evenodd",
|
|
486
|
-
d: "M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z",
|
|
487
|
-
fill: "#fff"
|
|
488
|
-
}), _jsx("path", {
|
|
489
|
-
d: "m8.92 13.9 4.47.87a.36.36 0 0 0 .29-.05.35.35 0 0 0 .15-.26c0-.22-.13-.4-.32-.44l-3.59-.7 5.26-3.68c.14-.1.2-.32.08-.5a.35.35 0 0 0-.5-.1L9.5 12.72l.56-3.62c.04-.18-.1-.37-.3-.44a.36.36 0 0 0-.3.05.35.35 0 0 0-.15.25l-.67 4.47a.36.36 0 0 0 .06.3.37.37 0 0 0 .25.15l-.04.02Z",
|
|
490
|
-
fill: "#fff"
|
|
491
|
-
})]
|
|
492
|
-
}, "37");
|
|
205
|
+
return (<Icon key="37" {...props}>
|
|
206
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
207
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
208
|
+
<path d="m8.92 13.9 4.47.87a.36.36 0 0 0 .29-.05.35.35 0 0 0 .15-.26c0-.22-.13-.4-.32-.44l-3.59-.7 5.26-3.68c.14-.1.2-.32.08-.5a.35.35 0 0 0-.5-.1L9.5 12.72l.56-3.62c.04-.18-.1-.37-.3-.44a.36.36 0 0 0-.3.05.35.35 0 0 0-.15.25l-.67 4.47a.36.36 0 0 0 .06.3.37.37 0 0 0 .25.15l-.04.02Z" fill="#fff"/>
|
|
209
|
+
</Icon>);
|
|
493
210
|
}
|
|
494
211
|
export function SouthEastDirection(props) {
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
d
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
fill: "#fff"
|
|
508
|
-
})]
|
|
509
|
-
}, "38");
|
|
212
|
+
return (<Icon key="38" {...props}>
|
|
213
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
214
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z" fill="#fff"/>
|
|
215
|
+
<path d="m14.8 14.01-.71-4.5a.36.36 0 0 0-.15-.25.35.35 0 0 0-.3-.05c-.2.07-.33.26-.3.45l.56 3.61L8.65 9.6a.35.35 0 0 0-.5.1c-.13.18-.06.4.09.5l5.25 3.68-3.6.7c-.18.04-.31.22-.3.45a.36.36 0 0 0 .14.25.35.35 0 0 0 .3.05l4.42-.89a.36.36 0 0 0 .26-.15.37.37 0 0 0 .05-.3l.04.03Z" fill="#fff"/>
|
|
216
|
+
</Icon>);
|
|
217
|
+
}
|
|
218
|
+
// DIRECTIONS FIN
|
|
219
|
+
function Icon(_a) {
|
|
220
|
+
var { width = 24, height = 24 } = _a, props = __rest(_a, ["width", "height"]);
|
|
221
|
+
return (<svg viewBox={`0 0 ${width} ${height}`} width={width} height={height} {...props}>
|
|
222
|
+
{props.children}
|
|
223
|
+
</svg>);
|
|
510
224
|
}
|
|
511
|
-
function Icon({
|
|
512
|
-
width = 24,
|
|
513
|
-
height = 24,
|
|
514
|
-
...props
|
|
515
|
-
}) {
|
|
516
|
-
return _jsx("svg", {
|
|
517
|
-
viewBox: `0 0 ${width} ${height}`,
|
|
518
|
-
width: width,
|
|
519
|
-
height: height,
|
|
520
|
-
...props,
|
|
521
|
-
children: props.children
|
|
522
|
-
});
|
|
523
|
-
}
|