@gnist/design-system 6.0.0-alpha.3 → 6.1.0
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/CHANGELOG.md +14 -14
- package/README.md +11 -8
- package/dist/_virtual/_rolldown/runtime.cjs +34 -0
- package/dist/_virtual/_rolldown/runtime.js +14 -0
- package/dist/building-blocks/index.cjs +11 -10
- package/dist/building-blocks/index.js +3 -7
- package/dist/building-blocks/inputs/InputHelperText.cjs +49 -27
- package/dist/building-blocks/inputs/InputHelperText.js +47 -27
- package/dist/building-blocks/inputs/index.cjs +3 -4
- package/dist/building-blocks/inputs/index.js +1 -4
- package/dist/building-blocks/inputs/internal/TextBelowInput.cjs +5 -5
- package/dist/building-blocks/inputs/internal/TextBelowInput.js +5 -5
- package/dist/building-blocks/inputs/internal/ValidationText.cjs +25 -15
- package/dist/building-blocks/inputs/internal/ValidationText.js +23 -14
- package/dist/building-blocks/inputs/internal/textBelowInput.css.cjs +35 -35
- package/dist/building-blocks/inputs/internal/textBelowInput.css.js +35 -35
- package/dist/building-blocks/skeletons/CircularSkeleton.cjs +35 -18
- package/dist/building-blocks/skeletons/CircularSkeleton.js +31 -14
- package/dist/building-blocks/skeletons/RectangularSkeleton.cjs +30 -9
- package/dist/building-blocks/skeletons/RectangularSkeleton.js +26 -5
- package/dist/building-blocks/skeletons/TextSkeleton.cjs +39 -14
- package/dist/building-blocks/skeletons/TextSkeleton.js +35 -10
- package/dist/building-blocks/skeletons/index.cjs +6 -7
- package/dist/building-blocks/skeletons/index.js +1 -5
- package/dist/components/actions/buttons/ButtonBase.cjs +42 -54
- package/dist/components/actions/buttons/ButtonBase.js +36 -31
- package/dist/components/actions/buttons/DangerButton.cjs +12 -6
- package/dist/components/actions/buttons/DangerButton.js +10 -5
- package/dist/components/actions/buttons/GhostButton.cjs +14 -6
- package/dist/components/actions/buttons/GhostButton.js +12 -5
- package/dist/components/actions/buttons/IconButton.cjs +45 -23
- package/dist/components/actions/buttons/IconButton.js +42 -20
- package/dist/components/actions/buttons/PrimaryButton.cjs +14 -6
- package/dist/components/actions/buttons/PrimaryButton.js +12 -5
- package/dist/components/actions/buttons/SecondaryButton.cjs +12 -6
- package/dist/components/actions/buttons/SecondaryButton.js +10 -5
- package/dist/components/actions/buttons/SuccessButton.cjs +14 -6
- package/dist/components/actions/buttons/SuccessButton.js +12 -5
- package/dist/components/actions/buttons/TextButton.cjs +33 -24
- package/dist/components/actions/buttons/TextButton.js +29 -20
- package/dist/components/actions/buttons/createButtonVariant.cjs +24 -24
- package/dist/components/actions/buttons/createButtonVariant.js +21 -21
- package/dist/components/actions/buttons/index.cjs +14 -15
- package/dist/components/actions/buttons/index.js +1 -9
- package/dist/components/actions/buttons/styles.css.cjs +125 -143
- package/dist/components/actions/buttons/styles.css.d.ts.map +1 -1
- package/dist/components/actions/buttons/styles.css.js +120 -143
- package/dist/components/actions/chips/ActionChip.cjs +51 -29
- package/dist/components/actions/chips/ActionChip.js +45 -23
- package/dist/components/actions/chips/FilterChip.cjs +46 -29
- package/dist/components/actions/chips/FilterChip.js +40 -23
- package/dist/components/actions/chips/TagChip.cjs +46 -23
- package/dist/components/actions/chips/TagChip.js +40 -17
- package/dist/components/actions/chips/index.cjs +6 -7
- package/dist/components/actions/chips/index.js +1 -5
- package/dist/components/actions/chips/styles.css.cjs +61 -69
- package/dist/components/actions/chips/styles.css.d.ts.map +1 -1
- package/dist/components/actions/chips/styles.css.js +58 -68
- package/dist/components/actions/index.cjs +31 -29
- package/dist/components/actions/index.js +5 -17
- package/dist/components/actions/selectionControls/Checkbox.cjs +91 -52
- package/dist/components/actions/selectionControls/Checkbox.js +87 -49
- package/dist/components/actions/selectionControls/RadioButton.cjs +94 -74
- package/dist/components/actions/selectionControls/RadioButton.js +88 -68
- package/dist/components/actions/selectionControls/RadioGroup.cjs +54 -27
- package/dist/components/actions/selectionControls/RadioGroup.js +51 -25
- package/dist/components/actions/selectionControls/Switch.cjs +101 -41
- package/dist/components/actions/selectionControls/Switch.js +96 -37
- package/dist/components/actions/selectionControls/checkbox.css.cjs +70 -114
- package/dist/components/actions/selectionControls/checkbox.css.js +68 -114
- package/dist/components/actions/selectionControls/index.cjs +8 -9
- package/dist/components/actions/selectionControls/index.js +2 -7
- package/dist/components/actions/selectionControls/radiobutton.css.cjs +75 -107
- package/dist/components/actions/selectionControls/radiobutton.css.js +73 -107
- package/dist/components/actions/selectionControls/radiogroup.css.cjs +24 -40
- package/dist/components/actions/selectionControls/radiogroup.css.d.ts.map +1 -1
- package/dist/components/actions/selectionControls/radiogroup.css.js +24 -42
- package/dist/components/actions/selectionControls/shared.cjs +27 -21
- package/dist/components/actions/selectionControls/shared.css.cjs +45 -71
- package/dist/components/actions/selectionControls/shared.css.d.ts.map +1 -1
- package/dist/components/actions/selectionControls/shared.css.js +41 -72
- package/dist/components/actions/selectionControls/shared.js +24 -20
- package/dist/components/actions/selectionControls/switch.css.cjs +142 -214
- package/dist/components/actions/selectionControls/switch.css.d.ts.map +1 -1
- package/dist/components/actions/selectionControls/switch.css.js +137 -221
- package/dist/components/feedback/alerts/AlertBanner.cjs +64 -28
- package/dist/components/feedback/alerts/AlertBanner.css.cjs +47 -60
- package/dist/components/feedback/alerts/AlertBanner.css.d.ts.map +1 -1
- package/dist/components/feedback/alerts/AlertBanner.css.js +46 -66
- package/dist/components/feedback/alerts/AlertBanner.js +59 -23
- package/dist/components/feedback/alerts/index.cjs +2 -3
- package/dist/components/feedback/alerts/index.js +1 -3
- package/dist/components/feedback/index.cjs +16 -13
- package/dist/components/feedback/index.js +5 -9
- package/dist/components/feedback/loaders/LoadingBar.cjs +34 -17
- package/dist/components/feedback/loaders/LoadingBar.js +32 -17
- package/dist/components/feedback/loaders/LoadingSpinner.cjs +32 -26
- package/dist/components/feedback/loaders/LoadingSpinner.js +31 -25
- package/dist/components/feedback/loaders/index.cjs +5 -6
- package/dist/components/feedback/loaders/index.js +1 -5
- package/dist/components/feedback/loaders/loadingBar.css.cjs +19 -33
- package/dist/components/feedback/loaders/loadingBar.css.d.ts.map +1 -1
- package/dist/components/feedback/loaders/loadingBar.css.js +17 -33
- package/dist/components/feedback/loaders/loadingSpinner.css.cjs +18 -21
- package/dist/components/feedback/loaders/loadingSpinner.css.d.ts.map +1 -1
- package/dist/components/feedback/loaders/loadingSpinner.css.js +16 -20
- package/dist/components/feedback/notifications/Lozenge.cjs +9 -5
- package/dist/components/feedback/notifications/Lozenge.js +9 -5
- package/dist/components/feedback/notifications/index.cjs +2 -3
- package/dist/components/feedback/notifications/index.js +1 -3
- package/dist/components/feedback/notifications/lozenge.css.cjs +58 -64
- package/dist/components/feedback/notifications/lozenge.css.js +54 -61
- package/dist/components/feedback/progress/ProgressBar.cjs +30 -22
- package/dist/components/feedback/progress/ProgressBar.css.cjs +20 -22
- package/dist/components/feedback/progress/ProgressBar.css.d.ts.map +1 -1
- package/dist/components/feedback/progress/ProgressBar.css.js +19 -26
- package/dist/components/feedback/progress/ProgressBar.js +27 -21
- package/dist/components/feedback/progress/index.cjs +3 -4
- package/dist/components/feedback/progress/index.js +1 -4
- package/dist/components/index.cjs +73 -69
- package/dist/components/index.js +9 -41
- package/dist/components/inputs/dropdowns/MultiSelect.cjs +9 -4
- package/dist/components/inputs/dropdowns/MultiSelect.js +9 -4
- package/dist/components/inputs/dropdowns/SelectBase.cjs +126 -99
- package/dist/components/inputs/dropdowns/SelectBase.js +122 -78
- package/dist/components/inputs/dropdowns/SingleSelect.cjs +11 -4
- package/dist/components/inputs/dropdowns/SingleSelect.js +11 -4
- package/dist/components/inputs/dropdowns/index.cjs +4 -5
- package/dist/components/inputs/dropdowns/index.js +1 -4
- package/dist/components/inputs/dropdowns/select.css.cjs +71 -92
- package/dist/components/inputs/dropdowns/select.css.js +69 -96
- package/dist/components/inputs/index.cjs +15 -13
- package/dist/components/inputs/index.js +4 -9
- package/dist/components/inputs/pickers/Calendar.css.cjs +100 -138
- package/dist/components/inputs/pickers/Calendar.css.d.ts.map +1 -1
- package/dist/components/inputs/pickers/Calendar.css.js +96 -144
- package/dist/components/inputs/pickers/calendar.cjs +278 -201
- package/dist/components/inputs/pickers/calendar.js +272 -196
- package/dist/components/inputs/pickers/index.cjs +2 -3
- package/dist/components/inputs/pickers/index.js +1 -3
- package/dist/components/inputs/shared-styles/iconButtonOverlay.css.cjs +32 -38
- package/dist/components/inputs/shared-styles/iconButtonOverlay.css.js +30 -37
- package/dist/components/inputs/shared-styles/inputField.css.cjs +100 -140
- package/dist/components/inputs/shared-styles/inputField.css.d.ts.map +1 -1
- package/dist/components/inputs/shared-styles/inputField.css.js +97 -141
- package/dist/components/inputs/shared-styles/inputFieldConstants.css.cjs +8 -7
- package/dist/components/inputs/shared-styles/inputFieldConstants.css.js +7 -10
- package/dist/components/inputs/shared-styles/labelStyles.css.cjs +152 -176
- package/dist/components/inputs/shared-styles/labelStyles.css.js +149 -174
- package/dist/components/inputs/shared-styles/suffixPrefix.css.cjs +13 -10
- package/dist/components/inputs/shared-styles/suffixPrefix.css.js +12 -11
- package/dist/components/inputs/shared.cjs +92 -93
- package/dist/components/inputs/shared.js +87 -92
- package/dist/components/inputs/textFields/TextArea.cjs +131 -62
- package/dist/components/inputs/textFields/TextArea.js +125 -58
- package/dist/components/inputs/textFields/TextField.cjs +140 -74
- package/dist/components/inputs/textFields/TextField.js +134 -68
- package/dist/components/inputs/textFields/index.cjs +6 -7
- package/dist/components/inputs/textFields/index.js +1 -6
- package/dist/components/inputs/textFields/textArea.css.cjs +17 -21
- package/dist/components/inputs/textFields/textArea.css.js +17 -21
- package/dist/components/progress/Spinner.cjs +19 -14
- package/dist/components/progress/Spinner.js +16 -12
- package/dist/components/progress/index.cjs +2 -3
- package/dist/components/progress/index.js +1 -3
- package/dist/components/progress/spinner.css.cjs +21 -24
- package/dist/components/progress/spinner.css.d.ts.map +1 -1
- package/dist/components/progress/spinner.css.js +20 -24
- package/dist/components/surfaces/accordion/Accordion.cjs +41 -17
- package/dist/components/surfaces/accordion/Accordion.js +38 -15
- package/dist/components/surfaces/accordion/accordion.css.cjs +45 -72
- package/dist/components/surfaces/accordion/accordion.css.js +41 -73
- package/dist/components/surfaces/accordion/index.cjs +2 -3
- package/dist/components/surfaces/accordion/index.js +1 -3
- package/dist/components/surfaces/cards/ActionCard.cjs +29 -19
- package/dist/components/surfaces/cards/ActionCard.js +26 -16
- package/dist/components/surfaces/cards/CheckboxCard.cjs +44 -14
- package/dist/components/surfaces/cards/CheckboxCard.js +39 -9
- package/dist/components/surfaces/cards/InfoCard.cjs +27 -14
- package/dist/components/surfaces/cards/InfoCard.js +24 -11
- package/dist/components/surfaces/cards/LinkCard.cjs +29 -19
- package/dist/components/surfaces/cards/LinkCard.js +26 -16
- package/dist/components/surfaces/cards/RadioCard.cjs +45 -14
- package/dist/components/surfaces/cards/RadioCard.js +40 -9
- package/dist/components/surfaces/cards/SharedComponents.cjs +19 -21
- package/dist/components/surfaces/cards/SharedComponents.js +17 -20
- package/dist/components/surfaces/cards/cards.css.cjs +83 -80
- package/dist/components/surfaces/cards/cards.css.d.ts.map +1 -1
- package/dist/components/surfaces/cards/cards.css.js +78 -76
- package/dist/components/surfaces/cards/checkboxCard.css.cjs +21 -31
- package/dist/components/surfaces/cards/checkboxCard.css.js +19 -30
- package/dist/components/surfaces/cards/index.cjs +10 -11
- package/dist/components/surfaces/cards/index.js +2 -8
- package/dist/components/surfaces/cards/internal/SelectionCard.cjs +36 -31
- package/dist/components/surfaces/cards/internal/SelectionCard.css.cjs +28 -39
- package/dist/components/surfaces/cards/internal/SelectionCard.css.js +27 -40
- package/dist/components/surfaces/cards/internal/SelectionCard.js +34 -31
- package/dist/components/surfaces/index.cjs +17 -15
- package/dist/components/surfaces/index.js +5 -10
- package/dist/components/surfaces/modal/Modal.cjs +128 -101
- package/dist/components/surfaces/modal/Modal.js +121 -94
- package/dist/components/surfaces/modal/index.cjs +2 -3
- package/dist/components/surfaces/modal/index.js +1 -3
- package/dist/components/surfaces/modal/modal.css.cjs +210 -253
- package/dist/components/surfaces/modal/modal.css.js +206 -256
- package/dist/fonts/VW/VWHeadWeb-Bold.woff2.cjs +4 -4
- package/dist/fonts/VW/VWHeadWeb-Bold.woff2.js +4 -4
- package/dist/fonts/VW/VWHeadWeb-ExtraBold.woff2.cjs +4 -4
- package/dist/fonts/VW/VWHeadWeb-ExtraBold.woff2.js +4 -4
- package/dist/fonts/VW/VWHeadWeb-Regular.woff2.cjs +4 -4
- package/dist/fonts/VW/VWHeadWeb-Regular.woff2.js +4 -4
- package/dist/fonts/VW/VWTextWeb-Bold.woff2.cjs +4 -4
- package/dist/fonts/VW/VWTextWeb-Bold.woff2.js +4 -4
- package/dist/fonts/VW/VWTextWeb-Regular.woff2.cjs +4 -4
- package/dist/fonts/VW/VWTextWeb-Regular.woff2.js +4 -4
- package/dist/fonts/VW/head-bold.css.cjs +10 -8
- package/dist/fonts/VW/head-bold.css.js +7 -5
- package/dist/fonts/VW/head-extra-bold.css.cjs +10 -9
- package/dist/fonts/VW/head-extra-bold.css.js +7 -6
- package/dist/fonts/VW/head-regular.css.cjs +10 -8
- package/dist/fonts/VW/head-regular.css.js +7 -5
- package/dist/fonts/VW/index.cjs +13 -3
- package/dist/fonts/VW/index.js +13 -5
- package/dist/fonts/VW/text-bold.css.cjs +10 -8
- package/dist/fonts/VW/text-bold.css.js +7 -5
- package/dist/fonts/VW/text-regular.css.cjs +10 -8
- package/dist/fonts/VW/text-regular.css.js +7 -5
- package/dist/fonts/audi/AudiType-Bold_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-Bold_4.03.woff2.js +4 -4
- package/dist/fonts/audi/AudiType-ExtendedBold_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-ExtendedBold_4.03.woff2.js +4 -4
- package/dist/fonts/audi/AudiType-ExtendedNormal_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-ExtendedNormal_4.03.woff2.js +4 -4
- package/dist/fonts/audi/AudiType-Normal_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-Normal_4.03.woff2.js +4 -4
- package/dist/fonts/audi/bold.css.cjs +10 -8
- package/dist/fonts/audi/bold.css.js +7 -5
- package/dist/fonts/audi/extended-bold.css.cjs +10 -8
- package/dist/fonts/audi/extended-bold.css.js +7 -5
- package/dist/fonts/audi/extended-regular.css.cjs +10 -8
- package/dist/fonts/audi/extended-regular.css.js +7 -5
- package/dist/fonts/audi/index.cjs +13 -3
- package/dist/fonts/audi/index.js +13 -5
- package/dist/fonts/audi/regular.css.cjs +10 -8
- package/dist/fonts/audi/regular.css.js +7 -5
- package/dist/fonts/autoria/Texgyreheros-Bold.woff2.cjs +4 -4
- package/dist/fonts/autoria/Texgyreheros-Bold.woff2.js +4 -4
- package/dist/fonts/autoria/Texgyreheros-Regular.woff2.cjs +4 -4
- package/dist/fonts/autoria/Texgyreheros-Regular.woff2.js +4 -4
- package/dist/fonts/autoria/bold.css.cjs +10 -8
- package/dist/fonts/autoria/bold.css.js +7 -5
- package/dist/fonts/autoria/index.cjs +13 -3
- package/dist/fonts/autoria/index.js +13 -5
- package/dist/fonts/autoria/regular.css.cjs +10 -8
- package/dist/fonts/autoria/regular.css.js +7 -5
- package/dist/fonts/bilhold/GeistVariableVF.woff2.cjs +5 -0
- package/dist/fonts/bilhold/GeistVariableVF.woff2.js +5 -0
- package/dist/fonts/bilhold/index.cjs +13 -4
- package/dist/fonts/bilhold/index.d.ts +0 -1
- package/dist/fonts/bilhold/index.d.ts.map +1 -1
- package/dist/fonts/bilhold/index.js +13 -6
- package/dist/fonts/bilhold/regular.css.cjs +11 -8
- package/dist/fonts/bilhold/regular.css.js +8 -5
- package/dist/fonts/cupra/Cupra-Bold.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Bold.woff2.js +4 -4
- package/dist/fonts/cupra/Cupra-Book.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Book.woff2.js +4 -4
- package/dist/fonts/cupra/Cupra-Medium.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Medium.woff2.js +4 -4
- package/dist/fonts/cupra/Cupra-Regular.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Regular.woff2.js +4 -4
- package/dist/fonts/cupra/bold.css.cjs +10 -8
- package/dist/fonts/cupra/bold.css.js +7 -5
- package/dist/fonts/cupra/book.css.cjs +10 -8
- package/dist/fonts/cupra/book.css.js +7 -5
- package/dist/fonts/cupra/index.cjs +13 -3
- package/dist/fonts/cupra/index.js +13 -5
- package/dist/fonts/cupra/medium.css.cjs +10 -8
- package/dist/fonts/cupra/medium.css.js +7 -5
- package/dist/fonts/cupra/regular.css.cjs +10 -8
- package/dist/fonts/cupra/regular.css.js +7 -5
- package/dist/fonts/dahles/SourceSans3-Bold.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-Bold.woff2.js +4 -4
- package/dist/fonts/dahles/SourceSans3-Medium.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-Medium.woff2.js +4 -4
- package/dist/fonts/dahles/SourceSans3-Regular.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-Regular.woff2.js +4 -4
- package/dist/fonts/dahles/SourceSans3-SemiBold.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-SemiBold.woff2.js +4 -4
- package/dist/fonts/dahles/bold.css.cjs +10 -8
- package/dist/fonts/dahles/bold.css.js +7 -5
- package/dist/fonts/dahles/index.cjs +13 -3
- package/dist/fonts/dahles/index.js +13 -5
- package/dist/fonts/dahles/medium.css.cjs +10 -8
- package/dist/fonts/dahles/medium.css.js +7 -5
- package/dist/fonts/dahles/regular.css.cjs +10 -8
- package/dist/fonts/dahles/regular.css.js +7 -5
- package/dist/fonts/dahles/semibold.css.cjs +10 -8
- package/dist/fonts/dahles/semibold.css.js +7 -5
- package/dist/fonts/gumpen/ES-Build-Bold.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-Bold.woff2.js +4 -4
- package/dist/fonts/gumpen/ES-Build-Medium.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-Medium.woff2.js +4 -4
- package/dist/fonts/gumpen/ES-Build-Regular.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-Regular.woff2.js +4 -4
- package/dist/fonts/gumpen/ES-Build-SemiBold.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-SemiBold.woff2.js +4 -4
- package/dist/fonts/gumpen/bold.css.cjs +10 -8
- package/dist/fonts/gumpen/bold.css.js +7 -5
- package/dist/fonts/gumpen/index.cjs +13 -3
- package/dist/fonts/gumpen/index.js +13 -5
- package/dist/fonts/gumpen/medium.css.cjs +10 -8
- package/dist/fonts/gumpen/medium.css.js +7 -5
- package/dist/fonts/gumpen/regular.css.cjs +10 -8
- package/dist/fonts/gumpen/regular.css.js +7 -5
- package/dist/fonts/gumpen/semibold.css.cjs +10 -8
- package/dist/fonts/gumpen/semibold.css.js +7 -5
- package/dist/fonts/index.cjs +144 -62
- package/dist/fonts/index.js +144 -73
- package/dist/fonts/moller/Larken-Bold.woff2.cjs +4 -4
- package/dist/fonts/moller/Larken-Bold.woff2.js +4 -4
- package/dist/fonts/moller/bold.css.cjs +14 -12
- package/dist/fonts/moller/bold.css.js +10 -8
- package/dist/fonts/moller/index.cjs +14 -4
- package/dist/fonts/moller/index.js +14 -6
- package/dist/fonts/moller/medium.css.cjs +10 -10
- package/dist/fonts/moller/medium.css.js +7 -7
- package/dist/fonts/moller/moller-bold-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-bold-webfont.woff2.js +4 -4
- package/dist/fonts/moller/moller-book-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-book-webfont.woff2.js +4 -4
- package/dist/fonts/moller/moller-medium-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-medium-webfont.woff2.js +4 -4
- package/dist/fonts/moller/moller-regular-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-regular-webfont.woff2.js +4 -4
- package/dist/fonts/moller/regular.css.cjs +10 -8
- package/dist/fonts/moller/regular.css.js +7 -5
- package/dist/fonts/moller/semibold.css.cjs +10 -10
- package/dist/fonts/moller/semibold.css.js +7 -7
- package/dist/fonts/seat/SEATBCN-Bold.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Bold.woff2.js +4 -4
- package/dist/fonts/seat/SEATBCN-Light.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Light.woff2.js +4 -4
- package/dist/fonts/seat/SEATBCN-Medium.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Medium.woff2.js +4 -4
- package/dist/fonts/seat/SEATBCN-Regular.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Regular.woff2.js +4 -4
- package/dist/fonts/seat/bold.css.cjs +10 -8
- package/dist/fonts/seat/bold.css.js +6 -4
- package/dist/fonts/seat/index.cjs +13 -3
- package/dist/fonts/seat/index.js +13 -5
- package/dist/fonts/seat/light.css.cjs +10 -8
- package/dist/fonts/seat/light.css.js +6 -4
- package/dist/fonts/seat/medium.css.cjs +10 -8
- package/dist/fonts/seat/medium.css.js +6 -4
- package/dist/fonts/seat/regular.css.cjs +10 -8
- package/dist/fonts/seat/regular.css.js +6 -4
- package/dist/fonts/skoda/SKODANextW07-Bold.woff2.cjs +4 -4
- package/dist/fonts/skoda/SKODANextW07-Bold.woff2.js +4 -4
- package/dist/fonts/skoda/SKODANextW07-Thin.woff2.cjs +4 -4
- package/dist/fonts/skoda/SKODANextW07-Thin.woff2.js +4 -4
- package/dist/fonts/skoda/bold.css.cjs +10 -8
- package/dist/fonts/skoda/bold.css.js +7 -5
- package/dist/fonts/skoda/index.cjs +13 -3
- package/dist/fonts/skoda/index.js +13 -5
- package/dist/fonts/skoda/medium.css.cjs +10 -8
- package/dist/fonts/skoda/medium.css.js +7 -5
- package/dist/fonts/skoda/regular.css.cjs +10 -8
- package/dist/fonts/skoda/regular.css.js +7 -5
- package/dist/fonts/skoda/semibold.css.cjs +10 -8
- package/dist/fonts/skoda/semibold.css.js +7 -5
- package/dist/fonts/tools/GeistVariableVF.woff2.cjs +4 -4
- package/dist/fonts/tools/GeistVariableVF.woff2.js +4 -4
- package/dist/fonts/tools/index.cjs +13 -3
- package/dist/fonts/tools/index.js +13 -5
- package/dist/fonts/tools/regular.css.cjs +11 -9
- package/dist/fonts/tools/regular.css.js +8 -6
- package/dist/foundation/iconography/ExtraIconsProvider.cjs +63 -7
- package/dist/foundation/iconography/ExtraIconsProvider.js +61 -7
- package/dist/foundation/iconography/Icon.cjs +63 -41
- package/dist/foundation/iconography/Icon.css.cjs +16 -16
- package/dist/foundation/iconography/Icon.css.d.ts.map +1 -1
- package/dist/foundation/iconography/Icon.css.js +15 -19
- package/dist/foundation/iconography/Icon.js +56 -34
- package/dist/foundation/iconography/IconVariantProvider.cjs +36 -7
- package/dist/foundation/iconography/IconVariantProvider.js +34 -7
- package/dist/foundation/iconography/icons.cjs +76 -63
- package/dist/foundation/iconography/icons.d.ts +1 -1
- package/dist/foundation/iconography/icons.d.ts.map +1 -1
- package/dist/foundation/iconography/icons.js +77 -65
- package/dist/foundation/iconography/index.cjs +8 -9
- package/dist/foundation/iconography/index.js +1 -6
- package/dist/foundation/iconography/svg/action/assignment-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/assignment-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/home-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/home-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/home-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/home-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/index.cjs +451 -423
- package/dist/foundation/iconography/svg/action/index.d.ts +0 -52
- package/dist/foundation/iconography/svg/action/index.d.ts.map +1 -1
- package/dist/foundation/iconography/svg/action/index.js +446 -464
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/index.cjs +31 -19
- package/dist/foundation/iconography/svg/communication/index.js +26 -22
- package/dist/foundation/iconography/svg/content/add-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/index.cjs +135 -91
- package/dist/foundation/iconography/svg/content/index.d.ts +52 -0
- package/dist/foundation/iconography/svg/content/index.d.ts.map +1 -1
- package/dist/foundation/iconography/svg/content/index.js +127 -101
- package/dist/foundation/iconography/svg/content/mail-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/mail-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/mail-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/mail-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/index.cjs +19 -10
- package/dist/foundation/iconography/svg/device/index.js +14 -12
- package/dist/foundation/iconography/svg/device/task-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/task-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/task-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/task-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/index.cjs +81 -64
- package/dist/foundation/iconography/svg/file/index.js +76 -72
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/unarchive-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/index.cjs +84 -25
- package/dist/foundation/iconography/svg/index.js +13 -26
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/ev_station-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/index.cjs +61 -46
- package/dist/foundation/iconography/svg/map/index.js +56 -52
- package/dist/foundation/iconography/svg/map/location-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/location-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/location-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/location-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/index.cjs +220 -191
- package/dist/foundation/iconography/svg/navigation/index.js +215 -211
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/menu-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/index.cjs +41 -28
- package/dist/foundation/iconography/svg/notifications/index.js +36 -32
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/index.cjs +31 -19
- package/dist/foundation/iconography/svg/search/index.js +26 -22
- package/dist/foundation/iconography/svg/search/search-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/search-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/search-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/search-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/index.cjs +61 -46
- package/dist/foundation/iconography/svg/social/index.js +56 -52
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/index.cjs +31 -19
- package/dist/foundation/iconography/svg/toggle/index.js +26 -22
- package/dist/foundation/iconography/svg/toggle/star-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/star-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/index.cjs +61 -46
- package/dist/foundation/iconography/svg/validation/index.js +56 -52
- package/dist/foundation/iconography/svg/validation/info-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/info-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/info-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/info-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg-react.js +17 -0
- package/dist/foundation/index.cjs +23 -22
- package/dist/foundation/index.js +3 -17
- package/dist/foundation/logos/Logo.cjs +47 -35
- package/dist/foundation/logos/Logo.css.cjs +16 -19
- package/dist/foundation/logos/Logo.css.d.ts.map +1 -1
- package/dist/foundation/logos/Logo.css.js +15 -20
- package/dist/foundation/logos/Logo.js +44 -32
- package/dist/foundation/logos/index.cjs +2 -3
- package/dist/foundation/logos/index.js +1 -3
- package/dist/foundation/logos/logos.cjs +33 -32
- package/dist/foundation/logos/logos.js +24 -23
- package/dist/foundation/logos/svg/audi/audi_symbol.svg-react.cjs +51 -0
- package/dist/foundation/logos/svg/audi/audi_symbol.svg-react.js +49 -0
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg-react.cjs +51 -0
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg-react.js +49 -0
- package/dist/foundation/logos/svg/audi/index.cjs +8 -7
- package/dist/foundation/logos/svg/audi/index.js +9 -9
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg-react.js +20 -0
- package/dist/foundation/logos/svg/autoria/index.cjs +8 -7
- package/dist/foundation/logos/svg/autoria/index.js +9 -9
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg-react.js +20 -0
- package/dist/foundation/logos/svg/bilhold/index.cjs +8 -7
- package/dist/foundation/logos/svg/bilhold/index.js +9 -9
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg-react.cjs +51 -0
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg-react.js +49 -0
- package/dist/foundation/logos/svg/cupra/index.cjs +8 -7
- package/dist/foundation/logos/svg/cupra/index.js +9 -9
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg-react.cjs +61 -0
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg-react.js +59 -0
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg-react.cjs +61 -0
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg-react.js +59 -0
- package/dist/foundation/logos/svg/dahles/index.cjs +8 -7
- package/dist/foundation/logos/svg/dahles/index.js +9 -9
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg-react.cjs +47 -0
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg-react.js +45 -0
- package/dist/foundation/logos/svg/gumpen/index.cjs +8 -7
- package/dist/foundation/logos/svg/gumpen/index.js +9 -9
- package/dist/foundation/logos/svg/index.cjs +29 -30
- package/dist/foundation/logos/svg/index.js +1 -21
- package/dist/foundation/logos/svg/mollerbil/index.cjs +8 -7
- package/dist/foundation/logos/svg/mollerbil/index.js +9 -9
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg-react.cjs +57 -0
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg-react.js +55 -0
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg-react.cjs +42 -0
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg-react.js +40 -0
- package/dist/foundation/logos/svg/others/alta_wordmark.svg-react.cjs +21 -0
- package/dist/foundation/logos/svg/others/alta_wordmark.svg-react.js +19 -0
- package/dist/foundation/logos/svg/others/berge_wordmark.svg-react.cjs +23 -0
- package/dist/foundation/logos/svg/others/berge_wordmark.svg-react.js +21 -0
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg-react.cjs +31 -0
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg-react.js +29 -0
- package/dist/foundation/logos/svg/others/index.cjs +47 -46
- package/dist/foundation/logos/svg/others/index.js +57 -65
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg-react.cjs +21 -0
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg-react.js +19 -0
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg-react.cjs +30 -0
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg-react.js +28 -0
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg-react.cjs +24 -0
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg-react.js +22 -0
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg-react.cjs +63 -0
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg-react.js +61 -0
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg-react.cjs +21 -0
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg-react.js +19 -0
- package/dist/foundation/logos/svg/skoda/index.cjs +8 -7
- package/dist/foundation/logos/svg/skoda/index.js +9 -9
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg-react.js +20 -0
- package/dist/foundation/logos/svg/vw/index.cjs +14 -13
- package/dist/foundation/logos/svg/vw/index.js +15 -16
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg-react.cjs +29 -0
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg-react.js +27 -0
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg-react.cjs +29 -0
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg-react.js +27 -0
- package/dist/foundation/logos/svg/vw/vw_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/vw/vw_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg-react.js +20 -0
- package/dist/foundation/typography/index.cjs +48 -15
- package/dist/foundation/typography/index.js +47 -25
- package/dist/foundation/typography/typography.css.cjs +13 -21
- package/dist/foundation/typography/typography.css.js +12 -28
- package/dist/index.cjs +145 -140
- package/dist/index.js +24 -107
- package/dist/styles/animations.css.cjs +6 -10
- package/dist/styles/animations.css.js +7 -11
- package/dist/styles/states.css.cjs +69 -102
- package/dist/styles/states.css.d.ts.map +1 -1
- package/dist/styles/states.css.js +66 -101
- package/dist/translations/LocalizationProvider.cjs +17 -27
- package/dist/translations/LocalizationProvider.js +14 -10
- package/dist/translations/en.cjs +60 -74
- package/dist/translations/en.js +61 -75
- package/dist/translations/index.cjs +35 -17
- package/dist/translations/index.js +29 -21
- package/dist/translations/no.cjs +60 -74
- package/dist/translations/no.js +61 -75
- package/dist/utilities/accessibility/ScreenReaderOnly.cjs +5 -5
- package/dist/utilities/accessibility/ScreenReaderOnly.js +4 -4
- package/dist/utilities/accessibility/index.cjs +4 -5
- package/dist/utilities/accessibility/index.js +2 -5
- package/dist/utilities/accessibility/visuallyHidden.css.cjs +15 -15
- package/dist/utilities/accessibility/visuallyHidden.css.js +16 -16
- package/dist/utilities/forms/formContext.cjs +61 -41
- package/dist/utilities/forms/formContext.js +58 -23
- package/dist/utilities/forms/formHelpers.cjs +60 -46
- package/dist/utilities/forms/formHelpers.js +58 -47
- package/dist/utilities/forms/formInputs.cjs +16 -17
- package/dist/utilities/forms/formInputs.js +17 -18
- package/dist/utilities/forms/index.cjs +7 -8
- package/dist/utilities/forms/index.js +1 -6
- package/dist/utilities/forms/internal/components.cjs +67 -75
- package/dist/utilities/forms/internal/components.js +61 -75
- package/dist/utilities/forms/useFormProps.cjs +25 -28
- package/dist/utilities/forms/useFormProps.js +24 -27
- package/dist/utilities/forms/useLocalFormState.cjs +77 -72
- package/dist/utilities/forms/useLocalFormState.js +76 -72
- package/dist/utilities/html/index.cjs +3 -2
- package/dist/utilities/html/index.js +4 -4
- package/dist/utilities/index.cjs +18 -18
- package/dist/utilities/index.js +3 -16
- package/dist/utilities/layout/Column.cjs +5 -5
- package/dist/utilities/layout/Column.js +5 -5
- package/dist/utilities/layout/Row.cjs +5 -5
- package/dist/utilities/layout/Row.js +5 -5
- package/dist/utilities/layout/breakpoints.cjs +5 -5
- package/dist/utilities/layout/breakpoints.js +6 -8
- package/dist/utilities/layout/index.cjs +8 -9
- package/dist/utilities/layout/index.js +1 -7
- package/dist/utilities/layout/styles.css.cjs +100 -100
- package/dist/utilities/layout/styles.css.js +99 -100
- package/dist/utilities/time/date.cjs +387 -388
- package/dist/utilities/time/date.js +388 -397
- package/dist/utilities/time/index.cjs +10 -11
- package/dist/utilities/time/index.js +1 -11
- package/dist/utilities/tokens/index.cjs +4 -5
- package/dist/utilities/tokens/index.js +1 -5
- package/dist/utilities/tokens/tokens.cjs +8 -10
- package/dist/utilities/tokens/tokens.js +9 -13
- package/dist/utilities/validation/index.cjs +24 -25
- package/dist/utilities/validation/index.js +2 -24
- package/dist/utilities/validation/regex.cjs +9 -11
- package/dist/utilities/validation/regex.js +10 -18
- package/dist/utilities/validation/validation.cjs +109 -93
- package/dist/utilities/validation/validation.js +109 -101
- package/dist/utilities/validation/validationSteps.cjs +12 -12
- package/dist/utilities/validation/validationSteps.js +12 -14
- package/dist/utilities/validation/validators.cjs +42 -66
- package/dist/utilities/validation/validators.js +42 -74
- package/package.json +7 -7
- package/dist/fonts/bilhold/Figtree-Bold.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-Bold.woff2.js +0 -5
- package/dist/fonts/bilhold/Figtree-Medium.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-Medium.woff2.js +0 -5
- package/dist/fonts/bilhold/Figtree-Regular.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-Regular.woff2.js +0 -5
- package/dist/fonts/bilhold/Figtree-SemiBold.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-SemiBold.woff2.js +0 -5
- package/dist/fonts/bilhold/bold.css.cjs +0 -10
- package/dist/fonts/bilhold/bold.css.d.ts +0 -2
- package/dist/fonts/bilhold/bold.css.d.ts.map +0 -1
- package/dist/fonts/bilhold/bold.css.js +0 -9
- package/dist/fonts/bilhold/medium.css.cjs +0 -10
- package/dist/fonts/bilhold/medium.css.d.ts +0 -2
- package/dist/fonts/bilhold/medium.css.d.ts.map +0 -1
- package/dist/fonts/bilhold/medium.css.js +0 -9
- package/dist/fonts/bilhold/semibold.css.cjs +0 -10
- package/dist/fonts/bilhold/semibold.css.d.ts +0 -2
- package/dist/fonts/bilhold/semibold.css.d.ts.map +0 -1
- package/dist/fonts/bilhold/semibold.css.js +0 -9
- package/dist/foundation/iconography/svg/action/assignment-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/assignment-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg.js +0 -10
- package/dist/foundation/logos/svg/audi/audi_symbol.svg.cjs +0 -30
- package/dist/foundation/logos/svg/audi/audi_symbol.svg.js +0 -12
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg.cjs +0 -30
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg.js +0 -12
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/alta_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/alta_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/berge_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/berge_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vw_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vw_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg.js +0 -10
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
4
|
-
const React = require("react");
|
|
5
|
-
function _interopNamespaceCompat(e) {
|
|
6
|
-
if (e && typeof e === "object" && "default" in e) return e;
|
|
7
|
-
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
8
|
-
if (e) {
|
|
9
|
-
for (const k in e) {
|
|
10
|
-
if (k !== "default") {
|
|
11
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: () => e[k]
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
n.default = e;
|
|
20
|
-
return Object.freeze(n);
|
|
21
|
-
}
|
|
22
|
-
const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
23
|
-
const SvgMollerbilSymbol = ({
|
|
24
|
-
title,
|
|
25
|
-
titleId,
|
|
26
|
-
...props
|
|
27
|
-
}) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M13.0999 4.00593V7.5493C14.8716 8.03222 16.0789 9.66762 16.0789 11.7785C16.0789 13.8895 14.8716 15.4671 13.0999 15.9293V19.4726C17.1721 18.9942 20 15.9011 20 11.7785C19.9985 7.66336 17.0877 4.50366 13.0999 4.00593ZM10.9001 7.53893V4C6.92417 4.48736 4 7.62781 4 11.7785C4 15.9085 6.83826 19.006 10.9001 19.4741V15.9322C9.1373 15.476 7.92112 13.8969 7.92112 11.7785C7.92112 9.63355 9.12101 8.00704 10.9001 7.53893Z", fill: "#0000FF" }));
|
|
28
|
-
exports.default = SvgMollerbilSymbol;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
const SvgMollerbilSymbol = ({
|
|
4
|
-
title,
|
|
5
|
-
titleId,
|
|
6
|
-
...props
|
|
7
|
-
}) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { d: "M13.0999 4.00593V7.5493C14.8716 8.03222 16.0789 9.66762 16.0789 11.7785C16.0789 13.8895 14.8716 15.4671 13.0999 15.9293V19.4726C17.1721 18.9942 20 15.9011 20 11.7785C19.9985 7.66336 17.0877 4.50366 13.0999 4.00593ZM10.9001 7.53893V4C6.92417 4.48736 4 7.62781 4 11.7785C4 15.9085 6.83826 19.006 10.9001 19.4741V15.9322C9.1373 15.476 7.92112 13.8969 7.92112 11.7785C7.92112 9.63355 9.12101 8.00704 10.9001 7.53893Z", fill: "#0000FF" }));
|
|
8
|
-
export {
|
|
9
|
-
SvgMollerbilSymbol as default
|
|
10
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
4
|
-
const React = require("react");
|
|
5
|
-
function _interopNamespaceCompat(e) {
|
|
6
|
-
if (e && typeof e === "object" && "default" in e) return e;
|
|
7
|
-
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
8
|
-
if (e) {
|
|
9
|
-
for (const k in e) {
|
|
10
|
-
if (k !== "default") {
|
|
11
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: () => e[k]
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
n.default = e;
|
|
20
|
-
return Object.freeze(n);
|
|
21
|
-
}
|
|
22
|
-
const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
23
|
-
const SvgMollerbilWordmark = ({
|
|
24
|
-
title,
|
|
25
|
-
titleId,
|
|
26
|
-
...props
|
|
27
|
-
}) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 94 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M77.176 18.7813C79.2677 18.7813 80.7503 17.6346 80.7503 15.5428C80.7503 13.451 79.1289 12.3716 77.1088 12.3716H74.2735V18.7813H77.176ZM77.3103 11.3548C78.999 11.3548 80.2128 10.0738 80.2128 8.4523C80.2128 6.76365 78.999 5.5498 77.3103 5.5498H74.2735V11.3548H77.3103ZM73.194 4.54198H77.176C79.6709 4.54198 81.3595 6.16344 81.3595 8.45678C81.3595 10.0782 80.4144 11.2921 79.3349 11.8296C80.7503 12.2999 81.897 13.7198 81.897 15.5428C81.897 17.9033 80.074 19.7935 77.5119 19.7935H73.194V4.54198Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M84.5308 8.45678H85.6102V19.7935H84.5308V8.45678ZM85.0727 4.54198C85.5431 4.54198 85.9507 4.94511 85.9507 5.4199C85.9507 5.89469 85.5475 6.29782 85.0727 6.29782C84.6024 6.29782 84.1948 5.89469 84.1948 5.4199C84.1948 4.94511 84.5979 4.54198 85.0727 4.54198Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M89.9998 4H88.9203V19.7891H89.9998V4Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M12.3671 14.9337L16.7522 4.54198H20.667V19.7935H17.7645V8.8599L13.7825 18.508H10.9472L6.96521 8.8599V19.7935H4V4.54198H7.9775L12.3671 14.9337Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M39.3227 4H36.2858V19.7891H39.3227V4Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M44.7201 4H41.6832V19.7891H44.7201V4Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M54.5743 12.9091C54.5071 11.4936 53.4948 10.6157 52.1466 10.6157C50.7312 10.6157 49.7861 11.628 49.6517 12.9091H54.5743ZM52.0749 8.11635C55.5821 8.11635 57.6067 10.4769 57.6067 14.1901C57.6067 14.3917 57.6067 14.5932 57.6067 14.8665H49.5755C49.6427 16.4162 50.8566 17.5002 52.5452 17.5002C54.095 17.5002 54.9729 16.5551 55.3133 16.0848L57.2707 17.5674C56.8676 18.3781 55.3133 20.0623 52.478 20.0623C48.8365 20.0623 46.4715 17.5674 46.4715 14.1229C46.4715 10.6784 48.8365 8.11635 52.0749 8.11635Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M65.3691 11.1532C63.1429 11.1532 62.265 12.5686 62.265 14.7948V19.7891H59.2281V8.38958H62.1978V10.0782C62.6681 8.93156 63.8193 8.12083 65.3691 8.12083V11.1532Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M29.3207 8.18802V10.9069C30.6824 11.2786 31.6051 12.5328 31.6051 14.1543C31.6051 15.7757 30.6779 16.9851 29.3207 17.339V20.0578C32.4472 19.6905 34.6151 17.3166 34.6151 14.1543C34.6151 10.9965 32.38 8.56875 29.3207 8.18802ZM27.6321 10.9024V8.18802C24.5773 8.55979 22.3377 10.9696 22.3377 14.1543C22.3377 17.3255 24.5146 19.704 27.6321 20.0623V17.3434C26.2794 16.9941 25.3477 15.7802 25.3477 14.1543C25.3432 12.5059 26.2659 11.2607 27.6321 10.9024Z", fill: "#0000FF" }));
|
|
28
|
-
exports.default = SvgMollerbilWordmark;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
const SvgMollerbilWordmark = ({
|
|
4
|
-
title,
|
|
5
|
-
titleId,
|
|
6
|
-
...props
|
|
7
|
-
}) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 94 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { d: "M77.176 18.7813C79.2677 18.7813 80.7503 17.6346 80.7503 15.5428C80.7503 13.451 79.1289 12.3716 77.1088 12.3716H74.2735V18.7813H77.176ZM77.3103 11.3548C78.999 11.3548 80.2128 10.0738 80.2128 8.4523C80.2128 6.76365 78.999 5.5498 77.3103 5.5498H74.2735V11.3548H77.3103ZM73.194 4.54198H77.176C79.6709 4.54198 81.3595 6.16344 81.3595 8.45678C81.3595 10.0782 80.4144 11.2921 79.3349 11.8296C80.7503 12.2999 81.897 13.7198 81.897 15.5428C81.897 17.9033 80.074 19.7935 77.5119 19.7935H73.194V4.54198Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M84.5308 8.45678H85.6102V19.7935H84.5308V8.45678ZM85.0727 4.54198C85.5431 4.54198 85.9507 4.94511 85.9507 5.4199C85.9507 5.89469 85.5475 6.29782 85.0727 6.29782C84.6024 6.29782 84.1948 5.89469 84.1948 5.4199C84.1948 4.94511 84.5979 4.54198 85.0727 4.54198Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M89.9998 4H88.9203V19.7891H89.9998V4Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M12.3671 14.9337L16.7522 4.54198H20.667V19.7935H17.7645V8.8599L13.7825 18.508H10.9472L6.96521 8.8599V19.7935H4V4.54198H7.9775L12.3671 14.9337Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M39.3227 4H36.2858V19.7891H39.3227V4Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M44.7201 4H41.6832V19.7891H44.7201V4Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M54.5743 12.9091C54.5071 11.4936 53.4948 10.6157 52.1466 10.6157C50.7312 10.6157 49.7861 11.628 49.6517 12.9091H54.5743ZM52.0749 8.11635C55.5821 8.11635 57.6067 10.4769 57.6067 14.1901C57.6067 14.3917 57.6067 14.5932 57.6067 14.8665H49.5755C49.6427 16.4162 50.8566 17.5002 52.5452 17.5002C54.095 17.5002 54.9729 16.5551 55.3133 16.0848L57.2707 17.5674C56.8676 18.3781 55.3133 20.0623 52.478 20.0623C48.8365 20.0623 46.4715 17.5674 46.4715 14.1229C46.4715 10.6784 48.8365 8.11635 52.0749 8.11635Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M65.3691 11.1532C63.1429 11.1532 62.265 12.5686 62.265 14.7948V19.7891H59.2281V8.38958H62.1978V10.0782C62.6681 8.93156 63.8193 8.12083 65.3691 8.12083V11.1532Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M29.3207 8.18802V10.9069C30.6824 11.2786 31.6051 12.5328 31.6051 14.1543C31.6051 15.7757 30.6779 16.9851 29.3207 17.339V20.0578C32.4472 19.6905 34.6151 17.3166 34.6151 14.1543C34.6151 10.9965 32.38 8.56875 29.3207 8.18802ZM27.6321 10.9024V8.18802C24.5773 8.55979 22.3377 10.9696 22.3377 14.1543C22.3377 17.3255 24.5146 19.704 27.6321 20.0623V17.3434C26.2794 16.9941 25.3477 15.7802 25.3477 14.1543C25.3432 12.5059 26.2659 11.2607 27.6321 10.9024Z", fill: "#0000FF" }));
|
|
8
|
-
export {
|
|
9
|
-
SvgMollerbilWordmark as default
|
|
10
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
4
|
-
const React = require("react");
|
|
5
|
-
function _interopNamespaceCompat(e) {
|
|
6
|
-
if (e && typeof e === "object" && "default" in e) return e;
|
|
7
|
-
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
8
|
-
if (e) {
|
|
9
|
-
for (const k in e) {
|
|
10
|
-
if (k !== "default") {
|
|
11
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: () => e[k]
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
n.default = e;
|
|
20
|
-
return Object.freeze(n);
|
|
21
|
-
}
|
|
22
|
-
const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
23
|
-
const SvgAlbjerkWordmark = ({
|
|
24
|
-
title,
|
|
25
|
-
titleId,
|
|
26
|
-
...props
|
|
27
|
-
}) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 125 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("rect", { width: 124.444, height: 24, fill: "url(#pattern0)" }), /* @__PURE__ */ React__namespace.createElement("defs", null, /* @__PURE__ */ React__namespace.createElement("pattern", { id: "pattern0", patternContentUnits: "objectBoundingBox", width: 1, height: 1 }, /* @__PURE__ */ React__namespace.createElement("use", { xlinkHref: "#image0_2208_90", transform: "scale(0.00714286 0.037037)" })), /* @__PURE__ */ React__namespace.createElement("image", { id: "image0_2208_90", width: 140, height: 27, xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAAAbBAMAAABcjXr2AAADImlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3OERBNTlFRUVGRjMxMUU5QTRDRkIxMEU3MEM0OEFFOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3OERBNTlFRkVGRjMxMUU5QTRDRkIxMEU3MEM0OEFFOSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjc4REE1OUVDRUZGMzExRTlBNENGQjEwRTcwQzQ4QUU5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjc4REE1OUVERUZGMzExRTlBNENGQjEwRTcwQzQ4QUU5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+X5mMHAAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAwUExURUdwTB0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dG2GO2kMAAAAPdFJOUwCZIt1md0TuEbuqiDPMVT1sidsAAAI4SURBVDjLrdQ/bhpBFMfx3wJr1lEIewNo0kVaN5HSmRuwSiKlXG5gy1KkdCClSGmK1DFSDmBuYKQotX2D+AZeMLAG7HxTzP6ZtV3Ef1612nn6aGbeeyNJHlxJUhdfLTqSJIHKERDn33sAfJ5IVWaqMpMkFxaPYZiXmAbcPIphYjN7wOQ2cyfuY4aSlDEtWoQPZHzJa6V/DOP1V6fsFMwnvmeHeg3vJYdZxDggVoOknTOqE1uHqjGvssyZD2azINUAQjlswA+IFXEtmzmzmG2uXKY5AzA1zAXAQg7AJCB+CecFUzkmtJiAUYVkkDE3PQd6Ann9pPOqnwwcGEoBcdU0Rn7FK7vgEef6QydjDqRjxgK5zKU9QodkIAXEJ4xLzNhmdhMpYpgxvnTKmUDbxFKTkcNaUsBf1uWCry1mi6l0yMwqeJNYoLpJ3nHYSAq4ZHqrb0YF47CUtllYTN0wTZMbOywkBQA9u29OmBfMN5N8+V/M0GLksC6YbrrBXsqEUpN9c6h9SZLDXFJA8oulzdRYFcxRyvgpM8qvuJE2W8Ysa1zajGsxFbMU8SVlrq2Cb0pMrN104gwTsckZ17TUIfOUSc4daAtUAd/7+dFiurwrVWqZM3Wz8xesrGHYmGGIAAgLppG28d2CX3AmSTVoG6YL+IZxs5nKmC2SgT0Mg5w5JpQkr09omDcn/Mgeit/wtm0xOjLjYJh1p/SI3hskeobwsto+LVxWz6A0SHvmaXEIB8/AfGXafkj+P1AKebmt720QAAAAAElFTkSuQmCC" })));
|
|
28
|
-
exports.default = SvgAlbjerkWordmark;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
const SvgAlbjerkWordmark = ({
|
|
4
|
-
title,
|
|
5
|
-
titleId,
|
|
6
|
-
...props
|
|
7
|
-
}) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 125 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("rect", { width: 124.444, height: 24, fill: "url(#pattern0)" }), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("pattern", { id: "pattern0", patternContentUnits: "objectBoundingBox", width: 1, height: 1 }, /* @__PURE__ */ React.createElement("use", { xlinkHref: "#image0_2208_90", transform: "scale(0.00714286 0.037037)" })), /* @__PURE__ */ React.createElement("image", { id: "image0_2208_90", width: 140, height: 27, xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAAAbBAMAAABcjXr2AAADImlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3OERBNTlFRUVGRjMxMUU5QTRDRkIxMEU3MEM0OEFFOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3OERBNTlFRkVGRjMxMUU5QTRDRkIxMEU3MEM0OEFFOSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjc4REE1OUVDRUZGMzExRTlBNENGQjEwRTcwQzQ4QUU5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjc4REE1OUVERUZGMzExRTlBNENGQjEwRTcwQzQ4QUU5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+X5mMHAAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAwUExURUdwTB0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dG2GO2kMAAAAPdFJOUwCZIt1md0TuEbuqiDPMVT1sidsAAAI4SURBVDjLrdQ/bhpBFMfx3wJr1lEIewNo0kVaN5HSmRuwSiKlXG5gy1KkdCClSGmK1DFSDmBuYKQotX2D+AZeMLAG7HxTzP6ZtV3Ef1612nn6aGbeeyNJHlxJUhdfLTqSJIHKERDn33sAfJ5IVWaqMpMkFxaPYZiXmAbcPIphYjN7wOQ2cyfuY4aSlDEtWoQPZHzJa6V/DOP1V6fsFMwnvmeHeg3vJYdZxDggVoOknTOqE1uHqjGvssyZD2azINUAQjlswA+IFXEtmzmzmG2uXKY5AzA1zAXAQg7AJCB+CecFUzkmtJiAUYVkkDE3PQd6Ann9pPOqnwwcGEoBcdU0Rn7FK7vgEef6QydjDqRjxgK5zKU9QodkIAXEJ4xLzNhmdhMpYpgxvnTKmUDbxFKTkcNaUsBf1uWCry1mi6l0yMwqeJNYoLpJ3nHYSAq4ZHqrb0YF47CUtllYTN0wTZMbOywkBQA9u29OmBfMN5N8+V/M0GLksC6YbrrBXsqEUpN9c6h9SZLDXFJA8oulzdRYFcxRyvgpM8qvuJE2W8Ysa1zajGsxFbMU8SVlrq2Cb0pMrN104gwTsckZ17TUIfOUSc4daAtUAd/7+dFiurwrVWqZM3Wz8xesrGHYmGGIAAgLppG28d2CX3AmSTVoG6YL+IZxs5nKmC2SgT0Mg5w5JpQkr09omDcn/Mgeit/wtm0xOjLjYJh1p/SI3hskeobwsto+LVxWz6A0SHvmaXEIB8/AfGXafkj+P1AKebmt720QAAAAAElFTkSuQmCC" })));
|
|
8
|
-
export {
|
|
9
|
-
SvgAlbjerkWordmark as default
|
|
10
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
4
|
-
const React = require("react");
|
|
5
|
-
function _interopNamespaceCompat(e) {
|
|
6
|
-
if (e && typeof e === "object" && "default" in e) return e;
|
|
7
|
-
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
8
|
-
if (e) {
|
|
9
|
-
for (const k in e) {
|
|
10
|
-
if (k !== "default") {
|
|
11
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: () => e[k]
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
n.default = e;
|
|
20
|
-
return Object.freeze(n);
|
|
21
|
-
}
|
|
22
|
-
const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
23
|
-
const SvgAltaWordmark = ({
|
|
24
|
-
title,
|
|
25
|
-
titleId,
|
|
26
|
-
...props
|
|
27
|
-
}) => /* @__PURE__ */ React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 62.2", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", d: "M23.2.5A703.8 703.8 0 0 0 .3 61.2c.5 1.3 10.2 1.3 11.3 0 .5-.6 1.5-3 2.3-5.3 2.8-8 2-7.6 14.6-7.6 12.9 0 12.8 0 15.3 7.5 1 2.7 2 5 2.4 5.3.8.6 11.5.6 12 .1.2-.2-5-14-11.5-30.6L34.7.4 29.1.2c-3-.2-5.7 0-6 .3M62 11c.2 5.6.5 19.4.5 30.5l.1 20.3h10l.2-30.5.2-30.6H61.4l.5 10.3m122.7-9.7c-.6.4-.8 9.5-.8 30.7v30.2h11.4l.2-17 .2-17 7.3 17 7.3 17 4.4-.2 4.3-.2 5.6-13.9c3-7.6 6.3-15.4 7.1-17.2l1.6-3.3-.2 17v17.2h5.4c3 0 5.5-.3 5.6-.6l.5-30.5.3-29.8h-11.4L231.8 5A712.7 712.7 0 0 1 215 46.1c-.3 0-3.3-6.4-6.6-14.1-3.4-7.8-7.8-17.9-10-22.5l-3.7-8.4-4.7-.2c-2.5 0-5 0-5.4.4M83 7c-.3.8-.3 4 0 7 .5 6.1.6 5.9-3.6 6.8-3 .6-3.1 8.4-.2 8.4 4.1 0 4-.1 4 14 0 18.2.6 19 12.7 19 10.1 0 10 0 10-5.7v-4.7l-5.3.5c-7.4.7-7.5.6-7.5-11.8 0-11.4-.3-10.8 6.3-10 6 .8 5.6 1.1 6-5.4l.3-4.6-6-.2-5.8-.2-.1-6c-.1-7.3-.2-7.4-5.9-8-3.9-.4-4.5-.3-5 1m216.5 0c-.3.7-.3 3.8 0 7 .5 6 .7 5.8-3.5 6.7-3 .6-3.2 8.4-.3 8.4 4.2 0 4.1-.1 4.1 14 0 18.2.5 19 12.7 19 10 0 10 0 10-5.7v-4.7l-5.3.5c-7.4.7-7.5.6-7.5-11.8 0-11.4-.4-10.8 6.2-10 6 .8 5.6 1.1 6-5.4l.3-4.6-5.9-.2-5.9-.2v-6c-.2-7.3-.3-7.4-6-8-3.8-.4-4.4-.3-4.9 1M37.3 38c0 .8-7.8 1.4-12.8.8-3.4-.3-4.3-.7-4.2-1.5.3-1.4 7.4-20.5 8-21.5.4-.5 9 20.7 9 22.2M120 21c-6.7 3.3-11 11-11 19.6 0 18 17.4 27.7 31.1 17.5 2.5-1.9 3.2-1.7 3.2.7 0 2.5 1.2 3 5.7 2.6l4.2-.3v-4.4l-.3-14.7c0-5.6.2-12.5.6-15.2 1-6 1.2-5.8-4.2-6.2l-4.3-.3-.5 2.7-.5 2.8-2.4-2.2a19.3 19.3 0 0 0-21.6-2.7m142.1-.2c-7.4 3.5-12 11.1-12 19.9 0 27.7 40.3 29.3 42.2 1.8 1.3-17-15-28.7-30.2-21.7m76 0c-7.3 3.5-12 11.1-12 19.9 0 27.7 40.3 29.3 42.3 1.8 1.2-17-15.1-28.7-30.2-21.7m37-1.2c-3.6.5-4 1-3 4.7.6 2 1.2 10.1 1.4 20.4l.4 17.2h9.5L384 48c.5-16.5.5-16.6 8.8-16.6 5.7 0 5.8 0 5.8-6.6v-4.3h-4.2c-3.2 0-5.2.5-7.7 1.7-3.7 2-4.2 1.9-4.2-1.1 0-2.2-.5-2.4-7.3-1.6M138.6 31.6c7.6 8.2 2.9 21-7.7 21-11.2 0-15.1-16.1-5.4-22.7 3.6-2.5 10-1.6 13.1 1.7m138.6-1.4c9.4 6.4 5.3 22.5-5.8 22.4-11.5 0-15.8-15.8-6-22.4 3.3-2.3 8.5-2.3 11.8 0m76 0c9.5 6.4 5.3 22.5-5.8 22.4-11.5 0-15.7-15.8-6-22.4 3.4-2.3 8.5-2.3 11.8 0" }));
|
|
28
|
-
exports.default = SvgAltaWordmark;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
const SvgAltaWordmark = ({
|
|
4
|
-
title,
|
|
5
|
-
titleId,
|
|
6
|
-
...props
|
|
7
|
-
}) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 62.2", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M23.2.5A703.8 703.8 0 0 0 .3 61.2c.5 1.3 10.2 1.3 11.3 0 .5-.6 1.5-3 2.3-5.3 2.8-8 2-7.6 14.6-7.6 12.9 0 12.8 0 15.3 7.5 1 2.7 2 5 2.4 5.3.8.6 11.5.6 12 .1.2-.2-5-14-11.5-30.6L34.7.4 29.1.2c-3-.2-5.7 0-6 .3M62 11c.2 5.6.5 19.4.5 30.5l.1 20.3h10l.2-30.5.2-30.6H61.4l.5 10.3m122.7-9.7c-.6.4-.8 9.5-.8 30.7v30.2h11.4l.2-17 .2-17 7.3 17 7.3 17 4.4-.2 4.3-.2 5.6-13.9c3-7.6 6.3-15.4 7.1-17.2l1.6-3.3-.2 17v17.2h5.4c3 0 5.5-.3 5.6-.6l.5-30.5.3-29.8h-11.4L231.8 5A712.7 712.7 0 0 1 215 46.1c-.3 0-3.3-6.4-6.6-14.1-3.4-7.8-7.8-17.9-10-22.5l-3.7-8.4-4.7-.2c-2.5 0-5 0-5.4.4M83 7c-.3.8-.3 4 0 7 .5 6.1.6 5.9-3.6 6.8-3 .6-3.1 8.4-.2 8.4 4.1 0 4-.1 4 14 0 18.2.6 19 12.7 19 10.1 0 10 0 10-5.7v-4.7l-5.3.5c-7.4.7-7.5.6-7.5-11.8 0-11.4-.3-10.8 6.3-10 6 .8 5.6 1.1 6-5.4l.3-4.6-6-.2-5.8-.2-.1-6c-.1-7.3-.2-7.4-5.9-8-3.9-.4-4.5-.3-5 1m216.5 0c-.3.7-.3 3.8 0 7 .5 6 .7 5.8-3.5 6.7-3 .6-3.2 8.4-.3 8.4 4.2 0 4.1-.1 4.1 14 0 18.2.5 19 12.7 19 10 0 10 0 10-5.7v-4.7l-5.3.5c-7.4.7-7.5.6-7.5-11.8 0-11.4-.4-10.8 6.2-10 6 .8 5.6 1.1 6-5.4l.3-4.6-5.9-.2-5.9-.2v-6c-.2-7.3-.3-7.4-6-8-3.8-.4-4.4-.3-4.9 1M37.3 38c0 .8-7.8 1.4-12.8.8-3.4-.3-4.3-.7-4.2-1.5.3-1.4 7.4-20.5 8-21.5.4-.5 9 20.7 9 22.2M120 21c-6.7 3.3-11 11-11 19.6 0 18 17.4 27.7 31.1 17.5 2.5-1.9 3.2-1.7 3.2.7 0 2.5 1.2 3 5.7 2.6l4.2-.3v-4.4l-.3-14.7c0-5.6.2-12.5.6-15.2 1-6 1.2-5.8-4.2-6.2l-4.3-.3-.5 2.7-.5 2.8-2.4-2.2a19.3 19.3 0 0 0-21.6-2.7m142.1-.2c-7.4 3.5-12 11.1-12 19.9 0 27.7 40.3 29.3 42.2 1.8 1.3-17-15-28.7-30.2-21.7m76 0c-7.3 3.5-12 11.1-12 19.9 0 27.7 40.3 29.3 42.3 1.8 1.2-17-15.1-28.7-30.2-21.7m37-1.2c-3.6.5-4 1-3 4.7.6 2 1.2 10.1 1.4 20.4l.4 17.2h9.5L384 48c.5-16.5.5-16.6 8.8-16.6 5.7 0 5.8 0 5.8-6.6v-4.3h-4.2c-3.2 0-5.2.5-7.7 1.7-3.7 2-4.2 1.9-4.2-1.1 0-2.2-.5-2.4-7.3-1.6M138.6 31.6c7.6 8.2 2.9 21-7.7 21-11.2 0-15.1-16.1-5.4-22.7 3.6-2.5 10-1.6 13.1 1.7m138.6-1.4c9.4 6.4 5.3 22.5-5.8 22.4-11.5 0-15.8-15.8-6-22.4 3.3-2.3 8.5-2.3 11.8 0m76 0c9.5 6.4 5.3 22.5-5.8 22.4-11.5 0-15.7-15.8-6-22.4 3.4-2.3 8.5-2.3 11.8 0" }));
|
|
8
|
-
export {
|
|
9
|
-
SvgAltaWordmark as default
|
|
10
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
4
|
-
const React = require("react");
|
|
5
|
-
function _interopNamespaceCompat(e) {
|
|
6
|
-
if (e && typeof e === "object" && "default" in e) return e;
|
|
7
|
-
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
8
|
-
if (e) {
|
|
9
|
-
for (const k in e) {
|
|
10
|
-
if (k !== "default") {
|
|
11
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: () => e[k]
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
n.default = e;
|
|
20
|
-
return Object.freeze(n);
|
|
21
|
-
}
|
|
22
|
-
const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
23
|
-
const SvgBergeWordmark = ({
|
|
24
|
-
title,
|
|
25
|
-
titleId,
|
|
26
|
-
...props
|
|
27
|
-
}) => /* @__PURE__ */ React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 668.52 142.47", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fill: "#304356", d: "M0 11.27h58.05V36.1H31.74v8.97h23.1v22.52h-23.1v30.36H0V11.27zM67.02 11.27h38c19.53 0 36.1 8.27 36.1 30.11 0 13.11-5.06 18.63-16.79 22.54v.66a21.57 21.57 0 0 1 5.28 5.18l18.87 28.16h-36.29L98.4 70.1h-.58v27.82h-30.8Zm30.8 38.4h2.19c5.17 0 10.35-.82 10.35-7.25 0-6.66-4.72-7.47-10.13-7.47h-2.41ZM173.24 11.27l9.65 22.63h.93c.91-2.75 1.71-5.5 2.86-8.15l6.21-14.48h35.42l-29.67 49.31v37.37h-30.8V60.58l-30.25-49.31ZM232.48 11.27h32.07c29.08 0 51.39 12.76 51.39 44.59 0 25.77-18.15 42.09-43.57 42.09h-39.89Zm31.5 60.7h2c10.45 0 18.5-4.83 18.5-16.22 0-12.18-7-17.35-18.5-17.35h-2ZM324.68 11.27h58.29v23.68H356.4v8.28h24.24v22.54H356.4v8.5h27.48v23.68h-59.2V11.27zM394.22 11.27h30.22l28.3 48h.9c-1.26-7.23-2.62-14.7-2.62-22.06v-26h30.11v86.68h-30.11l-27.71-45.47h-.92a103.24 103.24 0 0 1 1.92 17.37v28.16h-30.09ZM492.5 11.27h36.68c16.78 0 33.91 4 33.91 24 0 7.59-3.81 15.06-11.39 17.46v.7c9.42 3.33 15.4 10.23 15.4 20.57 0 17.82-16.54 23.92-31.72 23.92H492.5Zm32.08 33.31c4.6 0 9.75-.46 9.75-6.45 0-6.43-5.86-6-10.45-6h-2.19v12.45Zm-2.89 32.64h3.62c5.17 0 12.63-.12 12.63-7.23s-8-7.14-13.09-7.14h-3.12ZM589.31 89.78c-11.61-7.23-17.26-21.37-17.26-34.95 0-27.24 21.63-44.95 48-44.95a54.49 54.49 0 0 1 21.84 4L651.2-.03l7.8 5.41-8.89 12.91c12 9.53 17.82 20.79 17.82 36.54 0 27.83-21.5 44.49-47.94 44.49a65.74 65.74 0 0 1-22.43-4.74l-9.25 13.36-8-5.28ZM603.8 55.3c0 9.88 6.65 16.67 16.21 16.67s16.21-6.79 16.21-16.67c0-9.19-6.2-16.9-16.21-16.9s-16.21 7.71-16.21 16.9M232.49 120.29h203.54v22.18H232.49zM0 120.29h198.64v22.18H0zM469.88 120.29h198.64v22.18H469.88z" }));
|
|
28
|
-
exports.default = SvgBergeWordmark;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
const SvgBergeWordmark = ({
|
|
4
|
-
title,
|
|
5
|
-
titleId,
|
|
6
|
-
...props
|
|
7
|
-
}) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 668.52 142.47", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fill: "#304356", d: "M0 11.27h58.05V36.1H31.74v8.97h23.1v22.52h-23.1v30.36H0V11.27zM67.02 11.27h38c19.53 0 36.1 8.27 36.1 30.11 0 13.11-5.06 18.63-16.79 22.54v.66a21.57 21.57 0 0 1 5.28 5.18l18.87 28.16h-36.29L98.4 70.1h-.58v27.82h-30.8Zm30.8 38.4h2.19c5.17 0 10.35-.82 10.35-7.25 0-6.66-4.72-7.47-10.13-7.47h-2.41ZM173.24 11.27l9.65 22.63h.93c.91-2.75 1.71-5.5 2.86-8.15l6.21-14.48h35.42l-29.67 49.31v37.37h-30.8V60.58l-30.25-49.31ZM232.48 11.27h32.07c29.08 0 51.39 12.76 51.39 44.59 0 25.77-18.15 42.09-43.57 42.09h-39.89Zm31.5 60.7h2c10.45 0 18.5-4.83 18.5-16.22 0-12.18-7-17.35-18.5-17.35h-2ZM324.68 11.27h58.29v23.68H356.4v8.28h24.24v22.54H356.4v8.5h27.48v23.68h-59.2V11.27zM394.22 11.27h30.22l28.3 48h.9c-1.26-7.23-2.62-14.7-2.62-22.06v-26h30.11v86.68h-30.11l-27.71-45.47h-.92a103.24 103.24 0 0 1 1.92 17.37v28.16h-30.09ZM492.5 11.27h36.68c16.78 0 33.91 4 33.91 24 0 7.59-3.81 15.06-11.39 17.46v.7c9.42 3.33 15.4 10.23 15.4 20.57 0 17.82-16.54 23.92-31.72 23.92H492.5Zm32.08 33.31c4.6 0 9.75-.46 9.75-6.45 0-6.43-5.86-6-10.45-6h-2.19v12.45Zm-2.89 32.64h3.62c5.17 0 12.63-.12 12.63-7.23s-8-7.14-13.09-7.14h-3.12ZM589.31 89.78c-11.61-7.23-17.26-21.37-17.26-34.95 0-27.24 21.63-44.95 48-44.95a54.49 54.49 0 0 1 21.84 4L651.2-.03l7.8 5.41-8.89 12.91c12 9.53 17.82 20.79 17.82 36.54 0 27.83-21.5 44.49-47.94 44.49a65.74 65.74 0 0 1-22.43-4.74l-9.25 13.36-8-5.28ZM603.8 55.3c0 9.88 6.65 16.67 16.21 16.67s16.21-6.79 16.21-16.67c0-9.19-6.2-16.9-16.21-16.9s-16.21 7.71-16.21 16.9M232.49 120.29h203.54v22.18H232.49zM0 120.29h198.64v22.18H0zM469.88 120.29h198.64v22.18H469.88z" }));
|
|
8
|
-
export {
|
|
9
|
-
SvgBergeWordmark as default
|
|
10
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
4
|
-
const React = require("react");
|
|
5
|
-
function _interopNamespaceCompat(e) {
|
|
6
|
-
if (e && typeof e === "object" && "default" in e) return e;
|
|
7
|
-
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
8
|
-
if (e) {
|
|
9
|
-
for (const k in e) {
|
|
10
|
-
if (k !== "default") {
|
|
11
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: () => e[k]
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
n.default = e;
|
|
20
|
-
return Object.freeze(n);
|
|
21
|
-
}
|
|
22
|
-
const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
23
|
-
const SvgFremmeWordmark = ({
|
|
24
|
-
title,
|
|
25
|
-
titleId,
|
|
26
|
-
...props
|
|
27
|
-
}) => /* @__PURE__ */ React__namespace.createElement("svg", { preserveAspectRatio: "xMidYMid meet", "data-bbox": "139.4 246.5 919 120.2", viewBox: "139.4 246.5 919 120.2", xmlns: "http://www.w3.org/2000/svg", "data-type": "shape", role: "presentation", "aria-hidden": "true", "aria-label": "", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("g", null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M166.6 272.7v21.9c0 1.5 1.2 2.8 2.8 2.8h72.8c1.5 0 2.8 1.2 2.8 2.8V318c0 1.5-1.2 2.8-2.8 2.8h-72.8c-1.5 0-2.8 1.2-2.8 2.8v38.9c0 1.5-1.2 2.8-2.8 2.8h-21.6c-1.5 0-2.8-1.2-2.8-2.8V249.3c0-1.5 1.2-2.8 2.8-2.8h114.5c1.5 0 2.8 1.2 2.8 2.8v17.8c0 1.5-1.2 2.8-2.8 2.8h-87.4c-1.4.1-2.7 1.3-2.7 2.8z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M288 362.5v-89.9c0-1.6 1.3-2.8 2.8-2.8H312c1.6 0 2.8 1.3 2.8 2.8v8c0 3 3.2 3.8 5 1.9 8.2-9.2 20.9-14.2 34.8-14.8 1.6-.1 2.9 1.3 2.9 2.8v17.4c0 1.6-1.2 2.8-2.8 2.8-19.3.7-34.1 8.7-39.7 24.5-.1.3-.2.7-.2 1v46.3c0 1.6-1.3 2.8-2.8 2.8h-21.2c-1.5 0-2.8-1.2-2.8-2.8z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M437.4 347.4c14.4 0 23.8-3.5 32.6-10 1.1-.8 2.7-.7 3.6.3l10 10.9c1.1 1.2.9 2.9-.3 3.9-12.2 9.8-27.6 14.1-47.1 14.1-36.9 0-58.3-18.6-58.3-48.3 0-29.9 21.2-48.5 56.5-48.5 32.6 0 54.4 16.6 54.4 48.3 0 1.5 0 2.6-.2 3.5-.2 1.3-1.3 2.3-2.6 2.3h-80.6c-1.7 0-3 1.6-2.6 3.3 3.3 13.9 15.2 20.2 34.6 20.2zM407 307.9l53.7-.3c2 0 3.2-2.1 2.4-3.9-4.7-10.2-14.4-14.7-28.7-14.7-14.7 0-25.2 4.9-29.8 15-.8 1.8.4 3.9 2.4 3.9z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M947.3 347.5c14.4 0 23.8-3.5 32.6-10 1.1-.8 2.7-.7 3.6.3l10 10.9c1.1 1.2.9 2.9-.3 3.9-12.2 9.8-27.6 14.1-47.1 14.1-37 0-58.3-18.6-58.3-48.4 0-30 21.2-48.5 56.5-48.5 32.6 0 54.4 16.6 54.4 48.4 0 1.5 0 2.6-.2 3.5-.2 1.3-1.3 2.3-2.6 2.3h-80.6c-1.7 0-3 1.6-2.6 3.3 3.3 13.8 15.3 20.2 34.6 20.2zM917 307.9l53.7-.3c2 0 3.2-2.1 2.4-3.9-4.7-10.2-14.4-14.7-28.7-14.7-14.7 0-25.2 4.9-29.8 15-.9 1.8.4 3.9 2.4 3.9z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M1058.4 353.4c0 7.29-5.91 13.2-13.2 13.2-7.29 0-13.2-5.91-13.2-13.2 0-7.29 5.91-13.2 13.2-13.2 7.29 0 13.2 5.91 13.2 13.2z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M816.4 269.9c-17.1 0-30.7 7.8-38 19.6-1.1 1.8-3.8 1.7-4.7-.2-5.8-11.8-17.2-19.3-34.6-19.3-16.8 0-30.5 7.3-37.7 19.6 0 .1-.1.1-.1.2-1.2 1.6-3.7 1.5-4.6-.3-5.8-11.8-17.2-19.5-34.7-19.5-17.1 0-30.7 7.8-38 19.6-1.1 1.8-3.8 1.7-4.7-.2-5.8-11.8-17.2-19.3-34.6-19.3-13.7 0-25.3 4.8-33 13.3-1.7 1.8-4.7.6-4.7-1.9v-8.9c0-1.5-1.2-2.7-2.7-2.7h-20.4c-1.5 0-2.7 1.2-2.7 2.7v90.2c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.7-1.2 2.7-2.7v-52.5c0-.5.1-.9.3-1.4 6.5-11.8 15.9-18.2 28.9-18.2 15 0 22.2 8.4 22.2 22.7v49.4c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.8-1.2 2.7-2.8l-.1-15.5v-37.3c6.4-12.4 16.2-19.4 29.4-19.4 13.5 0 20.6 6.7 22 18.5v53.7c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.8-1.2 2.7-2.8l-.1-15.5.2-35.3c0-.7 0-1.3-.1-2v-.5c6.5-12.2 16-18.9 29.3-18.9 15 0 22.2 8.4 22.2 22.7v49.4c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.8-1.2 2.7-2.8l-.1-15.5v-37.3c6.4-12.4 16.2-19.4 29.4-19.4 15 0 22.2 8.4 22.2 22.7v49.4c0 1.5 1.2 2.7 2.7 2.7h20.3c1.5 0 2.7-1.2 2.7-2.7v-50.7c0-23.5-12.3-41.7-39.4-41.7z" })));
|
|
28
|
-
exports.default = SvgFremmeWordmark;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
const SvgFremmeWordmark = ({
|
|
4
|
-
title,
|
|
5
|
-
titleId,
|
|
6
|
-
...props
|
|
7
|
-
}) => /* @__PURE__ */ React.createElement("svg", { preserveAspectRatio: "xMidYMid meet", "data-bbox": "139.4 246.5 919 120.2", viewBox: "139.4 246.5 919 120.2", xmlns: "http://www.w3.org/2000/svg", "data-type": "shape", role: "presentation", "aria-hidden": "true", "aria-label": "", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("g", null, /* @__PURE__ */ React.createElement("path", { d: "M166.6 272.7v21.9c0 1.5 1.2 2.8 2.8 2.8h72.8c1.5 0 2.8 1.2 2.8 2.8V318c0 1.5-1.2 2.8-2.8 2.8h-72.8c-1.5 0-2.8 1.2-2.8 2.8v38.9c0 1.5-1.2 2.8-2.8 2.8h-21.6c-1.5 0-2.8-1.2-2.8-2.8V249.3c0-1.5 1.2-2.8 2.8-2.8h114.5c1.5 0 2.8 1.2 2.8 2.8v17.8c0 1.5-1.2 2.8-2.8 2.8h-87.4c-1.4.1-2.7 1.3-2.7 2.8z" }), /* @__PURE__ */ React.createElement("path", { d: "M288 362.5v-89.9c0-1.6 1.3-2.8 2.8-2.8H312c1.6 0 2.8 1.3 2.8 2.8v8c0 3 3.2 3.8 5 1.9 8.2-9.2 20.9-14.2 34.8-14.8 1.6-.1 2.9 1.3 2.9 2.8v17.4c0 1.6-1.2 2.8-2.8 2.8-19.3.7-34.1 8.7-39.7 24.5-.1.3-.2.7-.2 1v46.3c0 1.6-1.3 2.8-2.8 2.8h-21.2c-1.5 0-2.8-1.2-2.8-2.8z" }), /* @__PURE__ */ React.createElement("path", { d: "M437.4 347.4c14.4 0 23.8-3.5 32.6-10 1.1-.8 2.7-.7 3.6.3l10 10.9c1.1 1.2.9 2.9-.3 3.9-12.2 9.8-27.6 14.1-47.1 14.1-36.9 0-58.3-18.6-58.3-48.3 0-29.9 21.2-48.5 56.5-48.5 32.6 0 54.4 16.6 54.4 48.3 0 1.5 0 2.6-.2 3.5-.2 1.3-1.3 2.3-2.6 2.3h-80.6c-1.7 0-3 1.6-2.6 3.3 3.3 13.9 15.2 20.2 34.6 20.2zM407 307.9l53.7-.3c2 0 3.2-2.1 2.4-3.9-4.7-10.2-14.4-14.7-28.7-14.7-14.7 0-25.2 4.9-29.8 15-.8 1.8.4 3.9 2.4 3.9z" }), /* @__PURE__ */ React.createElement("path", { d: "M947.3 347.5c14.4 0 23.8-3.5 32.6-10 1.1-.8 2.7-.7 3.6.3l10 10.9c1.1 1.2.9 2.9-.3 3.9-12.2 9.8-27.6 14.1-47.1 14.1-37 0-58.3-18.6-58.3-48.4 0-30 21.2-48.5 56.5-48.5 32.6 0 54.4 16.6 54.4 48.4 0 1.5 0 2.6-.2 3.5-.2 1.3-1.3 2.3-2.6 2.3h-80.6c-1.7 0-3 1.6-2.6 3.3 3.3 13.8 15.3 20.2 34.6 20.2zM917 307.9l53.7-.3c2 0 3.2-2.1 2.4-3.9-4.7-10.2-14.4-14.7-28.7-14.7-14.7 0-25.2 4.9-29.8 15-.9 1.8.4 3.9 2.4 3.9z" }), /* @__PURE__ */ React.createElement("path", { d: "M1058.4 353.4c0 7.29-5.91 13.2-13.2 13.2-7.29 0-13.2-5.91-13.2-13.2 0-7.29 5.91-13.2 13.2-13.2 7.29 0 13.2 5.91 13.2 13.2z" }), /* @__PURE__ */ React.createElement("path", { d: "M816.4 269.9c-17.1 0-30.7 7.8-38 19.6-1.1 1.8-3.8 1.7-4.7-.2-5.8-11.8-17.2-19.3-34.6-19.3-16.8 0-30.5 7.3-37.7 19.6 0 .1-.1.1-.1.2-1.2 1.6-3.7 1.5-4.6-.3-5.8-11.8-17.2-19.5-34.7-19.5-17.1 0-30.7 7.8-38 19.6-1.1 1.8-3.8 1.7-4.7-.2-5.8-11.8-17.2-19.3-34.6-19.3-13.7 0-25.3 4.8-33 13.3-1.7 1.8-4.7.6-4.7-1.9v-8.9c0-1.5-1.2-2.7-2.7-2.7h-20.4c-1.5 0-2.7 1.2-2.7 2.7v90.2c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.7-1.2 2.7-2.7v-52.5c0-.5.1-.9.3-1.4 6.5-11.8 15.9-18.2 28.9-18.2 15 0 22.2 8.4 22.2 22.7v49.4c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.8-1.2 2.7-2.8l-.1-15.5v-37.3c6.4-12.4 16.2-19.4 29.4-19.4 13.5 0 20.6 6.7 22 18.5v53.7c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.8-1.2 2.7-2.8l-.1-15.5.2-35.3c0-.7 0-1.3-.1-2v-.5c6.5-12.2 16-18.9 29.3-18.9 15 0 22.2 8.4 22.2 22.7v49.4c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.8-1.2 2.7-2.8l-.1-15.5v-37.3c6.4-12.4 16.2-19.4 29.4-19.4 15 0 22.2 8.4 22.2 22.7v49.4c0 1.5 1.2 2.7 2.7 2.7h20.3c1.5 0 2.7-1.2 2.7-2.7v-50.7c0-23.5-12.3-41.7-39.4-41.7z" })));
|
|
8
|
-
export {
|
|
9
|
-
SvgFremmeWordmark as default
|
|
10
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
4
|
-
const React = require("react");
|
|
5
|
-
function _interopNamespaceCompat(e) {
|
|
6
|
-
if (e && typeof e === "object" && "default" in e) return e;
|
|
7
|
-
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
8
|
-
if (e) {
|
|
9
|
-
for (const k in e) {
|
|
10
|
-
if (k !== "default") {
|
|
11
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: () => e[k]
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
n.default = e;
|
|
20
|
-
return Object.freeze(n);
|
|
21
|
-
}
|
|
22
|
-
const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
23
|
-
const SvgKirkenesWordmark = ({
|
|
24
|
-
title,
|
|
25
|
-
titleId,
|
|
26
|
-
...props
|
|
27
|
-
}) => /* @__PURE__ */ React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 55.5", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", d: "M49.3.8c-3.6 2.2-3.3 8.2.4 10 6 2.7 11.7-2.8 8.7-8.4C57.2.1 52-.8 49.3.8M366 1c-3.4 2.2-3 8 .6 9.7 5.9 2.8 11.6-2.7 8.7-8.3C374 0 368.8-.9 366 1M96 27.8v26.9h10.7v-8.4l.2-8.3 6.3 8.3 6.4 8.3h6c5.2 0 6 0 6-.6 0-.4-3.2-4.7-7.1-9.6-4.9-6-7.1-9-6.8-9.4a165.5 165.5 0 0 0 13.1-16.9c0-.7-.5-.7-5.7-.7h-5.7l-6.2 8-6.3 8.2-.1-16.4-.1-16.4H96.2v27m288.1-3.5c0 31 0 30.8 10.4 30.8 5.5 0 5.3.1 5.3-4v-3.6l-2.4-.1-2.5-.2V24L394.8.8h-10.6v23.5M0 28.6v26h10.6V43.3l.2-11.4 9.5 11.4L30 54.7H36c5.7 0 6.3-.1 6.3-.8 0-.4-4.1-5.6-9.2-11.5L23 30.2 22 29l9.8-12.6A216 216 0 0 0 41.5 3c0-.4-1.4-.6-6.1-.6h-6.2L20 14.8l-9.2 12.3-.1-12.3-.1-12.3H0v26.1m316.1 0v26h12.4c13.3 0 17-.3 21-2 9.2-4 10-19.4 1.2-24l-2.3-1.2 1.1-.7c7.5-4.6 6.7-17.8-1.3-21.9-3.9-2-6.4-2.2-19.7-2.3h-12.4v26.1m23.8-16.2c2.4 1 3.1 2.2 3.1 5 0 4.8-1.8 5.8-10.3 5.9h-5.6v-12l5.7.3c3.4.1 6.2.4 7 .8M85 16.4c-2 .4-5.4 2.4-6.4 3.7-.9 1.5-1.2 1.4-1.8-.8l-.5-2h-8.8v37.4H78V28.8l1.7-1.2a12 12 0 0 1 8-2l2 .3.3-2 .5-4.7.3-2.7h-1.5l-2-.1h-2.4m63.8.2c-17.4 2.1-21.5 29.2-5.6 37.1a32.7 32.7 0 0 0 23-.5c1.5-.8 1.5-.4.2-4.7-1.3-4-1-4-4.9-2.7-8 2.7-14.8.8-16.7-4.5l-.6-1.7h12.3l12.2-.2.3-1.5c2.6-14-6-23-20.2-21.3m46.5 0c-2.5.3-5.8 1.8-7.8 3.4l-1.1.8-.7-1.7-.6-1.7h-8.7v37.3h10.6V28.4l2-1.3c3.7-2.4 8-2.5 10.3-.1 1.8 1.7 2 4.3 2 16.7v11H212V42.2c0-7-.2-13.5-.5-14.9-1.4-7.9-7.6-12-16.2-10.7m38.7 0c-17.4 2.1-21.3 29.8-5.2 37.3a32.8 32.8 0 0 0 21.2-.2c3-1 3-1 1.7-5.3-1.3-3.9-1-3.7-4.6-2.6-9.5 2.6-16 .7-17.2-5l-.2-1.4h12c8 0 12.3-.1 12.4-.4.7-1.1.4-10.4-.4-12.5-2.7-7.5-9.9-11.1-19.7-10m38.2 0c-7.6 1-12 5.4-12 12.2.1 6.2 3.5 9.1 13.5 11.5 5.3 1.3 6.9 2.7 6 5-1 2.7-7 3-13.5.6-4.1-1.5-3.7-1.7-5.5 2.8-1.7 4.1-2 3.8 3.4 5.5a35.3 35.3 0 0 0 19.3 0c4.7-2.2 6.6-5 6.8-10 .4-7.2-2.6-9.9-14.7-13-4.5-1-6-2.9-4-5 1.7-2.2 6.3-2 14.4.4.9.3 4-6.5 3.4-7.4a33.2 33.2 0 0 0-17-2.5M47.4 36v18.7H58V17.4H47.5V36m317 0v18.7h10.9V17.4h-11V36m-208-10.7c1.5.9 3 3.6 3 5.6v1.3H144l.2-1.2c1.4-5.8 7.3-8.6 12-5.7m85.3 0c1.6.9 2.8 3 3 5.2l.1 1.5-7.6.1-7.6.1.3-1.5c.9-5.3 7-8.1 11.8-5.4m99.7 7.7c2.7 1 3.7 2.3 4 5.4.3 5.4-1.8 6.6-11.3 6.9l-6.9.1V32.2h6c4.6 0 6.6.2 8.2.8" }));
|
|
28
|
-
exports.default = SvgKirkenesWordmark;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
const SvgKirkenesWordmark = ({
|
|
4
|
-
title,
|
|
5
|
-
titleId,
|
|
6
|
-
...props
|
|
7
|
-
}) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 55.5", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M49.3.8c-3.6 2.2-3.3 8.2.4 10 6 2.7 11.7-2.8 8.7-8.4C57.2.1 52-.8 49.3.8M366 1c-3.4 2.2-3 8 .6 9.7 5.9 2.8 11.6-2.7 8.7-8.3C374 0 368.8-.9 366 1M96 27.8v26.9h10.7v-8.4l.2-8.3 6.3 8.3 6.4 8.3h6c5.2 0 6 0 6-.6 0-.4-3.2-4.7-7.1-9.6-4.9-6-7.1-9-6.8-9.4a165.5 165.5 0 0 0 13.1-16.9c0-.7-.5-.7-5.7-.7h-5.7l-6.2 8-6.3 8.2-.1-16.4-.1-16.4H96.2v27m288.1-3.5c0 31 0 30.8 10.4 30.8 5.5 0 5.3.1 5.3-4v-3.6l-2.4-.1-2.5-.2V24L394.8.8h-10.6v23.5M0 28.6v26h10.6V43.3l.2-11.4 9.5 11.4L30 54.7H36c5.7 0 6.3-.1 6.3-.8 0-.4-4.1-5.6-9.2-11.5L23 30.2 22 29l9.8-12.6A216 216 0 0 0 41.5 3c0-.4-1.4-.6-6.1-.6h-6.2L20 14.8l-9.2 12.3-.1-12.3-.1-12.3H0v26.1m316.1 0v26h12.4c13.3 0 17-.3 21-2 9.2-4 10-19.4 1.2-24l-2.3-1.2 1.1-.7c7.5-4.6 6.7-17.8-1.3-21.9-3.9-2-6.4-2.2-19.7-2.3h-12.4v26.1m23.8-16.2c2.4 1 3.1 2.2 3.1 5 0 4.8-1.8 5.8-10.3 5.9h-5.6v-12l5.7.3c3.4.1 6.2.4 7 .8M85 16.4c-2 .4-5.4 2.4-6.4 3.7-.9 1.5-1.2 1.4-1.8-.8l-.5-2h-8.8v37.4H78V28.8l1.7-1.2a12 12 0 0 1 8-2l2 .3.3-2 .5-4.7.3-2.7h-1.5l-2-.1h-2.4m63.8.2c-17.4 2.1-21.5 29.2-5.6 37.1a32.7 32.7 0 0 0 23-.5c1.5-.8 1.5-.4.2-4.7-1.3-4-1-4-4.9-2.7-8 2.7-14.8.8-16.7-4.5l-.6-1.7h12.3l12.2-.2.3-1.5c2.6-14-6-23-20.2-21.3m46.5 0c-2.5.3-5.8 1.8-7.8 3.4l-1.1.8-.7-1.7-.6-1.7h-8.7v37.3h10.6V28.4l2-1.3c3.7-2.4 8-2.5 10.3-.1 1.8 1.7 2 4.3 2 16.7v11H212V42.2c0-7-.2-13.5-.5-14.9-1.4-7.9-7.6-12-16.2-10.7m38.7 0c-17.4 2.1-21.3 29.8-5.2 37.3a32.8 32.8 0 0 0 21.2-.2c3-1 3-1 1.7-5.3-1.3-3.9-1-3.7-4.6-2.6-9.5 2.6-16 .7-17.2-5l-.2-1.4h12c8 0 12.3-.1 12.4-.4.7-1.1.4-10.4-.4-12.5-2.7-7.5-9.9-11.1-19.7-10m38.2 0c-7.6 1-12 5.4-12 12.2.1 6.2 3.5 9.1 13.5 11.5 5.3 1.3 6.9 2.7 6 5-1 2.7-7 3-13.5.6-4.1-1.5-3.7-1.7-5.5 2.8-1.7 4.1-2 3.8 3.4 5.5a35.3 35.3 0 0 0 19.3 0c4.7-2.2 6.6-5 6.8-10 .4-7.2-2.6-9.9-14.7-13-4.5-1-6-2.9-4-5 1.7-2.2 6.3-2 14.4.4.9.3 4-6.5 3.4-7.4a33.2 33.2 0 0 0-17-2.5M47.4 36v18.7H58V17.4H47.5V36m317 0v18.7h10.9V17.4h-11V36m-208-10.7c1.5.9 3 3.6 3 5.6v1.3H144l.2-1.2c1.4-5.8 7.3-8.6 12-5.7m85.3 0c1.6.9 2.8 3 3 5.2l.1 1.5-7.6.1-7.6.1.3-1.5c.9-5.3 7-8.1 11.8-5.4m99.7 7.7c2.7 1 3.7 2.3 4 5.4.3 5.4-1.8 6.6-11.3 6.9l-6.9.1V32.2h6c4.6 0 6.6.2 8.2.8" }));
|
|
8
|
-
export {
|
|
9
|
-
SvgKirkenesWordmark as default
|
|
10
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
4
|
-
const React = require("react");
|
|
5
|
-
function _interopNamespaceCompat(e) {
|
|
6
|
-
if (e && typeof e === "object" && "default" in e) return e;
|
|
7
|
-
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
8
|
-
if (e) {
|
|
9
|
-
for (const k in e) {
|
|
10
|
-
if (k !== "default") {
|
|
11
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: () => e[k]
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
n.default = e;
|
|
20
|
-
return Object.freeze(n);
|
|
21
|
-
}
|
|
22
|
-
const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
23
|
-
const SvgMobileWordmark = ({
|
|
24
|
-
title,
|
|
25
|
-
titleId,
|
|
26
|
-
...props
|
|
27
|
-
}) => /* @__PURE__ */ React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 650 170", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fill: "#e45404", fillRule: "evenodd", d: "M518.7 49.1c-1 .6-2.5 2.6-3.3 4.4-1 2.5-1.1 4-.3 6.3.7 2.1 5.6 6.8 15.5 14.9l14.5 11.8h21.7c17.3.1 22.9.5 27.6 1.8 3.3 1 8.6 3.2 11.8 4.9 3.3 1.7 6.8 4.3 7.9 5.6 1.2 1.5 1.9 4 1.9 6.6 0 2.3-.5 4.7-1.2 5.4-.7.7-2.5 1.2-4 1.2-2.2 0-3.2-.8-4.7-3.9a30 30 0 0 0-6.2-7.4c-2.3-2-6.2-4.3-8.7-5.1-2.5-.9-6.4-1.6-8.8-1.6-2.3 0-6 .7-8.5 1.5a34 34 0 0 0-7.7 4.2 33.4 33.4 0 0 0-6.5 7.5l-3 4.8H527l-9.8 8a100 100 0 0 0-10 9c-.2.6 9.4 1 24.6 1h25l2.7 4.5c1.4 2.5 4.5 6 6.8 7.6a37 37 0 0 0 9.4 4.5c3.6 1 7 1.4 10.3.9a28.2 28.2 0 0 0 18.8-12c3.3-4.8 3.6-5 9.4-5.8a36 36 0 0 0 9.2-2.4c1.7-.8 4.2-2.5 5.4-3.7 1.3-1.1 3-3.4 4-5 .8-1.8 1.5-5.6 1.5-9.2 0-3.4-.8-8.5-1.8-11.5A25 25 0 0 0 626 88a64.1 64.1 0 0 0-30.4-15.2c-6.4-1.3-14.2-2-25.5-2.3l-16.2-.4-13.2-11c-11.4-9.7-13.6-11.1-16.7-11-2 0-4.4.4-5.4 1m60.8 56c-1.6.3-4 1-5.1 1.7a21 21 0 0 0-4.7 4.2c-1.5 1.7-2.9 5-3.3 7.5-.5 3.6-.2 5.4 1.7 9.2a22 22 0 0 0 5 6.6c1.5 1.1 5 2.2 7.6 2.4 3 .3 6.2 0 8.4-1 2-.8 5-3.2 6.5-5.3 2.4-3.1 2.9-4.7 2.9-9.5 0-4.3-.5-6.5-2-8.5a27.4 27.4 0 0 0-4.6-4.7c-1.4-1-4.1-2.2-6-2.6-1.9-.4-4.8-.4-6.4 0" }), /* @__PURE__ */ React__namespace.createElement("path", { fill: "#8c8c8c", fillRule: "evenodd", d: "M266.4 23.4c-1.7.8-3.9 2.4-4.8 3.7-1.4 2-1.6 7-1.6 42.2 0 31.9.3 40.4 1.4 43.1a34 34 0 0 0 14 14.4c5 2.6 5.5 2.7 26.4 3 17.6.3 22.2 0 26.5-1.3 2.9-.9 7.2-3 9.7-4.9 2.7-2 5.7-5.5 7.5-8.7 3-5.4 3-5.4 3-24.4 0-17.9-.1-19.3-2.3-23.7a34.2 34.2 0 0 0-6.9-8.7 35.2 35.2 0 0 0-9.6-5.8c-4.4-1.5-8.5-1.8-26.4-1.8h-21.1l-.4-10.7c-.3-10.5-.4-10.9-3.3-13.7a14.5 14.5 0 0 0-6-3.5c-1.6-.3-4.4 0-6.1.8m131.7-.2c-1.3.7-3.4 2.6-4.5 4.1-2 2.8-2.1 3.9-2.4 52.8l-.3 50 11.3-.3 11.3-.3.3-47.5c.2-30.5 0-48.8-.7-51a15 15 0 0 0-3.4-5.8 12.5 12.5 0 0 0-5.8-2.8c-1.9-.2-4.5.1-5.8.8m-34 27.2c-1.3.7-3 2.4-3.7 3.7-1 1.9-1.3 10.6-1.4 39.1V130h22l-.2-37.6c-.3-37.6-.3-37.6-3.6-40.5-2.4-2.1-4.2-2.9-7-2.9-2 0-4.8.7-6 1.4m-320 1.1c-2.8.8-7 2.4-9.3 3.5a40.7 40.7 0 0 0-15.1 14.7A44 44 0 0 0 16 81c-.6 3.8-1 15.2-.8 27.5l.3 21 11.2.3 11.2.3.3-25.5c.3-23.9.4-25.6 2.4-28.2a28 28 0 0 1 4.7-4.8c1.5-1.1 4.8-2.1 8-2.4 3.6-.3 6.3 0 8.3 1.1a20.8 20.8 0 0 1 9.3 10.6c.7 2.1 1.1 11.9 1.1 26.2V130h22v-24c0-22 .2-24.4 2-28 1-2 3.4-4.9 5.2-6.1 2.1-1.6 5-2.4 8.7-2.6 4.4-.3 6.4.1 9.6 2 2.6 1.4 4.8 3.8 6.3 6.7 2 4.2 2.2 5.5 2.2 28.2V130h22.1l-.3-26.8c-.3-26.7-.3-26.7-3.1-32-1.6-3-4.8-7.4-7.3-9.7a45.3 45.3 0 0 0-9.7-7c-2.9-1.3-7.9-3-11.2-3.6-3.3-.6-8.6-.8-12-.4-3.2.3-8 1.4-10.5 2.4-2.6 1-6.7 3.2-9.2 5-4 2.7-4.7 2.9-5.9 1.5-.7-.9-3.8-2.8-6.8-4.4-3.1-1.5-8-3.3-10.9-3.9-3-.6-7.2-1-9.5-1s-6.6.7-9.4 1.4M184 51c-2.4.5-6.3 1.9-8.7 3A31.6 31.6 0 0 0 162.2 68c-1.4 3-1.7 7-1.7 22.6 0 19 0 19 3 24.4a28.2 28.2 0 0 0 16.3 13.3c3.8 1.4 8.4 1.7 25 1.8 18.2 0 20.7-.2 25.8-2.1 3.2-1.2 7.7-4 10-6.1 2.4-2.2 5.2-5.9 6.3-8.2 1.9-3.8 2.1-6.1 2.1-23.2 0-18.4 0-19.2-2.6-24.2-1.4-2.8-4-6.4-5.7-7.8A47.5 47.5 0 0 0 232 53c-5.2-2.4-6.4-2.6-24.5-2.8-10.4 0-21 .2-23.4.7m263.1 0a32.7 32.7 0 0 0-16.9 9.3c-2 2.2-4.2 5.6-5.1 7.6-1.4 3-1.7 7-1.7 22.1 0 16.7.2 19 2.1 23 1.2 2.6 3.7 6.2 5.6 8.2 2 1.9 5.7 4.5 8.4 5.9 4.7 2.3 5.9 2.4 28.1 2.7l23.2.3 10.6-8.8 10.5-8.8-30.2-.5c-21.2-.3-31-.9-32.4-1.7a7 7 0 0 1-2.8-2.9 14 14 0 0 1-.6-4c0-1.4.4-3.4 1-4.4.5-1 2.4-2.3 4.1-2.9 2-.7 11.7-1.1 25.1-1.1 18.2 0 22.4-.3 25.1-1.6a30 30 0 0 0 5.5-3.8 21 21 0 0 0 3.8-4.8c.8-1.5 1.4-5.1 1.4-8 0-3.8-.8-7-2.6-10.6-1.4-2.8-4-6.4-5.7-7.8A47.5 47.5 0 0 0 495 53c-5.2-2.4-6.4-2.6-24.5-2.8-10.4 0-21 .2-23.3.7M185.6 71c-2.6 2.1-2.6 2.1-2.6 19 0 15.5.2 17.2 2 19 1 1 3.5 2.2 5.4 2.5 1.9.4 9.8.5 17.6.3 14.1-.3 14.2-.3 16.6-3.1 2.3-2.7 2.4-3.3 2.4-18.8 0-15.6 0-16-2.5-18.4-2.4-2.5-2.7-2.5-19.3-2.5-15.6 0-17.1.2-19.6 2m98.9.5c-2.4 2.4-2.5 2.8-2.5 18.4 0 15.5 0 16 2.4 18.8 2.4 2.8 2.5 2.8 16.7 3.1 7.8.2 15.8 0 17.6-.3a12 12 0 0 0 5.4-2.6c1.7-1.7 1.9-3.4 1.9-18.8 0-17 0-17-2.6-19-2.5-2-4-2.1-19.6-2.1-16.6 0-17 0-19.3 2.5m163.9 0c-2 2-2.5 3.4-2.2 6.3l.3 3.7h43l.3-3.7c.3-3-.2-4.3-2.2-6.3C485.1 69 485 69 468 69c-17 0-17.1 0-19.6 2.5" }));
|
|
28
|
-
exports.default = SvgMobileWordmark;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
const SvgMobileWordmark = ({
|
|
4
|
-
title,
|
|
5
|
-
titleId,
|
|
6
|
-
...props
|
|
7
|
-
}) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 650 170", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fill: "#e45404", fillRule: "evenodd", d: "M518.7 49.1c-1 .6-2.5 2.6-3.3 4.4-1 2.5-1.1 4-.3 6.3.7 2.1 5.6 6.8 15.5 14.9l14.5 11.8h21.7c17.3.1 22.9.5 27.6 1.8 3.3 1 8.6 3.2 11.8 4.9 3.3 1.7 6.8 4.3 7.9 5.6 1.2 1.5 1.9 4 1.9 6.6 0 2.3-.5 4.7-1.2 5.4-.7.7-2.5 1.2-4 1.2-2.2 0-3.2-.8-4.7-3.9a30 30 0 0 0-6.2-7.4c-2.3-2-6.2-4.3-8.7-5.1-2.5-.9-6.4-1.6-8.8-1.6-2.3 0-6 .7-8.5 1.5a34 34 0 0 0-7.7 4.2 33.4 33.4 0 0 0-6.5 7.5l-3 4.8H527l-9.8 8a100 100 0 0 0-10 9c-.2.6 9.4 1 24.6 1h25l2.7 4.5c1.4 2.5 4.5 6 6.8 7.6a37 37 0 0 0 9.4 4.5c3.6 1 7 1.4 10.3.9a28.2 28.2 0 0 0 18.8-12c3.3-4.8 3.6-5 9.4-5.8a36 36 0 0 0 9.2-2.4c1.7-.8 4.2-2.5 5.4-3.7 1.3-1.1 3-3.4 4-5 .8-1.8 1.5-5.6 1.5-9.2 0-3.4-.8-8.5-1.8-11.5A25 25 0 0 0 626 88a64.1 64.1 0 0 0-30.4-15.2c-6.4-1.3-14.2-2-25.5-2.3l-16.2-.4-13.2-11c-11.4-9.7-13.6-11.1-16.7-11-2 0-4.4.4-5.4 1m60.8 56c-1.6.3-4 1-5.1 1.7a21 21 0 0 0-4.7 4.2c-1.5 1.7-2.9 5-3.3 7.5-.5 3.6-.2 5.4 1.7 9.2a22 22 0 0 0 5 6.6c1.5 1.1 5 2.2 7.6 2.4 3 .3 6.2 0 8.4-1 2-.8 5-3.2 6.5-5.3 2.4-3.1 2.9-4.7 2.9-9.5 0-4.3-.5-6.5-2-8.5a27.4 27.4 0 0 0-4.6-4.7c-1.4-1-4.1-2.2-6-2.6-1.9-.4-4.8-.4-6.4 0" }), /* @__PURE__ */ React.createElement("path", { fill: "#8c8c8c", fillRule: "evenodd", d: "M266.4 23.4c-1.7.8-3.9 2.4-4.8 3.7-1.4 2-1.6 7-1.6 42.2 0 31.9.3 40.4 1.4 43.1a34 34 0 0 0 14 14.4c5 2.6 5.5 2.7 26.4 3 17.6.3 22.2 0 26.5-1.3 2.9-.9 7.2-3 9.7-4.9 2.7-2 5.7-5.5 7.5-8.7 3-5.4 3-5.4 3-24.4 0-17.9-.1-19.3-2.3-23.7a34.2 34.2 0 0 0-6.9-8.7 35.2 35.2 0 0 0-9.6-5.8c-4.4-1.5-8.5-1.8-26.4-1.8h-21.1l-.4-10.7c-.3-10.5-.4-10.9-3.3-13.7a14.5 14.5 0 0 0-6-3.5c-1.6-.3-4.4 0-6.1.8m131.7-.2c-1.3.7-3.4 2.6-4.5 4.1-2 2.8-2.1 3.9-2.4 52.8l-.3 50 11.3-.3 11.3-.3.3-47.5c.2-30.5 0-48.8-.7-51a15 15 0 0 0-3.4-5.8 12.5 12.5 0 0 0-5.8-2.8c-1.9-.2-4.5.1-5.8.8m-34 27.2c-1.3.7-3 2.4-3.7 3.7-1 1.9-1.3 10.6-1.4 39.1V130h22l-.2-37.6c-.3-37.6-.3-37.6-3.6-40.5-2.4-2.1-4.2-2.9-7-2.9-2 0-4.8.7-6 1.4m-320 1.1c-2.8.8-7 2.4-9.3 3.5a40.7 40.7 0 0 0-15.1 14.7A44 44 0 0 0 16 81c-.6 3.8-1 15.2-.8 27.5l.3 21 11.2.3 11.2.3.3-25.5c.3-23.9.4-25.6 2.4-28.2a28 28 0 0 1 4.7-4.8c1.5-1.1 4.8-2.1 8-2.4 3.6-.3 6.3 0 8.3 1.1a20.8 20.8 0 0 1 9.3 10.6c.7 2.1 1.1 11.9 1.1 26.2V130h22v-24c0-22 .2-24.4 2-28 1-2 3.4-4.9 5.2-6.1 2.1-1.6 5-2.4 8.7-2.6 4.4-.3 6.4.1 9.6 2 2.6 1.4 4.8 3.8 6.3 6.7 2 4.2 2.2 5.5 2.2 28.2V130h22.1l-.3-26.8c-.3-26.7-.3-26.7-3.1-32-1.6-3-4.8-7.4-7.3-9.7a45.3 45.3 0 0 0-9.7-7c-2.9-1.3-7.9-3-11.2-3.6-3.3-.6-8.6-.8-12-.4-3.2.3-8 1.4-10.5 2.4-2.6 1-6.7 3.2-9.2 5-4 2.7-4.7 2.9-5.9 1.5-.7-.9-3.8-2.8-6.8-4.4-3.1-1.5-8-3.3-10.9-3.9-3-.6-7.2-1-9.5-1s-6.6.7-9.4 1.4M184 51c-2.4.5-6.3 1.9-8.7 3A31.6 31.6 0 0 0 162.2 68c-1.4 3-1.7 7-1.7 22.6 0 19 0 19 3 24.4a28.2 28.2 0 0 0 16.3 13.3c3.8 1.4 8.4 1.7 25 1.8 18.2 0 20.7-.2 25.8-2.1 3.2-1.2 7.7-4 10-6.1 2.4-2.2 5.2-5.9 6.3-8.2 1.9-3.8 2.1-6.1 2.1-23.2 0-18.4 0-19.2-2.6-24.2-1.4-2.8-4-6.4-5.7-7.8A47.5 47.5 0 0 0 232 53c-5.2-2.4-6.4-2.6-24.5-2.8-10.4 0-21 .2-23.4.7m263.1 0a32.7 32.7 0 0 0-16.9 9.3c-2 2.2-4.2 5.6-5.1 7.6-1.4 3-1.7 7-1.7 22.1 0 16.7.2 19 2.1 23 1.2 2.6 3.7 6.2 5.6 8.2 2 1.9 5.7 4.5 8.4 5.9 4.7 2.3 5.9 2.4 28.1 2.7l23.2.3 10.6-8.8 10.5-8.8-30.2-.5c-21.2-.3-31-.9-32.4-1.7a7 7 0 0 1-2.8-2.9 14 14 0 0 1-.6-4c0-1.4.4-3.4 1-4.4.5-1 2.4-2.3 4.1-2.9 2-.7 11.7-1.1 25.1-1.1 18.2 0 22.4-.3 25.1-1.6a30 30 0 0 0 5.5-3.8 21 21 0 0 0 3.8-4.8c.8-1.5 1.4-5.1 1.4-8 0-3.8-.8-7-2.6-10.6-1.4-2.8-4-6.4-5.7-7.8A47.5 47.5 0 0 0 495 53c-5.2-2.4-6.4-2.6-24.5-2.8-10.4 0-21 .2-23.3.7M185.6 71c-2.6 2.1-2.6 2.1-2.6 19 0 15.5.2 17.2 2 19 1 1 3.5 2.2 5.4 2.5 1.9.4 9.8.5 17.6.3 14.1-.3 14.2-.3 16.6-3.1 2.3-2.7 2.4-3.3 2.4-18.8 0-15.6 0-16-2.5-18.4-2.4-2.5-2.7-2.5-19.3-2.5-15.6 0-17.1.2-19.6 2m98.9.5c-2.4 2.4-2.5 2.8-2.5 18.4 0 15.5 0 16 2.4 18.8 2.4 2.8 2.5 2.8 16.7 3.1 7.8.2 15.8 0 17.6-.3a12 12 0 0 0 5.4-2.6c1.7-1.7 1.9-3.4 1.9-18.8 0-17 0-17-2.6-19-2.5-2-4-2.1-19.6-2.1-16.6 0-17 0-19.3 2.5m163.9 0c-2 2-2.5 3.4-2.2 6.3l.3 3.7h43l.3-3.7c.3-3-.2-4.3-2.2-6.3C485.1 69 485 69 468 69c-17 0-17.1 0-19.6 2.5" }));
|
|
8
|
-
export {
|
|
9
|
-
SvgMobileWordmark as default
|
|
10
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
4
|
-
const React = require("react");
|
|
5
|
-
function _interopNamespaceCompat(e) {
|
|
6
|
-
if (e && typeof e === "object" && "default" in e) return e;
|
|
7
|
-
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
8
|
-
if (e) {
|
|
9
|
-
for (const k in e) {
|
|
10
|
-
if (k !== "default") {
|
|
11
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: () => e[k]
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
n.default = e;
|
|
20
|
-
return Object.freeze(n);
|
|
21
|
-
}
|
|
22
|
-
const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
23
|
-
const SvgSlatlemWordmark = ({
|
|
24
|
-
title,
|
|
25
|
-
titleId,
|
|
26
|
-
...props
|
|
27
|
-
}) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 96 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M38.5934 -4.56667e-05H39.0093H39.6699L35.0216 24H28.5139L30.1531 20.3058H26.5567L24.1592 24H17.6271L20.8809 20.3058H17.5048C15.7678 20.3058 14.5934 20.0122 14.0308 19.3761C13.4436 18.74 13.4925 17.8348 14.1286 16.685L20.4895 5.25989H25.0399L18.7769 16.5871C18.3121 17.4189 18.2387 17.9571 18.5323 18.2263C18.8259 18.4954 19.3641 18.6177 20.1714 18.6177H22.4222L22.8136 18.1773L38.5934 -4.56667e-05ZM29.1011 16.3669H31.9145L33.8717 11.9633H31.939L29.1011 16.3669ZM33.4069 9.68803H34.8748L36.0246 7.11922H35.0705L33.4069 9.68803ZM35.9023 5.79812H36.6118L37.2968 4.2813H36.9054L35.9023 5.79812ZM9.67601 19.1559C11.1439 18.4464 12.2693 17.37 13.0522 15.9755C13.4681 15.266 13.6393 14.6299 13.5415 14.0183C13.517 13.4556 13.2723 12.8684 12.783 12.3058C12.4895 11.9877 11.9757 11.4984 11.2418 10.8868C10.9044 10.6056 10.6394 10.3814 10.4444 10.2163C10.2151 10.0223 10.0826 9.91017 10.043 9.88373C9.60261 9.4923 9.35796 9.17425 9.2601 8.90514C9.16224 8.66049 9.21117 8.36691 9.35796 8.0978C9.55368 7.75529 9.8228 7.46171 10.1898 7.266C10.5567 7.07028 10.9726 6.97242 11.4375 6.97242C12.0002 6.97242 12.3182 7.09474 12.4405 7.36386C12.5629 7.6085 12.465 7.99994 12.1959 8.48924H16.4528C17.0889 7.33939 17.1133 6.43419 16.4772 5.77364C15.8656 5.11309 14.6913 4.79505 12.9543 4.79505C11.2418 4.79505 9.65154 5.13756 8.18365 5.82257C6.74023 6.50759 5.68824 7.41279 5.05215 8.53817C4.68518 9.19872 4.53839 9.81034 4.61179 10.373C4.68518 10.9357 4.97876 11.4984 5.49252 12.0366C5.56668 12.0861 5.70327 12.2104 5.91176 12.4003L5.91178 12.4003C6.11599 12.5862 6.38918 12.8349 6.74023 13.1376C7.44971 13.7736 7.89007 14.1895 8.06133 14.3853C8.40383 14.7522 8.59955 15.1192 8.67295 15.4862C8.74634 15.8287 8.64848 16.2446 8.40383 16.685C8.15919 17.1253 7.79221 17.4434 7.32738 17.688C6.83809 17.9327 6.29986 18.055 5.68824 18.055C5.07662 18.055 4.68518 17.9327 4.53839 17.6636C4.3916 17.3944 4.465 17.003 4.73411 16.5137H0.501692C-0.183323 17.7125 -0.158857 18.6421 0.526159 19.2782C1.23564 19.9143 2.50781 20.2324 4.36714 20.2324C6.44665 20.2324 8.20812 19.8654 9.67601 19.1559ZM52.465 6.94796L53.3947 5.25989H40.3304L39.4008 6.94796H43.6332L36.2204 20.3058H40.7708L48.1837 6.94796H52.465ZM58.043 18.5932L58.0295 18.6177H54.0552C53.2724 18.6177 52.7097 18.4954 52.4161 18.2262C52.1225 17.9571 52.1959 17.4189 52.6607 16.5871L58.9482 5.25989H54.3977L48.0369 16.685C47.4008 17.8348 47.3763 18.7155 47.939 19.3516C48.5017 19.9633 49.676 20.2813 51.413 20.2813H57.1133L58.0295 18.6177H58.043V18.5932ZM68.832 18.5933L67.9023 20.2813H62.6913C60.783 20.2813 59.5109 19.9633 58.8992 19.3272C58.2876 18.6911 58.3366 17.737 59.046 16.4403L63.1072 9.12536C63.9635 7.58408 64.9665 6.55656 66.0919 6.01833C67.2173 5.50457 68.9298 5.23546 71.2051 5.23546H75.6821L74.7525 6.92353H71.4986C70.4956 6.92353 69.7372 7.07032 69.1989 7.3639C68.6607 7.65747 68.1959 8.17124 67.8044 8.88072L67.0705 10.1774H72.4772L71.3518 12.1835H65.9451L63.7922 16.0489C63.3029 16.9541 63.1561 17.5902 63.4008 17.9816C63.6454 18.3731 64.3304 18.5688 65.4558 18.5688H68.832V18.5933ZM87.9146 20.2813L94.6424 8.17118C95.1561 7.24152 95.1561 6.53204 94.5934 5.96935C94.0552 5.45558 93.0766 5.21093 91.6821 5.21093C91.0705 5.21093 90.41 5.28433 89.7249 5.40665C89.0399 5.52898 88.4283 5.7247 87.8656 5.96935C87.7188 5.7247 87.4008 5.52898 86.9115 5.40665C86.4222 5.28433 85.7861 5.21093 84.9788 5.21093C84.2938 5.21093 83.5843 5.28433 82.7769 5.40665C81.9696 5.52898 81.3824 5.70023 80.991 5.89595L80.8931 5.2354H77.2723L68.9054 20.2813H73.4314L80.8442 6.92347H82.3121C82.728 6.92347 82.9971 6.99687 83.1194 7.16812C83.2418 7.33938 83.2418 7.55956 83.095 7.82867L76.1714 20.2813H80.6485L88.0613 6.92347H89.5292C89.9451 6.92347 90.2142 6.99687 90.3366 7.16812C90.4589 7.33938 90.4589 7.55956 90.3121 7.82867L83.3886 20.2813H87.9146Z", fill: "black" }));
|
|
28
|
-
exports.default = SvgSlatlemWordmark;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
const SvgSlatlemWordmark = ({
|
|
4
|
-
title,
|
|
5
|
-
titleId,
|
|
6
|
-
...props
|
|
7
|
-
}) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 96 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M38.5934 -4.56667e-05H39.0093H39.6699L35.0216 24H28.5139L30.1531 20.3058H26.5567L24.1592 24H17.6271L20.8809 20.3058H17.5048C15.7678 20.3058 14.5934 20.0122 14.0308 19.3761C13.4436 18.74 13.4925 17.8348 14.1286 16.685L20.4895 5.25989H25.0399L18.7769 16.5871C18.3121 17.4189 18.2387 17.9571 18.5323 18.2263C18.8259 18.4954 19.3641 18.6177 20.1714 18.6177H22.4222L22.8136 18.1773L38.5934 -4.56667e-05ZM29.1011 16.3669H31.9145L33.8717 11.9633H31.939L29.1011 16.3669ZM33.4069 9.68803H34.8748L36.0246 7.11922H35.0705L33.4069 9.68803ZM35.9023 5.79812H36.6118L37.2968 4.2813H36.9054L35.9023 5.79812ZM9.67601 19.1559C11.1439 18.4464 12.2693 17.37 13.0522 15.9755C13.4681 15.266 13.6393 14.6299 13.5415 14.0183C13.517 13.4556 13.2723 12.8684 12.783 12.3058C12.4895 11.9877 11.9757 11.4984 11.2418 10.8868C10.9044 10.6056 10.6394 10.3814 10.4444 10.2163C10.2151 10.0223 10.0826 9.91017 10.043 9.88373C9.60261 9.4923 9.35796 9.17425 9.2601 8.90514C9.16224 8.66049 9.21117 8.36691 9.35796 8.0978C9.55368 7.75529 9.8228 7.46171 10.1898 7.266C10.5567 7.07028 10.9726 6.97242 11.4375 6.97242C12.0002 6.97242 12.3182 7.09474 12.4405 7.36386C12.5629 7.6085 12.465 7.99994 12.1959 8.48924H16.4528C17.0889 7.33939 17.1133 6.43419 16.4772 5.77364C15.8656 5.11309 14.6913 4.79505 12.9543 4.79505C11.2418 4.79505 9.65154 5.13756 8.18365 5.82257C6.74023 6.50759 5.68824 7.41279 5.05215 8.53817C4.68518 9.19872 4.53839 9.81034 4.61179 10.373C4.68518 10.9357 4.97876 11.4984 5.49252 12.0366C5.56668 12.0861 5.70327 12.2104 5.91176 12.4003L5.91178 12.4003C6.11599 12.5862 6.38918 12.8349 6.74023 13.1376C7.44971 13.7736 7.89007 14.1895 8.06133 14.3853C8.40383 14.7522 8.59955 15.1192 8.67295 15.4862C8.74634 15.8287 8.64848 16.2446 8.40383 16.685C8.15919 17.1253 7.79221 17.4434 7.32738 17.688C6.83809 17.9327 6.29986 18.055 5.68824 18.055C5.07662 18.055 4.68518 17.9327 4.53839 17.6636C4.3916 17.3944 4.465 17.003 4.73411 16.5137H0.501692C-0.183323 17.7125 -0.158857 18.6421 0.526159 19.2782C1.23564 19.9143 2.50781 20.2324 4.36714 20.2324C6.44665 20.2324 8.20812 19.8654 9.67601 19.1559ZM52.465 6.94796L53.3947 5.25989H40.3304L39.4008 6.94796H43.6332L36.2204 20.3058H40.7708L48.1837 6.94796H52.465ZM58.043 18.5932L58.0295 18.6177H54.0552C53.2724 18.6177 52.7097 18.4954 52.4161 18.2262C52.1225 17.9571 52.1959 17.4189 52.6607 16.5871L58.9482 5.25989H54.3977L48.0369 16.685C47.4008 17.8348 47.3763 18.7155 47.939 19.3516C48.5017 19.9633 49.676 20.2813 51.413 20.2813H57.1133L58.0295 18.6177H58.043V18.5932ZM68.832 18.5933L67.9023 20.2813H62.6913C60.783 20.2813 59.5109 19.9633 58.8992 19.3272C58.2876 18.6911 58.3366 17.737 59.046 16.4403L63.1072 9.12536C63.9635 7.58408 64.9665 6.55656 66.0919 6.01833C67.2173 5.50457 68.9298 5.23546 71.2051 5.23546H75.6821L74.7525 6.92353H71.4986C70.4956 6.92353 69.7372 7.07032 69.1989 7.3639C68.6607 7.65747 68.1959 8.17124 67.8044 8.88072L67.0705 10.1774H72.4772L71.3518 12.1835H65.9451L63.7922 16.0489C63.3029 16.9541 63.1561 17.5902 63.4008 17.9816C63.6454 18.3731 64.3304 18.5688 65.4558 18.5688H68.832V18.5933ZM87.9146 20.2813L94.6424 8.17118C95.1561 7.24152 95.1561 6.53204 94.5934 5.96935C94.0552 5.45558 93.0766 5.21093 91.6821 5.21093C91.0705 5.21093 90.41 5.28433 89.7249 5.40665C89.0399 5.52898 88.4283 5.7247 87.8656 5.96935C87.7188 5.7247 87.4008 5.52898 86.9115 5.40665C86.4222 5.28433 85.7861 5.21093 84.9788 5.21093C84.2938 5.21093 83.5843 5.28433 82.7769 5.40665C81.9696 5.52898 81.3824 5.70023 80.991 5.89595L80.8931 5.2354H77.2723L68.9054 20.2813H73.4314L80.8442 6.92347H82.3121C82.728 6.92347 82.9971 6.99687 83.1194 7.16812C83.2418 7.33938 83.2418 7.55956 83.095 7.82867L76.1714 20.2813H80.6485L88.0613 6.92347H89.5292C89.9451 6.92347 90.2142 6.99687 90.3366 7.16812C90.4589 7.33938 90.4589 7.55956 90.3121 7.82867L83.3886 20.2813H87.9146Z", fill: "black" }));
|
|
8
|
-
export {
|
|
9
|
-
SvgSlatlemWordmark as default
|
|
10
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
4
|
-
const React = require("react");
|
|
5
|
-
function _interopNamespaceCompat(e) {
|
|
6
|
-
if (e && typeof e === "object" && "default" in e) return e;
|
|
7
|
-
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
8
|
-
if (e) {
|
|
9
|
-
for (const k in e) {
|
|
10
|
-
if (k !== "default") {
|
|
11
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: () => e[k]
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
n.default = e;
|
|
20
|
-
return Object.freeze(n);
|
|
21
|
-
}
|
|
22
|
-
const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
23
|
-
const SvgSullandWordmark = ({
|
|
24
|
-
title,
|
|
25
|
-
titleId,
|
|
26
|
-
...props
|
|
27
|
-
}) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 127 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14.3421 17.8303C14.3421 19.7253 13.7067 21.2275 12.4365 22.3364C11.1653 23.4456 9.43226 23.9997 7.23569 23.9997C6.0513 23.9997 4.82369 23.8223 3.55319 23.467C2.28238 23.1117 1.09829 22.6108 0 21.9648L1.71224 18.4439C2.81022 19.047 3.81182 19.4939 4.71613 19.7845C5.62074 20.0752 6.48155 20.2205 7.30035 20.2205C8.0968 20.2205 8.69987 20.0429 9.10927 19.6872C9.51807 19.3322 9.72292 18.8104 9.72292 18.1209C9.72292 17.5611 9.5075 17.0607 9.07664 16.619C8.64579 16.1776 7.69857 15.6125 6.23439 14.9228C5.11435 14.3852 4.29072 13.949 3.76318 13.6148C3.23533 13.2809 2.78877 12.9316 2.42288 12.5648C1.8627 12.0267 1.44243 11.4182 1.16294 10.7399C0.882858 10.0616 0.742967 9.31379 0.742967 8.49499C0.742967 6.68607 1.36175 5.22189 2.60053 4.10185C3.83871 2.98241 5.46967 2.42224 7.49402 2.42224C8.69987 2.42224 9.85224 2.57845 10.9502 2.89086C12.0488 3.20298 13.125 3.68187 14.1807 4.32815L12.5658 7.88134C11.5965 7.32147 10.6922 6.90723 9.85224 6.63772C9.01259 6.36852 8.23699 6.23406 7.52635 6.23406C6.85862 6.23406 6.33108 6.41142 5.94373 6.76704C5.55609 7.12236 5.36211 7.59068 5.36211 8.1717C5.36211 8.68866 5.5721 9.16272 5.99208 9.59328C6.41205 10.0241 7.34326 10.5946 8.78628 11.3052C9.90572 11.8439 10.7351 12.2854 11.2735 12.6295C11.8113 12.9742 12.2636 13.3296 12.6301 13.6955C13.2115 14.2771 13.642 14.9067 13.9221 15.585C14.2019 16.2634 14.3421 17.0121 14.3421 17.8303Z", fill: "#0B1E26" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M28.4928 20.1238C29.5267 20.1238 30.3504 19.7957 30.964 19.1385C31.5777 18.482 31.8846 17.5937 31.8846 16.4737V2.74524H36.2131V16.4737C36.2131 18.7137 35.4967 20.5275 34.0652 21.9167C32.6327 23.3054 30.7752 24 28.4928 24C26.1884 24 24.2939 23.3054 22.8077 21.9167C21.3218 20.5275 20.5788 18.7137 20.5788 16.4737V2.74524H25.1013V16.4737C25.1013 17.5937 25.4079 18.482 26.0219 19.1385C26.6358 19.7957 27.4592 20.1238 28.4928 20.1238Z", fill: "#0B1E26" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M43.206 23.6773H47.7283V0H43.206V23.6773Z", fill: "#0B1E26" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M54.1033 23.6773H58.6256V0H54.1033V23.6773Z", fill: "#0B1E26" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M72.7476 5.94323L70.357 15.3432H75.1055L72.7476 5.94323ZM81.8242 23.6771H77.2374L76.1068 19.187H69.3557L68.2251 23.6771H63.8969L69.6787 2.74536H76.0748L81.8242 23.6771Z", fill: "#0B1E26" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M103.267 23.6773H97.7116L91.1539 8.72166V23.6773H87.0521V2.74536H92.5112L99.1973 17.9271V2.74536H103.267V23.6773Z", fill: "#0B1E26" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M121.678 13.2435C121.678 11.004 121.328 9.32438 120.628 8.20434C119.928 7.0852 118.888 6.52473 117.511 6.52473H114.539V19.9299H117.511C118.888 19.9299 119.928 19.3703 120.628 18.2503C121.328 17.1311 121.678 15.4618 121.678 13.2435ZM117.414 23.677H110.017V2.74524H117.414C120.364 2.74524 122.598 3.6287 124.116 5.39412C125.635 7.16014 126.394 9.77668 126.394 13.2435C126.394 16.5815 125.613 19.1546 124.052 20.9635C122.49 22.7724 120.278 23.677 117.414 23.677Z", fill: "#0B1E26" }));
|
|
28
|
-
exports.default = SvgSullandWordmark;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
const SvgSullandWordmark = ({
|
|
4
|
-
title,
|
|
5
|
-
titleId,
|
|
6
|
-
...props
|
|
7
|
-
}) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 127 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14.3421 17.8303C14.3421 19.7253 13.7067 21.2275 12.4365 22.3364C11.1653 23.4456 9.43226 23.9997 7.23569 23.9997C6.0513 23.9997 4.82369 23.8223 3.55319 23.467C2.28238 23.1117 1.09829 22.6108 0 21.9648L1.71224 18.4439C2.81022 19.047 3.81182 19.4939 4.71613 19.7845C5.62074 20.0752 6.48155 20.2205 7.30035 20.2205C8.0968 20.2205 8.69987 20.0429 9.10927 19.6872C9.51807 19.3322 9.72292 18.8104 9.72292 18.1209C9.72292 17.5611 9.5075 17.0607 9.07664 16.619C8.64579 16.1776 7.69857 15.6125 6.23439 14.9228C5.11435 14.3852 4.29072 13.949 3.76318 13.6148C3.23533 13.2809 2.78877 12.9316 2.42288 12.5648C1.8627 12.0267 1.44243 11.4182 1.16294 10.7399C0.882858 10.0616 0.742967 9.31379 0.742967 8.49499C0.742967 6.68607 1.36175 5.22189 2.60053 4.10185C3.83871 2.98241 5.46967 2.42224 7.49402 2.42224C8.69987 2.42224 9.85224 2.57845 10.9502 2.89086C12.0488 3.20298 13.125 3.68187 14.1807 4.32815L12.5658 7.88134C11.5965 7.32147 10.6922 6.90723 9.85224 6.63772C9.01259 6.36852 8.23699 6.23406 7.52635 6.23406C6.85862 6.23406 6.33108 6.41142 5.94373 6.76704C5.55609 7.12236 5.36211 7.59068 5.36211 8.1717C5.36211 8.68866 5.5721 9.16272 5.99208 9.59328C6.41205 10.0241 7.34326 10.5946 8.78628 11.3052C9.90572 11.8439 10.7351 12.2854 11.2735 12.6295C11.8113 12.9742 12.2636 13.3296 12.6301 13.6955C13.2115 14.2771 13.642 14.9067 13.9221 15.585C14.2019 16.2634 14.3421 17.0121 14.3421 17.8303Z", fill: "#0B1E26" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M28.4928 20.1238C29.5267 20.1238 30.3504 19.7957 30.964 19.1385C31.5777 18.482 31.8846 17.5937 31.8846 16.4737V2.74524H36.2131V16.4737C36.2131 18.7137 35.4967 20.5275 34.0652 21.9167C32.6327 23.3054 30.7752 24 28.4928 24C26.1884 24 24.2939 23.3054 22.8077 21.9167C21.3218 20.5275 20.5788 18.7137 20.5788 16.4737V2.74524H25.1013V16.4737C25.1013 17.5937 25.4079 18.482 26.0219 19.1385C26.6358 19.7957 27.4592 20.1238 28.4928 20.1238Z", fill: "#0B1E26" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M43.206 23.6773H47.7283V0H43.206V23.6773Z", fill: "#0B1E26" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M54.1033 23.6773H58.6256V0H54.1033V23.6773Z", fill: "#0B1E26" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M72.7476 5.94323L70.357 15.3432H75.1055L72.7476 5.94323ZM81.8242 23.6771H77.2374L76.1068 19.187H69.3557L68.2251 23.6771H63.8969L69.6787 2.74536H76.0748L81.8242 23.6771Z", fill: "#0B1E26" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M103.267 23.6773H97.7116L91.1539 8.72166V23.6773H87.0521V2.74536H92.5112L99.1973 17.9271V2.74536H103.267V23.6773Z", fill: "#0B1E26" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M121.678 13.2435C121.678 11.004 121.328 9.32438 120.628 8.20434C119.928 7.0852 118.888 6.52473 117.511 6.52473H114.539V19.9299H117.511C118.888 19.9299 119.928 19.3703 120.628 18.2503C121.328 17.1311 121.678 15.4618 121.678 13.2435ZM117.414 23.677H110.017V2.74524H117.414C120.364 2.74524 122.598 3.6287 124.116 5.39412C125.635 7.16014 126.394 9.77668 126.394 13.2435C126.394 16.5815 125.613 19.1546 124.052 20.9635C122.49 22.7724 120.278 23.677 117.414 23.677Z", fill: "#0B1E26" }));
|
|
8
|
-
export {
|
|
9
|
-
SvgSullandWordmark as default
|
|
10
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
4
|
-
const React = require("react");
|
|
5
|
-
function _interopNamespaceCompat(e) {
|
|
6
|
-
if (e && typeof e === "object" && "default" in e) return e;
|
|
7
|
-
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
8
|
-
if (e) {
|
|
9
|
-
for (const k in e) {
|
|
10
|
-
if (k !== "default") {
|
|
11
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: () => e[k]
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
n.default = e;
|
|
20
|
-
return Object.freeze(n);
|
|
21
|
-
}
|
|
22
|
-
const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
23
|
-
const SvgSvebjornWordmark = ({
|
|
24
|
-
title,
|
|
25
|
-
titleId,
|
|
26
|
-
...props
|
|
27
|
-
}) => /* @__PURE__ */ React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 57", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", d: "M143.15 2.96c-3.63 1.67-4.25 6.29-1.19 8.68 3.02 2.36 8.46 1.1 9.72-2.23 1.73-4.57-3.71-8.69-8.53-6.45m-38.67 22v19.27h9.5v-2.45l1.39.96c3.85 2.65 10.1 2.55 14.46-.24 8.26-5.3 8.23-19.54-.05-24.81-4.2-2.68-10.43-2.8-14.09-.29-.62.43-1.2.78-1.29.78-.08 0-.15-2.8-.15-6.24V5.7h-9.77v19.27M14.84 7.49C7.24 8.86 2.64 14.3 3.76 20.62c.91 5.2 3.66 7.12 13.6 9.5 4.78 1.15 6.38 1.89 6.8 3.13 1.36 4.15-7.74 4.96-15.37 1.36L6.3 33.45l-1.5 3.42c-1.94 4.41-1.92 4.08-.33 4.97 11.13 6.2 27.03 3.05 29.59-5.86 2.03-7.06-1.57-11.02-12.46-13.73-6.8-1.68-7.77-2.19-7.77-4 0-3.53 7.62-4.18 14.18-1.2l1.78.8 1.52-3.63C33.17 9.8 33.2 10.27 31 9.3c-4.55-2.02-11-2.75-16.16-1.81m255.78 18.35c-4.37 9.9-7.94 18.08-7.94 18.2 0 .11 2.34.17 5.2.13l5.2-.07 1.38-3.46 1.39-3.45h15.47l1.4 3.45 1.39 3.46 5.32.07c2.93.04 5.31-.02 5.3-.13 0-.12-3.58-8.27-7.95-18.12L288.84 8l-5.15-.07-5.14-.07-7.93 17.98m73.75-12.4v3.66h-4.07v7.32h4.07v4.68c.02 8.2.79 11.04 3.57 13.24 3.26 2.58 10.55 3.1 14.4 1.05.6-.32-1.59-6.92-2.26-6.85-.2.03-.93.16-1.6.3-3.5.7-4.07-.31-4.07-7.2v-5.22h6.51V17.1h-6.51V9.77h-10.04v3.66m-165.1 1.22c-.69 1.05-1.3 1.9-1.37 1.9-.06 0-.88-.2-1.83-.45-15.53-4.1-27.19 12.83-16.45 23.9 2.09 2.16 2.12 1.66-.38 5.39l-1.59 2.37h4.6l1.27-2.06c1.17-1.87 1.35-2.04 2-1.9 5.91 1.39 9.8 1.12 14.05-.94 8.64-4.2 10.52-16.44 3.53-22.95l-1.72-1.6 1.71-2.64a40.95 40.95 0 0 0 1.71-2.79 9 9 0 0 0-2.13-.13h-2.13l-1.26 1.9m-97.35 1.09c-16.17 2.56-17.07 24.5-1.16 28.4 5.6 1.37 12.45.1 15.97-2.97l1.08-.94-2.23-2.44c-3-3.27-2.84-3.17-3.68-2.5-4.05 3.18-11.32 1.96-12.52-2.11l-.18-.6 10.26-.08 10.26-.07-.02-2.71c-.06-9.27-8.02-15.52-17.78-13.98m126.3.03a11.6 11.6 0 0 0-5.62 2.44l-1.25 1.1v-3.3h-9.5v28.22h10l.1-7.8c.1-10.49.75-11.71 6.32-11.96l2.57-.11V19.9c0-5.06.28-4.63-2.61-4.14m22.29.1c-2.16.48-3.34 1-4.85 2.16l-1.26.96V16h-9.49v28.22h10.04v-7.77c0-10.06.45-11.44 4.02-12.3 5.14-1.23 6 .45 6.01 11.73v8.34h10.05v-8.75c0-9.92-.17-11.49-1.51-14.23-2.14-4.4-7.5-6.6-13.01-5.38m147.36-.12c-16.4 2.57-17.73 24.18-1.75 28.39 9.2 2.42 18.43-2.61 20.22-11.04 2.23-10.48-7-19.14-18.47-17.35m-342.84.49 5.8 14.11 5.69 13.88 5.15-.07 5.16-.06 5.77-13.96c3.17-7.69 5.77-14 5.77-14.05 0-.04-2.11-.08-4.69-.08h-4.68l-3.52 8.53c-1.94 4.7-3.58 8.48-3.65 8.4-.07-.06-1.6-3.87-3.4-8.45l-3.28-8.34-5.1-.08c-2.86-.04-5.07.03-5.02.17m106.06 13.95c0 13.35-.04 14.25-.53 15.32-.7 1.54-1.99 1.97-4.1 1.35-.8-.24-1.47-.4-1.5-.38-.4.6-2.3 6.8-2.12 6.97 2.52 2.38 11.44 1.5 14.71-1.47 3.22-2.9 3.31-3.52 3.31-21.24V16.01h-9.77V30.2m166.08-5.56c0 11.52.38 13.58 3.03 16.47 3.98 4.37 12.38 4.82 16.44.9l.88-.86v3.09h9.5V16.01H327v7.83c0 8.25-.08 8.96-1.27 10.56-2 2.68-6.42 2.42-7.89-.48-.6-1.17-.6-1.43-.6-9.55V16h-10.05v8.62m-21.3-.99 2.26 5.7c.05.13-1.96.24-4.57.24-2.6 0-4.62-.1-4.57-.24a255.51 255.51 0 0 1 4.57-11.15c.08 0 1.12 2.45 2.3 5.45m-199.12-.7c1.12.33 3.33 2.08 3.33 2.64 0 .04.12.46.26.95l.25.88H79.02l.31-1.02c.88-2.88 4.18-4.42 7.43-3.46m34.95.7c5.9 1.5 5.77 11.59-.18 13.02-4.16 1-7.15-1.73-7.15-6.53 0-4.92 3-7.57 7.33-6.48m51.06-.07c.54.16.34.55-2.72 5.26-3.48 5.37-3.65 5.52-4.15 3.85-1.6-5.32 2.3-10.5 6.87-9.11m210.67.44c4.86 2.51 4.1 11.23-1.1 12.63-5.07 1.37-9.06-4.09-6.96-9.52a5.94 5.94 0 0 1 8.06-3.1m-206.22 4.4c.94 4.56-1.56 8.27-5.62 8.33-2.34.03-2.38.22 1.31-5.5 3.7-5.7 3.71-5.71 4.3-2.82" }));
|
|
28
|
-
exports.default = SvgSvebjornWordmark;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
const SvgSvebjornWordmark = ({
|
|
4
|
-
title,
|
|
5
|
-
titleId,
|
|
6
|
-
...props
|
|
7
|
-
}) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 57", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M143.15 2.96c-3.63 1.67-4.25 6.29-1.19 8.68 3.02 2.36 8.46 1.1 9.72-2.23 1.73-4.57-3.71-8.69-8.53-6.45m-38.67 22v19.27h9.5v-2.45l1.39.96c3.85 2.65 10.1 2.55 14.46-.24 8.26-5.3 8.23-19.54-.05-24.81-4.2-2.68-10.43-2.8-14.09-.29-.62.43-1.2.78-1.29.78-.08 0-.15-2.8-.15-6.24V5.7h-9.77v19.27M14.84 7.49C7.24 8.86 2.64 14.3 3.76 20.62c.91 5.2 3.66 7.12 13.6 9.5 4.78 1.15 6.38 1.89 6.8 3.13 1.36 4.15-7.74 4.96-15.37 1.36L6.3 33.45l-1.5 3.42c-1.94 4.41-1.92 4.08-.33 4.97 11.13 6.2 27.03 3.05 29.59-5.86 2.03-7.06-1.57-11.02-12.46-13.73-6.8-1.68-7.77-2.19-7.77-4 0-3.53 7.62-4.18 14.18-1.2l1.78.8 1.52-3.63C33.17 9.8 33.2 10.27 31 9.3c-4.55-2.02-11-2.75-16.16-1.81m255.78 18.35c-4.37 9.9-7.94 18.08-7.94 18.2 0 .11 2.34.17 5.2.13l5.2-.07 1.38-3.46 1.39-3.45h15.47l1.4 3.45 1.39 3.46 5.32.07c2.93.04 5.31-.02 5.3-.13 0-.12-3.58-8.27-7.95-18.12L288.84 8l-5.15-.07-5.14-.07-7.93 17.98m73.75-12.4v3.66h-4.07v7.32h4.07v4.68c.02 8.2.79 11.04 3.57 13.24 3.26 2.58 10.55 3.1 14.4 1.05.6-.32-1.59-6.92-2.26-6.85-.2.03-.93.16-1.6.3-3.5.7-4.07-.31-4.07-7.2v-5.22h6.51V17.1h-6.51V9.77h-10.04v3.66m-165.1 1.22c-.69 1.05-1.3 1.9-1.37 1.9-.06 0-.88-.2-1.83-.45-15.53-4.1-27.19 12.83-16.45 23.9 2.09 2.16 2.12 1.66-.38 5.39l-1.59 2.37h4.6l1.27-2.06c1.17-1.87 1.35-2.04 2-1.9 5.91 1.39 9.8 1.12 14.05-.94 8.64-4.2 10.52-16.44 3.53-22.95l-1.72-1.6 1.71-2.64a40.95 40.95 0 0 0 1.71-2.79 9 9 0 0 0-2.13-.13h-2.13l-1.26 1.9m-97.35 1.09c-16.17 2.56-17.07 24.5-1.16 28.4 5.6 1.37 12.45.1 15.97-2.97l1.08-.94-2.23-2.44c-3-3.27-2.84-3.17-3.68-2.5-4.05 3.18-11.32 1.96-12.52-2.11l-.18-.6 10.26-.08 10.26-.07-.02-2.71c-.06-9.27-8.02-15.52-17.78-13.98m126.3.03a11.6 11.6 0 0 0-5.62 2.44l-1.25 1.1v-3.3h-9.5v28.22h10l.1-7.8c.1-10.49.75-11.71 6.32-11.96l2.57-.11V19.9c0-5.06.28-4.63-2.61-4.14m22.29.1c-2.16.48-3.34 1-4.85 2.16l-1.26.96V16h-9.49v28.22h10.04v-7.77c0-10.06.45-11.44 4.02-12.3 5.14-1.23 6 .45 6.01 11.73v8.34h10.05v-8.75c0-9.92-.17-11.49-1.51-14.23-2.14-4.4-7.5-6.6-13.01-5.38m147.36-.12c-16.4 2.57-17.73 24.18-1.75 28.39 9.2 2.42 18.43-2.61 20.22-11.04 2.23-10.48-7-19.14-18.47-17.35m-342.84.49 5.8 14.11 5.69 13.88 5.15-.07 5.16-.06 5.77-13.96c3.17-7.69 5.77-14 5.77-14.05 0-.04-2.11-.08-4.69-.08h-4.68l-3.52 8.53c-1.94 4.7-3.58 8.48-3.65 8.4-.07-.06-1.6-3.87-3.4-8.45l-3.28-8.34-5.1-.08c-2.86-.04-5.07.03-5.02.17m106.06 13.95c0 13.35-.04 14.25-.53 15.32-.7 1.54-1.99 1.97-4.1 1.35-.8-.24-1.47-.4-1.5-.38-.4.6-2.3 6.8-2.12 6.97 2.52 2.38 11.44 1.5 14.71-1.47 3.22-2.9 3.31-3.52 3.31-21.24V16.01h-9.77V30.2m166.08-5.56c0 11.52.38 13.58 3.03 16.47 3.98 4.37 12.38 4.82 16.44.9l.88-.86v3.09h9.5V16.01H327v7.83c0 8.25-.08 8.96-1.27 10.56-2 2.68-6.42 2.42-7.89-.48-.6-1.17-.6-1.43-.6-9.55V16h-10.05v8.62m-21.3-.99 2.26 5.7c.05.13-1.96.24-4.57.24-2.6 0-4.62-.1-4.57-.24a255.51 255.51 0 0 1 4.57-11.15c.08 0 1.12 2.45 2.3 5.45m-199.12-.7c1.12.33 3.33 2.08 3.33 2.64 0 .04.12.46.26.95l.25.88H79.02l.31-1.02c.88-2.88 4.18-4.42 7.43-3.46m34.95.7c5.9 1.5 5.77 11.59-.18 13.02-4.16 1-7.15-1.73-7.15-6.53 0-4.92 3-7.57 7.33-6.48m51.06-.07c.54.16.34.55-2.72 5.26-3.48 5.37-3.65 5.52-4.15 3.85-1.6-5.32 2.3-10.5 6.87-9.11m210.67.44c4.86 2.51 4.1 11.23-1.1 12.63-5.07 1.37-9.06-4.09-6.96-9.52a5.94 5.94 0 0 1 8.06-3.1m-206.22 4.4c.94 4.56-1.56 8.27-5.62 8.33-2.34.03-2.38.22 1.31-5.5 3.7-5.7 3.71-5.71 4.3-2.82" }));
|
|
8
|
-
export {
|
|
9
|
-
SvgSvebjornWordmark as default
|
|
10
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
4
|
-
const React = require("react");
|
|
5
|
-
function _interopNamespaceCompat(e) {
|
|
6
|
-
if (e && typeof e === "object" && "default" in e) return e;
|
|
7
|
-
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
8
|
-
if (e) {
|
|
9
|
-
for (const k in e) {
|
|
10
|
-
if (k !== "default") {
|
|
11
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: () => e[k]
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
n.default = e;
|
|
20
|
-
return Object.freeze(n);
|
|
21
|
-
}
|
|
22
|
-
const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
23
|
-
const SvgSkodaSymbol = ({
|
|
24
|
-
title,
|
|
25
|
-
titleId,
|
|
26
|
-
...props
|
|
27
|
-
}) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM12 19.3091C7.96332 19.3091 4.69094 16.0367 4.69094 12C4.69094 7.96332 7.96332 4.69094 12 4.69094C16.0367 4.69094 19.3091 7.96332 19.3091 12C19.3091 16.0367 16.0367 19.3091 12 19.3091ZM15.4593 14.4874L15.2799 14.9716H14.6241C14.7994 14.499 17.0096 9.22644 12.6665 5.65034C11.7548 5.55374 10.833 5.6557 9.96445 5.94922C10.1093 6.0659 11.6138 7.30092 12.3227 8.82583L12.1147 8.88183C11.7239 8.45606 10.3043 6.893 8.95146 6.38995C8.22355 6.78678 7.57949 7.321 7.05496 7.96304C7.6903 8.28806 9.3504 9.27958 9.98133 10.0498C9.94519 10.0661 9.80333 10.1425 9.80333 10.1425C8.64603 9.26288 6.59009 8.80633 6.485 8.78366C6.0528 9.52244 5.77461 10.3411 5.66721 11.1902C8.85112 11.8311 9.70842 13.3045 9.85505 14.9716H9.252L8.21568 14.5199C8.16169 14.4997 8.10495 14.4877 8.04738 14.4845H6.11781C6.42327 15.2056 6.85865 15.8644 7.40226 16.4282H8.22454C8.29539 16.4282 8.3574 16.4193 8.4194 16.3839L9.252 15.9587H15.2799L15.4593 16.443C16.2082 16.3566 16.9033 16.0106 17.4237 15.4652C16.9033 14.9197 16.2082 14.5738 15.4593 14.4874ZM13.1382 14.2348C12.982 14.2348 12.8292 14.1885 12.6994 14.1017C12.5695 14.0149 12.4682 13.8915 12.4085 13.7472C12.3487 13.6029 12.333 13.4441 12.3635 13.2909C12.394 13.1376 12.4692 12.9969 12.5797 12.8865C12.6901 12.776 12.8309 12.7008 12.9841 12.6703C13.1373 12.6398 13.2961 12.6555 13.4404 12.7152C13.5847 12.775 13.7081 12.8763 13.7949 13.0061C13.8817 13.136 13.928 13.2887 13.928 13.4449C13.928 13.6544 13.8448 13.8553 13.6967 14.0034C13.5485 14.1516 13.3476 14.2348 13.1382 14.2348Z", fill: "#0E3A2F" }));
|
|
28
|
-
exports.default = SvgSkodaSymbol;
|