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,1186 +1,470 @@
|
|
|
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
|
-
fill: "#CF0900"
|
|
10
|
-
}), _jsx("path", {
|
|
11
|
-
fillRule: "evenodd",
|
|
12
|
-
clipRule: "evenodd",
|
|
13
|
-
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",
|
|
14
|
-
fill: "#fff"
|
|
15
|
-
})]
|
|
16
|
-
}, "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" fill="#CF0900"/>
|
|
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>);
|
|
17
18
|
}
|
|
18
19
|
export function Location2(props) {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
fill: "#00537B"
|
|
24
|
-
}), _jsx("path", {
|
|
25
|
-
fillRule: "evenodd",
|
|
26
|
-
clipRule: "evenodd",
|
|
27
|
-
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",
|
|
28
|
-
fill: "#fff"
|
|
29
|
-
})]
|
|
30
|
-
}, "2");
|
|
20
|
+
return (<Icon key="2" {...props}>
|
|
21
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
22
|
+
<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"/>
|
|
23
|
+
</Icon>);
|
|
31
24
|
}
|
|
32
25
|
export function Location3(props) {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
fill: "#383838"
|
|
38
|
-
}), _jsx("path", {
|
|
39
|
-
fillRule: "evenodd",
|
|
40
|
-
clipRule: "evenodd",
|
|
41
|
-
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",
|
|
42
|
-
fill: "#fff"
|
|
43
|
-
})]
|
|
44
|
-
}, "3");
|
|
26
|
+
return (<Icon key="3" {...props}>
|
|
27
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
28
|
+
<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"/>
|
|
29
|
+
</Icon>);
|
|
45
30
|
}
|
|
46
31
|
export function Location4(props) {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
fill: "#E3E2E3"
|
|
52
|
-
}), _jsx("path", {
|
|
53
|
-
fillRule: "evenodd",
|
|
54
|
-
clipRule: "evenodd",
|
|
55
|
-
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",
|
|
56
|
-
fill: "#fff"
|
|
57
|
-
})]
|
|
58
|
-
}, "4");
|
|
32
|
+
return (<Icon key="4" {...props}>
|
|
33
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
34
|
+
<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"/>
|
|
35
|
+
</Icon>);
|
|
59
36
|
}
|
|
37
|
+
// ESF DÉBUT
|
|
60
38
|
export function ESFOffice(props) {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
}), _jsx("path", {
|
|
67
|
-
fillRule: "evenodd",
|
|
68
|
-
clipRule: "evenodd",
|
|
69
|
-
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",
|
|
70
|
-
fill: "#fff"
|
|
71
|
-
}), _jsx("path", {
|
|
72
|
-
fillRule: "evenodd",
|
|
73
|
-
clipRule: "evenodd",
|
|
74
|
-
d: "M6.89 11.73h2.53c.07 0 .12-.03.14-.08.41-1.02-.4-1.65-1.71-1.65-1.21 0-2.4.6-2.77 1.55-.37.99.55 1.45 1.74 1.45.83 0 1.9-.29 2.44-.9a.06.06 0 0 0 .02-.05c0-.03-.03-.06-.07-.06H7.62a.14.14 0 0 0-.1.05.58.58 0 0 1-.43.19c-.36 0-.35-.23-.27-.44v-.01c0-.03.04-.05.07-.05Zm2.38.98c0 .03.02.05.05.06.61.14 1.4.23 2.1.23 1.3 0 2.7-.33 2.93-1.01.16-.48-.42-.72-1.31-.81l-.48-.06h-.05c-.16-.02-.37-.04-.34-.13.04-.12.33-.16.52-.16.43 0 .8.08 1.1.19h.02l.04.01c.04 0 .1-.03.1-.03v-.01l.68-.6a.06.06 0 0 0 .02-.04.06.06 0 0 0-.05-.06 6.12 6.12 0 0 0-1.7-.21c-1.3 0-2.73.37-2.95 1.04-.15.45.49.68 1.31.76l.43.03h.05c.19.03.42.05.38.16-.04.13-.61.17-.61.17-.5 0-.93-.12-1.28-.26h-.02a.14.14 0 0 0-.14.02l-.77.66a.06.06 0 0 0-.03.05ZM16.7 12c.01-.03.04-.05.07-.05h1.37c.06 0 .1-.03.12-.08l.18-.55v-.02a.07.07 0 0 0-.06-.07h-1.33a.07.07 0 0 1-.07-.06v-.02l.05-.16c.01-.03.04-.05.07-.05h1.58c.06 0 .1-.03.13-.08l.2-.62v-.03a.07.07 0 0 0-.07-.06h-3.62a.13.13 0 0 0-.13.1l-.84 2.59v.02c0 .04.02.06.06.06h1.9c.06 0 .1-.03.12-.09l.27-.83Zm-8.85-.85c.03-.18-.08-.33-.3-.33a.54.54 0 0 0-.47.28l-.01.03c0 .04.03.07.06.07h.66c.03 0 .06-.02.06-.05Z",
|
|
75
|
-
fill: "#fff"
|
|
76
|
-
})]
|
|
77
|
-
}, "5");
|
|
39
|
+
return (<Icon key="5" {...props}>
|
|
40
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#CF0900"/>
|
|
41
|
+
<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"/>
|
|
42
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M6.89 11.73h2.53c.07 0 .12-.03.14-.08.41-1.02-.4-1.65-1.71-1.65-1.21 0-2.4.6-2.77 1.55-.37.99.55 1.45 1.74 1.45.83 0 1.9-.29 2.44-.9a.06.06 0 0 0 .02-.05c0-.03-.03-.06-.07-.06H7.62a.14.14 0 0 0-.1.05.58.58 0 0 1-.43.19c-.36 0-.35-.23-.27-.44v-.01c0-.03.04-.05.07-.05Zm2.38.98c0 .03.02.05.05.06.61.14 1.4.23 2.1.23 1.3 0 2.7-.33 2.93-1.01.16-.48-.42-.72-1.31-.81l-.48-.06h-.05c-.16-.02-.37-.04-.34-.13.04-.12.33-.16.52-.16.43 0 .8.08 1.1.19h.02l.04.01c.04 0 .1-.03.1-.03v-.01l.68-.6a.06.06 0 0 0 .02-.04.06.06 0 0 0-.05-.06 6.12 6.12 0 0 0-1.7-.21c-1.3 0-2.73.37-2.95 1.04-.15.45.49.68 1.31.76l.43.03h.05c.19.03.42.05.38.16-.04.13-.61.17-.61.17-.5 0-.93-.12-1.28-.26h-.02a.14.14 0 0 0-.14.02l-.77.66a.06.06 0 0 0-.03.05ZM16.7 12c.01-.03.04-.05.07-.05h1.37c.06 0 .1-.03.12-.08l.18-.55v-.02a.07.07 0 0 0-.06-.07h-1.33a.07.07 0 0 1-.07-.06v-.02l.05-.16c.01-.03.04-.05.07-.05h1.58c.06 0 .1-.03.13-.08l.2-.62v-.03a.07.07 0 0 0-.07-.06h-3.62a.13.13 0 0 0-.13.1l-.84 2.59v.02c0 .04.02.06.06.06h1.9c.06 0 .1-.03.12-.09l.27-.83Zm-8.85-.85c.03-.18-.08-.33-.3-.33a.54.54 0 0 0-.47.28l-.01.03c0 .04.03.07.06.07h.66c.03 0 .06-.02.06-.05Z" fill="#fff"/>
|
|
43
|
+
</Icon>);
|
|
78
44
|
}
|
|
79
45
|
export function Bear(props) {
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
clipRule: "evenodd",
|
|
88
|
-
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",
|
|
89
|
-
fill: "#fff"
|
|
90
|
-
}), _jsx("path", {
|
|
91
|
-
fillRule: "evenodd",
|
|
92
|
-
clipRule: "evenodd",
|
|
93
|
-
d: "M10.56 9.99c0-.19.16-.34.34-.34.2 0 .34.15.34.34 0 .18-.15.33-.34.33a.34.34 0 0 1-.34-.33Zm2.2 0c0-.19.15-.34.34-.34.18 0 .34.15.34.34 0 .18-.16.33-.34.33a.34.34 0 0 1-.34-.33Z",
|
|
94
|
-
fill: "#fff"
|
|
95
|
-
}), _jsx("path", {
|
|
96
|
-
fillRule: "evenodd",
|
|
97
|
-
clipRule: "evenodd",
|
|
98
|
-
d: "M8.67 8.27c0-.72.6-1.31 1.34-1.31.39 0 .75.16 1 .45a2.85 2.85 0 0 1 1.98 0c.25-.29.61-.45 1-.45.74 0 1.34.59 1.34 1.31 0 .43-.23.84-.58 1.08a2.73 2.73 0 0 1-.24 1.94h1.2c.73 0 1.33.6 1.33 1.32 0 .72-.6 1.3-1.33 1.3h-.58v.61c.25.27.4.63.4 1.02 0 .83-.7 1.5-1.54 1.5h-3.98c-.85 0-1.54-.67-1.54-1.5 0-.4.15-.75.4-1.02v-.6H8.3c-.73 0-1.33-.6-1.33-1.31 0-.73.6-1.32 1.33-1.32h1.2a2.72 2.72 0 0 1-.24-1.94 1.31 1.31 0 0 1-.58-1.08Zm1.34-.64a.65.65 0 0 0-.66.64c0 .26.17.5.43.6.17.06.26.25.2.43-.09.22-.13.46-.13.7 0 1.07.8 1.95 1.85 2.1h.6a2.12 2.12 0 0 0 1.72-2.8.33.33 0 0 1 .2-.43c.26-.1.43-.34.43-.6 0-.35-.3-.64-.66-.64a.66.66 0 0 0-.58.35.34.34 0 0 1-.45.14 2.16 2.16 0 0 0-1.92 0 .34.34 0 0 1-.45-.14.66.66 0 0 0-.58-.35Zm-1.72 4.33a.65.65 0 0 0-.65.65c0 .35.3.64.65.64h.92c.19 0 .34.15.34.33v.52a1.52 1.52 0 0 1 2 1.44c0 .3-.1.6-.27.83h1.44a1.48 1.48 0 0 1-.26-.83 1.52 1.52 0 0 1 1.99-1.44v-.52c0-.18.15-.33.34-.33h.92c.36 0 .65-.3.65-.64 0-.36-.3-.65-.65-.65H14a2.85 2.85 0 0 1-4.02 0H8.3Zm1.72 2.74a.85.85 0 0 0-.86.84c0 .46.39.83.86.83s.85-.37.85-.83a.85.85 0 0 0-.85-.84Zm3.98 0a.85.85 0 0 0-.85.84c0 .46.38.83.85.83s.86-.37.86-.83a.85.85 0 0 0-.86-.84Z",
|
|
99
|
-
fill: "#fff"
|
|
100
|
-
}), _jsx("path", {
|
|
101
|
-
d: "M11.3 10.95a.34.34 0 0 1 .45-.15l.25.12.25-.12a.34.34 0 0 1 .45.15c.09.17.02.37-.15.45l-.21.1v.6h-.68v-.6l-.21-.1a.33.33 0 0 1-.15-.45Z",
|
|
102
|
-
fill: "#fff"
|
|
103
|
-
})]
|
|
104
|
-
}, "6");
|
|
46
|
+
return (<Icon key="6" {...props}>
|
|
47
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#CF0900"/>
|
|
48
|
+
<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"/>
|
|
49
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M10.56 9.99c0-.19.16-.34.34-.34.2 0 .34.15.34.34 0 .18-.15.33-.34.33a.34.34 0 0 1-.34-.33Zm2.2 0c0-.19.15-.34.34-.34.18 0 .34.15.34.34 0 .18-.16.33-.34.33a.34.34 0 0 1-.34-.33Z" fill="#fff"/>
|
|
50
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M8.67 8.27c0-.72.6-1.31 1.34-1.31.39 0 .75.16 1 .45a2.85 2.85 0 0 1 1.98 0c.25-.29.61-.45 1-.45.74 0 1.34.59 1.34 1.31 0 .43-.23.84-.58 1.08a2.73 2.73 0 0 1-.24 1.94h1.2c.73 0 1.33.6 1.33 1.32 0 .72-.6 1.3-1.33 1.3h-.58v.61c.25.27.4.63.4 1.02 0 .83-.7 1.5-1.54 1.5h-3.98c-.85 0-1.54-.67-1.54-1.5 0-.4.15-.75.4-1.02v-.6H8.3c-.73 0-1.33-.6-1.33-1.31 0-.73.6-1.32 1.33-1.32h1.2a2.72 2.72 0 0 1-.24-1.94 1.31 1.31 0 0 1-.58-1.08Zm1.34-.64a.65.65 0 0 0-.66.64c0 .26.17.5.43.6.17.06.26.25.2.43-.09.22-.13.46-.13.7 0 1.07.8 1.95 1.85 2.1h.6a2.12 2.12 0 0 0 1.72-2.8.33.33 0 0 1 .2-.43c.26-.1.43-.34.43-.6 0-.35-.3-.64-.66-.64a.66.66 0 0 0-.58.35.34.34 0 0 1-.45.14 2.16 2.16 0 0 0-1.92 0 .34.34 0 0 1-.45-.14.66.66 0 0 0-.58-.35Zm-1.72 4.33a.65.65 0 0 0-.65.65c0 .35.3.64.65.64h.92c.19 0 .34.15.34.33v.52a1.52 1.52 0 0 1 2 1.44c0 .3-.1.6-.27.83h1.44a1.48 1.48 0 0 1-.26-.83 1.52 1.52 0 0 1 1.99-1.44v-.52c0-.18.15-.33.34-.33h.92c.36 0 .65-.3.65-.64 0-.36-.3-.65-.65-.65H14a2.85 2.85 0 0 1-4.02 0H8.3Zm1.72 2.74a.85.85 0 0 0-.86.84c0 .46.39.83.86.83s.85-.37.85-.83a.85.85 0 0 0-.85-.84Zm3.98 0a.85.85 0 0 0-.85.84c0 .46.38.83.85.83s.86-.37.86-.83a.85.85 0 0 0-.86-.84Z" fill="#fff"/>
|
|
51
|
+
<path d="M11.3 10.95a.34.34 0 0 1 .45-.15l.25.12.25-.12a.34.34 0 0 1 .45.15c.09.17.02.37-.15.45l-.21.1v.6h-.68v-.6l-.21-.1a.33.33 0 0 1-.15-.45Z" fill="#fff"/>
|
|
52
|
+
</Icon>);
|
|
105
53
|
}
|
|
106
54
|
export function MeetingPoint(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: "M11.97 7.03a3.97 3.97 0 0 0-.5 7.9l.03.01v1.56a.47.47 0 0 0 .94 0v-1.56h.03a3.97 3.97 0 0 0-.5-7.9ZM10.81 8.2a3.03 3.03 0 1 1 2.32 5.6 3.03 3.03 0 0 1-2.32-5.6Z",
|
|
121
|
-
fill: "#fff"
|
|
122
|
-
}), _jsx("path", {
|
|
123
|
-
d: "M14.05 10.96a2.08 2.08 0 1 1-4.17 0 2.08 2.08 0 0 1 4.17 0Z",
|
|
124
|
-
fill: "#fff"
|
|
125
|
-
})]
|
|
126
|
-
}, "7");
|
|
55
|
+
return (<Icon key="7" {...props}>
|
|
56
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#CF0900"/>
|
|
57
|
+
<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"/>
|
|
58
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M11.97 7.03a3.97 3.97 0 0 0-.5 7.9l.03.01v1.56a.47.47 0 0 0 .94 0v-1.56h.03a3.97 3.97 0 0 0-.5-7.9ZM10.81 8.2a3.03 3.03 0 1 1 2.32 5.6 3.03 3.03 0 0 1-2.32-5.6Z" fill="#fff"/>
|
|
59
|
+
<path d="M14.05 10.96a2.08 2.08 0 1 1-4.17 0 2.08 2.08 0 0 1 4.17 0Z" fill="#fff"/>
|
|
60
|
+
</Icon>);
|
|
127
61
|
}
|
|
128
62
|
export function SnowMan(props) {
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
d
|
|
133
|
-
|
|
134
|
-
}), _jsx("path", {
|
|
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: "M12.9 7c.15 0 .26.12.26.26v1.49h.16a.54.54 0 0 1 .53.5v.07c0 .19-.09.35-.23.45a2.1 2.1 0 0 1-.06 2.04l-.03.05.06.05.24.2 1.74-1 .1-.41a.26.26 0 0 1 .5.13l-.07.27.27.07c.12.03.2.14.2.27l-.01.04a.26.26 0 0 1-.31.19l-.44-.1-1.65.95c.33.46.52 1.01.54 1.58v.12c0 1.29-.2 1.93-.97 2.4-.4.25-1.23.38-1.98.38-.62 0-1.42-.1-1.77-.27-.9-.45-1.18-1.16-1.18-2.51 0-.6.18-1.18.5-1.66l-1.17-1.18H7.7a.26.26 0 1 1 0-.51H8l-.01-.27a.26.26 0 0 1 .2-.26h.05a.26.26 0 0 1 .27.24v.45l1.14 1.13.21-.2.06-.05.06-.05-.03-.05a2.1 2.1 0 0 1-.27-.74l-.17-.03c-.22-.05-.2-.37.02-.4l.13-.01c.01-.3.1-.6.23-.86a.54.54 0 0 1-.23-.45v-.04a.54.54 0 0 1 .53-.53h.05v-1.5c0-.13.1-.24.23-.25h2.44Zm.17 2.86h-2.64l-.05.07c-.11.2-.19.41-.2.64l1.4-.14a.48.48 0 0 1 .49.26l.01.03.03.06a.3.3 0 0 1 .03.1v.04a.3.3 0 0 1-.02.1v.03a.5.5 0 0 1-.13.21l-.03.03-.04.03a.5.5 0 0 1-.38.09l-.25-.05-1.07-.2c.06.22.17.42.32.6a.26.26 0 0 1-.07.38 2.44 2.44 0 0 0-1.16 2.08c0 1.18.2 1.7.9 2.05.25.12 1 .21 1.54.21.66 0 1.41-.11 1.71-.3.53-.32.7-.76.73-1.71v-.25c0-.53-.17-1.03-.47-1.44l-.45.26a.26.26 0 1 1-.26-.45l.35-.2c-.1-.1-.22-.17-.33-.25a.26.26 0 0 1-.07-.38 1.58 1.58 0 0 0 .16-1.83l-.05-.07Zm-1.71 4.94a.27.27 0 1 1 0 .55.27.27 0 0 1 0-.55Zm0-1.06a.27.27 0 1 1 0 .55.27.27 0 0 1 0-.55Zm0-1.05a.27.27 0 1 1 0 .55.27.27 0 0 1 0-.55Zm.27-1.87-.69.07.67.12a.1.1 0 0 0 .12-.08v-.01l-.02-.05-.01-.02a.08.08 0 0 0-.04-.02h-.03Zm-.55-.93c.11 0 .2.1.2.2v.18a.2.2 0 0 1-.34.13.2.2 0 0 1-.06-.13v-.18c0-.1.1-.2.2-.2Zm1.09 0c.1 0 .2.1.2.2v.18a.2.2 0 0 1-.34.13.2.2 0 0 1-.06-.13v-.18c0-.1.09-.2.2-.2Zm1.15-.63h-3.14a.02.02 0 0 0-.02.02v.04l.02.02h3.14a.02.02 0 0 0 .02-.02v-.05h-.02Zm-.67-.55h-1.9v.04h1.9V8.7Zm0-1.2h-1.9v.68h1.9v-.67Z",
|
|
141
|
-
fill: "#fff"
|
|
142
|
-
})]
|
|
143
|
-
}, "8");
|
|
63
|
+
return (<Icon key="8" {...props}>
|
|
64
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#CF0900"/>
|
|
65
|
+
<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"/>
|
|
66
|
+
<path d="M12.9 7c.15 0 .26.12.26.26v1.49h.16a.54.54 0 0 1 .53.5v.07c0 .19-.09.35-.23.45a2.1 2.1 0 0 1-.06 2.04l-.03.05.06.05.24.2 1.74-1 .1-.41a.26.26 0 0 1 .5.13l-.07.27.27.07c.12.03.2.14.2.27l-.01.04a.26.26 0 0 1-.31.19l-.44-.1-1.65.95c.33.46.52 1.01.54 1.58v.12c0 1.29-.2 1.93-.97 2.4-.4.25-1.23.38-1.98.38-.62 0-1.42-.1-1.77-.27-.9-.45-1.18-1.16-1.18-2.51 0-.6.18-1.18.5-1.66l-1.17-1.18H7.7a.26.26 0 1 1 0-.51H8l-.01-.27a.26.26 0 0 1 .2-.26h.05a.26.26 0 0 1 .27.24v.45l1.14 1.13.21-.2.06-.05.06-.05-.03-.05a2.1 2.1 0 0 1-.27-.74l-.17-.03c-.22-.05-.2-.37.02-.4l.13-.01c.01-.3.1-.6.23-.86a.54.54 0 0 1-.23-.45v-.04a.54.54 0 0 1 .53-.53h.05v-1.5c0-.13.1-.24.23-.25h2.44Zm.17 2.86h-2.64l-.05.07c-.11.2-.19.41-.2.64l1.4-.14a.48.48 0 0 1 .49.26l.01.03.03.06a.3.3 0 0 1 .03.1v.04a.3.3 0 0 1-.02.1v.03a.5.5 0 0 1-.13.21l-.03.03-.04.03a.5.5 0 0 1-.38.09l-.25-.05-1.07-.2c.06.22.17.42.32.6a.26.26 0 0 1-.07.38 2.44 2.44 0 0 0-1.16 2.08c0 1.18.2 1.7.9 2.05.25.12 1 .21 1.54.21.66 0 1.41-.11 1.71-.3.53-.32.7-.76.73-1.71v-.25c0-.53-.17-1.03-.47-1.44l-.45.26a.26.26 0 1 1-.26-.45l.35-.2c-.1-.1-.22-.17-.33-.25a.26.26 0 0 1-.07-.38 1.58 1.58 0 0 0 .16-1.83l-.05-.07Zm-1.71 4.94a.27.27 0 1 1 0 .55.27.27 0 0 1 0-.55Zm0-1.06a.27.27 0 1 1 0 .55.27.27 0 0 1 0-.55Zm0-1.05a.27.27 0 1 1 0 .55.27.27 0 0 1 0-.55Zm.27-1.87-.69.07.67.12a.1.1 0 0 0 .12-.08v-.01l-.02-.05-.01-.02a.08.08 0 0 0-.04-.02h-.03Zm-.55-.93c.11 0 .2.1.2.2v.18a.2.2 0 0 1-.34.13.2.2 0 0 1-.06-.13v-.18c0-.1.1-.2.2-.2Zm1.09 0c.1 0 .2.1.2.2v.18a.2.2 0 0 1-.34.13.2.2 0 0 1-.06-.13v-.18c0-.1.09-.2.2-.2Zm1.15-.63h-3.14a.02.02 0 0 0-.02.02v.04l.02.02h3.14a.02.02 0 0 0 .02-.02v-.05h-.02Zm-.67-.55h-1.9v.04h1.9V8.7Zm0-1.2h-1.9v.68h1.9v-.67Z" fill="#fff"/>
|
|
67
|
+
</Icon>);
|
|
144
68
|
}
|
|
145
69
|
export function NordicSkiingRed(props) {
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
d
|
|
150
|
-
|
|
151
|
-
}), _jsx("path", {
|
|
152
|
-
fillRule: "evenodd",
|
|
153
|
-
clipRule: "evenodd",
|
|
154
|
-
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",
|
|
155
|
-
fill: "#fff"
|
|
156
|
-
}), _jsx("path", {
|
|
157
|
-
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",
|
|
158
|
-
fill: "#fff"
|
|
159
|
-
})]
|
|
160
|
-
}, "9");
|
|
70
|
+
return (<Icon key="9" {...props}>
|
|
71
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#CF0900"/>
|
|
72
|
+
<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"/>
|
|
73
|
+
<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"/>
|
|
74
|
+
</Icon>);
|
|
161
75
|
}
|
|
162
76
|
export function BiathlonRed(props) {
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
d
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
fillRule: "evenodd",
|
|
170
|
-
clipRule: "evenodd",
|
|
171
|
-
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",
|
|
172
|
-
fill: "#fff"
|
|
173
|
-
}), _jsx("path", {
|
|
174
|
-
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",
|
|
175
|
-
fill: "#fff"
|
|
176
|
-
}), _jsx("path", {
|
|
177
|
-
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",
|
|
178
|
-
fill: "#fff"
|
|
179
|
-
})]
|
|
180
|
-
}, "10");
|
|
77
|
+
return (<Icon key="10" {...props}>
|
|
78
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#CF0900"/>
|
|
79
|
+
<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"/>
|
|
80
|
+
<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"/>
|
|
81
|
+
<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"/>
|
|
82
|
+
</Icon>);
|
|
181
83
|
}
|
|
182
84
|
export function SnowshoesRed(props) {
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
d
|
|
187
|
-
|
|
188
|
-
}), _jsx("path", {
|
|
189
|
-
fillRule: "evenodd",
|
|
190
|
-
clipRule: "evenodd",
|
|
191
|
-
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",
|
|
192
|
-
fill: "#fff"
|
|
193
|
-
}), _jsx("path", {
|
|
194
|
-
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",
|
|
195
|
-
fill: "#fff"
|
|
196
|
-
})]
|
|
197
|
-
}, "11");
|
|
85
|
+
return (<Icon key="11" {...props}>
|
|
86
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#CF0900"/>
|
|
87
|
+
<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"/>
|
|
88
|
+
<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"/>
|
|
89
|
+
</Icon>);
|
|
198
90
|
}
|
|
199
91
|
export function SnowboardRed(props) {
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
d
|
|
204
|
-
|
|
205
|
-
}), _jsx("path", {
|
|
206
|
-
fillRule: "evenodd",
|
|
207
|
-
clipRule: "evenodd",
|
|
208
|
-
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",
|
|
209
|
-
fill: "#fff"
|
|
210
|
-
}), _jsx("path", {
|
|
211
|
-
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",
|
|
212
|
-
fill: "#fff"
|
|
213
|
-
})]
|
|
214
|
-
}, "12");
|
|
92
|
+
return (<Icon key="12" {...props}>
|
|
93
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#CF0900"/>
|
|
94
|
+
<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"/>
|
|
95
|
+
<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="#fff"/>
|
|
96
|
+
</Icon>);
|
|
215
97
|
}
|
|
216
98
|
export function FeedingBottle(props) {
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
d
|
|
221
|
-
|
|
222
|
-
}), _jsx("path", {
|
|
223
|
-
fillRule: "evenodd",
|
|
224
|
-
clipRule: "evenodd",
|
|
225
|
-
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",
|
|
226
|
-
fill: "#fff"
|
|
227
|
-
}), _jsx("path", {
|
|
228
|
-
d: "m9.3 16.68-1.77-1.76a1.8 1.8 0 0 1 0-2.54l3.13-3.14a1.8 1.8 0 0 1 1.52-.5.86.86 0 0 1-.14-.48v-.01a.87.87 0 0 1 .86-.86c.22 0 .43.08.59.22a1.88 1.88 0 0 1 1.75-.2l.1-.1c.18-.17.42-.28.68-.3L16.1 7a1.09 1.09 0 0 1 1.06 1.3l-.1-.02.1.02c-.04.2-.14.4-.3.55l-.09.1c.07.18.11.37.13.57v.12c0 .38-.11.75-.33 1.06.16.17.24.38.24.6v.02a.86.86 0 0 1-.87.85.87.87 0 0 1-.47-.14 1.78 1.78 0 0 1-.51 1.51l-3.14 3.14a1.8 1.8 0 0 1-2.54 0Zm1.85-6.95-3.13 3.14a1.1 1.1 0 0 0 0 1.56l1.76 1.76a1.1 1.1 0 0 0 1.56 0l3.14-3.14a1.1 1.1 0 0 0 0-1.55L12.7 9.73a1.1 1.1 0 0 0-1.56 0Zm1.62-1.61a.18.18 0 0 0-.05.12c0 .05.01.1.05.13l3.07 3.07c.03.03.07.04.12.04.05 0 .09-.02.12-.05a.17.17 0 0 0 .05-.11v-.01a.18.18 0 0 0-.04-.12l-2.52-2.52-.52-.52-.04-.03a.17.17 0 0 0-.24-.01Zm3.3 2.08c.09-.15.13-.3.14-.47v-.1c0-.2-.05-.4-.15-.58l-.13-.23.46-.46a.4.4 0 0 0 .11-.27.38.38 0 0 0-.12-.28.4.4 0 0 0-.55 0l-.46.45-.07-.04-.16-.09a1.2 1.2 0 0 0-.59-.16h-.03c-.18 0-.37.06-.53.15l2.09 2.08Zm-4.03-1.96Zm-2.21 3.58.7.7.08.12a.34.34 0 0 1 0 .26.34.34 0 0 1-.32.22.34.34 0 0 1-.25-.1l-.7-.7a.34.34 0 0 1-.1-.25.35.35 0 0 1 .48-.32c.04.02.08.04.1.07Zm.67-.67a.36.36 0 0 0-.24-.1.35.35 0 0 0-.25.1.35.35 0 0 0 0 .49l.36.35a.35.35 0 0 0 .24.1h.03a.35.35 0 0 0 .32-.34.35.35 0 0 0-.1-.25l-.36-.35Zm.72-.72a.34.34 0 0 0-.24-.1c-.1 0-.18.04-.25.1a.35.35 0 0 0 0 .5l.7.7.12.07c.04.02.08.03.13.03h.04l.1-.02a.35.35 0 0 0 .21-.32c0-.06 0-.1-.03-.14a.35.35 0 0 0-.08-.12l-.7-.7Z",
|
|
229
|
-
fill: "#fff"
|
|
230
|
-
})]
|
|
231
|
-
}, "13");
|
|
99
|
+
return (<Icon key="13" {...props}>
|
|
100
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#CF0900"/>
|
|
101
|
+
<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"/>
|
|
102
|
+
<path d="m9.3 16.68-1.77-1.76a1.8 1.8 0 0 1 0-2.54l3.13-3.14a1.8 1.8 0 0 1 1.52-.5.86.86 0 0 1-.14-.48v-.01a.87.87 0 0 1 .86-.86c.22 0 .43.08.59.22a1.88 1.88 0 0 1 1.75-.2l.1-.1c.18-.17.42-.28.68-.3L16.1 7a1.09 1.09 0 0 1 1.06 1.3l-.1-.02.1.02c-.04.2-.14.4-.3.55l-.09.1c.07.18.11.37.13.57v.12c0 .38-.11.75-.33 1.06.16.17.24.38.24.6v.02a.86.86 0 0 1-.87.85.87.87 0 0 1-.47-.14 1.78 1.78 0 0 1-.51 1.51l-3.14 3.14a1.8 1.8 0 0 1-2.54 0Zm1.85-6.95-3.13 3.14a1.1 1.1 0 0 0 0 1.56l1.76 1.76a1.1 1.1 0 0 0 1.56 0l3.14-3.14a1.1 1.1 0 0 0 0-1.55L12.7 9.73a1.1 1.1 0 0 0-1.56 0Zm1.62-1.61a.18.18 0 0 0-.05.12c0 .05.01.1.05.13l3.07 3.07c.03.03.07.04.12.04.05 0 .09-.02.12-.05a.17.17 0 0 0 .05-.11v-.01a.18.18 0 0 0-.04-.12l-2.52-2.52-.52-.52-.04-.03a.17.17 0 0 0-.24-.01Zm3.3 2.08c.09-.15.13-.3.14-.47v-.1c0-.2-.05-.4-.15-.58l-.13-.23.46-.46a.4.4 0 0 0 .11-.27.38.38 0 0 0-.12-.28.4.4 0 0 0-.55 0l-.46.45-.07-.04-.16-.09a1.2 1.2 0 0 0-.59-.16h-.03c-.18 0-.37.06-.53.15l2.09 2.08Zm-4.03-1.96Zm-2.21 3.58.7.7.08.12a.34.34 0 0 1 0 .26.34.34 0 0 1-.32.22.34.34 0 0 1-.25-.1l-.7-.7a.34.34 0 0 1-.1-.25.35.35 0 0 1 .48-.32c.04.02.08.04.1.07Zm.67-.67a.36.36 0 0 0-.24-.1.35.35 0 0 0-.25.1.35.35 0 0 0 0 .49l.36.35a.35.35 0 0 0 .24.1h.03a.35.35 0 0 0 .32-.34.35.35 0 0 0-.1-.25l-.36-.35Zm.72-.72a.34.34 0 0 0-.24-.1c-.1 0-.18.04-.25.1a.35.35 0 0 0 0 .5l.7.7.12.07c.04.02.08.03.13.03h.04l.1-.02a.35.35 0 0 0 .21-.32c0-.06 0-.1-.03-.14a.35.35 0 0 0-.08-.12l-.7-.7Z" fill="#fff"/>
|
|
103
|
+
</Icon>);
|
|
232
104
|
}
|
|
233
105
|
export function Plate(props) {
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
d
|
|
238
|
-
|
|
239
|
-
}), _jsx("path", {
|
|
240
|
-
fillRule: "evenodd",
|
|
241
|
-
clipRule: "evenodd",
|
|
242
|
-
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",
|
|
243
|
-
fill: "#fff"
|
|
244
|
-
}), _jsx("path", {
|
|
245
|
-
d: "M11.79 7a4.77 4.77 0 0 1 3.43 1.45.22.22 0 0 1-.31.3 4.34 4.34 0 0 0-7.48 3.04 4.35 4.35 0 1 0 8.54-1.26.22.22 0 0 1 .43-.03A4.8 4.8 0 1 1 11.79 7Zm3.6 4.49v.3a3.6 3.6 0 0 1-7.07 1 .22.22 0 0 1 .42-.11 3.17 3.17 0 0 0 6.22-1.24.22.22 0 0 1 .19-.16.22.22 0 0 1 .23.2Zm.17-2.85c.36-.42.87-.5 1.22-.15.37.37.26.9-.21 1.27l-.23.19-.98.82-.98.85.01.06.04.15c.04.25.05.5 0 .74-.05.21-.15.4-.3.56-.37.36-.9.75-1.34 1.04-.18.12-.39.13-.52 0-.15-.15-.1-.37.05-.53l.5-.52.37-.38c.02-.02.02-.03 0-.04-.02-.02-.03-.02-.05 0l-.87.86c-.17.17-.42.18-.58.02-.16-.15-.16-.4.02-.58l.87-.87-.01-.05c-.02-.02-.03-.02-.04 0l-.05.04-.45.44-.44.42c-.15.13-.35.16-.49.02-.13-.14-.12-.34 0-.52.29-.45.68-.97 1.04-1.34.24-.24.56-.34.91-.34.22 0 .45.04.58.09h.02l.9-1.05.48-.56.35-.43.05-.05.13-.16Zm.91.16c-.16-.16-.4-.12-.62.17-.07.1-.24.3-.49.59l-1.58 1.85-.3-.12c-.3-.1-.76-.1-1.03.16-.15.15-.3.34-.46.53l-.07.09.3-.3c.2-.2.48-.17.66.01.12.13.17.31.12.47l-.01.03.03-.01c.15-.05.3-.02.43.08l.04.04c.18.18.2.46 0 .66l-.15.15-.14.15.09-.07c.14-.11.28-.23.4-.35l.13-.11a.7.7 0 0 0 .18-.35 1.34 1.34 0 0 0-.01-.6l-.03-.14-.01-.02-.01-.03-.11-.17 1.5-1.28.73-.62.3-.24c.23-.2.26-.42.11-.57Zm-5.42-.95a1.23 1.23 0 0 1 .62 2.3h-.01l.02.07c.03.1.04.2.05.3v.1c0 .75-.56 1.36-1.29 1.44h-.07l-.05.06c-.25.24-.57.39-.92.4l-.09.01a1.44 1.44 0 0 1-.68-2.7l-.02-.08a1.02 1.02 0 0 1-.03-.17v-.09a1.02 1.02 0 0 1 1.33-.97l.04.01.01-.03a1.23 1.23 0 0 1 1.01-.64h.08Zm0 .44a.8.8 0 0 0-.77.6l-.08.3-.26-.18a.58.58 0 0 0-.86.2.59.59 0 0 0 .03.6l.16.24-.27.09a1 1 0 1 0 1.1 1.58l.06-.09h.13a1.01 1.01 0 0 0 .9-1.48l-.13-.23.24-.08a.8.8 0 0 0-.25-1.55Zm-1.96 2.04c.59 0 1.06.48 1.06 1.07 0 .27-.4.3-.43.03a.75.75 0 0 0-.66-.66c-.27-.04-.24-.44.03-.44Zm.72-1c.59 0 1.06.48 1.06 1.06 0 .28-.4.3-.43.03a.75.75 0 0 0-.66-.66c-.27-.03-.24-.43.03-.43Zm2.7-1.08h.03a3.6 3.6 0 0 1 1.96 1.16.22.22 0 0 1-.33.28 3.17 3.17 0 0 0-1.72-1 .22.22 0 0 1 .05-.44Z",
|
|
246
|
-
fill: "#fff"
|
|
247
|
-
})]
|
|
248
|
-
}, "14");
|
|
106
|
+
return (<Icon key="14" {...props}>
|
|
107
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#CF0900"/>
|
|
108
|
+
<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"/>
|
|
109
|
+
<path d="M11.79 7a4.77 4.77 0 0 1 3.43 1.45.22.22 0 0 1-.31.3 4.34 4.34 0 0 0-7.48 3.04 4.35 4.35 0 1 0 8.54-1.26.22.22 0 0 1 .43-.03A4.8 4.8 0 1 1 11.79 7Zm3.6 4.49v.3a3.6 3.6 0 0 1-7.07 1 .22.22 0 0 1 .42-.11 3.17 3.17 0 0 0 6.22-1.24.22.22 0 0 1 .19-.16.22.22 0 0 1 .23.2Zm.17-2.85c.36-.42.87-.5 1.22-.15.37.37.26.9-.21 1.27l-.23.19-.98.82-.98.85.01.06.04.15c.04.25.05.5 0 .74-.05.21-.15.4-.3.56-.37.36-.9.75-1.34 1.04-.18.12-.39.13-.52 0-.15-.15-.1-.37.05-.53l.5-.52.37-.38c.02-.02.02-.03 0-.04-.02-.02-.03-.02-.05 0l-.87.86c-.17.17-.42.18-.58.02-.16-.15-.16-.4.02-.58l.87-.87-.01-.05c-.02-.02-.03-.02-.04 0l-.05.04-.45.44-.44.42c-.15.13-.35.16-.49.02-.13-.14-.12-.34 0-.52.29-.45.68-.97 1.04-1.34.24-.24.56-.34.91-.34.22 0 .45.04.58.09h.02l.9-1.05.48-.56.35-.43.05-.05.13-.16Zm.91.16c-.16-.16-.4-.12-.62.17-.07.1-.24.3-.49.59l-1.58 1.85-.3-.12c-.3-.1-.76-.1-1.03.16-.15.15-.3.34-.46.53l-.07.09.3-.3c.2-.2.48-.17.66.01.12.13.17.31.12.47l-.01.03.03-.01c.15-.05.3-.02.43.08l.04.04c.18.18.2.46 0 .66l-.15.15-.14.15.09-.07c.14-.11.28-.23.4-.35l.13-.11a.7.7 0 0 0 .18-.35 1.34 1.34 0 0 0-.01-.6l-.03-.14-.01-.02-.01-.03-.11-.17 1.5-1.28.73-.62.3-.24c.23-.2.26-.42.11-.57Zm-5.42-.95a1.23 1.23 0 0 1 .62 2.3h-.01l.02.07c.03.1.04.2.05.3v.1c0 .75-.56 1.36-1.29 1.44h-.07l-.05.06c-.25.24-.57.39-.92.4l-.09.01a1.44 1.44 0 0 1-.68-2.7l-.02-.08a1.02 1.02 0 0 1-.03-.17v-.09a1.02 1.02 0 0 1 1.33-.97l.04.01.01-.03a1.23 1.23 0 0 1 1.01-.64h.08Zm0 .44a.8.8 0 0 0-.77.6l-.08.3-.26-.18a.58.58 0 0 0-.86.2.59.59 0 0 0 .03.6l.16.24-.27.09a1 1 0 1 0 1.1 1.58l.06-.09h.13a1.01 1.01 0 0 0 .9-1.48l-.13-.23.24-.08a.8.8 0 0 0-.25-1.55Zm-1.96 2.04c.59 0 1.06.48 1.06 1.07 0 .27-.4.3-.43.03a.75.75 0 0 0-.66-.66c-.27-.04-.24-.44.03-.44Zm.72-1c.59 0 1.06.48 1.06 1.06 0 .28-.4.3-.43.03a.75.75 0 0 0-.66-.66c-.27-.03-.24-.43.03-.43Zm2.7-1.08h.03a3.6 3.6 0 0 1 1.96 1.16.22.22 0 0 1-.33.28 3.17 3.17 0 0 0-1.72-1 .22.22 0 0 1 .05-.44Z" fill="#fff"/>
|
|
110
|
+
</Icon>);
|
|
249
111
|
}
|
|
250
112
|
export function IglooRed(props) {
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
d
|
|
255
|
-
|
|
256
|
-
}), _jsx("path", {
|
|
257
|
-
fillRule: "evenodd",
|
|
258
|
-
clipRule: "evenodd",
|
|
259
|
-
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",
|
|
260
|
-
fill: "#fff"
|
|
261
|
-
}), _jsx("path", {
|
|
262
|
-
d: "M12 9a5 5 0 0 0-5 5v.9h2.9v.1H14V15H17v-1a5 5 0 0 0-5-5Zm2.7 4a3.7 3.7 0 0 0-.2-.8H16c.2.2.2.5.3.8h-1.7Zm-1.7.7-.1-.5.5-.3.2.8H13Zm-2.7 0c0-.3.1-.6.3-.8l.4.3-.1.5h-.6Zm-.4.7h-1a6.8 6.8 0 0 1 0-1h1v1Zm4.9-4h-1.2a5.2 5.2 0 0 0-.2-.6h.4l1 .7Zm-.3 1 .1.3h-2a2 2 0 0 0-.4 0v-.8h2l.3.5ZM10 13h-.3l.2-.5v-.3h.6l-.5.8Zm1.7-.9v.6a1 1 0 0 0-.3.2l-.5-.4c.2-.2.5-.4.8-.4Zm-.6-2.3h1.7a5.4 5.4 0 0 1 .3.7h-2.2a3 3 0 0 1 .2-.7Zm1.5 3a1 1 0 0 0-.4 0V12c.3 0 .6.2.9.4l-.5.4Zm-2-3a4.3 4.3 0 0 0-.2.7H9.2l1-.7h.4ZM9.7 11h2v.7l-.3.1H9.3a3 3 0 0 1 .4-.8Zm-.2 1.3-.1.2-.1.6H7.6c0-.3.1-.6.3-.8h1.6Zm3.9 0h.5l.2.4v.4H14c0-.3-.3-.6-.5-.8Zm2.5-.5H15a3.2 3.2 0 0 0-.3-.8h.5l.6.8Zm-7.2-.8H9a4 4 0 0 0-.3.8h-.7l.6-.8Zm-1.2 3v-.4h1a18.2 18.2 0 0 0 0 .8h-1V14Zm2.8.3h.6v.3h-.6v-.3Zm2.8.3v-.3h.5v.3H13Zm1-1h.9a15.4 15.4 0 0 1 0 .8h-1v-.8Zm1.4.9a8 8 0 0 0 0-1h1v1h-1Z",
|
|
263
|
-
fill: "#fff"
|
|
264
|
-
})]
|
|
265
|
-
}, "15");
|
|
113
|
+
return (<Icon key="15" {...props}>
|
|
114
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#CF0900"/>
|
|
115
|
+
<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"/>
|
|
116
|
+
<path d="M12 9a5 5 0 0 0-5 5v.9h2.9v.1H14V15H17v-1a5 5 0 0 0-5-5Zm2.7 4a3.7 3.7 0 0 0-.2-.8H16c.2.2.2.5.3.8h-1.7Zm-1.7.7-.1-.5.5-.3.2.8H13Zm-2.7 0c0-.3.1-.6.3-.8l.4.3-.1.5h-.6Zm-.4.7h-1a6.8 6.8 0 0 1 0-1h1v1Zm4.9-4h-1.2a5.2 5.2 0 0 0-.2-.6h.4l1 .7Zm-.3 1 .1.3h-2a2 2 0 0 0-.4 0v-.8h2l.3.5ZM10 13h-.3l.2-.5v-.3h.6l-.5.8Zm1.7-.9v.6a1 1 0 0 0-.3.2l-.5-.4c.2-.2.5-.4.8-.4Zm-.6-2.3h1.7a5.4 5.4 0 0 1 .3.7h-2.2a3 3 0 0 1 .2-.7Zm1.5 3a1 1 0 0 0-.4 0V12c.3 0 .6.2.9.4l-.5.4Zm-2-3a4.3 4.3 0 0 0-.2.7H9.2l1-.7h.4ZM9.7 11h2v.7l-.3.1H9.3a3 3 0 0 1 .4-.8Zm-.2 1.3-.1.2-.1.6H7.6c0-.3.1-.6.3-.8h1.6Zm3.9 0h.5l.2.4v.4H14c0-.3-.3-.6-.5-.8Zm2.5-.5H15a3.2 3.2 0 0 0-.3-.8h.5l.6.8Zm-7.2-.8H9a4 4 0 0 0-.3.8h-.7l.6-.8Zm-1.2 3v-.4h1a18.2 18.2 0 0 0 0 .8h-1V14Zm2.8.3h.6v.3h-.6v-.3Zm2.8.3v-.3h.5v.3H13Zm1-1h.9a15.4 15.4 0 0 1 0 .8h-1v-.8Zm1.4.9a8 8 0 0 0 0-1h1v1h-1Z" fill="#fff"/>
|
|
117
|
+
</Icon>);
|
|
266
118
|
}
|
|
267
119
|
export function CompassRed(props) {
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
fillRule: "evenodd",
|
|
275
|
-
clipRule: "evenodd",
|
|
276
|
-
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",
|
|
277
|
-
fill: "#fff"
|
|
278
|
-
}), _jsx("path", {
|
|
279
|
-
fillRule: "evenodd",
|
|
280
|
-
clipRule: "evenodd",
|
|
281
|
-
d: "M11.7 8.1c-2.4 0-4.3 3-3.4 5.3.7 1.9 3 3 5 2.3 1.8-.6 3-2.7 2.5-4.5a3.9 3.9 0 0 0-4-3ZM17 12a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z",
|
|
282
|
-
fill: "#fff"
|
|
283
|
-
}), _jsx("path", {
|
|
284
|
-
fillRule: "evenodd",
|
|
285
|
-
clipRule: "evenodd",
|
|
286
|
-
d: "m12.8 12.8 1.7-3.3-3.3 1.7-1.7 3.3 3.3-1.7Zm-.5-.1-1-1-1 2 2-1Z",
|
|
287
|
-
fill: "#fff"
|
|
288
|
-
})]
|
|
289
|
-
}, "16");
|
|
120
|
+
return (<Icon key="16" {...props}>
|
|
121
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#CF0900"/>
|
|
122
|
+
<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"/>
|
|
123
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M11.7 8.1c-2.4 0-4.3 3-3.4 5.3.7 1.9 3 3 5 2.3 1.8-.6 3-2.7 2.5-4.5a3.9 3.9 0 0 0-4-3ZM17 12a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z" fill="#fff"/>
|
|
124
|
+
<path fillRule="evenodd" clipRule="evenodd" d="m12.8 12.8 1.7-3.3-3.3 1.7-1.7 3.3 3.3-1.7Zm-.5-.1-1-1-1 2 2-1Z" fill="#fff"/>
|
|
125
|
+
</Icon>);
|
|
290
126
|
}
|
|
291
127
|
export function StarsRed(props) {
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
d
|
|
296
|
-
|
|
297
|
-
}), _jsx("path", {
|
|
298
|
-
fillRule: "evenodd",
|
|
299
|
-
clipRule: "evenodd",
|
|
300
|
-
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",
|
|
301
|
-
fill: "#fff"
|
|
302
|
-
}), _jsx("path", {
|
|
303
|
-
d: "M8.6 10.3v.5c-.2.8-.4 1-1.4 1.1L7 12l.4.1c.8.2 1 .3 1.1 1.2.1.5.2.5.3-.1 0-.5.2-.7.4-.9l.7-.2c.5 0 .6-.2.1-.2-.7-.1-1-.2-1-.5l-.2-.9-.2-.2ZM14.1 7l-.1.6c-.2 1-.3 1.2-.5 1.5-.3.3-.7.4-1.6.6l-.6.1v.1l.7.2c1.5.2 1.8.5 2 2 0 .6 0 .6.2.6l.2-.5c.2-1.7.4-2 2-2.1l.6-.2c0-.2-.1-.2-.6-.3-1-.1-1.4-.3-1.6-.6-.2-.3-.3-.6-.4-1.3 0-.6-.1-.7-.2-.7H14Zm-1.9 6.1v.2l-.2 1c-.2.4-.5.5-1.3.6-.3 0-.4 0-.4.2l.5.1c1 .2 1.2.4 1.4 1.4v.4c.2 0 .2 0 .2-.4.2-1 .4-1.2 1.3-1.4h.4l.1-.1-.2-.1c-1.2-.2-1.4-.4-1.5-1.4-.1-.4-.2-.6-.3-.5Z",
|
|
304
|
-
fill: "#fff"
|
|
305
|
-
})]
|
|
306
|
-
}, "17");
|
|
128
|
+
return (<Icon key="17" {...props}>
|
|
129
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#CF0900"/>
|
|
130
|
+
<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"/>
|
|
131
|
+
<path d="M8.6 10.3v.5c-.2.8-.4 1-1.4 1.1L7 12l.4.1c.8.2 1 .3 1.1 1.2.1.5.2.5.3-.1 0-.5.2-.7.4-.9l.7-.2c.5 0 .6-.2.1-.2-.7-.1-1-.2-1-.5l-.2-.9-.2-.2ZM14.1 7l-.1.6c-.2 1-.3 1.2-.5 1.5-.3.3-.7.4-1.6.6l-.6.1v.1l.7.2c1.5.2 1.8.5 2 2 0 .6 0 .6.2.6l.2-.5c.2-1.7.4-2 2-2.1l.6-.2c0-.2-.1-.2-.6-.3-1-.1-1.4-.3-1.6-.6-.2-.3-.3-.6-.4-1.3 0-.6-.1-.7-.2-.7H14Zm-1.9 6.1v.2l-.2 1c-.2.4-.5.5-1.3.6-.3 0-.4 0-.4.2l.5.1c1 .2 1.2.4 1.4 1.4v.4c.2 0 .2 0 .2-.4.2-1 .4-1.2 1.3-1.4h.4l.1-.1-.2-.1c-1.2-.2-1.4-.4-1.5-1.4-.1-.4-.2-.6-.3-.5Z" fill="#fff"/>
|
|
132
|
+
</Icon>);
|
|
307
133
|
}
|
|
308
134
|
export function ClubPiouPiou(props) {
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
d
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
d
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
d
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
d
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
d
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
d
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
d
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
d
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
d
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
d
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
d
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
d
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
d
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
d
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
fill: "#E4051F"
|
|
361
|
-
}), _jsx("path", {
|
|
362
|
-
d: "M13.13 12.19s.36.05.61.03a5.73 5.73 0 0 1-.94 1.43c-.16.11-1.26.55-1.36.57.37-.37 1.17-.93 1.7-2.03Z",
|
|
363
|
-
fill: "#925F1A"
|
|
364
|
-
}), _jsx("path", {
|
|
365
|
-
d: "m13.1 14.02-.02-.03-.04.06.06-.03Z",
|
|
366
|
-
fill: "#BA101C"
|
|
367
|
-
}), _jsx("path", {
|
|
368
|
-
d: "M13.01 13.85a1.22 1.22 0 0 1-.06-.17c-.02-.11-1.16.51-2.2.72-1.05.2-2.2 0-2.2 0-.02.35.21.43.21.43v.01c.6.1 1.24.15 1.83.18-.64.22-1.33.21-2.03.27 0 .2.1.55.06.92-.32 1.08.02.97.14 1.2.12.22.48.52.49.5l.14-.08c.56-.53 1.05-1.1 1.61-1.64.37-.3.73-.61 1.17-.92-.45.01-.82.24-1.27.19.71-.46 1.57-.71 2.14-1.41h-.02.02l.04-.06a.95.95 0 0 1-.07-.14Z",
|
|
369
|
-
fill: "#E4051F"
|
|
370
|
-
}), _jsx("path", {
|
|
371
|
-
d: "M8.76 14.84c-.02.04-.08.18-.17.29-.03.03-.04.09-.03.16.7-.06 1.4-.06 2.03-.27-.59-.03-1.22-.07-1.83-.18ZM13.16 14.08a.2.2 0 0 1-.06-.06l-.06.03c-.57.7-1.43.95-2.14 1.4.45.06.82-.17 1.27-.18-.44.3-.8.61-1.17.92-.56.54-1.05 1.11-1.6 1.64.49-.3 2.06-1.25 2.4-1.68.4-.5 1.15-1.65 1.36-1.83.2-.17.1-.2 0-.24Z",
|
|
372
|
-
fill: "#BA101C"
|
|
373
|
-
}), _jsx("path", {
|
|
374
|
-
d: "m13.08 14.02.02.02.16.17s.04.07.16.16c.62.11 1.25.2 1.93.05-.73-.27-1.55-.73-2.27-.4Z",
|
|
375
|
-
fill: "#BA101C"
|
|
376
|
-
}), _jsx("path", {
|
|
377
|
-
d: "m14.47 13.66.04-.03c-.55-.08-1.12-.1-1.53.25l.09.13.02-.03-.02.03.01.01c.72-.33 1.54.13 2.27.4a4.6 4.6 0 0 1-1.93-.05c.12.1.31.22.62.34.94.4 1.7-.03 1.85-.3-.03-.17-.84-.66-1.42-.75ZM15.22 12.57s-1.07.22-1.55.5c-.26.14-.46.35-.59.5.67-.21 1.33-.57 2.04-.76l.1-.24Z",
|
|
378
|
-
fill: "#E4051F"
|
|
379
|
-
}), _jsx("path", {
|
|
380
|
-
d: "M13.08 13.57c-.1.12-.15.21-.15.21l.05.1c.41-.35.98-.33 1.54-.25.26-.15.48-.56.6-.82-.7.19-1.37.55-2.04.76Z",
|
|
381
|
-
fill: "#BA101C"
|
|
382
|
-
}), _jsx("path", {
|
|
383
|
-
d: "M9.53 13.45c-.25 0-.66-.08-1.03-.15-.26-.06-.52-.1-.63-.1-.11 0-.3.04-.45.08-.22.06-.35.09-.4.02a.1.1 0 0 1-.02-.1c.2-.83.92-1.37 1.84-1.37.28 0 .56.05.82.16.69.29.94.38 1.17.38.08 0 .17 0 .29-.04.06-.05.23-.2.38-.2.08 0 .15.05.2.13.04.08.04.15.02.2-.03.1-.13.12-.2.15a.5.5 0 0 0-.1.04c-.33.64-1.32.75-1.74.8H9.53Zm-1.66-.42c.13 0 .38.05.67.1.4.09.86.18 1.07.16l.05-.01c.4-.04 1.34-.15 1.62-.72l.02-.02c.04-.04.1-.06.16-.08.04-.02.1-.04.1-.06l-.01-.06c-.02-.03-.03-.04-.05-.04-.08 0-.2.1-.28.17l-.02.02h-.02c-.15.04-.25.05-.35.05-.26 0-.52-.1-1.23-.4a2 2 0 0 0-.76-.15c-.62 0-1.4.31-1.65 1.18l.2-.05c.16-.04.34-.1.48-.1Z",
|
|
384
|
-
fill: "#1D1A1E"
|
|
385
|
-
}), _jsx("path", {
|
|
386
|
-
d: "M9.4 14.03c-.82 0-1.13-.81-1.13-.82l.16-.05c0 .03.32.86 1.22.68.6-.12.73-.63.73-.64l.16.04c0 .02-.14.62-.86.76l-.27.03ZM8.43 12c-.02-.01-.49-.36-.38-1.31.1-.92.54-1.3.9-1.27.34.03.7.7.63 1.47-.07.77-.32 1.05-.33 1.06l-.12-.1s.22-.27.28-.97c.07-.73-.27-1.28-.48-1.3-.23-.02-.62.26-.72 1.13-.1.85.3 1.15.32 1.16l-.1.13ZM10.86 12.54l-.03-.16s.55-.12.98-.95c.3-.57.19-1.2.01-1.55-.1-.22-.25-.36-.39-.38-.27-.05-.95-.05-1.3 1.1-.27.93.18 1.56.28 1.68l-.13.1a2 2 0 0 1-.3-1.83c.39-1.3 1.23-1.26 1.48-1.22.2.04.38.21.51.48.2.39.31 1.07-.01 1.7-.47.9-1.08 1.03-1.1 1.03Z",
|
|
387
|
-
fill: "#1D1A1E"
|
|
388
|
-
}), _jsx("path", {
|
|
389
|
-
d: "M9.13 11.25c0 .17-.07.3-.17.31-.1 0-.2-.12-.2-.29-.01-.16.06-.3.17-.3.1-.01.19.12.2.28Z",
|
|
390
|
-
fill: "#1D1A1E"
|
|
391
|
-
}), _jsx("path", {
|
|
392
|
-
d: "M9.06 11.3c.01.06-.01.1-.05.11-.03.01-.07-.03-.08-.08-.01-.05.01-.1.05-.1.03 0 .07.03.08.08Z",
|
|
393
|
-
fill: "#fff"
|
|
394
|
-
}), _jsx("path", {
|
|
395
|
-
d: "M11.32 11.38c-.02.17-.12.3-.22.29-.11-.01-.18-.16-.17-.33.02-.18.12-.3.23-.3.1.01.18.16.16.34Z",
|
|
396
|
-
fill: "#1D1A1E"
|
|
397
|
-
}), _jsx("path", {
|
|
398
|
-
d: "M11.24 11.42c0 .06-.03.1-.07.1-.04 0-.07-.04-.07-.1 0-.05.03-.1.07-.1.04 0 .07.05.07.1Z",
|
|
399
|
-
fill: "#fff"
|
|
400
|
-
}), _jsx("path", {
|
|
401
|
-
d: "m8.93 12.54-.1-.14c.12-.09.28-.13.45-.12l-.02.17a.49.49 0 0 0-.33.09Z",
|
|
402
|
-
fill: "#1D1A1E"
|
|
403
|
-
}), _jsx("path", {
|
|
404
|
-
d: "M13.43 12.33a.84.84 0 0 1-.64-.27c-.4-.43-.25-1.34-.14-2l.05-.3c.07-.52-.54-.71-1.08-.88h-.03a4.7 4.7 0 0 0-2.96.26c-.45.25-.74.61-.86 1.08-.2.79-.1 1.53.02 2.02l-.16.04a4.26 4.26 0 0 1-.05-.2A4.41 4.41 0 0 1 7.14 10c.1-.88.96-1.6 2.17-1.82 1.08-.2 2.48.03 3.26.34.8.32.8.88.74 1.53l-.07.47c-.07.42-.12.73.05.96.1.15.25.2.35.21.16.02.3-.02.35-.07.1-.07.31-.16.42-.06.07.06.06.17-.05.33a1.22 1.22 0 0 1-.93.44ZM10.45 8.6c.56 0 1.02.07 1.2.13h.02c.57.18 1.28.4 1.2 1.07l-.06.3c-.1.6-.25 1.48.1 1.86.18.2.41.23.58.22.32-.02.62-.21.73-.38a.4.4 0 0 0 .06-.11.37.37 0 0 0-.18.07.67.67 0 0 1-.48.1.67.67 0 0 1-.47-.27c-.2-.3-.14-.64-.07-1.09l.06-.46c.07-.62.06-1.08-.63-1.36a6.7 6.7 0 0 0-3.16-.32c-1.13.2-1.95.87-2.04 1.67-.06.46.06.98.19 1.37-.02-.37 0-.78.1-1.2.14-.52.46-.92.95-1.2.57-.31 1.3-.4 1.9-.4ZM8.9 14.5c-.03-.02-.73-.51-.96-1.35l.17-.04c.2.78.87 1.25.88 1.26l-.1.13Z",
|
|
405
|
-
fill: "#1D1A1E"
|
|
406
|
-
}), _jsx("path", {
|
|
407
|
-
d: "m14.22 11.66-.14-.1c.01 0 .66-.86.84-2.26l.16.02a5.1 5.1 0 0 1-.86 2.34ZM14.88 7.86a2.82 2.82 0 0 0-1.53-1.97l.07-.15c.97.43 1.48 1.4 1.62 2.09l-.16.03ZM7.36 9.72h-.17c0-.03.04-.7.41-1.67l.16.06c-.37.95-.4 1.6-.4 1.61Z",
|
|
408
|
-
fill: "#1D1A1E"
|
|
409
|
-
}), _jsx("path", {
|
|
410
|
-
d: "M8.41 8.36h-.1c-.4-.02-.67-.15-.85-.4-.2-.29-.23-.72-.08-1.2.4-1.2 2.6-1.76 3.95-1.76.29 0 .54.03.73.07 1.19.3 1.73.84 1.89 1.91.04.3-.03.54-.21.75-.43.49-1.33.52-1.6.52-.17 0-.34-.01-.5-.04-.47-.07-.82-.25-1-.5a.6.6 0 0 1-.1-.46V7.1c-.03 0-.14.06-.3.32-.25.43-.9.94-1.83.94Zm2.92-3.2c-1.36 0-3.44.58-3.79 1.66-.13.42-.11.8.06 1.05.14.2.38.3.7.32a2 2 0 0 0 1.8-.86c.15-.25.31-.39.44-.39.05 0 .1.02.12.06.05.06.06.15.04.28-.02.11 0 .23.08.33.15.22.47.37.9.44.13.03.3.04.46.04.67 0 1.21-.18 1.47-.47.15-.17.2-.37.17-.61-.14-1-.63-1.5-1.76-1.78a3.06 3.06 0 0 0-.69-.07Z",
|
|
411
|
-
fill: "#1D1A1E"
|
|
412
|
-
}), _jsx("path", {
|
|
413
|
-
d: "M8.3 7.89c-.24 0-.44-.07-.55-.2a.5.5 0 0 1-.11-.42c.14-1.1 1.14-1.77 3.05-2.02 1.06-.14 1.97.13 2.53.75.3.34.48.78.43 1.12-.07.6-.77.67-1.29.67l-.5-.01h-.1c-.76-.04-.82-.8-.85-1.15-.02-.2-.16-.26-.3-.26-.15 0-.38.1-.5.39-.26.67-1.15 1.13-1.8 1.13Zm2.93-2.51a4 4 0 0 0-.52.03C8 5.77 7.85 6.91 7.81 7.3c-.02.12 0 .22.07.3.08.08.23.13.43.13.59 0 1.41-.42 1.65-1.02.14-.37.44-.5.66-.5.25 0 .44.17.46.41.03.47.12.97.68 1h.1l.5.02c.73 0 1.09-.17 1.13-.53.03-.3-.12-.68-.4-1a2.44 2.44 0 0 0-1.86-.72ZM15.11 9.52h-.03c-.06-.02-.1-.08-.14-.18a1.12 1.12 0 0 0-.14-.24c-.4-.46-.86-.83-1.39-1.12l.08-.14c.54.3 1.03.68 1.43 1.15.08.09.13.19.17.27a7 7 0 0 0 .05-1.12c-.04-.09-.7-.63-1.31-1.1l.1-.13c.61.47 1.34 1.06 1.38 1.19 0 0 .01 1.3-.14 1.4a.1.1 0 0 1-.06.02Z",
|
|
414
|
-
fill: "#1D1A1E"
|
|
415
|
-
}), _jsx("path", {
|
|
416
|
-
d: "M14.12 10.4c.15-.3.36-.27.41-.16.05.12.05.32-.17.56-.22.24-.55.18-.24-.4Z",
|
|
417
|
-
fill: "#B7D3E0"
|
|
418
|
-
}), _jsx("path", {
|
|
419
|
-
d: "M14.12 11.02a.2.2 0 0 1-.18-.1c-.07-.11-.04-.3.1-.56.14-.25.3-.28.36-.28.1 0 .18.05.2.13.05.1.1.34-.18.65-.1.1-.2.16-.3.16Zm.28-.78c-.05 0-.14.05-.21.2-.16.3-.11.39-.1.4l.03.01c.03 0 .1-.03.18-.1.21-.24.18-.41.15-.48 0-.01-.02-.03-.05-.03ZM8.23 9.5a.08.08 0 0 1-.06-.14c.45-.44 1.05-.2 1.08-.2.04.02.06.07.04.11a.08.08 0 0 1-.1.05c-.03-.01-.53-.2-.9.16a.08.08 0 0 1-.06.02ZM12.17 9.75a.08.08 0 0 1-.08-.08c-.02-.4-.13-.67-.36-.8-.48-.27-1.3.17-1.31.18-.04.02-.1 0-.11-.03a.08.08 0 0 1 .03-.12c.04-.02.91-.48 1.48-.17.27.16.42.47.43.93 0 .05-.03.08-.08.09ZM10.63 14.48l-.03-.16c.67-.11 1.05-.41 1.06-.41a4.97 4.97 0 0 0 1.45-1.74l.16.07a5.05 5.05 0 0 1-1.51 1.8 2.6 2.6 0 0 1-1.13.44ZM12.51 13.91l-.09-.13c.34-.22.7-.69.7-.69.2-.26.54-.89.55-.9l.14.08a3.8 3.8 0 0 1-1.3 1.64Z",
|
|
420
|
-
fill: "#1D1A1E"
|
|
421
|
-
}), _jsx("path", {
|
|
422
|
-
d: "M9.41 16.93h.02c0-.04.02-.06.06-.07-.04.01-.05.03-.06.06.67-.29.18-.65.35-1.08.03-.1.17-.24.3-.35l-.04-.04c-.12.02-.35.06-.43.13-.59.47-.66 1.29-.18 1.38a.3.3 0 0 1 0-.04l-.02.01Z",
|
|
423
|
-
fill: "#0084C7"
|
|
424
|
-
}), _jsx("path", {
|
|
425
|
-
d: "m10.08 15.5.17.2-.17-.2c-.13.1-.26.23-.28.33-.18.42.3.8-.37 1.1v.03h.14c.63-.05 1-1.2.51-1.46Z",
|
|
426
|
-
fill: "#E4051F"
|
|
427
|
-
}), _jsx("path", {
|
|
428
|
-
d: "M9.97 15.56c.57.06.13 1.35-.37 1.35-.83 0-.3-1.36.37-1.35.1 0 .1-.15 0-.15-.84 0-1.42 1.52-.37 1.65.68.08 1.17-1.56.37-1.65-.1 0-.1.14 0 .15Z",
|
|
429
|
-
fill: "#B7D3E0"
|
|
430
|
-
}), _jsx("path", {
|
|
431
|
-
d: "M10.08 15.47c-.17.11-.3.26-.37.45-.14.36.18.68-.26.93-.08.05 0 .18.08.13.22-.13.34-.29.33-.55 0-.16-.04-.31 0-.47.02-.15.18-.28.3-.36.08-.05 0-.18-.08-.13Z",
|
|
432
|
-
fill: "#B7D3E0"
|
|
433
|
-
}), _jsx("path", {
|
|
434
|
-
d: "m9.33 16.29.18-.05c.06 0 .13 0 .16-.07.06-.14.05-.32-.14-.33-.16 0-.26.21-.3.33-.04.16.02.33.2.33.1 0 .1-.15 0-.15-.14 0-.02-.23.02-.29 0-.01.1-.11.1-.06.01.04 0 .1-.02.13l.05-.05-.29.06c-.09.02-.05.17.04.15ZM10.12 15.75c-.19.03-.28.22-.26.4 0 .04.04.46.2.36.07-.05 0-.18-.08-.13-.01 0 .07-.01.08.01l-.01-.04a1.1 1.1 0 0 1-.05-.28c0-.09.07-.16.16-.18.1-.01.06-.15-.04-.14Z",
|
|
435
|
-
fill: "#fff"
|
|
436
|
-
}), _jsx("path", {
|
|
437
|
-
d: "m9.95 16.21.21-.05c.1-.02.06-.16-.04-.14l-.2.05c-.1.03-.06.17.03.14Z",
|
|
438
|
-
fill: "#fff"
|
|
439
|
-
}), _jsx("path", {
|
|
440
|
-
d: "M9.25 18a.08.08 0 0 1-.07-.03l-.1-.09c-.26-.22-.86-.73-.61-1.37.2-.52.13-.84.07-1.1a2.13 2.13 0 0 1-.04-.22c-.02-.13.1-.24.17-.3l-.04-.08v-.04a.4.4 0 0 1-.11-.12.4.4 0 0 1-.04-.27.08.08 0 0 1 .1-.06c2.5.38 4.3-.79 4.32-.8a.09.09 0 0 1 .08 0c.02 0 .04.03.05.05.02.17.07.34.1.39h.02c.1.02.24.04.26.14.02.1-.07.16-.1.18-.52.4-.8.88-1.09 1.35-.28.48-.55.93-1.04 1.24A42.9 42.9 0 0 1 9.25 18Zm-.4-3.1c.02.04 0 .08-.03.1-.07.04-.16.12-.15.18l.03.2c.06.28.14.62-.08 1.19-.2.53.32.97.57 1.19l.07.05c.21-.12 1.02-.57 1.83-1.08.45-.29.71-.72.99-1.18a4.54 4.54 0 0 1 1.14-1.4l-.1-.03h-.04c-.04-.01-.12-.03-.2-.4a6.93 6.93 0 0 1-4.24.77c0 .03 0 .06.03.09.03.07.5.44 1.78.37.04 0 .08.03.09.08 0 .04-.04.08-.08.08-.8.05-1.3-.07-1.6-.2Z",
|
|
441
|
-
fill: "#1D1A1E"
|
|
442
|
-
}), _jsx("path", {
|
|
443
|
-
d: "M11.18 15.4a.08.08 0 0 1-.08-.04.08.08 0 0 1 .04-.11A9.04 9.04 0 0 0 13 14a.08.08 0 0 1 .11 0c.03.04.03.1 0 .12a9.31 9.31 0 0 1-1.92 1.29Z",
|
|
444
|
-
fill: "#1D1A1E"
|
|
445
|
-
}), _jsx("path", {
|
|
446
|
-
d: "M14.95 14.97c-.86 0-1.75-.7-1.8-.74l.11-.13c.01.01 1.02.8 1.86.7a1 1 0 0 0 .66-.39 2.24 2.24 0 0 0-2.72-.52l-.08-.14c.02 0 1.62-.88 2.98.6l.04.05-.04.06a1.18 1.18 0 0 1-1.01.5Z",
|
|
447
|
-
fill: "#1D1A1E"
|
|
448
|
-
}), _jsx("path", {
|
|
449
|
-
d: "m13.02 13.72-.14-.09c.03-.04.66-.97 2.33-1.14l.12-.01-.03.11c-.13.53-.33.78-.69 1.08l-.1-.12c.3-.27.48-.48.6-.88-1.5.2-2.08 1.04-2.09 1.05Z",
|
|
450
|
-
fill: "#1D1A1E"
|
|
451
|
-
})]
|
|
452
|
-
}, "18");
|
|
453
|
-
}
|
|
135
|
+
return (<Icon key="18" {...props}>
|
|
136
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
137
|
+
<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"/>
|
|
138
|
+
<path d="M11.4 12.3c-.13.03-.25.12-.34.12a5.44 5.44 0 0 1-.8-.14l.05.1-.04-.1c-.38-.09-.73-.25-1.11-.31 0 0-.3-.07-.18-.01-.24-.04-.32.01-.55.03l.07.08a1.7 1.7 0 0 1-.07-.08c-.24.03-.49.1-.73.23 0 .02 0 .03.02.05-.23.13-.62.83-.64.93-.01.09.95-.08.95-.08l.04.08.27.02c.42.02.85.12 1.26.11.3 0 .59-.09.86-.16 0-.02-.23.08-.22.06-.01.02.23-.08.22-.06.46-.12.88-.37 1.2-.84a.32.32 0 0 0-.26-.03Z" fill="#EE770D"/>
|
|
139
|
+
<path d="M9.77 13.94c.34-.15.55-.43.69-.77-.28.07-.57.15-.87.15-.4 0-.84-.08-1.25-.1.16.59.87.88 1.43.72Z" fill="#EE770D"/>
|
|
140
|
+
<path d="M8.3 9.95c-.3.64-.33 1.49.13 2.04l.26-.02a3.53 3.53 0 0 1-.39-2.02Z" fill="#D0EBF8"/>
|
|
141
|
+
<path d="M9.16 11.98c.7-.7.54-1.8-.07-2.44-.16-.07-.45.01-.6.1-.07.09-.13.2-.19.3-.07.7.07 1.41.4 2.03.15-.01.31-.01.46.01ZM11.4 12.3c.6-.68.9-1.63.54-2.5-.08-.14-.16-.28-.31-.35-.38-.06-.62-.08-.91.07a1.8 1.8 0 0 0-.24.21c-.27.92-.19 1.92.36 2.67l.22.02c.09 0 .2-.09.34-.12Z" fill="#fff"/>
|
|
142
|
+
<path d="M10.48 9.73c-.66.69-.56 1.71-.21 2.55l.57.12a3.06 3.06 0 0 1-.36-2.67Z" fill="#D0EBF8"/>
|
|
143
|
+
<path d="M13.98 10.48c0 .14-.06.37.02.44.37.2.57-.43.5-.73-.22-.1-.46.15-.52.29Z" fill="#B7C2D7"/>
|
|
144
|
+
<path d="M8.49 6.05c-.61.29-1.02 1.22-.66 1.63.93-.84 2.02-1.53 2.93-2.42-.8.03-1.6.3-2.27.8Z" fill="#B7D3E0"/>
|
|
145
|
+
<path d="M10.76 5.26c-.91.89-2 1.58-2.93 2.42.88.43 1.85-.3 2.42-1.2.07-.09.5-.4.52-.18.03.2.08.4.15.57l1.42-1.35a4.05 4.05 0 0 0-1.58-.26Z" fill="#E9F6FC"/>
|
|
146
|
+
<path d="M12.94 5.8c-.2-.11-.4-.2-.6-.28l-1.42 1.35c.11.28.28.52.49.67.27.2.6.23.95.22.32-.01.68-.06 1-.21.06-.08.13-.23.2-.3.14-.6-.2-1.03-.62-1.45Z" fill="#B7D3E0"/>
|
|
147
|
+
<path d="M13.58 7.76c.24-.25.32-.52.32-.8l-.04-.02.04.03c0-.32-.13-.65-.3-.96l-.16-.08c-1-1.2-3.28-.84-4.66-.3C7.4 6.16 7 7.5 7.68 8.09l-.01.06c1.1.58 2.1-.39 2.97-1.1-.06.37.1.66.33.87.54.28 1.21.4 1.8.24.2-.06.43-.12.6-.21l-.08-.03c.03 0 .06.02.08.03a.58.58 0 0 0 .21-.2ZM10.77 6.3c-.01-.23-.45.08-.52.16-.53.85-1.6 1.62-2.32 1.21-.05-.03-.16-.06-.15-.13-.22-.37.1-1.21.7-1.5a4.2 4.2 0 0 1 4.42-.27c.09.05.18.15.25.23.3.3.52.76.42 1.23-.08.08-.14.23-.22.3-.32.17-.68.2-1.02.22-.36.02-.7 0-.97-.2-.25-.18-.28-.54-.38-.91-.03-.12-.2-.22-.21-.34Z" fill="#FFD931"/>
|
|
148
|
+
<path d="M14.9 7.75a2.75 2.75 0 0 0-1.3-1.74c.17.31.3.64.3.96.36.23.64.6 1.01.79ZM13.37 7.95c-.17.1-.4.15-.6.2-.59.17-1.26.05-1.8-.23a.94.94 0 0 1-.33-.87c-.06.05-.16.03-.22.1-.65.7-1.72 1.53-2.75 1-.2.49-.33 1-.4 1.47 1.22-1.83 4.13-1.89 5.68-.66.62.57-.01 1.63.24 2.5.12.43.66.37 1.05.14h-.02a14.95 14.95 0 0 0 .82-2.23 3.3 3.3 0 0 0-1.67-1.42Zm1.13 2.24c.07.3-.13.93-.5.73-.08-.07.03-.27.03-.42.06-.14.25-.42.47-.31Z" fill="#E4051F"/>
|
|
149
|
+
<path d="M15.1 9.4c.03.06.17-.8.15-.96-.01-.17 0-.38-.34-.68-.37-.2-.69-.61-1.05-.85 0 .28-.04.6-.27.85a.57.57 0 0 1-.22.19c.73.25 1.28.8 1.67 1.42.01-.02.03 0 .05.04Z" fill="#925F1A"/>
|
|
150
|
+
<path d="M8.24 13.68c-.18-.41-.1-.36-.17-.52l.27.02c.16.58.87.88 1.42.72.35-.15.6-.35.74-.7a2 2 0 0 0 1.15-.91.31.31 0 0 0-.26-.03c.6-.69.92-1.63.55-2.5-.08-.14-.16-.28-.32-.35-.37-.06-.61-.06-.9.1-.92.67-.84 1.8-.45 2.73-.39-.1-.77-.2-1.14-.26.32-.33.43-.74.43-1.17 0-.48-.15-.98-.47-1.31-.16-.07-.45.01-.6.09-.48.66-.6 1.7-.06 2.36-.25.02-.5.1-.73.23l-.06-.19h-.05c-.19-.99-.03-2.01.57-2.6a3.3 3.3 0 0 1 2.77-.7c.45.06.82.05 1.2.26.23.07.53.28.54.42.25.92-.5 2.9.96 2.79a.23.23 0 0 0-.04.06c.1-.03.11-.05.2-.01-.75 1.18-1.27 1.84-2.58 2.08-.49.16-2.15.56-2.73-.21-.1-.13-.24-.4-.24-.4Z" fill="#FFD931"/>
|
|
151
|
+
<path d="M14.24 11.6c-.4.23-.93.28-1.05-.14-.25-.87.38-1.93-.24-2.5-1.55-1.23-4.46-1.17-5.67.66-.12.87-.04 1.6.11 1.78h-.01c.11.18.15.4.2.62h.01c-.19-.99-.01-1.98.58-2.6.6-.65 1.66-.9 2.76-.68.45.05.82.04 1.2.25.23.07.54.28.54.42.19.7-.29 2.03.13 2.58.14.19.47.24.84.21.04-.05.14-.03.2-.05.2-.07.42-.12.52-.32v-.05c.03-.05 0-.13-.12-.18Z" fill="#E4051F"/>
|
|
152
|
+
<path d="M13.13 12.19s.36.05.61.03a5.73 5.73 0 0 1-.94 1.43c-.16.11-1.26.55-1.36.57.37-.37 1.17-.93 1.7-2.03Z" fill="#925F1A"/>
|
|
153
|
+
<path d="m13.1 14.02-.02-.03-.04.06.06-.03Z" fill="#BA101C"/>
|
|
154
|
+
<path d="M13.01 13.85a1.22 1.22 0 0 1-.06-.17c-.02-.11-1.16.51-2.2.72-1.05.2-2.2 0-2.2 0-.02.35.21.43.21.43v.01c.6.1 1.24.15 1.83.18-.64.22-1.33.21-2.03.27 0 .2.1.55.06.92-.32 1.08.02.97.14 1.2.12.22.48.52.49.5l.14-.08c.56-.53 1.05-1.1 1.61-1.64.37-.3.73-.61 1.17-.92-.45.01-.82.24-1.27.19.71-.46 1.57-.71 2.14-1.41h-.02.02l.04-.06a.95.95 0 0 1-.07-.14Z" fill="#E4051F"/>
|
|
155
|
+
<path d="M8.76 14.84c-.02.04-.08.18-.17.29-.03.03-.04.09-.03.16.7-.06 1.4-.06 2.03-.27-.59-.03-1.22-.07-1.83-.18ZM13.16 14.08a.2.2 0 0 1-.06-.06l-.06.03c-.57.7-1.43.95-2.14 1.4.45.06.82-.17 1.27-.18-.44.3-.8.61-1.17.92-.56.54-1.05 1.11-1.6 1.64.49-.3 2.06-1.25 2.4-1.68.4-.5 1.15-1.65 1.36-1.83.2-.17.1-.2 0-.24Z" fill="#BA101C"/>
|
|
156
|
+
<path d="m13.08 14.02.02.02.16.17s.04.07.16.16c.62.11 1.25.2 1.93.05-.73-.27-1.55-.73-2.27-.4Z" fill="#BA101C"/>
|
|
157
|
+
<path d="m14.47 13.66.04-.03c-.55-.08-1.12-.1-1.53.25l.09.13.02-.03-.02.03.01.01c.72-.33 1.54.13 2.27.4a4.6 4.6 0 0 1-1.93-.05c.12.1.31.22.62.34.94.4 1.7-.03 1.85-.3-.03-.17-.84-.66-1.42-.75ZM15.22 12.57s-1.07.22-1.55.5c-.26.14-.46.35-.59.5.67-.21 1.33-.57 2.04-.76l.1-.24Z" fill="#E4051F"/>
|
|
158
|
+
<path d="M13.08 13.57c-.1.12-.15.21-.15.21l.05.1c.41-.35.98-.33 1.54-.25.26-.15.48-.56.6-.82-.7.19-1.37.55-2.04.76Z" fill="#BA101C"/>
|
|
159
|
+
<path d="M9.53 13.45c-.25 0-.66-.08-1.03-.15-.26-.06-.52-.1-.63-.1-.11 0-.3.04-.45.08-.22.06-.35.09-.4.02a.1.1 0 0 1-.02-.1c.2-.83.92-1.37 1.84-1.37.28 0 .56.05.82.16.69.29.94.38 1.17.38.08 0 .17 0 .29-.04.06-.05.23-.2.38-.2.08 0 .15.05.2.13.04.08.04.15.02.2-.03.1-.13.12-.2.15a.5.5 0 0 0-.1.04c-.33.64-1.32.75-1.74.8H9.53Zm-1.66-.42c.13 0 .38.05.67.1.4.09.86.18 1.07.16l.05-.01c.4-.04 1.34-.15 1.62-.72l.02-.02c.04-.04.1-.06.16-.08.04-.02.1-.04.1-.06l-.01-.06c-.02-.03-.03-.04-.05-.04-.08 0-.2.1-.28.17l-.02.02h-.02c-.15.04-.25.05-.35.05-.26 0-.52-.1-1.23-.4a2 2 0 0 0-.76-.15c-.62 0-1.4.31-1.65 1.18l.2-.05c.16-.04.34-.1.48-.1Z" fill="#1D1A1E"/>
|
|
160
|
+
<path d="M9.4 14.03c-.82 0-1.13-.81-1.13-.82l.16-.05c0 .03.32.86 1.22.68.6-.12.73-.63.73-.64l.16.04c0 .02-.14.62-.86.76l-.27.03ZM8.43 12c-.02-.01-.49-.36-.38-1.31.1-.92.54-1.3.9-1.27.34.03.7.7.63 1.47-.07.77-.32 1.05-.33 1.06l-.12-.1s.22-.27.28-.97c.07-.73-.27-1.28-.48-1.3-.23-.02-.62.26-.72 1.13-.1.85.3 1.15.32 1.16l-.1.13ZM10.86 12.54l-.03-.16s.55-.12.98-.95c.3-.57.19-1.2.01-1.55-.1-.22-.25-.36-.39-.38-.27-.05-.95-.05-1.3 1.1-.27.93.18 1.56.28 1.68l-.13.1a2 2 0 0 1-.3-1.83c.39-1.3 1.23-1.26 1.48-1.22.2.04.38.21.51.48.2.39.31 1.07-.01 1.7-.47.9-1.08 1.03-1.1 1.03Z" fill="#1D1A1E"/>
|
|
161
|
+
<path d="M9.13 11.25c0 .17-.07.3-.17.31-.1 0-.2-.12-.2-.29-.01-.16.06-.3.17-.3.1-.01.19.12.2.28Z" fill="#1D1A1E"/>
|
|
162
|
+
<path d="M9.06 11.3c.01.06-.01.1-.05.11-.03.01-.07-.03-.08-.08-.01-.05.01-.1.05-.1.03 0 .07.03.08.08Z" fill="#fff"/>
|
|
163
|
+
<path d="M11.32 11.38c-.02.17-.12.3-.22.29-.11-.01-.18-.16-.17-.33.02-.18.12-.3.23-.3.1.01.18.16.16.34Z" fill="#1D1A1E"/>
|
|
164
|
+
<path d="M11.24 11.42c0 .06-.03.1-.07.1-.04 0-.07-.04-.07-.1 0-.05.03-.1.07-.1.04 0 .07.05.07.1Z" fill="#fff"/>
|
|
165
|
+
<path d="m8.93 12.54-.1-.14c.12-.09.28-.13.45-.12l-.02.17a.49.49 0 0 0-.33.09Z" fill="#1D1A1E"/>
|
|
166
|
+
<path d="M13.43 12.33a.84.84 0 0 1-.64-.27c-.4-.43-.25-1.34-.14-2l.05-.3c.07-.52-.54-.71-1.08-.88h-.03a4.7 4.7 0 0 0-2.96.26c-.45.25-.74.61-.86 1.08-.2.79-.1 1.53.02 2.02l-.16.04a4.26 4.26 0 0 1-.05-.2A4.41 4.41 0 0 1 7.14 10c.1-.88.96-1.6 2.17-1.82 1.08-.2 2.48.03 3.26.34.8.32.8.88.74 1.53l-.07.47c-.07.42-.12.73.05.96.1.15.25.2.35.21.16.02.3-.02.35-.07.1-.07.31-.16.42-.06.07.06.06.17-.05.33a1.22 1.22 0 0 1-.93.44ZM10.45 8.6c.56 0 1.02.07 1.2.13h.02c.57.18 1.28.4 1.2 1.07l-.06.3c-.1.6-.25 1.48.1 1.86.18.2.41.23.58.22.32-.02.62-.21.73-.38a.4.4 0 0 0 .06-.11.37.37 0 0 0-.18.07.67.67 0 0 1-.48.1.67.67 0 0 1-.47-.27c-.2-.3-.14-.64-.07-1.09l.06-.46c.07-.62.06-1.08-.63-1.36a6.7 6.7 0 0 0-3.16-.32c-1.13.2-1.95.87-2.04 1.67-.06.46.06.98.19 1.37-.02-.37 0-.78.1-1.2.14-.52.46-.92.95-1.2.57-.31 1.3-.4 1.9-.4ZM8.9 14.5c-.03-.02-.73-.51-.96-1.35l.17-.04c.2.78.87 1.25.88 1.26l-.1.13Z" fill="#1D1A1E"/>
|
|
167
|
+
<path d="m14.22 11.66-.14-.1c.01 0 .66-.86.84-2.26l.16.02a5.1 5.1 0 0 1-.86 2.34ZM14.88 7.86a2.82 2.82 0 0 0-1.53-1.97l.07-.15c.97.43 1.48 1.4 1.62 2.09l-.16.03ZM7.36 9.72h-.17c0-.03.04-.7.41-1.67l.16.06c-.37.95-.4 1.6-.4 1.61Z" fill="#1D1A1E"/>
|
|
168
|
+
<path d="M8.41 8.36h-.1c-.4-.02-.67-.15-.85-.4-.2-.29-.23-.72-.08-1.2.4-1.2 2.6-1.76 3.95-1.76.29 0 .54.03.73.07 1.19.3 1.73.84 1.89 1.91.04.3-.03.54-.21.75-.43.49-1.33.52-1.6.52-.17 0-.34-.01-.5-.04-.47-.07-.82-.25-1-.5a.6.6 0 0 1-.1-.46V7.1c-.03 0-.14.06-.3.32-.25.43-.9.94-1.83.94Zm2.92-3.2c-1.36 0-3.44.58-3.79 1.66-.13.42-.11.8.06 1.05.14.2.38.3.7.32a2 2 0 0 0 1.8-.86c.15-.25.31-.39.44-.39.05 0 .1.02.12.06.05.06.06.15.04.28-.02.11 0 .23.08.33.15.22.47.37.9.44.13.03.3.04.46.04.67 0 1.21-.18 1.47-.47.15-.17.2-.37.17-.61-.14-1-.63-1.5-1.76-1.78a3.06 3.06 0 0 0-.69-.07Z" fill="#1D1A1E"/>
|
|
169
|
+
<path d="M8.3 7.89c-.24 0-.44-.07-.55-.2a.5.5 0 0 1-.11-.42c.14-1.1 1.14-1.77 3.05-2.02 1.06-.14 1.97.13 2.53.75.3.34.48.78.43 1.12-.07.6-.77.67-1.29.67l-.5-.01h-.1c-.76-.04-.82-.8-.85-1.15-.02-.2-.16-.26-.3-.26-.15 0-.38.1-.5.39-.26.67-1.15 1.13-1.8 1.13Zm2.93-2.51a4 4 0 0 0-.52.03C8 5.77 7.85 6.91 7.81 7.3c-.02.12 0 .22.07.3.08.08.23.13.43.13.59 0 1.41-.42 1.65-1.02.14-.37.44-.5.66-.5.25 0 .44.17.46.41.03.47.12.97.68 1h.1l.5.02c.73 0 1.09-.17 1.13-.53.03-.3-.12-.68-.4-1a2.44 2.44 0 0 0-1.86-.72ZM15.11 9.52h-.03c-.06-.02-.1-.08-.14-.18a1.12 1.12 0 0 0-.14-.24c-.4-.46-.86-.83-1.39-1.12l.08-.14c.54.3 1.03.68 1.43 1.15.08.09.13.19.17.27a7 7 0 0 0 .05-1.12c-.04-.09-.7-.63-1.31-1.1l.1-.13c.61.47 1.34 1.06 1.38 1.19 0 0 .01 1.3-.14 1.4a.1.1 0 0 1-.06.02Z" fill="#1D1A1E"/>
|
|
170
|
+
<path d="M14.12 10.4c.15-.3.36-.27.41-.16.05.12.05.32-.17.56-.22.24-.55.18-.24-.4Z" fill="#B7D3E0"/>
|
|
171
|
+
<path d="M14.12 11.02a.2.2 0 0 1-.18-.1c-.07-.11-.04-.3.1-.56.14-.25.3-.28.36-.28.1 0 .18.05.2.13.05.1.1.34-.18.65-.1.1-.2.16-.3.16Zm.28-.78c-.05 0-.14.05-.21.2-.16.3-.11.39-.1.4l.03.01c.03 0 .1-.03.18-.1.21-.24.18-.41.15-.48 0-.01-.02-.03-.05-.03ZM8.23 9.5a.08.08 0 0 1-.06-.14c.45-.44 1.05-.2 1.08-.2.04.02.06.07.04.11a.08.08 0 0 1-.1.05c-.03-.01-.53-.2-.9.16a.08.08 0 0 1-.06.02ZM12.17 9.75a.08.08 0 0 1-.08-.08c-.02-.4-.13-.67-.36-.8-.48-.27-1.3.17-1.31.18-.04.02-.1 0-.11-.03a.08.08 0 0 1 .03-.12c.04-.02.91-.48 1.48-.17.27.16.42.47.43.93 0 .05-.03.08-.08.09ZM10.63 14.48l-.03-.16c.67-.11 1.05-.41 1.06-.41a4.97 4.97 0 0 0 1.45-1.74l.16.07a5.05 5.05 0 0 1-1.51 1.8 2.6 2.6 0 0 1-1.13.44ZM12.51 13.91l-.09-.13c.34-.22.7-.69.7-.69.2-.26.54-.89.55-.9l.14.08a3.8 3.8 0 0 1-1.3 1.64Z" fill="#1D1A1E"/>
|
|
172
|
+
<path d="M9.41 16.93h.02c0-.04.02-.06.06-.07-.04.01-.05.03-.06.06.67-.29.18-.65.35-1.08.03-.1.17-.24.3-.35l-.04-.04c-.12.02-.35.06-.43.13-.59.47-.66 1.29-.18 1.38a.3.3 0 0 1 0-.04l-.02.01Z" fill="#0084C7"/>
|
|
173
|
+
<path d="m10.08 15.5.17.2-.17-.2c-.13.1-.26.23-.28.33-.18.42.3.8-.37 1.1v.03h.14c.63-.05 1-1.2.51-1.46Z" fill="#E4051F"/>
|
|
174
|
+
<path d="M9.97 15.56c.57.06.13 1.35-.37 1.35-.83 0-.3-1.36.37-1.35.1 0 .1-.15 0-.15-.84 0-1.42 1.52-.37 1.65.68.08 1.17-1.56.37-1.65-.1 0-.1.14 0 .15Z" fill="#B7D3E0"/>
|
|
175
|
+
<path d="M10.08 15.47c-.17.11-.3.26-.37.45-.14.36.18.68-.26.93-.08.05 0 .18.08.13.22-.13.34-.29.33-.55 0-.16-.04-.31 0-.47.02-.15.18-.28.3-.36.08-.05 0-.18-.08-.13Z" fill="#B7D3E0"/>
|
|
176
|
+
<path d="m9.33 16.29.18-.05c.06 0 .13 0 .16-.07.06-.14.05-.32-.14-.33-.16 0-.26.21-.3.33-.04.16.02.33.2.33.1 0 .1-.15 0-.15-.14 0-.02-.23.02-.29 0-.01.1-.11.1-.06.01.04 0 .1-.02.13l.05-.05-.29.06c-.09.02-.05.17.04.15ZM10.12 15.75c-.19.03-.28.22-.26.4 0 .04.04.46.2.36.07-.05 0-.18-.08-.13-.01 0 .07-.01.08.01l-.01-.04a1.1 1.1 0 0 1-.05-.28c0-.09.07-.16.16-.18.1-.01.06-.15-.04-.14Z" fill="#fff"/>
|
|
177
|
+
<path d="m9.95 16.21.21-.05c.1-.02.06-.16-.04-.14l-.2.05c-.1.03-.06.17.03.14Z" fill="#fff"/>
|
|
178
|
+
<path d="M9.25 18a.08.08 0 0 1-.07-.03l-.1-.09c-.26-.22-.86-.73-.61-1.37.2-.52.13-.84.07-1.1a2.13 2.13 0 0 1-.04-.22c-.02-.13.1-.24.17-.3l-.04-.08v-.04a.4.4 0 0 1-.11-.12.4.4 0 0 1-.04-.27.08.08 0 0 1 .1-.06c2.5.38 4.3-.79 4.32-.8a.09.09 0 0 1 .08 0c.02 0 .04.03.05.05.02.17.07.34.1.39h.02c.1.02.24.04.26.14.02.1-.07.16-.1.18-.52.4-.8.88-1.09 1.35-.28.48-.55.93-1.04 1.24A42.9 42.9 0 0 1 9.25 18Zm-.4-3.1c.02.04 0 .08-.03.1-.07.04-.16.12-.15.18l.03.2c.06.28.14.62-.08 1.19-.2.53.32.97.57 1.19l.07.05c.21-.12 1.02-.57 1.83-1.08.45-.29.71-.72.99-1.18a4.54 4.54 0 0 1 1.14-1.4l-.1-.03h-.04c-.04-.01-.12-.03-.2-.4a6.93 6.93 0 0 1-4.24.77c0 .03 0 .06.03.09.03.07.5.44 1.78.37.04 0 .08.03.09.08 0 .04-.04.08-.08.08-.8.05-1.3-.07-1.6-.2Z" fill="#1D1A1E"/>
|
|
179
|
+
<path d="M11.18 15.4a.08.08 0 0 1-.08-.04.08.08 0 0 1 .04-.11A9.04 9.04 0 0 0 13 14a.08.08 0 0 1 .11 0c.03.04.03.1 0 .12a9.31 9.31 0 0 1-1.92 1.29Z" fill="#1D1A1E"/>
|
|
180
|
+
<path d="M14.95 14.97c-.86 0-1.75-.7-1.8-.74l.11-.13c.01.01 1.02.8 1.86.7a1 1 0 0 0 .66-.39 2.24 2.24 0 0 0-2.72-.52l-.08-.14c.02 0 1.62-.88 2.98.6l.04.05-.04.06a1.18 1.18 0 0 1-1.01.5Z" fill="#1D1A1E"/>
|
|
181
|
+
<path d="m13.02 13.72-.14-.09c.03-.04.66-.97 2.33-1.14l.12-.01-.03.11c-.13.53-.33.78-.69 1.08l-.1-.12c.3-.27.48-.48.6-.88-1.5.2-2.08 1.04-2.09 1.05Z" fill="#1D1A1E"/>
|
|
182
|
+
</Icon>);
|
|
183
|
+
}
|
|
184
|
+
// ESF FIN
|
|
185
|
+
// STATION DEBUT
|
|
454
186
|
export function Chairlift(props) {
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
d
|
|
459
|
-
|
|
460
|
-
}), _jsx("path", {
|
|
461
|
-
fillRule: "evenodd",
|
|
462
|
-
clipRule: "evenodd",
|
|
463
|
-
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",
|
|
464
|
-
fill: "#fff"
|
|
465
|
-
}), _jsx("path", {
|
|
466
|
-
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",
|
|
467
|
-
fill: "#fff"
|
|
468
|
-
})]
|
|
469
|
-
}, "19");
|
|
187
|
+
return (<Icon key="19" {...props}>
|
|
188
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
189
|
+
<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"/>
|
|
190
|
+
<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"/>
|
|
191
|
+
</Icon>);
|
|
470
192
|
}
|
|
471
193
|
export function CableCar(props) {
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
}), _jsx("path", {
|
|
478
|
-
fillRule: "evenodd",
|
|
479
|
-
clipRule: "evenodd",
|
|
480
|
-
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",
|
|
481
|
-
fill: "#fff"
|
|
482
|
-
}), _jsx("path", {
|
|
483
|
-
fillRule: "evenodd",
|
|
484
|
-
clipRule: "evenodd",
|
|
485
|
-
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",
|
|
486
|
-
fill: "#fff"
|
|
487
|
-
})]
|
|
488
|
-
}, "20");
|
|
194
|
+
return (<Icon key="20" {...props}>
|
|
195
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
196
|
+
<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"/>
|
|
197
|
+
<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"/>
|
|
198
|
+
</Icon>);
|
|
489
199
|
}
|
|
490
200
|
export function ClubPiouPiouBlue(props) {
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
d
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
d
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
d
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
d
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
d
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
d
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
d
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
d
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
d
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
d
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
d
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
d
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
d
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
d
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
fill: "#FFD931"
|
|
540
|
-
}), _jsx("path", {
|
|
541
|
-
d: "M14.24 11.6c-.4.23-.93.28-1.05-.14-.25-.87.38-1.93-.24-2.5-1.55-1.23-4.46-1.17-5.67.66-.12.87-.04 1.6.11 1.78h-.01c.11.18.15.4.2.62h.01c-.19-.99-.01-1.98.58-2.6.6-.65 1.66-.9 2.76-.68.45.05.82.04 1.2.25.23.07.54.28.54.42.19.7-.29 2.03.13 2.58.14.19.47.24.84.21.04-.05.14-.03.2-.05.2-.07.42-.12.52-.32v-.05c.03-.05 0-.13-.12-.18Z",
|
|
542
|
-
fill: "#E4051F"
|
|
543
|
-
}), _jsx("path", {
|
|
544
|
-
d: "M13.13 12.19s.36.05.61.03a5.73 5.73 0 0 1-.94 1.43c-.16.11-1.26.55-1.36.57.37-.37 1.17-.93 1.7-2.03Z",
|
|
545
|
-
fill: "#925F1A"
|
|
546
|
-
}), _jsx("path", {
|
|
547
|
-
d: "m13.1 14.02-.02-.03-.04.06.06-.03Z",
|
|
548
|
-
fill: "#BA101C"
|
|
549
|
-
}), _jsx("path", {
|
|
550
|
-
d: "M13.01 13.85a1.22 1.22 0 0 1-.06-.17c-.02-.11-1.16.51-2.2.72-1.05.2-2.2 0-2.2 0-.02.35.21.43.21.43v.01c.6.1 1.24.15 1.83.18-.64.22-1.33.21-2.03.27 0 .2.1.55.06.92-.32 1.08.02.97.14 1.2.12.22.48.52.49.5l.14-.08c.56-.53 1.05-1.1 1.61-1.64.37-.3.73-.61 1.17-.92-.45.01-.82.24-1.27.19.71-.46 1.57-.71 2.14-1.41h-.02.02l.04-.06a.95.95 0 0 1-.07-.14Z",
|
|
551
|
-
fill: "#E4051F"
|
|
552
|
-
}), _jsx("path", {
|
|
553
|
-
d: "M8.76 14.84c-.02.04-.08.18-.17.29-.03.03-.04.09-.03.16.7-.06 1.4-.06 2.03-.27-.59-.03-1.22-.07-1.83-.18ZM13.16 14.08a.2.2 0 0 1-.06-.06l-.06.03c-.57.7-1.43.95-2.14 1.4.45.06.82-.17 1.27-.18-.44.3-.8.61-1.17.92-.56.54-1.05 1.11-1.6 1.64.49-.3 2.06-1.25 2.4-1.68.4-.5 1.15-1.65 1.36-1.83.2-.17.1-.2 0-.24Z",
|
|
554
|
-
fill: "#BA101C"
|
|
555
|
-
}), _jsx("path", {
|
|
556
|
-
d: "m13.08 14.02.02.02.16.17s.04.07.16.16c.62.11 1.25.2 1.93.05-.73-.27-1.55-.73-2.27-.4Z",
|
|
557
|
-
fill: "#BA101C"
|
|
558
|
-
}), _jsx("path", {
|
|
559
|
-
d: "m14.47 13.66.04-.03c-.55-.08-1.12-.1-1.53.25l.09.13.02-.03-.02.03.01.01c.72-.33 1.54.13 2.27.4a4.6 4.6 0 0 1-1.93-.05c.12.1.31.22.62.34.94.4 1.7-.03 1.85-.3-.03-.17-.84-.66-1.42-.75ZM15.22 12.57s-1.07.22-1.55.5c-.26.14-.46.35-.59.5.67-.21 1.33-.57 2.04-.76l.1-.24Z",
|
|
560
|
-
fill: "#E4051F"
|
|
561
|
-
}), _jsx("path", {
|
|
562
|
-
d: "M13.08 13.57c-.1.12-.15.21-.15.21l.05.1c.41-.35.98-.33 1.54-.25.26-.15.48-.56.6-.82-.7.19-1.37.55-2.04.76Z",
|
|
563
|
-
fill: "#BA101C"
|
|
564
|
-
}), _jsx("path", {
|
|
565
|
-
d: "M9.53 13.45c-.25 0-.66-.08-1.03-.15-.26-.06-.52-.1-.63-.1-.11 0-.3.04-.45.08-.22.06-.35.09-.4.02a.1.1 0 0 1-.02-.1c.2-.83.92-1.37 1.84-1.37.28 0 .56.05.82.16.69.29.94.38 1.17.38.08 0 .17 0 .29-.04.06-.05.23-.2.38-.2.08 0 .15.05.2.13.04.08.04.15.02.2-.03.1-.13.12-.2.15a.5.5 0 0 0-.1.04c-.33.64-1.32.75-1.74.8H9.53Zm-1.66-.42c.13 0 .38.05.67.1.4.09.86.18 1.07.16l.05-.01c.4-.04 1.34-.15 1.62-.72l.02-.02c.04-.04.1-.06.16-.08.04-.02.1-.04.1-.06l-.01-.06c-.02-.03-.03-.04-.05-.04-.08 0-.2.1-.28.17l-.02.02h-.02c-.15.04-.25.05-.35.05-.26 0-.52-.1-1.23-.4a2 2 0 0 0-.76-.15c-.62 0-1.4.31-1.65 1.18l.2-.05c.16-.04.34-.1.48-.1Z",
|
|
566
|
-
fill: "#1D1A1E"
|
|
567
|
-
}), _jsx("path", {
|
|
568
|
-
d: "M9.4 14.03c-.82 0-1.13-.81-1.13-.82l.16-.05c0 .03.32.86 1.22.68.6-.12.73-.63.73-.64l.16.04c0 .02-.14.62-.86.76l-.27.03ZM8.43 12c-.02-.01-.49-.36-.38-1.31.1-.92.54-1.3.9-1.27.34.03.7.7.63 1.47-.07.77-.32 1.05-.33 1.06l-.12-.1s.22-.27.28-.97c.07-.73-.27-1.28-.48-1.3-.23-.02-.62.26-.72 1.13-.1.85.3 1.15.32 1.16l-.1.13ZM10.86 12.54l-.03-.16s.55-.12.98-.95c.3-.57.19-1.2.01-1.55-.1-.22-.25-.36-.39-.38-.27-.05-.95-.05-1.3 1.1-.27.93.18 1.56.28 1.68l-.13.1a2 2 0 0 1-.3-1.83c.39-1.3 1.23-1.26 1.48-1.22.2.04.38.21.51.48.2.39.31 1.07-.01 1.7-.47.9-1.08 1.03-1.1 1.03Z",
|
|
569
|
-
fill: "#1D1A1E"
|
|
570
|
-
}), _jsx("path", {
|
|
571
|
-
d: "M9.13 11.25c0 .17-.07.3-.17.31-.1 0-.2-.12-.2-.29-.01-.16.06-.3.17-.3.1-.01.19.12.2.28Z",
|
|
572
|
-
fill: "#1D1A1E"
|
|
573
|
-
}), _jsx("path", {
|
|
574
|
-
d: "M9.06 11.3c.01.06-.01.1-.05.11-.03.01-.07-.03-.08-.08-.01-.05.01-.1.05-.1.03 0 .07.03.08.08Z",
|
|
575
|
-
fill: "#fff"
|
|
576
|
-
}), _jsx("path", {
|
|
577
|
-
d: "M11.32 11.38c-.02.17-.12.3-.22.29-.11-.01-.18-.16-.17-.33.02-.18.12-.3.23-.3.1.01.18.16.16.34Z",
|
|
578
|
-
fill: "#1D1A1E"
|
|
579
|
-
}), _jsx("path", {
|
|
580
|
-
d: "M11.24 11.42c0 .06-.03.1-.07.1-.04 0-.07-.04-.07-.1 0-.05.03-.1.07-.1.04 0 .07.05.07.1Z",
|
|
581
|
-
fill: "#fff"
|
|
582
|
-
}), _jsx("path", {
|
|
583
|
-
d: "m8.93 12.54-.1-.14c.12-.09.28-.13.45-.12l-.02.17a.49.49 0 0 0-.33.09Z",
|
|
584
|
-
fill: "#1D1A1E"
|
|
585
|
-
}), _jsx("path", {
|
|
586
|
-
d: "M13.43 12.33a.84.84 0 0 1-.64-.27c-.4-.43-.25-1.34-.14-2l.05-.3c.07-.52-.54-.71-1.08-.88h-.03a4.7 4.7 0 0 0-2.96.26c-.45.25-.74.61-.86 1.08-.2.79-.1 1.53.02 2.02l-.16.04a4.26 4.26 0 0 1-.05-.2A4.41 4.41 0 0 1 7.14 10c.1-.88.96-1.6 2.17-1.82 1.08-.2 2.48.03 3.26.34.8.32.8.88.74 1.53l-.07.47c-.07.42-.12.73.05.96.1.15.25.2.35.21.16.02.3-.02.35-.07.1-.07.31-.16.42-.06.07.06.06.17-.05.33a1.22 1.22 0 0 1-.93.44ZM10.45 8.6c.56 0 1.02.07 1.2.13h.02c.57.18 1.28.4 1.2 1.07l-.06.3c-.1.6-.25 1.48.1 1.86.18.2.41.23.58.22.32-.02.62-.21.73-.38a.4.4 0 0 0 .06-.11.37.37 0 0 0-.18.07.67.67 0 0 1-.48.1.67.67 0 0 1-.47-.27c-.2-.3-.14-.64-.07-1.09l.06-.46c.07-.62.06-1.08-.63-1.36a6.7 6.7 0 0 0-3.16-.32c-1.13.2-1.95.87-2.04 1.67-.06.46.06.98.19 1.37-.02-.37 0-.78.1-1.2.14-.52.46-.92.95-1.2.57-.31 1.3-.4 1.9-.4ZM8.9 14.5c-.03-.02-.73-.51-.96-1.35l.17-.04c.2.78.87 1.25.88 1.26l-.1.13Z",
|
|
587
|
-
fill: "#1D1A1E"
|
|
588
|
-
}), _jsx("path", {
|
|
589
|
-
d: "m14.22 11.66-.14-.1c.01 0 .66-.86.84-2.26l.16.02a5.1 5.1 0 0 1-.86 2.34ZM14.88 7.86a2.82 2.82 0 0 0-1.53-1.97l.07-.15c.97.43 1.48 1.4 1.62 2.09l-.16.03ZM7.36 9.72h-.17c0-.03.04-.7.41-1.67l.16.06c-.37.95-.4 1.6-.4 1.61Z",
|
|
590
|
-
fill: "#1D1A1E"
|
|
591
|
-
}), _jsx("path", {
|
|
592
|
-
d: "M8.41 8.36h-.1c-.4-.02-.67-.15-.85-.4-.2-.29-.23-.72-.08-1.2.4-1.2 2.6-1.76 3.95-1.76.29 0 .54.03.73.07 1.19.3 1.73.84 1.89 1.91.04.3-.03.54-.21.75-.43.49-1.33.52-1.6.52-.17 0-.34-.01-.5-.04-.47-.07-.82-.25-1-.5a.6.6 0 0 1-.1-.46V7.1c-.03 0-.14.06-.3.32-.25.43-.9.94-1.83.94Zm2.92-3.2c-1.36 0-3.44.58-3.79 1.66-.13.42-.11.8.06 1.05.14.2.38.3.7.32a2 2 0 0 0 1.8-.86c.15-.25.31-.39.44-.39.05 0 .1.02.12.06.05.06.06.15.04.28-.02.11 0 .23.08.33.15.22.47.37.9.44.13.03.3.04.46.04.67 0 1.21-.18 1.47-.47.15-.17.2-.37.17-.61-.14-1-.63-1.5-1.76-1.78a3.06 3.06 0 0 0-.69-.07Z",
|
|
593
|
-
fill: "#1D1A1E"
|
|
594
|
-
}), _jsx("path", {
|
|
595
|
-
d: "M8.3 7.89c-.24 0-.44-.07-.55-.2a.5.5 0 0 1-.11-.42c.14-1.1 1.14-1.77 3.05-2.02 1.06-.14 1.97.13 2.53.75.3.34.48.78.43 1.12-.07.6-.77.67-1.29.67l-.5-.01h-.1c-.76-.04-.82-.8-.85-1.15-.02-.2-.16-.26-.3-.26-.15 0-.38.1-.5.39-.26.67-1.15 1.13-1.8 1.13Zm2.93-2.51a4 4 0 0 0-.52.03C8 5.77 7.85 6.91 7.81 7.3c-.02.12 0 .22.07.3.08.08.23.13.43.13.59 0 1.41-.42 1.65-1.02.14-.37.44-.5.66-.5.25 0 .44.17.46.41.03.47.12.97.68 1h.1l.5.02c.73 0 1.09-.17 1.13-.53.03-.3-.12-.68-.4-1a2.44 2.44 0 0 0-1.86-.72ZM15.11 9.52h-.03c-.06-.02-.1-.08-.14-.18a1.12 1.12 0 0 0-.14-.24c-.4-.46-.86-.83-1.39-1.12l.08-.14c.54.3 1.03.68 1.43 1.15.08.09.13.19.17.27a7 7 0 0 0 .05-1.12c-.04-.09-.7-.63-1.31-1.1l.1-.13c.61.47 1.34 1.06 1.38 1.19 0 0 .01 1.3-.14 1.4a.1.1 0 0 1-.06.02Z",
|
|
596
|
-
fill: "#1D1A1E"
|
|
597
|
-
}), _jsx("path", {
|
|
598
|
-
d: "M14.12 10.4c.15-.3.36-.27.41-.16.05.12.05.32-.17.56-.22.24-.55.18-.24-.4Z",
|
|
599
|
-
fill: "#B7D3E0"
|
|
600
|
-
}), _jsx("path", {
|
|
601
|
-
d: "M14.12 11.02a.2.2 0 0 1-.18-.1c-.07-.11-.04-.3.1-.56.14-.25.3-.28.36-.28.1 0 .18.05.2.13.05.1.1.34-.18.65-.1.1-.2.16-.3.16Zm.28-.78c-.05 0-.14.05-.21.2-.16.3-.11.39-.1.4l.03.01c.03 0 .1-.03.18-.1.21-.24.18-.41.15-.48 0-.01-.02-.03-.05-.03ZM8.23 9.5a.08.08 0 0 1-.06-.14c.45-.44 1.05-.2 1.08-.2.04.02.06.07.04.11a.08.08 0 0 1-.1.05c-.03-.01-.53-.2-.9.16a.08.08 0 0 1-.06.02ZM12.17 9.75a.08.08 0 0 1-.08-.08c-.02-.4-.13-.67-.36-.8-.48-.27-1.3.17-1.31.18-.04.02-.1 0-.11-.03a.08.08 0 0 1 .03-.12c.04-.02.91-.48 1.48-.17.27.16.42.47.43.93 0 .05-.03.08-.08.09ZM10.63 14.48l-.03-.16c.67-.11 1.05-.41 1.06-.41a4.97 4.97 0 0 0 1.45-1.74l.16.07a5.05 5.05 0 0 1-1.51 1.8 2.6 2.6 0 0 1-1.13.44ZM12.51 13.91l-.09-.13c.34-.22.7-.69.7-.69.2-.26.54-.89.55-.9l.14.08a3.8 3.8 0 0 1-1.3 1.64Z",
|
|
602
|
-
fill: "#1D1A1E"
|
|
603
|
-
}), _jsx("path", {
|
|
604
|
-
d: "M9.41 16.93h.02c0-.04.02-.06.06-.07-.04.01-.05.03-.06.06.67-.29.18-.65.35-1.08.03-.1.17-.24.3-.35l-.04-.04c-.12.02-.35.06-.43.13-.59.47-.66 1.29-.18 1.38a.3.3 0 0 1 0-.04l-.02.01Z",
|
|
605
|
-
fill: "#0084C7"
|
|
606
|
-
}), _jsx("path", {
|
|
607
|
-
d: "m10.08 15.5.17.2-.17-.2c-.13.1-.26.23-.28.33-.18.42.3.8-.37 1.1v.03h.14c.63-.05 1-1.2.51-1.46Z",
|
|
608
|
-
fill: "#E4051F"
|
|
609
|
-
}), _jsx("path", {
|
|
610
|
-
d: "M9.97 15.56c.57.06.13 1.35-.37 1.35-.83 0-.3-1.36.37-1.35.1 0 .1-.15 0-.15-.84 0-1.42 1.52-.37 1.65.68.08 1.17-1.56.37-1.65-.1 0-.1.14 0 .15Z",
|
|
611
|
-
fill: "#B7D3E0"
|
|
612
|
-
}), _jsx("path", {
|
|
613
|
-
d: "M10.08 15.47c-.17.11-.3.26-.37.45-.14.36.18.68-.26.93-.08.05 0 .18.08.13.22-.13.34-.29.33-.55 0-.16-.04-.31 0-.47.02-.15.18-.28.3-.36.08-.05 0-.18-.08-.13Z",
|
|
614
|
-
fill: "#B7D3E0"
|
|
615
|
-
}), _jsx("path", {
|
|
616
|
-
d: "m9.33 16.29.18-.05c.06 0 .13 0 .16-.07.06-.14.05-.32-.14-.33-.16 0-.26.21-.3.33-.04.16.02.33.2.33.1 0 .1-.15 0-.15-.14 0-.02-.23.02-.29 0-.01.1-.11.1-.06.01.04 0 .1-.02.13l.05-.05-.29.06c-.09.02-.05.17.04.15ZM10.12 15.75c-.19.03-.28.22-.26.4 0 .04.04.46.2.36.07-.05 0-.18-.08-.13-.01 0 .07-.01.08.01l-.01-.04a1.1 1.1 0 0 1-.05-.28c0-.09.07-.16.16-.18.1-.01.06-.15-.04-.14Z",
|
|
617
|
-
fill: "#fff"
|
|
618
|
-
}), _jsx("path", {
|
|
619
|
-
d: "m9.95 16.21.21-.05c.1-.02.06-.16-.04-.14l-.2.05c-.1.03-.06.17.03.14Z",
|
|
620
|
-
fill: "#fff"
|
|
621
|
-
}), _jsx("path", {
|
|
622
|
-
d: "M9.25 18a.08.08 0 0 1-.07-.03l-.1-.09c-.26-.22-.86-.73-.61-1.37.2-.52.13-.84.07-1.1a2.13 2.13 0 0 1-.04-.22c-.02-.13.1-.24.17-.3l-.04-.08v-.04a.4.4 0 0 1-.11-.12.4.4 0 0 1-.04-.27.08.08 0 0 1 .1-.06c2.5.38 4.3-.79 4.32-.8a.09.09 0 0 1 .08 0c.02 0 .04.03.05.05.02.17.07.34.1.39h.02c.1.02.24.04.26.14.02.1-.07.16-.1.18-.52.4-.8.88-1.09 1.35-.28.48-.55.93-1.04 1.24A42.9 42.9 0 0 1 9.25 18Zm-.4-3.1c.02.04 0 .08-.03.1-.07.04-.16.12-.15.18l.03.2c.06.28.14.62-.08 1.19-.2.53.32.97.57 1.19l.07.05c.21-.12 1.02-.57 1.83-1.08.45-.29.71-.72.99-1.18a4.54 4.54 0 0 1 1.14-1.4l-.1-.03h-.04c-.04-.01-.12-.03-.2-.4a6.93 6.93 0 0 1-4.24.77c0 .03 0 .06.03.09.03.07.5.44 1.78.37.04 0 .08.03.09.08 0 .04-.04.08-.08.08-.8.05-1.3-.07-1.6-.2Z",
|
|
623
|
-
fill: "#1D1A1E"
|
|
624
|
-
}), _jsx("path", {
|
|
625
|
-
d: "M11.18 15.4a.08.08 0 0 1-.08-.04.08.08 0 0 1 .04-.11A9.04 9.04 0 0 0 13 14a.08.08 0 0 1 .11 0c.03.04.03.1 0 .12a9.31 9.31 0 0 1-1.92 1.29Z",
|
|
626
|
-
fill: "#1D1A1E"
|
|
627
|
-
}), _jsx("path", {
|
|
628
|
-
d: "M14.95 14.97c-.86 0-1.75-.7-1.8-.74l.11-.13c.01.01 1.02.8 1.86.7a1 1 0 0 0 .66-.39 2.24 2.24 0 0 0-2.72-.52l-.08-.14c.02 0 1.62-.88 2.98.6l.04.05-.04.06a1.18 1.18 0 0 1-1.01.5Z",
|
|
629
|
-
fill: "#1D1A1E"
|
|
630
|
-
}), _jsx("path", {
|
|
631
|
-
d: "m13.02 13.72-.14-.09c.03-.04.66-.97 2.33-1.14l.12-.01-.03.11c-.13.53-.33.78-.69 1.08l-.1-.12c.3-.27.48-.48.6-.88-1.5.2-2.08 1.04-2.09 1.05Z",
|
|
632
|
-
fill: "#1D1A1E"
|
|
633
|
-
})]
|
|
634
|
-
}, "21");
|
|
201
|
+
return (<Icon key="21" {...props}>
|
|
202
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
203
|
+
<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"/>
|
|
204
|
+
<path d="M11.4 12.3c-.13.03-.25.12-.34.12a5.44 5.44 0 0 1-.8-.14l.05.1-.04-.1c-.38-.09-.73-.25-1.11-.31 0 0-.3-.07-.18-.01-.24-.04-.32.01-.55.03l.07.08a1.7 1.7 0 0 1-.07-.08c-.24.03-.49.1-.73.23 0 .02 0 .03.02.05-.23.13-.62.83-.64.93-.01.09.95-.08.95-.08l.04.08.27.02c.42.02.85.12 1.26.11.3 0 .59-.09.86-.16 0-.02-.23.08-.22.06-.01.02.23-.08.22-.06.46-.12.88-.37 1.2-.84a.32.32 0 0 0-.26-.03Z" fill="#EE770D"/>
|
|
205
|
+
<path d="M9.77 13.94c.34-.15.55-.43.69-.77-.28.07-.57.15-.87.15-.4 0-.84-.08-1.25-.1.16.59.87.88 1.43.72Z" fill="#EE770D"/>
|
|
206
|
+
<path d="M8.3 9.95c-.3.64-.33 1.49.13 2.04l.26-.02a3.53 3.53 0 0 1-.39-2.02Z" fill="#D0EBF8"/>
|
|
207
|
+
<path d="M9.16 11.98c.7-.7.54-1.8-.07-2.44-.16-.07-.45.01-.6.1-.07.09-.13.2-.19.3-.07.7.07 1.41.4 2.03.15-.01.31-.01.46.01ZM11.4 12.3c.6-.68.9-1.63.54-2.5-.08-.14-.16-.28-.31-.35-.38-.06-.62-.08-.91.07a1.8 1.8 0 0 0-.24.21c-.27.92-.19 1.92.36 2.67l.22.02c.09 0 .2-.09.34-.12Z" fill="#fff"/>
|
|
208
|
+
<path d="M10.48 9.73c-.66.69-.56 1.71-.21 2.55l.57.12a3.06 3.06 0 0 1-.36-2.67Z" fill="#D0EBF8"/>
|
|
209
|
+
<path d="M13.98 10.48c0 .14-.06.37.02.44.37.2.57-.43.5-.73-.22-.1-.46.15-.52.29Z" fill="#B7C2D7"/>
|
|
210
|
+
<path d="M8.49 6.05c-.61.29-1.02 1.22-.66 1.63.93-.84 2.02-1.53 2.93-2.42-.8.03-1.6.3-2.27.8Z" fill="#B7D3E0"/>
|
|
211
|
+
<path d="M10.76 5.26c-.91.89-2 1.58-2.93 2.42.88.43 1.85-.3 2.42-1.2.07-.09.5-.4.52-.18.03.2.08.4.15.57l1.42-1.35a4.05 4.05 0 0 0-1.58-.26Z" fill="#E9F6FC"/>
|
|
212
|
+
<path d="M12.94 5.8c-.2-.11-.4-.2-.6-.28l-1.42 1.35c.11.28.28.52.49.67.27.2.6.23.95.22.32-.01.68-.06 1-.21.06-.08.13-.23.2-.3.14-.6-.2-1.03-.62-1.45Z" fill="#B7D3E0"/>
|
|
213
|
+
<path d="M13.58 7.76c.24-.25.32-.52.32-.8l-.04-.02.04.03c0-.32-.13-.65-.3-.96l-.16-.08c-1-1.2-3.28-.84-4.66-.3C7.4 6.16 7 7.5 7.68 8.09l-.01.06c1.1.58 2.1-.39 2.97-1.1-.06.37.1.66.33.87.54.28 1.21.4 1.8.24.2-.06.43-.12.6-.21l-.08-.03c.03 0 .06.02.08.03a.58.58 0 0 0 .21-.2ZM10.77 6.3c-.01-.23-.45.08-.52.16-.53.85-1.6 1.62-2.32 1.21-.05-.03-.16-.06-.15-.13-.22-.37.1-1.21.7-1.5a4.2 4.2 0 0 1 4.42-.27c.09.05.18.15.25.23.3.3.52.76.42 1.23-.08.08-.14.23-.22.3-.32.17-.68.2-1.02.22-.36.02-.7 0-.97-.2-.25-.18-.28-.54-.38-.91-.03-.12-.2-.22-.21-.34Z" fill="#FFD931"/>
|
|
214
|
+
<path d="M14.9 7.75a2.75 2.75 0 0 0-1.3-1.74c.17.31.3.64.3.96.36.23.64.6 1.01.79ZM13.37 7.95c-.17.1-.4.15-.6.2-.59.17-1.26.05-1.8-.23a.94.94 0 0 1-.33-.87c-.06.05-.16.03-.22.1-.65.7-1.72 1.53-2.75 1-.2.49-.33 1-.4 1.47 1.22-1.83 4.13-1.89 5.68-.66.62.57-.01 1.63.24 2.5.12.43.66.37 1.05.14h-.02a14.95 14.95 0 0 0 .82-2.23 3.3 3.3 0 0 0-1.67-1.42Zm1.13 2.24c.07.3-.13.93-.5.73-.08-.07.03-.27.03-.42.06-.14.25-.42.47-.31Z" fill="#E4051F"/>
|
|
215
|
+
<path d="M15.1 9.4c.03.06.17-.8.15-.96-.01-.17 0-.38-.34-.68-.37-.2-.69-.61-1.05-.85 0 .28-.04.6-.27.85a.57.57 0 0 1-.22.19c.73.25 1.28.8 1.67 1.42.01-.02.03 0 .05.04Z" fill="#925F1A"/>
|
|
216
|
+
<path d="M8.24 13.68c-.18-.41-.1-.36-.17-.52l.27.02c.16.58.87.88 1.42.72.35-.15.6-.35.74-.7a2 2 0 0 0 1.15-.91.31.31 0 0 0-.26-.03c.6-.69.92-1.63.55-2.5-.08-.14-.16-.28-.32-.35-.37-.06-.61-.06-.9.1-.92.67-.84 1.8-.45 2.73-.39-.1-.77-.2-1.14-.26.32-.33.43-.74.43-1.17 0-.48-.15-.98-.47-1.31-.16-.07-.45.01-.6.09-.48.66-.6 1.7-.06 2.36-.25.02-.5.1-.73.23l-.06-.19h-.05c-.19-.99-.03-2.01.57-2.6a3.3 3.3 0 0 1 2.77-.7c.45.06.82.05 1.2.26.23.07.53.28.54.42.25.92-.5 2.9.96 2.79a.23.23 0 0 0-.04.06c.1-.03.11-.05.2-.01-.75 1.18-1.27 1.84-2.58 2.08-.49.16-2.15.56-2.73-.21-.1-.13-.24-.4-.24-.4Z" fill="#FFD931"/>
|
|
217
|
+
<path d="M14.24 11.6c-.4.23-.93.28-1.05-.14-.25-.87.38-1.93-.24-2.5-1.55-1.23-4.46-1.17-5.67.66-.12.87-.04 1.6.11 1.78h-.01c.11.18.15.4.2.62h.01c-.19-.99-.01-1.98.58-2.6.6-.65 1.66-.9 2.76-.68.45.05.82.04 1.2.25.23.07.54.28.54.42.19.7-.29 2.03.13 2.58.14.19.47.24.84.21.04-.05.14-.03.2-.05.2-.07.42-.12.52-.32v-.05c.03-.05 0-.13-.12-.18Z" fill="#E4051F"/>
|
|
218
|
+
<path d="M13.13 12.19s.36.05.61.03a5.73 5.73 0 0 1-.94 1.43c-.16.11-1.26.55-1.36.57.37-.37 1.17-.93 1.7-2.03Z" fill="#925F1A"/>
|
|
219
|
+
<path d="m13.1 14.02-.02-.03-.04.06.06-.03Z" fill="#BA101C"/>
|
|
220
|
+
<path d="M13.01 13.85a1.22 1.22 0 0 1-.06-.17c-.02-.11-1.16.51-2.2.72-1.05.2-2.2 0-2.2 0-.02.35.21.43.21.43v.01c.6.1 1.24.15 1.83.18-.64.22-1.33.21-2.03.27 0 .2.1.55.06.92-.32 1.08.02.97.14 1.2.12.22.48.52.49.5l.14-.08c.56-.53 1.05-1.1 1.61-1.64.37-.3.73-.61 1.17-.92-.45.01-.82.24-1.27.19.71-.46 1.57-.71 2.14-1.41h-.02.02l.04-.06a.95.95 0 0 1-.07-.14Z" fill="#E4051F"/>
|
|
221
|
+
<path d="M8.76 14.84c-.02.04-.08.18-.17.29-.03.03-.04.09-.03.16.7-.06 1.4-.06 2.03-.27-.59-.03-1.22-.07-1.83-.18ZM13.16 14.08a.2.2 0 0 1-.06-.06l-.06.03c-.57.7-1.43.95-2.14 1.4.45.06.82-.17 1.27-.18-.44.3-.8.61-1.17.92-.56.54-1.05 1.11-1.6 1.64.49-.3 2.06-1.25 2.4-1.68.4-.5 1.15-1.65 1.36-1.83.2-.17.1-.2 0-.24Z" fill="#BA101C"/>
|
|
222
|
+
<path d="m13.08 14.02.02.02.16.17s.04.07.16.16c.62.11 1.25.2 1.93.05-.73-.27-1.55-.73-2.27-.4Z" fill="#BA101C"/>
|
|
223
|
+
<path d="m14.47 13.66.04-.03c-.55-.08-1.12-.1-1.53.25l.09.13.02-.03-.02.03.01.01c.72-.33 1.54.13 2.27.4a4.6 4.6 0 0 1-1.93-.05c.12.1.31.22.62.34.94.4 1.7-.03 1.85-.3-.03-.17-.84-.66-1.42-.75ZM15.22 12.57s-1.07.22-1.55.5c-.26.14-.46.35-.59.5.67-.21 1.33-.57 2.04-.76l.1-.24Z" fill="#E4051F"/>
|
|
224
|
+
<path d="M13.08 13.57c-.1.12-.15.21-.15.21l.05.1c.41-.35.98-.33 1.54-.25.26-.15.48-.56.6-.82-.7.19-1.37.55-2.04.76Z" fill="#BA101C"/>
|
|
225
|
+
<path d="M9.53 13.45c-.25 0-.66-.08-1.03-.15-.26-.06-.52-.1-.63-.1-.11 0-.3.04-.45.08-.22.06-.35.09-.4.02a.1.1 0 0 1-.02-.1c.2-.83.92-1.37 1.84-1.37.28 0 .56.05.82.16.69.29.94.38 1.17.38.08 0 .17 0 .29-.04.06-.05.23-.2.38-.2.08 0 .15.05.2.13.04.08.04.15.02.2-.03.1-.13.12-.2.15a.5.5 0 0 0-.1.04c-.33.64-1.32.75-1.74.8H9.53Zm-1.66-.42c.13 0 .38.05.67.1.4.09.86.18 1.07.16l.05-.01c.4-.04 1.34-.15 1.62-.72l.02-.02c.04-.04.1-.06.16-.08.04-.02.1-.04.1-.06l-.01-.06c-.02-.03-.03-.04-.05-.04-.08 0-.2.1-.28.17l-.02.02h-.02c-.15.04-.25.05-.35.05-.26 0-.52-.1-1.23-.4a2 2 0 0 0-.76-.15c-.62 0-1.4.31-1.65 1.18l.2-.05c.16-.04.34-.1.48-.1Z" fill="#1D1A1E"/>
|
|
226
|
+
<path d="M9.4 14.03c-.82 0-1.13-.81-1.13-.82l.16-.05c0 .03.32.86 1.22.68.6-.12.73-.63.73-.64l.16.04c0 .02-.14.62-.86.76l-.27.03ZM8.43 12c-.02-.01-.49-.36-.38-1.31.1-.92.54-1.3.9-1.27.34.03.7.7.63 1.47-.07.77-.32 1.05-.33 1.06l-.12-.1s.22-.27.28-.97c.07-.73-.27-1.28-.48-1.3-.23-.02-.62.26-.72 1.13-.1.85.3 1.15.32 1.16l-.1.13ZM10.86 12.54l-.03-.16s.55-.12.98-.95c.3-.57.19-1.2.01-1.55-.1-.22-.25-.36-.39-.38-.27-.05-.95-.05-1.3 1.1-.27.93.18 1.56.28 1.68l-.13.1a2 2 0 0 1-.3-1.83c.39-1.3 1.23-1.26 1.48-1.22.2.04.38.21.51.48.2.39.31 1.07-.01 1.7-.47.9-1.08 1.03-1.1 1.03Z" fill="#1D1A1E"/>
|
|
227
|
+
<path d="M9.13 11.25c0 .17-.07.3-.17.31-.1 0-.2-.12-.2-.29-.01-.16.06-.3.17-.3.1-.01.19.12.2.28Z" fill="#1D1A1E"/>
|
|
228
|
+
<path d="M9.06 11.3c.01.06-.01.1-.05.11-.03.01-.07-.03-.08-.08-.01-.05.01-.1.05-.1.03 0 .07.03.08.08Z" fill="#fff"/>
|
|
229
|
+
<path d="M11.32 11.38c-.02.17-.12.3-.22.29-.11-.01-.18-.16-.17-.33.02-.18.12-.3.23-.3.1.01.18.16.16.34Z" fill="#1D1A1E"/>
|
|
230
|
+
<path d="M11.24 11.42c0 .06-.03.1-.07.1-.04 0-.07-.04-.07-.1 0-.05.03-.1.07-.1.04 0 .07.05.07.1Z" fill="#fff"/>
|
|
231
|
+
<path d="m8.93 12.54-.1-.14c.12-.09.28-.13.45-.12l-.02.17a.49.49 0 0 0-.33.09Z" fill="#1D1A1E"/>
|
|
232
|
+
<path d="M13.43 12.33a.84.84 0 0 1-.64-.27c-.4-.43-.25-1.34-.14-2l.05-.3c.07-.52-.54-.71-1.08-.88h-.03a4.7 4.7 0 0 0-2.96.26c-.45.25-.74.61-.86 1.08-.2.79-.1 1.53.02 2.02l-.16.04a4.26 4.26 0 0 1-.05-.2A4.41 4.41 0 0 1 7.14 10c.1-.88.96-1.6 2.17-1.82 1.08-.2 2.48.03 3.26.34.8.32.8.88.74 1.53l-.07.47c-.07.42-.12.73.05.96.1.15.25.2.35.21.16.02.3-.02.35-.07.1-.07.31-.16.42-.06.07.06.06.17-.05.33a1.22 1.22 0 0 1-.93.44ZM10.45 8.6c.56 0 1.02.07 1.2.13h.02c.57.18 1.28.4 1.2 1.07l-.06.3c-.1.6-.25 1.48.1 1.86.18.2.41.23.58.22.32-.02.62-.21.73-.38a.4.4 0 0 0 .06-.11.37.37 0 0 0-.18.07.67.67 0 0 1-.48.1.67.67 0 0 1-.47-.27c-.2-.3-.14-.64-.07-1.09l.06-.46c.07-.62.06-1.08-.63-1.36a6.7 6.7 0 0 0-3.16-.32c-1.13.2-1.95.87-2.04 1.67-.06.46.06.98.19 1.37-.02-.37 0-.78.1-1.2.14-.52.46-.92.95-1.2.57-.31 1.3-.4 1.9-.4ZM8.9 14.5c-.03-.02-.73-.51-.96-1.35l.17-.04c.2.78.87 1.25.88 1.26l-.1.13Z" fill="#1D1A1E"/>
|
|
233
|
+
<path d="m14.22 11.66-.14-.1c.01 0 .66-.86.84-2.26l.16.02a5.1 5.1 0 0 1-.86 2.34ZM14.88 7.86a2.82 2.82 0 0 0-1.53-1.97l.07-.15c.97.43 1.48 1.4 1.62 2.09l-.16.03ZM7.36 9.72h-.17c0-.03.04-.7.41-1.67l.16.06c-.37.95-.4 1.6-.4 1.61Z" fill="#1D1A1E"/>
|
|
234
|
+
<path d="M8.41 8.36h-.1c-.4-.02-.67-.15-.85-.4-.2-.29-.23-.72-.08-1.2.4-1.2 2.6-1.76 3.95-1.76.29 0 .54.03.73.07 1.19.3 1.73.84 1.89 1.91.04.3-.03.54-.21.75-.43.49-1.33.52-1.6.52-.17 0-.34-.01-.5-.04-.47-.07-.82-.25-1-.5a.6.6 0 0 1-.1-.46V7.1c-.03 0-.14.06-.3.32-.25.43-.9.94-1.83.94Zm2.92-3.2c-1.36 0-3.44.58-3.79 1.66-.13.42-.11.8.06 1.05.14.2.38.3.7.32a2 2 0 0 0 1.8-.86c.15-.25.31-.39.44-.39.05 0 .1.02.12.06.05.06.06.15.04.28-.02.11 0 .23.08.33.15.22.47.37.9.44.13.03.3.04.46.04.67 0 1.21-.18 1.47-.47.15-.17.2-.37.17-.61-.14-1-.63-1.5-1.76-1.78a3.06 3.06 0 0 0-.69-.07Z" fill="#1D1A1E"/>
|
|
235
|
+
<path d="M8.3 7.89c-.24 0-.44-.07-.55-.2a.5.5 0 0 1-.11-.42c.14-1.1 1.14-1.77 3.05-2.02 1.06-.14 1.97.13 2.53.75.3.34.48.78.43 1.12-.07.6-.77.67-1.29.67l-.5-.01h-.1c-.76-.04-.82-.8-.85-1.15-.02-.2-.16-.26-.3-.26-.15 0-.38.1-.5.39-.26.67-1.15 1.13-1.8 1.13Zm2.93-2.51a4 4 0 0 0-.52.03C8 5.77 7.85 6.91 7.81 7.3c-.02.12 0 .22.07.3.08.08.23.13.43.13.59 0 1.41-.42 1.65-1.02.14-.37.44-.5.66-.5.25 0 .44.17.46.41.03.47.12.97.68 1h.1l.5.02c.73 0 1.09-.17 1.13-.53.03-.3-.12-.68-.4-1a2.44 2.44 0 0 0-1.86-.72ZM15.11 9.52h-.03c-.06-.02-.1-.08-.14-.18a1.12 1.12 0 0 0-.14-.24c-.4-.46-.86-.83-1.39-1.12l.08-.14c.54.3 1.03.68 1.43 1.15.08.09.13.19.17.27a7 7 0 0 0 .05-1.12c-.04-.09-.7-.63-1.31-1.1l.1-.13c.61.47 1.34 1.06 1.38 1.19 0 0 .01 1.3-.14 1.4a.1.1 0 0 1-.06.02Z" fill="#1D1A1E"/>
|
|
236
|
+
<path d="M14.12 10.4c.15-.3.36-.27.41-.16.05.12.05.32-.17.56-.22.24-.55.18-.24-.4Z" fill="#B7D3E0"/>
|
|
237
|
+
<path d="M14.12 11.02a.2.2 0 0 1-.18-.1c-.07-.11-.04-.3.1-.56.14-.25.3-.28.36-.28.1 0 .18.05.2.13.05.1.1.34-.18.65-.1.1-.2.16-.3.16Zm.28-.78c-.05 0-.14.05-.21.2-.16.3-.11.39-.1.4l.03.01c.03 0 .1-.03.18-.1.21-.24.18-.41.15-.48 0-.01-.02-.03-.05-.03ZM8.23 9.5a.08.08 0 0 1-.06-.14c.45-.44 1.05-.2 1.08-.2.04.02.06.07.04.11a.08.08 0 0 1-.1.05c-.03-.01-.53-.2-.9.16a.08.08 0 0 1-.06.02ZM12.17 9.75a.08.08 0 0 1-.08-.08c-.02-.4-.13-.67-.36-.8-.48-.27-1.3.17-1.31.18-.04.02-.1 0-.11-.03a.08.08 0 0 1 .03-.12c.04-.02.91-.48 1.48-.17.27.16.42.47.43.93 0 .05-.03.08-.08.09ZM10.63 14.48l-.03-.16c.67-.11 1.05-.41 1.06-.41a4.97 4.97 0 0 0 1.45-1.74l.16.07a5.05 5.05 0 0 1-1.51 1.8 2.6 2.6 0 0 1-1.13.44ZM12.51 13.91l-.09-.13c.34-.22.7-.69.7-.69.2-.26.54-.89.55-.9l.14.08a3.8 3.8 0 0 1-1.3 1.64Z" fill="#1D1A1E"/>
|
|
238
|
+
<path d="M9.41 16.93h.02c0-.04.02-.06.06-.07-.04.01-.05.03-.06.06.67-.29.18-.65.35-1.08.03-.1.17-.24.3-.35l-.04-.04c-.12.02-.35.06-.43.13-.59.47-.66 1.29-.18 1.38a.3.3 0 0 1 0-.04l-.02.01Z" fill="#0084C7"/>
|
|
239
|
+
<path d="m10.08 15.5.17.2-.17-.2c-.13.1-.26.23-.28.33-.18.42.3.8-.37 1.1v.03h.14c.63-.05 1-1.2.51-1.46Z" fill="#E4051F"/>
|
|
240
|
+
<path d="M9.97 15.56c.57.06.13 1.35-.37 1.35-.83 0-.3-1.36.37-1.35.1 0 .1-.15 0-.15-.84 0-1.42 1.52-.37 1.65.68.08 1.17-1.56.37-1.65-.1 0-.1.14 0 .15Z" fill="#B7D3E0"/>
|
|
241
|
+
<path d="M10.08 15.47c-.17.11-.3.26-.37.45-.14.36.18.68-.26.93-.08.05 0 .18.08.13.22-.13.34-.29.33-.55 0-.16-.04-.31 0-.47.02-.15.18-.28.3-.36.08-.05 0-.18-.08-.13Z" fill="#B7D3E0"/>
|
|
242
|
+
<path d="m9.33 16.29.18-.05c.06 0 .13 0 .16-.07.06-.14.05-.32-.14-.33-.16 0-.26.21-.3.33-.04.16.02.33.2.33.1 0 .1-.15 0-.15-.14 0-.02-.23.02-.29 0-.01.1-.11.1-.06.01.04 0 .1-.02.13l.05-.05-.29.06c-.09.02-.05.17.04.15ZM10.12 15.75c-.19.03-.28.22-.26.4 0 .04.04.46.2.36.07-.05 0-.18-.08-.13-.01 0 .07-.01.08.01l-.01-.04a1.1 1.1 0 0 1-.05-.28c0-.09.07-.16.16-.18.1-.01.06-.15-.04-.14Z" fill="#fff"/>
|
|
243
|
+
<path d="m9.95 16.21.21-.05c.1-.02.06-.16-.04-.14l-.2.05c-.1.03-.06.17.03.14Z" fill="#fff"/>
|
|
244
|
+
<path d="M9.25 18a.08.08 0 0 1-.07-.03l-.1-.09c-.26-.22-.86-.73-.61-1.37.2-.52.13-.84.07-1.1a2.13 2.13 0 0 1-.04-.22c-.02-.13.1-.24.17-.3l-.04-.08v-.04a.4.4 0 0 1-.11-.12.4.4 0 0 1-.04-.27.08.08 0 0 1 .1-.06c2.5.38 4.3-.79 4.32-.8a.09.09 0 0 1 .08 0c.02 0 .04.03.05.05.02.17.07.34.1.39h.02c.1.02.24.04.26.14.02.1-.07.16-.1.18-.52.4-.8.88-1.09 1.35-.28.48-.55.93-1.04 1.24A42.9 42.9 0 0 1 9.25 18Zm-.4-3.1c.02.04 0 .08-.03.1-.07.04-.16.12-.15.18l.03.2c.06.28.14.62-.08 1.19-.2.53.32.97.57 1.19l.07.05c.21-.12 1.02-.57 1.83-1.08.45-.29.71-.72.99-1.18a4.54 4.54 0 0 1 1.14-1.4l-.1-.03h-.04c-.04-.01-.12-.03-.2-.4a6.93 6.93 0 0 1-4.24.77c0 .03 0 .06.03.09.03.07.5.44 1.78.37.04 0 .08.03.09.08 0 .04-.04.08-.08.08-.8.05-1.3-.07-1.6-.2Z" fill="#1D1A1E"/>
|
|
245
|
+
<path d="M11.18 15.4a.08.08 0 0 1-.08-.04.08.08 0 0 1 .04-.11A9.04 9.04 0 0 0 13 14a.08.08 0 0 1 .11 0c.03.04.03.1 0 .12a9.31 9.31 0 0 1-1.92 1.29Z" fill="#1D1A1E"/>
|
|
246
|
+
<path d="M14.95 14.97c-.86 0-1.75-.7-1.8-.74l.11-.13c.01.01 1.02.8 1.86.7a1 1 0 0 0 .66-.39 2.24 2.24 0 0 0-2.72-.52l-.08-.14c.02 0 1.62-.88 2.98.6l.04.05-.04.06a1.18 1.18 0 0 1-1.01.5Z" fill="#1D1A1E"/>
|
|
247
|
+
<path d="m13.02 13.72-.14-.09c.03-.04.66-.97 2.33-1.14l.12-.01-.03.11c-.13.53-.33.78-.69 1.08l-.1-.12c.3-.27.48-.48.6-.88-1.5.2-2.08 1.04-2.09 1.05Z" fill="#1D1A1E"/>
|
|
248
|
+
</Icon>);
|
|
635
249
|
}
|
|
636
250
|
export function NordicSkiing(props) {
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
d
|
|
641
|
-
|
|
642
|
-
}), _jsx("path", {
|
|
643
|
-
fillRule: "evenodd",
|
|
644
|
-
clipRule: "evenodd",
|
|
645
|
-
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",
|
|
646
|
-
fill: "#fff"
|
|
647
|
-
}), _jsx("path", {
|
|
648
|
-
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",
|
|
649
|
-
fill: "#fff"
|
|
650
|
-
})]
|
|
651
|
-
}, "22");
|
|
251
|
+
return (<Icon key="22" {...props}>
|
|
252
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
253
|
+
<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"/>
|
|
254
|
+
<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"/>
|
|
255
|
+
</Icon>);
|
|
652
256
|
}
|
|
653
257
|
export function CrossCountry(props) {
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
}), _jsx("path", {
|
|
660
|
-
fillRule: "evenodd",
|
|
661
|
-
clipRule: "evenodd",
|
|
662
|
-
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",
|
|
663
|
-
fill: "#fff"
|
|
664
|
-
}), _jsx("path", {
|
|
665
|
-
fillRule: "evenodd",
|
|
666
|
-
clipRule: "evenodd",
|
|
667
|
-
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",
|
|
668
|
-
fill: "#fff"
|
|
669
|
-
})]
|
|
670
|
-
}, "23");
|
|
258
|
+
return (<Icon key="23" {...props}>
|
|
259
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
260
|
+
<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"/>
|
|
261
|
+
<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"/>
|
|
262
|
+
</Icon>);
|
|
671
263
|
}
|
|
672
264
|
export function AlpineSki(props) {
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
d
|
|
677
|
-
|
|
678
|
-
}), _jsx("path", {
|
|
679
|
-
fillRule: "evenodd",
|
|
680
|
-
clipRule: "evenodd",
|
|
681
|
-
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",
|
|
682
|
-
fill: "#fff"
|
|
683
|
-
}), _jsx("path", {
|
|
684
|
-
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",
|
|
685
|
-
fill: "#fff"
|
|
686
|
-
})]
|
|
687
|
-
}, "24");
|
|
265
|
+
return (<Icon key="24" {...props}>
|
|
266
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
267
|
+
<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"/>
|
|
268
|
+
<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"/>
|
|
269
|
+
</Icon>);
|
|
688
270
|
}
|
|
689
271
|
export function Teleski(props) {
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
fillRule: "evenodd",
|
|
697
|
-
clipRule: "evenodd",
|
|
698
|
-
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",
|
|
699
|
-
fill: "#fff"
|
|
700
|
-
}), _jsx("path", {
|
|
701
|
-
fillRule: "evenodd",
|
|
702
|
-
clipRule: "evenodd",
|
|
703
|
-
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",
|
|
704
|
-
fill: "#fff"
|
|
705
|
-
}), _jsx("path", {
|
|
706
|
-
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",
|
|
707
|
-
fill: "#fff"
|
|
708
|
-
})]
|
|
709
|
-
}, "25");
|
|
272
|
+
return (<Icon key="25" {...props}>
|
|
273
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
274
|
+
<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"/>
|
|
275
|
+
<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"/>
|
|
276
|
+
<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"/>
|
|
277
|
+
</Icon>);
|
|
710
278
|
}
|
|
711
279
|
export function Biathlon(props) {
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
d
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
fillRule: "evenodd",
|
|
719
|
-
clipRule: "evenodd",
|
|
720
|
-
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",
|
|
721
|
-
fill: "#fff"
|
|
722
|
-
}), _jsx("path", {
|
|
723
|
-
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",
|
|
724
|
-
fill: "#fff"
|
|
725
|
-
}), _jsx("path", {
|
|
726
|
-
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",
|
|
727
|
-
fill: "#fff"
|
|
728
|
-
})]
|
|
729
|
-
}, "26");
|
|
280
|
+
return (<Icon key="26" {...props}>
|
|
281
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
282
|
+
<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"/>
|
|
283
|
+
<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"/>
|
|
284
|
+
<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"/>
|
|
285
|
+
</Icon>);
|
|
730
286
|
}
|
|
731
287
|
export function Snowshoes(props) {
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
d
|
|
736
|
-
|
|
737
|
-
}), _jsx("path", {
|
|
738
|
-
fillRule: "evenodd",
|
|
739
|
-
clipRule: "evenodd",
|
|
740
|
-
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",
|
|
741
|
-
fill: "#fff"
|
|
742
|
-
}), _jsx("path", {
|
|
743
|
-
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",
|
|
744
|
-
fill: "#fff"
|
|
745
|
-
})]
|
|
746
|
-
}, "27");
|
|
288
|
+
return (<Icon key="27" {...props}>
|
|
289
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
290
|
+
<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"/>
|
|
291
|
+
<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"/>
|
|
292
|
+
</Icon>);
|
|
747
293
|
}
|
|
748
294
|
export function SkiPass(props) {
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
clipRule: "evenodd",
|
|
757
|
-
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",
|
|
758
|
-
fill: "#fff"
|
|
759
|
-
}), _jsx("path", {
|
|
760
|
-
fillRule: "evenodd",
|
|
761
|
-
clipRule: "evenodd",
|
|
762
|
-
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",
|
|
763
|
-
fill: "#fff"
|
|
764
|
-
}), _jsx("path", {
|
|
765
|
-
fillRule: "evenodd",
|
|
766
|
-
clipRule: "evenodd",
|
|
767
|
-
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",
|
|
768
|
-
fill: "#fff"
|
|
769
|
-
}), _jsx("path", {
|
|
770
|
-
fillRule: "evenodd",
|
|
771
|
-
clipRule: "evenodd",
|
|
772
|
-
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",
|
|
773
|
-
fill: "#fff"
|
|
774
|
-
})]
|
|
775
|
-
}, "28");
|
|
295
|
+
return (<Icon key="28" {...props}>
|
|
296
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
297
|
+
<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"/>
|
|
298
|
+
<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"/>
|
|
299
|
+
<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"/>
|
|
300
|
+
<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"/>
|
|
301
|
+
</Icon>);
|
|
776
302
|
}
|
|
777
303
|
export function PiouPiouMat(props) {
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
d
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
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",
|
|
787
|
-
fill: "#fff"
|
|
788
|
-
}), _jsx("path", {
|
|
789
|
-
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",
|
|
790
|
-
fill: "#fff"
|
|
791
|
-
})]
|
|
792
|
-
}, "29");
|
|
793
|
-
}
|
|
304
|
+
return (<Icon key="29" {...props}>
|
|
305
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#00537B"/>
|
|
306
|
+
<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"/>
|
|
307
|
+
<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"/>
|
|
308
|
+
</Icon>);
|
|
309
|
+
}
|
|
310
|
+
// STATION FIN
|
|
311
|
+
// DIVERS DÉBUT
|
|
794
312
|
export function MeetingPointGrey(props) {
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
fill
|
|
800
|
-
|
|
801
|
-
fillRule: "evenodd",
|
|
802
|
-
clipRule: "evenodd",
|
|
803
|
-
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",
|
|
804
|
-
fill: "#fff"
|
|
805
|
-
}), _jsx("path", {
|
|
806
|
-
fill: "#000",
|
|
807
|
-
fillRule: "evenodd",
|
|
808
|
-
d: "M11.9717 7.03113c-1.0101-.00075-1.9824.38365-2.71891 1.07487-.73651.69123-1.18175 1.63727-1.245 2.6454-.06325 1.008.26025 2.0023.90458 2.7802.64433.7778 1.56103 1.2808 2.56323 1.4063l.0274.0034v1.5586c0 .1243.0494.2435.1373.3314.0879.0879.2071.1373.3314.1373.1244 0 .2436-.0494.3315-.1373s.1373-.2071.1373-.3314v-1.5585l.0273-.0035c1.0008-.1274 1.9155-.631 2.5583-1.4085.6427-.7776.9653-1.7707.9021-2.7776-.0631-1.00683-.5073-1.95185-1.2422-2.64297-.735-.69111-1.7055-1.07645-2.7143-1.0777Zm-1.16 1.16824a3.03148 3.03148 0 0 1 1.16-.23074c.3981 0 .7923.0784 1.16.23074.3678.15233.702.37561.9835.65709.2814.28148.5047.61564.657.98341.1524.36773.2308.76193.2308 1.16003 0 .8039-.3194 1.5749-.8878 2.1434-.5685.5685-1.3395.8878-2.1435.8878-.8039 0-1.5749-.3193-2.14338-.8878-.56847-.5685-.88784-1.3395-.88784-2.1434 0-.3981.07841-.7923.23074-1.16003a3.031333 3.031333 0 0 1 .6571-.98341c.28148-.28148.61568-.50476.98338-.65709Z",
|
|
809
|
-
clipRule: "evenodd"
|
|
810
|
-
}), _jsx("path", {
|
|
811
|
-
fill: "#000",
|
|
812
|
-
d: "M14.0513 10.9582c0 1.1506-.9327 2.0833-2.0833 2.0833-1.1506 0-2.08332-.9327-2.08332-2.0833 0-1.15058.93272-2.08332 2.08332-2.08332s2.0833.93274 2.0833 2.08332Z"
|
|
813
|
-
})]
|
|
814
|
-
}, "30");
|
|
313
|
+
return (<Icon key="30" {...props}>
|
|
314
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
315
|
+
<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"/>
|
|
316
|
+
<path fill="#000" fillRule="evenodd" d="M11.9717 7.03113c-1.0101-.00075-1.9824.38365-2.71891 1.07487-.73651.69123-1.18175 1.63727-1.245 2.6454-.06325 1.008.26025 2.0023.90458 2.7802.64433.7778 1.56103 1.2808 2.56323 1.4063l.0274.0034v1.5586c0 .1243.0494.2435.1373.3314.0879.0879.2071.1373.3314.1373.1244 0 .2436-.0494.3315-.1373s.1373-.2071.1373-.3314v-1.5585l.0273-.0035c1.0008-.1274 1.9155-.631 2.5583-1.4085.6427-.7776.9653-1.7707.9021-2.7776-.0631-1.00683-.5073-1.95185-1.2422-2.64297-.735-.69111-1.7055-1.07645-2.7143-1.0777Zm-1.16 1.16824a3.03148 3.03148 0 0 1 1.16-.23074c.3981 0 .7923.0784 1.16.23074.3678.15233.702.37561.9835.65709.2814.28148.5047.61564.657.98341.1524.36773.2308.76193.2308 1.16003 0 .8039-.3194 1.5749-.8878 2.1434-.5685.5685-1.3395.8878-2.1435.8878-.8039 0-1.5749-.3193-2.14338-.8878-.56847-.5685-.88784-1.3395-.88784-2.1434 0-.3981.07841-.7923.23074-1.16003a3.031333 3.031333 0 0 1 .6571-.98341c.28148-.28148.61568-.50476.98338-.65709Z" clipRule="evenodd"/>
|
|
317
|
+
<path fill="#000" d="M14.0513 10.9582c0 1.1506-.9327 2.0833-2.0833 2.0833-1.1506 0-2.08332-.9327-2.08332-2.0833 0-1.15058.93272-2.08332 2.08332-2.08332s2.0833.93274 2.0833 2.08332Z"/>
|
|
318
|
+
</Icon>);
|
|
815
319
|
}
|
|
816
320
|
export function Cabin(props) {
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
}), _jsx("path", {
|
|
823
|
-
fillRule: "evenodd",
|
|
824
|
-
clipRule: "evenodd",
|
|
825
|
-
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",
|
|
826
|
-
fill: "#fff"
|
|
827
|
-
}), _jsx("path", {
|
|
828
|
-
fillRule: "evenodd",
|
|
829
|
-
clipRule: "evenodd",
|
|
830
|
-
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",
|
|
831
|
-
fill: "#000"
|
|
832
|
-
})]
|
|
833
|
-
}, "31");
|
|
321
|
+
return (<Icon key="31" {...props}>
|
|
322
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
323
|
+
<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"/>
|
|
324
|
+
<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"/>
|
|
325
|
+
</Icon>);
|
|
834
326
|
}
|
|
835
327
|
export function Building(props) {
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
}), _jsx("path", {
|
|
842
|
-
fillRule: "evenodd",
|
|
843
|
-
clipRule: "evenodd",
|
|
844
|
-
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",
|
|
845
|
-
fill: "#fff"
|
|
846
|
-
}), _jsx("path", {
|
|
847
|
-
fillRule: "evenodd",
|
|
848
|
-
clipRule: "evenodd",
|
|
849
|
-
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",
|
|
850
|
-
fill: "#000"
|
|
851
|
-
})]
|
|
852
|
-
}, "32");
|
|
328
|
+
return (<Icon key="32" {...props}>
|
|
329
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
330
|
+
<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"/>
|
|
331
|
+
<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"/>
|
|
332
|
+
</Icon>);
|
|
853
333
|
}
|
|
854
334
|
export function SkiMask(props) {
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
d
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
fillRule: "evenodd",
|
|
862
|
-
clipRule: "evenodd",
|
|
863
|
-
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",
|
|
864
|
-
fill: "#fff"
|
|
865
|
-
}), _jsx("path", {
|
|
866
|
-
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",
|
|
867
|
-
fill: "#000"
|
|
868
|
-
}), _jsx("path", {
|
|
869
|
-
d: "M9.66 10.3v3.1h-.84v-3.1h.84Zm5.53 0v3.1h-.84v-3.1h.84Z",
|
|
870
|
-
fill: "#000"
|
|
871
|
-
})]
|
|
872
|
-
}, "33");
|
|
335
|
+
return (<Icon key="33" {...props}>
|
|
336
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
337
|
+
<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"/>
|
|
338
|
+
<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"/>
|
|
339
|
+
<path d="M9.66 10.3v3.1h-.84v-3.1h.84Zm5.53 0v3.1h-.84v-3.1h.84Z" fill="#000"/>
|
|
340
|
+
</Icon>);
|
|
873
341
|
}
|
|
874
342
|
export function SkiShoe(props) {
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
d
|
|
879
|
-
|
|
880
|
-
}), _jsx("path", {
|
|
881
|
-
fillRule: "evenodd",
|
|
882
|
-
clipRule: "evenodd",
|
|
883
|
-
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",
|
|
884
|
-
fill: "#fff"
|
|
885
|
-
}), _jsx("path", {
|
|
886
|
-
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",
|
|
887
|
-
fill: "#000"
|
|
888
|
-
})]
|
|
889
|
-
}, "34");
|
|
343
|
+
return (<Icon key="34" {...props}>
|
|
344
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
345
|
+
<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"/>
|
|
346
|
+
<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"/>
|
|
347
|
+
</Icon>);
|
|
890
348
|
}
|
|
891
349
|
export function SkiHelmet(props) {
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
}), _jsx("path", {
|
|
898
|
-
fillRule: "evenodd",
|
|
899
|
-
clipRule: "evenodd",
|
|
900
|
-
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",
|
|
901
|
-
fill: "#fff"
|
|
902
|
-
}), _jsx("path", {
|
|
903
|
-
fillRule: "evenodd",
|
|
904
|
-
clipRule: "evenodd",
|
|
905
|
-
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",
|
|
906
|
-
fill: "#000"
|
|
907
|
-
})]
|
|
908
|
-
}, "35");
|
|
350
|
+
return (<Icon key="35" {...props}>
|
|
351
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
352
|
+
<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"/>
|
|
353
|
+
<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"/>
|
|
354
|
+
</Icon>);
|
|
909
355
|
}
|
|
910
356
|
export function Skis(props) {
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
d
|
|
915
|
-
|
|
916
|
-
}), _jsx("path", {
|
|
917
|
-
fillRule: "evenodd",
|
|
918
|
-
clipRule: "evenodd",
|
|
919
|
-
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",
|
|
920
|
-
fill: "#fff"
|
|
921
|
-
}), _jsx("path", {
|
|
922
|
-
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",
|
|
923
|
-
fill: "#000"
|
|
924
|
-
})]
|
|
925
|
-
}, "36");
|
|
357
|
+
return (<Icon key="36" {...props}>
|
|
358
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
359
|
+
<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"/>
|
|
360
|
+
<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"/>
|
|
361
|
+
</Icon>);
|
|
926
362
|
}
|
|
927
363
|
export function Snowboard(props) {
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
d
|
|
932
|
-
|
|
933
|
-
}), _jsx("path", {
|
|
934
|
-
fillRule: "evenodd",
|
|
935
|
-
clipRule: "evenodd",
|
|
936
|
-
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",
|
|
937
|
-
fill: "#fff"
|
|
938
|
-
}), _jsx("path", {
|
|
939
|
-
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",
|
|
940
|
-
fill: "#000"
|
|
941
|
-
})]
|
|
942
|
-
}, "37");
|
|
364
|
+
return (<Icon key="37" {...props}>
|
|
365
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
366
|
+
<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"/>
|
|
367
|
+
<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"/>
|
|
368
|
+
</Icon>);
|
|
943
369
|
}
|
|
944
370
|
export function Parking(props) {
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
d
|
|
949
|
-
|
|
950
|
-
}), _jsx("path", {
|
|
951
|
-
fillRule: "evenodd",
|
|
952
|
-
clipRule: "evenodd",
|
|
953
|
-
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",
|
|
954
|
-
fill: "#fff"
|
|
955
|
-
}), _jsx("path", {
|
|
956
|
-
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",
|
|
957
|
-
fill: "#000"
|
|
958
|
-
})]
|
|
959
|
-
}, "38");
|
|
371
|
+
return (<Icon key="38" {...props}>
|
|
372
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
373
|
+
<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"/>
|
|
374
|
+
<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"/>
|
|
375
|
+
</Icon>);
|
|
960
376
|
}
|
|
961
377
|
export function Bus(props) {
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
}), _jsx("path", {
|
|
968
|
-
fillRule: "evenodd",
|
|
969
|
-
clipRule: "evenodd",
|
|
970
|
-
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",
|
|
971
|
-
fill: "#fff"
|
|
972
|
-
}), _jsx("path", {
|
|
973
|
-
fillRule: "evenodd",
|
|
974
|
-
clipRule: "evenodd",
|
|
975
|
-
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",
|
|
976
|
-
fill: "#000"
|
|
977
|
-
})]
|
|
978
|
-
}, "39");
|
|
378
|
+
return (<Icon key="39" {...props}>
|
|
379
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
380
|
+
<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"/>
|
|
381
|
+
<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"/>
|
|
382
|
+
</Icon>);
|
|
979
383
|
}
|
|
980
384
|
export function IglooGrey(props) {
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
d
|
|
985
|
-
|
|
986
|
-
}), _jsx("path", {
|
|
987
|
-
fillRule: "evenodd",
|
|
988
|
-
clipRule: "evenodd",
|
|
989
|
-
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",
|
|
990
|
-
fill: "#fff"
|
|
991
|
-
}), _jsx("path", {
|
|
992
|
-
d: "M12 9a5 5 0 0 0-5 5v.9h2.9v.1H14V15H17v-1a5 5 0 0 0-5-5Zm2.7 4a3.7 3.7 0 0 0-.2-.8H16c.2.2.2.5.3.8h-1.7Zm-1.7.7-.1-.5.5-.3.2.8H13Zm-2.7 0c0-.3.1-.6.3-.8l.4.3-.1.5h-.6Zm-.4.7h-1a6.8 6.8 0 0 1 0-1h1v1Zm4.9-4h-1.2a5.2 5.2 0 0 0-.2-.6h.4l1 .7Zm-.3 1 .1.3h-2a2 2 0 0 0-.4 0v-.8h2l.3.5ZM10 13h-.3l.2-.5v-.3h.6l-.5.8Zm1.7-.9v.6a1 1 0 0 0-.3.2l-.5-.4c.2-.2.5-.4.8-.4Zm-.6-2.3h1.7a5.4 5.4 0 0 1 .3.7h-2.2a3 3 0 0 1 .2-.7Zm1.5 3a1 1 0 0 0-.4 0V12c.3 0 .6.2.9.4l-.5.4Zm-2-3a4.3 4.3 0 0 0-.2.7H9.2l1-.7h.4ZM9.7 11h2v.7l-.3.1H9.3a3 3 0 0 1 .4-.8Zm-.2 1.3-.1.2-.1.6H7.6c0-.3.1-.6.3-.8h1.6Zm3.9 0h.5l.2.4v.4H14c0-.3-.3-.6-.5-.8Zm2.5-.5H15a3.2 3.2 0 0 0-.3-.8h.5l.6.8Zm-7.2-.8H9a4 4 0 0 0-.3.8h-.7l.6-.8Zm-1.2 3v-.4h1a18.2 18.2 0 0 0 0 .8h-1V14Zm2.8.3h.6v.3h-.6v-.3Zm2.8.3v-.3h.5v.3H13Zm1-1h.9a15.4 15.4 0 0 1 0 .8h-1v-.8Zm1.4.9a8 8 0 0 0 0-1h1v1h-1Z",
|
|
993
|
-
fill: "#000"
|
|
994
|
-
})]
|
|
995
|
-
}, "40");
|
|
385
|
+
return (<Icon key="40" {...props}>
|
|
386
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
387
|
+
<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"/>
|
|
388
|
+
<path d="M12 9a5 5 0 0 0-5 5v.9h2.9v.1H14V15H17v-1a5 5 0 0 0-5-5Zm2.7 4a3.7 3.7 0 0 0-.2-.8H16c.2.2.2.5.3.8h-1.7Zm-1.7.7-.1-.5.5-.3.2.8H13Zm-2.7 0c0-.3.1-.6.3-.8l.4.3-.1.5h-.6Zm-.4.7h-1a6.8 6.8 0 0 1 0-1h1v1Zm4.9-4h-1.2a5.2 5.2 0 0 0-.2-.6h.4l1 .7Zm-.3 1 .1.3h-2a2 2 0 0 0-.4 0v-.8h2l.3.5ZM10 13h-.3l.2-.5v-.3h.6l-.5.8Zm1.7-.9v.6a1 1 0 0 0-.3.2l-.5-.4c.2-.2.5-.4.8-.4Zm-.6-2.3h1.7a5.4 5.4 0 0 1 .3.7h-2.2a3 3 0 0 1 .2-.7Zm1.5 3a1 1 0 0 0-.4 0V12c.3 0 .6.2.9.4l-.5.4Zm-2-3a4.3 4.3 0 0 0-.2.7H9.2l1-.7h.4ZM9.7 11h2v.7l-.3.1H9.3a3 3 0 0 1 .4-.8Zm-.2 1.3-.1.2-.1.6H7.6c0-.3.1-.6.3-.8h1.6Zm3.9 0h.5l.2.4v.4H14c0-.3-.3-.6-.5-.8Zm2.5-.5H15a3.2 3.2 0 0 0-.3-.8h.5l.6.8Zm-7.2-.8H9a4 4 0 0 0-.3.8h-.7l.6-.8Zm-1.2 3v-.4h1a18.2 18.2 0 0 0 0 .8h-1V14Zm2.8.3h.6v.3h-.6v-.3Zm2.8.3v-.3h.5v.3H13Zm1-1h.9a15.4 15.4 0 0 1 0 .8h-1v-.8Zm1.4.9a8 8 0 0 0 0-1h1v1h-1Z" fill="#000"/>
|
|
389
|
+
</Icon>);
|
|
996
390
|
}
|
|
997
391
|
export function CompassGrey(props) {
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
fillRule: "evenodd",
|
|
1005
|
-
clipRule: "evenodd",
|
|
1006
|
-
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",
|
|
1007
|
-
fill: "#fff"
|
|
1008
|
-
}), _jsx("path", {
|
|
1009
|
-
fillRule: "evenodd",
|
|
1010
|
-
clipRule: "evenodd",
|
|
1011
|
-
d: "M11.7 8.1c-2.4 0-4.3 3-3.4 5.3.7 1.9 3 3 5 2.3 1.8-.6 3-2.7 2.5-4.5a3.9 3.9 0 0 0-4-3ZM17 12a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z",
|
|
1012
|
-
fill: "#000"
|
|
1013
|
-
}), _jsx("path", {
|
|
1014
|
-
fillRule: "evenodd",
|
|
1015
|
-
clipRule: "evenodd",
|
|
1016
|
-
d: "m12.8 12.8 1.7-3.3-3.3 1.7-1.7 3.3 3.3-1.7Zm-.5-.1-1-1-1 2 2-1Z",
|
|
1017
|
-
fill: "#000"
|
|
1018
|
-
})]
|
|
1019
|
-
}, "41");
|
|
392
|
+
return (<Icon key="41" {...props}>
|
|
393
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
394
|
+
<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"/>
|
|
395
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M11.7 8.1c-2.4 0-4.3 3-3.4 5.3.7 1.9 3 3 5 2.3 1.8-.6 3-2.7 2.5-4.5a3.9 3.9 0 0 0-4-3ZM17 12a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z" fill="#000"/>
|
|
396
|
+
<path fillRule="evenodd" clipRule="evenodd" d="m12.8 12.8 1.7-3.3-3.3 1.7-1.7 3.3 3.3-1.7Zm-.5-.1-1-1-1 2 2-1Z" fill="#000"/>
|
|
397
|
+
</Icon>);
|
|
1020
398
|
}
|
|
1021
399
|
export function StarsGrey(props) {
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
d
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
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",
|
|
1031
|
-
fill: "#fff"
|
|
1032
|
-
}), _jsx("path", {
|
|
1033
|
-
d: "M8.6 10.3v.5c-.2.8-.4 1-1.4 1.1L7 12l.4.1c.8.2 1 .3 1.1 1.2.1.5.2.5.3-.1 0-.5.2-.7.4-.9l.7-.2c.5 0 .6-.2.1-.2-.7-.1-1-.2-1-.5l-.2-.9-.2-.2ZM14.1 7l-.1.6c-.2 1-.3 1.2-.5 1.5-.3.3-.7.4-1.6.6l-.6.1v.1l.7.2c1.5.2 1.8.5 2 2 0 .6 0 .6.2.6l.2-.5c.2-1.7.4-2 2-2.1l.6-.2c0-.2-.1-.2-.6-.3-1-.1-1.4-.3-1.6-.6-.2-.3-.3-.6-.4-1.3 0-.6-.1-.7-.2-.7H14Zm-1.9 6.1v.2l-.2 1c-.2.4-.5.5-1.3.6-.3 0-.4 0-.4.2l.5.1c1 .2 1.2.4 1.4 1.4v.4c.2 0 .2 0 .2-.4.2-1 .4-1.2 1.3-1.4h.4l.1-.1-.2-.1c-1.2-.2-1.4-.4-1.5-1.4-.1-.4-.2-.6-.3-.5Z",
|
|
1034
|
-
fill: "#000"
|
|
1035
|
-
})]
|
|
1036
|
-
}, "42");
|
|
1037
|
-
}
|
|
400
|
+
return (<Icon key="42" {...props}>
|
|
401
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#E3E2E3"/>
|
|
402
|
+
<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"/>
|
|
403
|
+
<path d="M8.6 10.3v.5c-.2.8-.4 1-1.4 1.1L7 12l.4.1c.8.2 1 .3 1.1 1.2.1.5.2.5.3-.1 0-.5.2-.7.4-.9l.7-.2c.5 0 .6-.2.1-.2-.7-.1-1-.2-1-.5l-.2-.9-.2-.2ZM14.1 7l-.1.6c-.2 1-.3 1.2-.5 1.5-.3.3-.7.4-1.6.6l-.6.1v.1l.7.2c1.5.2 1.8.5 2 2 0 .6 0 .6.2.6l.2-.5c.2-1.7.4-2 2-2.1l.6-.2c0-.2-.1-.2-.6-.3-1-.1-1.4-.3-1.6-.6-.2-.3-.3-.6-.4-1.3 0-.6-.1-.7-.2-.7H14Zm-1.9 6.1v.2l-.2 1c-.2.4-.5.5-1.3.6-.3 0-.4 0-.4.2l.5.1c1 .2 1.2.4 1.4 1.4v.4c.2 0 .2 0 .2-.4.2-1 .4-1.2 1.3-1.4h.4l.1-.1-.2-.1c-1.2-.2-1.4-.4-1.5-1.4-.1-.4-.2-.6-.3-.5Z" fill="#000"/>
|
|
404
|
+
</Icon>);
|
|
405
|
+
}
|
|
406
|
+
// DIVERS FIN
|
|
407
|
+
// DIRECTIONS DÉBUT
|
|
1038
408
|
export function EastDirection(props) {
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
d
|
|
1043
|
-
|
|
1044
|
-
}), _jsx("path", {
|
|
1045
|
-
fillRule: "evenodd",
|
|
1046
|
-
clipRule: "evenodd",
|
|
1047
|
-
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",
|
|
1048
|
-
fill: "#fff"
|
|
1049
|
-
}), _jsx("path", {
|
|
1050
|
-
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",
|
|
1051
|
-
fill: "#fff"
|
|
1052
|
-
})]
|
|
1053
|
-
}, "43");
|
|
409
|
+
return (<Icon key="43" {...props}>
|
|
410
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
411
|
+
<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"/>
|
|
412
|
+
<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"/>
|
|
413
|
+
</Icon>);
|
|
1054
414
|
}
|
|
1055
415
|
export function WestDirection(props) {
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
d
|
|
1060
|
-
|
|
1061
|
-
}), _jsx("path", {
|
|
1062
|
-
fillRule: "evenodd",
|
|
1063
|
-
clipRule: "evenodd",
|
|
1064
|
-
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",
|
|
1065
|
-
fill: "#fff"
|
|
1066
|
-
}), _jsx("path", {
|
|
1067
|
-
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",
|
|
1068
|
-
fill: "#fff"
|
|
1069
|
-
})]
|
|
1070
|
-
}, "44");
|
|
416
|
+
return (<Icon key="44" {...props}>
|
|
417
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
418
|
+
<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"/>
|
|
419
|
+
<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"/>
|
|
420
|
+
</Icon>);
|
|
1071
421
|
}
|
|
1072
422
|
export function NorthDirection(props) {
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
d
|
|
1077
|
-
|
|
1078
|
-
}), _jsx("path", {
|
|
1079
|
-
fillRule: "evenodd",
|
|
1080
|
-
clipRule: "evenodd",
|
|
1081
|
-
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",
|
|
1082
|
-
fill: "#fff"
|
|
1083
|
-
}), _jsx("path", {
|
|
1084
|
-
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",
|
|
1085
|
-
fill: "#fff"
|
|
1086
|
-
})]
|
|
1087
|
-
}, "45");
|
|
423
|
+
return (<Icon key="45" {...props}>
|
|
424
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
425
|
+
<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"/>
|
|
426
|
+
<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"/>
|
|
427
|
+
</Icon>);
|
|
1088
428
|
}
|
|
1089
429
|
export function SouthDirection(props) {
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
d
|
|
1094
|
-
|
|
1095
|
-
}), _jsx("path", {
|
|
1096
|
-
fillRule: "evenodd",
|
|
1097
|
-
clipRule: "evenodd",
|
|
1098
|
-
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",
|
|
1099
|
-
fill: "#fff"
|
|
1100
|
-
}), _jsx("path", {
|
|
1101
|
-
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",
|
|
1102
|
-
fill: "#fff"
|
|
1103
|
-
})]
|
|
1104
|
-
}, "46");
|
|
430
|
+
return (<Icon key="46" {...props}>
|
|
431
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
432
|
+
<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"/>
|
|
433
|
+
<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"/>
|
|
434
|
+
</Icon>);
|
|
1105
435
|
}
|
|
1106
436
|
export function NorthEastDirection(props) {
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
d
|
|
1111
|
-
|
|
1112
|
-
}), _jsx("path", {
|
|
1113
|
-
fillRule: "evenodd",
|
|
1114
|
-
clipRule: "evenodd",
|
|
1115
|
-
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",
|
|
1116
|
-
fill: "#fff"
|
|
1117
|
-
}), _jsx("path", {
|
|
1118
|
-
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",
|
|
1119
|
-
fill: "#fff"
|
|
1120
|
-
})]
|
|
1121
|
-
}, "47");
|
|
437
|
+
return (<Icon key="47" {...props}>
|
|
438
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
439
|
+
<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"/>
|
|
440
|
+
<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"/>
|
|
441
|
+
</Icon>);
|
|
1122
442
|
}
|
|
1123
443
|
export function NorthWestDirection(props) {
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
d
|
|
1128
|
-
|
|
1129
|
-
}), _jsx("path", {
|
|
1130
|
-
fillRule: "evenodd",
|
|
1131
|
-
clipRule: "evenodd",
|
|
1132
|
-
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",
|
|
1133
|
-
fill: "#fff"
|
|
1134
|
-
}), _jsx("path", {
|
|
1135
|
-
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",
|
|
1136
|
-
fill: "#fff"
|
|
1137
|
-
})]
|
|
1138
|
-
}, "48");
|
|
444
|
+
return (<Icon key="48" {...props}>
|
|
445
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
446
|
+
<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"/>
|
|
447
|
+
<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"/>
|
|
448
|
+
</Icon>);
|
|
1139
449
|
}
|
|
1140
450
|
export function SouthWestDirection(props) {
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
d
|
|
1145
|
-
|
|
1146
|
-
}), _jsx("path", {
|
|
1147
|
-
fillRule: "evenodd",
|
|
1148
|
-
clipRule: "evenodd",
|
|
1149
|
-
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",
|
|
1150
|
-
fill: "#fff"
|
|
1151
|
-
}), _jsx("path", {
|
|
1152
|
-
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",
|
|
1153
|
-
fill: "#fff"
|
|
1154
|
-
})]
|
|
1155
|
-
}, "49");
|
|
451
|
+
return (<Icon key="49" {...props}>
|
|
452
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
453
|
+
<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"/>
|
|
454
|
+
<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"/>
|
|
455
|
+
</Icon>);
|
|
1156
456
|
}
|
|
1157
457
|
export function SouthEastDirection(props) {
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
d
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
fill: "#fff"
|
|
1171
|
-
})]
|
|
1172
|
-
}, "50");
|
|
458
|
+
return (<Icon key="50" {...props}>
|
|
459
|
+
<path d="M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z" fill="#383838"/>
|
|
460
|
+
<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"/>
|
|
461
|
+
<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"/>
|
|
462
|
+
</Icon>);
|
|
463
|
+
}
|
|
464
|
+
// DIRECTIONS FIN
|
|
465
|
+
function Icon(_a) {
|
|
466
|
+
var { width = 24, height = 24 } = _a, props = __rest(_a, ["width", "height"]);
|
|
467
|
+
return (<svg viewBox={`0 0 ${width} ${height}`} width={width} height={height} {...props}>
|
|
468
|
+
{props.children}
|
|
469
|
+
</svg>);
|
|
1173
470
|
}
|
|
1174
|
-
function Icon({
|
|
1175
|
-
width = 24,
|
|
1176
|
-
height = 24,
|
|
1177
|
-
...props
|
|
1178
|
-
}) {
|
|
1179
|
-
return _jsx("svg", {
|
|
1180
|
-
viewBox: `0 0 ${width} ${height}`,
|
|
1181
|
-
width: width,
|
|
1182
|
-
height: height,
|
|
1183
|
-
...props,
|
|
1184
|
-
children: props.children
|
|
1185
|
-
});
|
|
1186
|
-
}
|