@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
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/logos/svg/others/alta_wordmark.svg-react
|
|
5
|
+
var SvgAltaWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 400 62.2",
|
|
8
|
+
"aria-labelledby": titleId,
|
|
9
|
+
...props,
|
|
10
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
11
|
+
id: titleId,
|
|
12
|
+
children: title
|
|
13
|
+
}) : null, /* @__PURE__ */ jsx("path", {
|
|
14
|
+
fillRule: "evenodd",
|
|
15
|
+
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"
|
|
16
|
+
})]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
export { SvgAltaWordmark as default };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_runtime = require("../../../../_virtual/_rolldown/runtime.cjs");
|
|
3
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
4
|
+
let react = require("react");
|
|
5
|
+
react = require_runtime.__toESM(react);
|
|
6
|
+
//#region src/foundation/logos/svg/others/berge_wordmark.svg-react
|
|
7
|
+
var SvgBergeWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
id: "Layer_1",
|
|
10
|
+
"data-name": "Layer 1",
|
|
11
|
+
viewBox: "0 0 668.52 142.47",
|
|
12
|
+
"aria-labelledby": titleId,
|
|
13
|
+
...props,
|
|
14
|
+
children: [title ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("title", {
|
|
15
|
+
id: titleId,
|
|
16
|
+
children: title
|
|
17
|
+
}) : null, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
18
|
+
fill: "#304356",
|
|
19
|
+
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"
|
|
20
|
+
})]
|
|
21
|
+
});
|
|
22
|
+
//#endregion
|
|
23
|
+
exports.default = SvgBergeWordmark;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/logos/svg/others/berge_wordmark.svg-react
|
|
5
|
+
var SvgBergeWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
id: "Layer_1",
|
|
8
|
+
"data-name": "Layer 1",
|
|
9
|
+
viewBox: "0 0 668.52 142.47",
|
|
10
|
+
"aria-labelledby": titleId,
|
|
11
|
+
...props,
|
|
12
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
13
|
+
id: titleId,
|
|
14
|
+
children: title
|
|
15
|
+
}) : null, /* @__PURE__ */ jsx("path", {
|
|
16
|
+
fill: "#304356",
|
|
17
|
+
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"
|
|
18
|
+
})]
|
|
19
|
+
});
|
|
20
|
+
//#endregion
|
|
21
|
+
export { SvgBergeWordmark as default };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_runtime = require("../../../../_virtual/_rolldown/runtime.cjs");
|
|
3
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
4
|
+
let react = require("react");
|
|
5
|
+
react = require_runtime.__toESM(react);
|
|
6
|
+
//#region src/foundation/logos/svg/others/fremme_wordmark.svg-react
|
|
7
|
+
var SvgFremmeWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
9
|
+
"data-bbox": "139.4 246.5 919 120.2",
|
|
10
|
+
viewBox: "139.4 246.5 919 120.2",
|
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12
|
+
"data-type": "shape",
|
|
13
|
+
role: "presentation",
|
|
14
|
+
"aria-hidden": "true",
|
|
15
|
+
"aria-label": "",
|
|
16
|
+
"aria-labelledby": titleId,
|
|
17
|
+
...props,
|
|
18
|
+
children: [title ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("title", {
|
|
19
|
+
id: titleId,
|
|
20
|
+
children: title
|
|
21
|
+
}) : null, /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("g", { children: [
|
|
22
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("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" }),
|
|
23
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("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" }),
|
|
24
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("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" }),
|
|
25
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("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" }),
|
|
26
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("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" }),
|
|
27
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("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
|
+
] })]
|
|
29
|
+
});
|
|
30
|
+
//#endregion
|
|
31
|
+
exports.default = SvgFremmeWordmark;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/logos/svg/others/fremme_wordmark.svg-react
|
|
5
|
+
var SvgFremmeWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
7
|
+
"data-bbox": "139.4 246.5 919 120.2",
|
|
8
|
+
viewBox: "139.4 246.5 919 120.2",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
"data-type": "shape",
|
|
11
|
+
role: "presentation",
|
|
12
|
+
"aria-hidden": "true",
|
|
13
|
+
"aria-label": "",
|
|
14
|
+
"aria-labelledby": titleId,
|
|
15
|
+
...props,
|
|
16
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
17
|
+
id: titleId,
|
|
18
|
+
children: title
|
|
19
|
+
}) : null, /* @__PURE__ */ jsxs("g", { children: [
|
|
20
|
+
/* @__PURE__ */ jsx("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" }),
|
|
21
|
+
/* @__PURE__ */ jsx("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" }),
|
|
22
|
+
/* @__PURE__ */ jsx("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" }),
|
|
23
|
+
/* @__PURE__ */ jsx("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" }),
|
|
24
|
+
/* @__PURE__ */ jsx("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" }),
|
|
25
|
+
/* @__PURE__ */ jsx("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" })
|
|
26
|
+
] })]
|
|
27
|
+
});
|
|
28
|
+
//#endregion
|
|
29
|
+
export { SvgFremmeWordmark as default };
|
|
@@ -1,60 +1,61 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"use strict";
|
|
3
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
const
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
3
|
+
const require_mobile_wordmark = require("./mobile_wordmark.svg-react.cjs");
|
|
4
|
+
const require_berge_wordmark = require("./berge_wordmark.svg-react.cjs");
|
|
5
|
+
const require_fremme_wordmark = require("./fremme_wordmark.svg-react.cjs");
|
|
6
|
+
const require_slatlem_wordmark = require("./slatlem_wordmark.svg-react.cjs");
|
|
7
|
+
const require_sulland_wordmark = require("./sulland_wordmark.svg-react.cjs");
|
|
8
|
+
const require_alta_wordmark = require("./alta_wordmark.svg-react.cjs");
|
|
9
|
+
const require_svebjorn_wordmark = require("./svebjorn_wordmark.svg-react.cjs");
|
|
10
|
+
const require_albjerk_wordmark = require("./albjerk_wordmark.svg-react.cjs");
|
|
11
|
+
const require_kirkenes_wordmark = require("./kirkenes_wordmark.svg-react.cjs");
|
|
12
|
+
//#region src/foundation/logos/svg/others/index.ts
|
|
13
|
+
var berge = {
|
|
14
|
+
key: "berge",
|
|
15
|
+
symbol: require_berge_wordmark.default,
|
|
16
|
+
wordmark: require_berge_wordmark.default
|
|
17
17
|
};
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
var fremme = {
|
|
19
|
+
key: "fremme",
|
|
20
|
+
symbol: require_fremme_wordmark.default,
|
|
21
|
+
wordmark: require_fremme_wordmark.default
|
|
22
22
|
};
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
var sulland = {
|
|
24
|
+
key: "sulland",
|
|
25
|
+
symbol: require_sulland_wordmark.default,
|
|
26
|
+
wordmark: require_sulland_wordmark.default
|
|
27
27
|
};
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
var slatlem = {
|
|
29
|
+
key: "slatlem",
|
|
30
|
+
symbol: require_slatlem_wordmark.default,
|
|
31
|
+
wordmark: require_slatlem_wordmark.default
|
|
32
32
|
};
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
var albjerk = {
|
|
34
|
+
key: "albjerk",
|
|
35
|
+
symbol: require_albjerk_wordmark.default,
|
|
36
|
+
wordmark: require_albjerk_wordmark.default
|
|
37
37
|
};
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
38
|
+
var kirkenes = {
|
|
39
|
+
key: "kirkenes",
|
|
40
|
+
symbol: require_kirkenes_wordmark.default,
|
|
41
|
+
wordmark: require_kirkenes_wordmark.default
|
|
42
42
|
};
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
var alta = {
|
|
44
|
+
key: "alta",
|
|
45
|
+
symbol: require_alta_wordmark.default,
|
|
46
|
+
wordmark: require_alta_wordmark.default
|
|
47
47
|
};
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
48
|
+
var svebjorn = {
|
|
49
|
+
key: "svebjorn",
|
|
50
|
+
symbol: require_svebjorn_wordmark.default,
|
|
51
|
+
wordmark: require_svebjorn_wordmark.default
|
|
52
52
|
};
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
var mobile = {
|
|
54
|
+
key: "mobile",
|
|
55
|
+
symbol: require_mobile_wordmark.default,
|
|
56
|
+
wordmark: require_mobile_wordmark.default
|
|
57
57
|
};
|
|
58
|
+
//#endregion
|
|
58
59
|
exports.albjerk = albjerk;
|
|
59
60
|
exports.alta = alta;
|
|
60
61
|
exports.berge = berge;
|
|
@@ -1,66 +1,58 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import SvgMobileWordmark from "./mobile_wordmark.svg.js";
|
|
3
|
-
import SvgBergeWordmark from "./berge_wordmark.svg.js";
|
|
4
|
-
import SvgFremmeWordmark from "./fremme_wordmark.svg.js";
|
|
5
|
-
import SvgSlatlemWordmark from "./slatlem_wordmark.svg.js";
|
|
6
|
-
import SvgSullandWordmark from "./sulland_wordmark.svg.js";
|
|
7
|
-
import SvgAltaWordmark from "./alta_wordmark.svg.js";
|
|
8
|
-
import SvgSvebjornWordmark from "./svebjorn_wordmark.svg.js";
|
|
9
|
-
import SvgAlbjerkWordmark from "./albjerk_wordmark.svg.js";
|
|
10
|
-
import SvgKirkenesWordmark from "./kirkenes_wordmark.svg.js";
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
berge,
|
|
60
|
-
fremme,
|
|
61
|
-
kirkenes,
|
|
62
|
-
mobile,
|
|
63
|
-
slatlem,
|
|
64
|
-
sulland,
|
|
65
|
-
svebjorn
|
|
66
|
-
};
|
|
2
|
+
import SvgMobileWordmark from "./mobile_wordmark.svg-react.js";
|
|
3
|
+
import SvgBergeWordmark from "./berge_wordmark.svg-react.js";
|
|
4
|
+
import SvgFremmeWordmark from "./fremme_wordmark.svg-react.js";
|
|
5
|
+
import SvgSlatlemWordmark from "./slatlem_wordmark.svg-react.js";
|
|
6
|
+
import SvgSullandWordmark from "./sulland_wordmark.svg-react.js";
|
|
7
|
+
import SvgAltaWordmark from "./alta_wordmark.svg-react.js";
|
|
8
|
+
import SvgSvebjornWordmark from "./svebjorn_wordmark.svg-react.js";
|
|
9
|
+
import SvgAlbjerkWordmark from "./albjerk_wordmark.svg-react.js";
|
|
10
|
+
import SvgKirkenesWordmark from "./kirkenes_wordmark.svg-react.js";
|
|
11
|
+
//#region src/foundation/logos/svg/others/index.ts
|
|
12
|
+
var berge = {
|
|
13
|
+
key: "berge",
|
|
14
|
+
symbol: SvgBergeWordmark,
|
|
15
|
+
wordmark: SvgBergeWordmark
|
|
16
|
+
};
|
|
17
|
+
var fremme = {
|
|
18
|
+
key: "fremme",
|
|
19
|
+
symbol: SvgFremmeWordmark,
|
|
20
|
+
wordmark: SvgFremmeWordmark
|
|
21
|
+
};
|
|
22
|
+
var sulland = {
|
|
23
|
+
key: "sulland",
|
|
24
|
+
symbol: SvgSullandWordmark,
|
|
25
|
+
wordmark: SvgSullandWordmark
|
|
26
|
+
};
|
|
27
|
+
var slatlem = {
|
|
28
|
+
key: "slatlem",
|
|
29
|
+
symbol: SvgSlatlemWordmark,
|
|
30
|
+
wordmark: SvgSlatlemWordmark
|
|
31
|
+
};
|
|
32
|
+
var albjerk = {
|
|
33
|
+
key: "albjerk",
|
|
34
|
+
symbol: SvgAlbjerkWordmark,
|
|
35
|
+
wordmark: SvgAlbjerkWordmark
|
|
36
|
+
};
|
|
37
|
+
var kirkenes = {
|
|
38
|
+
key: "kirkenes",
|
|
39
|
+
symbol: SvgKirkenesWordmark,
|
|
40
|
+
wordmark: SvgKirkenesWordmark
|
|
41
|
+
};
|
|
42
|
+
var alta = {
|
|
43
|
+
key: "alta",
|
|
44
|
+
symbol: SvgAltaWordmark,
|
|
45
|
+
wordmark: SvgAltaWordmark
|
|
46
|
+
};
|
|
47
|
+
var svebjorn = {
|
|
48
|
+
key: "svebjorn",
|
|
49
|
+
symbol: SvgSvebjornWordmark,
|
|
50
|
+
wordmark: SvgSvebjornWordmark
|
|
51
|
+
};
|
|
52
|
+
var mobile = {
|
|
53
|
+
key: "mobile",
|
|
54
|
+
symbol: SvgMobileWordmark,
|
|
55
|
+
wordmark: SvgMobileWordmark
|
|
56
|
+
};
|
|
57
|
+
//#endregion
|
|
58
|
+
export { albjerk, alta, berge, fremme, kirkenes, mobile, slatlem, sulland, svebjorn };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_runtime = require("../../../../_virtual/_rolldown/runtime.cjs");
|
|
3
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
4
|
+
let react = require("react");
|
|
5
|
+
react = require_runtime.__toESM(react);
|
|
6
|
+
//#region src/foundation/logos/svg/others/kirkenes_wordmark.svg-react
|
|
7
|
+
var SvgKirkenesWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
viewBox: "0 0 400 55.5",
|
|
10
|
+
"aria-labelledby": titleId,
|
|
11
|
+
...props,
|
|
12
|
+
children: [title ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("title", {
|
|
13
|
+
id: titleId,
|
|
14
|
+
children: title
|
|
15
|
+
}) : null, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
16
|
+
fillRule: "evenodd",
|
|
17
|
+
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"
|
|
18
|
+
})]
|
|
19
|
+
});
|
|
20
|
+
//#endregion
|
|
21
|
+
exports.default = SvgKirkenesWordmark;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/logos/svg/others/kirkenes_wordmark.svg-react
|
|
5
|
+
var SvgKirkenesWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 400 55.5",
|
|
8
|
+
"aria-labelledby": titleId,
|
|
9
|
+
...props,
|
|
10
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
11
|
+
id: titleId,
|
|
12
|
+
children: title
|
|
13
|
+
}) : null, /* @__PURE__ */ jsx("path", {
|
|
14
|
+
fillRule: "evenodd",
|
|
15
|
+
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"
|
|
16
|
+
})]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
export { SvgKirkenesWordmark as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_runtime = require("../../../../_virtual/_rolldown/runtime.cjs");
|
|
3
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
4
|
+
let react = require("react");
|
|
5
|
+
react = require_runtime.__toESM(react);
|
|
6
|
+
//#region src/foundation/logos/svg/others/mobile_wordmark.svg-react
|
|
7
|
+
var SvgMobileWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
viewBox: "0 0 650 170",
|
|
10
|
+
"aria-labelledby": titleId,
|
|
11
|
+
...props,
|
|
12
|
+
children: [
|
|
13
|
+
title ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("title", {
|
|
14
|
+
id: titleId,
|
|
15
|
+
children: title
|
|
16
|
+
}) : null,
|
|
17
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
18
|
+
fill: "#e45404",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
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"
|
|
21
|
+
}),
|
|
22
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
23
|
+
fill: "#8c8c8c",
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
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"
|
|
26
|
+
})
|
|
27
|
+
]
|
|
28
|
+
});
|
|
29
|
+
//#endregion
|
|
30
|
+
exports.default = SvgMobileWordmark;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/logos/svg/others/mobile_wordmark.svg-react
|
|
5
|
+
var SvgMobileWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 650 170",
|
|
8
|
+
"aria-labelledby": titleId,
|
|
9
|
+
...props,
|
|
10
|
+
children: [
|
|
11
|
+
title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null,
|
|
15
|
+
/* @__PURE__ */ jsx("path", {
|
|
16
|
+
fill: "#e45404",
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
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"
|
|
19
|
+
}),
|
|
20
|
+
/* @__PURE__ */ jsx("path", {
|
|
21
|
+
fill: "#8c8c8c",
|
|
22
|
+
fillRule: "evenodd",
|
|
23
|
+
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"
|
|
24
|
+
})
|
|
25
|
+
]
|
|
26
|
+
});
|
|
27
|
+
//#endregion
|
|
28
|
+
export { SvgMobileWordmark as default };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_runtime = require("../../../../_virtual/_rolldown/runtime.cjs");
|
|
3
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
4
|
+
let react = require("react");
|
|
5
|
+
react = require_runtime.__toESM(react);
|
|
6
|
+
//#region src/foundation/logos/svg/others/slatlem_wordmark.svg-react
|
|
7
|
+
var SvgSlatlemWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
viewBox: "0 0 96 24",
|
|
9
|
+
fill: "none",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
"aria-labelledby": titleId,
|
|
12
|
+
...props,
|
|
13
|
+
children: [title ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("title", {
|
|
14
|
+
id: titleId,
|
|
15
|
+
children: title
|
|
16
|
+
}) : null, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
clipRule: "evenodd",
|
|
19
|
+
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",
|
|
20
|
+
fill: "black"
|
|
21
|
+
})]
|
|
22
|
+
});
|
|
23
|
+
//#endregion
|
|
24
|
+
exports.default = SvgSlatlemWordmark;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/logos/svg/others/slatlem_wordmark.svg-react
|
|
5
|
+
var SvgSlatlemWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
viewBox: "0 0 96 24",
|
|
7
|
+
fill: "none",
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", {
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
clipRule: "evenodd",
|
|
17
|
+
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",
|
|
18
|
+
fill: "black"
|
|
19
|
+
})]
|
|
20
|
+
});
|
|
21
|
+
//#endregion
|
|
22
|
+
export { SvgSlatlemWordmark as default };
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_runtime = require("../../../../_virtual/_rolldown/runtime.cjs");
|
|
3
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
4
|
+
let react = require("react");
|
|
5
|
+
react = require_runtime.__toESM(react);
|
|
6
|
+
//#region src/foundation/logos/svg/others/sulland_wordmark.svg-react
|
|
7
|
+
var SvgSullandWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
viewBox: "0 0 127 24",
|
|
9
|
+
fill: "none",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
"aria-labelledby": titleId,
|
|
12
|
+
...props,
|
|
13
|
+
children: [
|
|
14
|
+
title ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("title", {
|
|
15
|
+
id: titleId,
|
|
16
|
+
children: title
|
|
17
|
+
}) : null,
|
|
18
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
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",
|
|
22
|
+
fill: "#0B1E26"
|
|
23
|
+
}),
|
|
24
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
25
|
+
fillRule: "evenodd",
|
|
26
|
+
clipRule: "evenodd",
|
|
27
|
+
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",
|
|
28
|
+
fill: "#0B1E26"
|
|
29
|
+
}),
|
|
30
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
31
|
+
fillRule: "evenodd",
|
|
32
|
+
clipRule: "evenodd",
|
|
33
|
+
d: "M43.206 23.6773H47.7283V0H43.206V23.6773Z",
|
|
34
|
+
fill: "#0B1E26"
|
|
35
|
+
}),
|
|
36
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
37
|
+
fillRule: "evenodd",
|
|
38
|
+
clipRule: "evenodd",
|
|
39
|
+
d: "M54.1033 23.6773H58.6256V0H54.1033V23.6773Z",
|
|
40
|
+
fill: "#0B1E26"
|
|
41
|
+
}),
|
|
42
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
43
|
+
fillRule: "evenodd",
|
|
44
|
+
clipRule: "evenodd",
|
|
45
|
+
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",
|
|
46
|
+
fill: "#0B1E26"
|
|
47
|
+
}),
|
|
48
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
49
|
+
fillRule: "evenodd",
|
|
50
|
+
clipRule: "evenodd",
|
|
51
|
+
d: "M103.267 23.6773H97.7116L91.1539 8.72166V23.6773H87.0521V2.74536H92.5112L99.1973 17.9271V2.74536H103.267V23.6773Z",
|
|
52
|
+
fill: "#0B1E26"
|
|
53
|
+
}),
|
|
54
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
55
|
+
fillRule: "evenodd",
|
|
56
|
+
clipRule: "evenodd",
|
|
57
|
+
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",
|
|
58
|
+
fill: "#0B1E26"
|
|
59
|
+
})
|
|
60
|
+
]
|
|
61
|
+
});
|
|
62
|
+
//#endregion
|
|
63
|
+
exports.default = SvgSullandWordmark;
|