@gnist/design-system 6.0.0-alpha.3 → 6.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -14
- package/README.md +11 -8
- package/dist/_virtual/_rolldown/runtime.cjs +34 -0
- package/dist/_virtual/_rolldown/runtime.js +14 -0
- package/dist/building-blocks/index.cjs +11 -10
- package/dist/building-blocks/index.js +3 -7
- package/dist/building-blocks/inputs/InputHelperText.cjs +49 -27
- package/dist/building-blocks/inputs/InputHelperText.js +47 -27
- package/dist/building-blocks/inputs/index.cjs +3 -4
- package/dist/building-blocks/inputs/index.js +1 -4
- package/dist/building-blocks/inputs/internal/TextBelowInput.cjs +5 -5
- package/dist/building-blocks/inputs/internal/TextBelowInput.js +5 -5
- package/dist/building-blocks/inputs/internal/ValidationText.cjs +25 -15
- package/dist/building-blocks/inputs/internal/ValidationText.js +23 -14
- package/dist/building-blocks/inputs/internal/textBelowInput.css.cjs +35 -35
- package/dist/building-blocks/inputs/internal/textBelowInput.css.js +35 -35
- package/dist/building-blocks/skeletons/CircularSkeleton.cjs +35 -18
- package/dist/building-blocks/skeletons/CircularSkeleton.js +31 -14
- package/dist/building-blocks/skeletons/RectangularSkeleton.cjs +30 -9
- package/dist/building-blocks/skeletons/RectangularSkeleton.js +26 -5
- package/dist/building-blocks/skeletons/TextSkeleton.cjs +39 -14
- package/dist/building-blocks/skeletons/TextSkeleton.js +35 -10
- package/dist/building-blocks/skeletons/index.cjs +6 -7
- package/dist/building-blocks/skeletons/index.js +1 -5
- package/dist/components/actions/buttons/ButtonBase.cjs +42 -54
- package/dist/components/actions/buttons/ButtonBase.js +36 -31
- package/dist/components/actions/buttons/DangerButton.cjs +12 -6
- package/dist/components/actions/buttons/DangerButton.js +10 -5
- package/dist/components/actions/buttons/GhostButton.cjs +14 -6
- package/dist/components/actions/buttons/GhostButton.js +12 -5
- package/dist/components/actions/buttons/IconButton.cjs +45 -23
- package/dist/components/actions/buttons/IconButton.js +42 -20
- package/dist/components/actions/buttons/PrimaryButton.cjs +14 -6
- package/dist/components/actions/buttons/PrimaryButton.js +12 -5
- package/dist/components/actions/buttons/SecondaryButton.cjs +12 -6
- package/dist/components/actions/buttons/SecondaryButton.js +10 -5
- package/dist/components/actions/buttons/SuccessButton.cjs +14 -6
- package/dist/components/actions/buttons/SuccessButton.js +12 -5
- package/dist/components/actions/buttons/TextButton.cjs +33 -24
- package/dist/components/actions/buttons/TextButton.js +29 -20
- package/dist/components/actions/buttons/createButtonVariant.cjs +24 -24
- package/dist/components/actions/buttons/createButtonVariant.js +21 -21
- package/dist/components/actions/buttons/index.cjs +14 -15
- package/dist/components/actions/buttons/index.js +1 -9
- package/dist/components/actions/buttons/styles.css.cjs +125 -143
- package/dist/components/actions/buttons/styles.css.d.ts.map +1 -1
- package/dist/components/actions/buttons/styles.css.js +120 -143
- package/dist/components/actions/chips/ActionChip.cjs +51 -29
- package/dist/components/actions/chips/ActionChip.js +45 -23
- package/dist/components/actions/chips/FilterChip.cjs +46 -29
- package/dist/components/actions/chips/FilterChip.js +40 -23
- package/dist/components/actions/chips/TagChip.cjs +46 -23
- package/dist/components/actions/chips/TagChip.js +40 -17
- package/dist/components/actions/chips/index.cjs +6 -7
- package/dist/components/actions/chips/index.js +1 -5
- package/dist/components/actions/chips/styles.css.cjs +61 -69
- package/dist/components/actions/chips/styles.css.d.ts.map +1 -1
- package/dist/components/actions/chips/styles.css.js +58 -68
- package/dist/components/actions/index.cjs +31 -29
- package/dist/components/actions/index.js +5 -17
- package/dist/components/actions/selectionControls/Checkbox.cjs +91 -52
- package/dist/components/actions/selectionControls/Checkbox.js +87 -49
- package/dist/components/actions/selectionControls/RadioButton.cjs +94 -74
- package/dist/components/actions/selectionControls/RadioButton.js +88 -68
- package/dist/components/actions/selectionControls/RadioGroup.cjs +54 -27
- package/dist/components/actions/selectionControls/RadioGroup.js +51 -25
- package/dist/components/actions/selectionControls/Switch.cjs +101 -41
- package/dist/components/actions/selectionControls/Switch.js +96 -37
- package/dist/components/actions/selectionControls/checkbox.css.cjs +70 -114
- package/dist/components/actions/selectionControls/checkbox.css.js +68 -114
- package/dist/components/actions/selectionControls/index.cjs +8 -9
- package/dist/components/actions/selectionControls/index.js +2 -7
- package/dist/components/actions/selectionControls/radiobutton.css.cjs +75 -107
- package/dist/components/actions/selectionControls/radiobutton.css.js +73 -107
- package/dist/components/actions/selectionControls/radiogroup.css.cjs +24 -40
- package/dist/components/actions/selectionControls/radiogroup.css.d.ts.map +1 -1
- package/dist/components/actions/selectionControls/radiogroup.css.js +24 -42
- package/dist/components/actions/selectionControls/shared.cjs +27 -21
- package/dist/components/actions/selectionControls/shared.css.cjs +45 -71
- package/dist/components/actions/selectionControls/shared.css.d.ts.map +1 -1
- package/dist/components/actions/selectionControls/shared.css.js +41 -72
- package/dist/components/actions/selectionControls/shared.js +24 -20
- package/dist/components/actions/selectionControls/switch.css.cjs +142 -214
- package/dist/components/actions/selectionControls/switch.css.d.ts.map +1 -1
- package/dist/components/actions/selectionControls/switch.css.js +137 -221
- package/dist/components/feedback/alerts/AlertBanner.cjs +64 -28
- package/dist/components/feedback/alerts/AlertBanner.css.cjs +47 -60
- package/dist/components/feedback/alerts/AlertBanner.css.d.ts.map +1 -1
- package/dist/components/feedback/alerts/AlertBanner.css.js +46 -66
- package/dist/components/feedback/alerts/AlertBanner.js +59 -23
- package/dist/components/feedback/alerts/index.cjs +2 -3
- package/dist/components/feedback/alerts/index.js +1 -3
- package/dist/components/feedback/index.cjs +16 -13
- package/dist/components/feedback/index.js +5 -9
- package/dist/components/feedback/loaders/LoadingBar.cjs +34 -17
- package/dist/components/feedback/loaders/LoadingBar.js +32 -17
- package/dist/components/feedback/loaders/LoadingSpinner.cjs +32 -26
- package/dist/components/feedback/loaders/LoadingSpinner.js +31 -25
- package/dist/components/feedback/loaders/index.cjs +5 -6
- package/dist/components/feedback/loaders/index.js +1 -5
- package/dist/components/feedback/loaders/loadingBar.css.cjs +19 -33
- package/dist/components/feedback/loaders/loadingBar.css.d.ts.map +1 -1
- package/dist/components/feedback/loaders/loadingBar.css.js +17 -33
- package/dist/components/feedback/loaders/loadingSpinner.css.cjs +18 -21
- package/dist/components/feedback/loaders/loadingSpinner.css.d.ts.map +1 -1
- package/dist/components/feedback/loaders/loadingSpinner.css.js +16 -20
- package/dist/components/feedback/notifications/Lozenge.cjs +9 -5
- package/dist/components/feedback/notifications/Lozenge.js +9 -5
- package/dist/components/feedback/notifications/index.cjs +2 -3
- package/dist/components/feedback/notifications/index.js +1 -3
- package/dist/components/feedback/notifications/lozenge.css.cjs +58 -64
- package/dist/components/feedback/notifications/lozenge.css.js +54 -61
- package/dist/components/feedback/progress/ProgressBar.cjs +30 -22
- package/dist/components/feedback/progress/ProgressBar.css.cjs +20 -22
- package/dist/components/feedback/progress/ProgressBar.css.d.ts.map +1 -1
- package/dist/components/feedback/progress/ProgressBar.css.js +19 -26
- package/dist/components/feedback/progress/ProgressBar.js +27 -21
- package/dist/components/feedback/progress/index.cjs +3 -4
- package/dist/components/feedback/progress/index.js +1 -4
- package/dist/components/index.cjs +73 -69
- package/dist/components/index.js +9 -41
- package/dist/components/inputs/dropdowns/MultiSelect.cjs +9 -4
- package/dist/components/inputs/dropdowns/MultiSelect.js +9 -4
- package/dist/components/inputs/dropdowns/SelectBase.cjs +126 -99
- package/dist/components/inputs/dropdowns/SelectBase.js +122 -78
- package/dist/components/inputs/dropdowns/SingleSelect.cjs +11 -4
- package/dist/components/inputs/dropdowns/SingleSelect.js +11 -4
- package/dist/components/inputs/dropdowns/index.cjs +4 -5
- package/dist/components/inputs/dropdowns/index.js +1 -4
- package/dist/components/inputs/dropdowns/select.css.cjs +71 -92
- package/dist/components/inputs/dropdowns/select.css.js +69 -96
- package/dist/components/inputs/index.cjs +15 -13
- package/dist/components/inputs/index.js +4 -9
- package/dist/components/inputs/pickers/Calendar.css.cjs +100 -138
- package/dist/components/inputs/pickers/Calendar.css.d.ts.map +1 -1
- package/dist/components/inputs/pickers/Calendar.css.js +96 -144
- package/dist/components/inputs/pickers/calendar.cjs +278 -201
- package/dist/components/inputs/pickers/calendar.js +272 -196
- package/dist/components/inputs/pickers/index.cjs +2 -3
- package/dist/components/inputs/pickers/index.js +1 -3
- package/dist/components/inputs/shared-styles/iconButtonOverlay.css.cjs +32 -38
- package/dist/components/inputs/shared-styles/iconButtonOverlay.css.js +30 -37
- package/dist/components/inputs/shared-styles/inputField.css.cjs +100 -140
- package/dist/components/inputs/shared-styles/inputField.css.d.ts.map +1 -1
- package/dist/components/inputs/shared-styles/inputField.css.js +97 -141
- package/dist/components/inputs/shared-styles/inputFieldConstants.css.cjs +8 -7
- package/dist/components/inputs/shared-styles/inputFieldConstants.css.js +7 -10
- package/dist/components/inputs/shared-styles/labelStyles.css.cjs +152 -176
- package/dist/components/inputs/shared-styles/labelStyles.css.js +149 -174
- package/dist/components/inputs/shared-styles/suffixPrefix.css.cjs +13 -10
- package/dist/components/inputs/shared-styles/suffixPrefix.css.js +12 -11
- package/dist/components/inputs/shared.cjs +92 -93
- package/dist/components/inputs/shared.js +87 -92
- package/dist/components/inputs/textFields/TextArea.cjs +131 -62
- package/dist/components/inputs/textFields/TextArea.js +125 -58
- package/dist/components/inputs/textFields/TextField.cjs +140 -74
- package/dist/components/inputs/textFields/TextField.js +134 -68
- package/dist/components/inputs/textFields/index.cjs +6 -7
- package/dist/components/inputs/textFields/index.js +1 -6
- package/dist/components/inputs/textFields/textArea.css.cjs +17 -21
- package/dist/components/inputs/textFields/textArea.css.js +17 -21
- package/dist/components/progress/Spinner.cjs +19 -14
- package/dist/components/progress/Spinner.js +16 -12
- package/dist/components/progress/index.cjs +2 -3
- package/dist/components/progress/index.js +1 -3
- package/dist/components/progress/spinner.css.cjs +21 -24
- package/dist/components/progress/spinner.css.d.ts.map +1 -1
- package/dist/components/progress/spinner.css.js +20 -24
- package/dist/components/surfaces/accordion/Accordion.cjs +41 -17
- package/dist/components/surfaces/accordion/Accordion.js +38 -15
- package/dist/components/surfaces/accordion/accordion.css.cjs +45 -72
- package/dist/components/surfaces/accordion/accordion.css.js +41 -73
- package/dist/components/surfaces/accordion/index.cjs +2 -3
- package/dist/components/surfaces/accordion/index.js +1 -3
- package/dist/components/surfaces/cards/ActionCard.cjs +29 -19
- package/dist/components/surfaces/cards/ActionCard.js +26 -16
- package/dist/components/surfaces/cards/CheckboxCard.cjs +44 -14
- package/dist/components/surfaces/cards/CheckboxCard.js +39 -9
- package/dist/components/surfaces/cards/InfoCard.cjs +27 -14
- package/dist/components/surfaces/cards/InfoCard.js +24 -11
- package/dist/components/surfaces/cards/LinkCard.cjs +29 -19
- package/dist/components/surfaces/cards/LinkCard.js +26 -16
- package/dist/components/surfaces/cards/RadioCard.cjs +45 -14
- package/dist/components/surfaces/cards/RadioCard.js +40 -9
- package/dist/components/surfaces/cards/SharedComponents.cjs +19 -21
- package/dist/components/surfaces/cards/SharedComponents.js +17 -20
- package/dist/components/surfaces/cards/cards.css.cjs +83 -80
- package/dist/components/surfaces/cards/cards.css.d.ts.map +1 -1
- package/dist/components/surfaces/cards/cards.css.js +78 -76
- package/dist/components/surfaces/cards/checkboxCard.css.cjs +21 -31
- package/dist/components/surfaces/cards/checkboxCard.css.js +19 -30
- package/dist/components/surfaces/cards/index.cjs +10 -11
- package/dist/components/surfaces/cards/index.js +2 -8
- package/dist/components/surfaces/cards/internal/SelectionCard.cjs +36 -31
- package/dist/components/surfaces/cards/internal/SelectionCard.css.cjs +28 -39
- package/dist/components/surfaces/cards/internal/SelectionCard.css.js +27 -40
- package/dist/components/surfaces/cards/internal/SelectionCard.js +34 -31
- package/dist/components/surfaces/index.cjs +17 -15
- package/dist/components/surfaces/index.js +5 -10
- package/dist/components/surfaces/modal/Modal.cjs +128 -101
- package/dist/components/surfaces/modal/Modal.js +121 -94
- package/dist/components/surfaces/modal/index.cjs +2 -3
- package/dist/components/surfaces/modal/index.js +1 -3
- package/dist/components/surfaces/modal/modal.css.cjs +210 -253
- package/dist/components/surfaces/modal/modal.css.js +206 -256
- package/dist/fonts/VW/VWHeadWeb-Bold.woff2.cjs +4 -4
- package/dist/fonts/VW/VWHeadWeb-Bold.woff2.js +4 -4
- package/dist/fonts/VW/VWHeadWeb-ExtraBold.woff2.cjs +4 -4
- package/dist/fonts/VW/VWHeadWeb-ExtraBold.woff2.js +4 -4
- package/dist/fonts/VW/VWHeadWeb-Regular.woff2.cjs +4 -4
- package/dist/fonts/VW/VWHeadWeb-Regular.woff2.js +4 -4
- package/dist/fonts/VW/VWTextWeb-Bold.woff2.cjs +4 -4
- package/dist/fonts/VW/VWTextWeb-Bold.woff2.js +4 -4
- package/dist/fonts/VW/VWTextWeb-Regular.woff2.cjs +4 -4
- package/dist/fonts/VW/VWTextWeb-Regular.woff2.js +4 -4
- package/dist/fonts/VW/head-bold.css.cjs +10 -8
- package/dist/fonts/VW/head-bold.css.js +7 -5
- package/dist/fonts/VW/head-extra-bold.css.cjs +10 -9
- package/dist/fonts/VW/head-extra-bold.css.js +7 -6
- package/dist/fonts/VW/head-regular.css.cjs +10 -8
- package/dist/fonts/VW/head-regular.css.js +7 -5
- package/dist/fonts/VW/index.cjs +13 -3
- package/dist/fonts/VW/index.js +13 -5
- package/dist/fonts/VW/text-bold.css.cjs +10 -8
- package/dist/fonts/VW/text-bold.css.js +7 -5
- package/dist/fonts/VW/text-regular.css.cjs +10 -8
- package/dist/fonts/VW/text-regular.css.js +7 -5
- package/dist/fonts/audi/AudiType-Bold_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-Bold_4.03.woff2.js +4 -4
- package/dist/fonts/audi/AudiType-ExtendedBold_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-ExtendedBold_4.03.woff2.js +4 -4
- package/dist/fonts/audi/AudiType-ExtendedNormal_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-ExtendedNormal_4.03.woff2.js +4 -4
- package/dist/fonts/audi/AudiType-Normal_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-Normal_4.03.woff2.js +4 -4
- package/dist/fonts/audi/bold.css.cjs +10 -8
- package/dist/fonts/audi/bold.css.js +7 -5
- package/dist/fonts/audi/extended-bold.css.cjs +10 -8
- package/dist/fonts/audi/extended-bold.css.js +7 -5
- package/dist/fonts/audi/extended-regular.css.cjs +10 -8
- package/dist/fonts/audi/extended-regular.css.js +7 -5
- package/dist/fonts/audi/index.cjs +13 -3
- package/dist/fonts/audi/index.js +13 -5
- package/dist/fonts/audi/regular.css.cjs +10 -8
- package/dist/fonts/audi/regular.css.js +7 -5
- package/dist/fonts/autoria/Texgyreheros-Bold.woff2.cjs +4 -4
- package/dist/fonts/autoria/Texgyreheros-Bold.woff2.js +4 -4
- package/dist/fonts/autoria/Texgyreheros-Regular.woff2.cjs +4 -4
- package/dist/fonts/autoria/Texgyreheros-Regular.woff2.js +4 -4
- package/dist/fonts/autoria/bold.css.cjs +10 -8
- package/dist/fonts/autoria/bold.css.js +7 -5
- package/dist/fonts/autoria/index.cjs +13 -3
- package/dist/fonts/autoria/index.js +13 -5
- package/dist/fonts/autoria/regular.css.cjs +10 -8
- package/dist/fonts/autoria/regular.css.js +7 -5
- package/dist/fonts/bilhold/GeistVariableVF.woff2.cjs +5 -0
- package/dist/fonts/bilhold/GeistVariableVF.woff2.js +5 -0
- package/dist/fonts/bilhold/index.cjs +13 -4
- package/dist/fonts/bilhold/index.d.ts +0 -1
- package/dist/fonts/bilhold/index.d.ts.map +1 -1
- package/dist/fonts/bilhold/index.js +13 -6
- package/dist/fonts/bilhold/regular.css.cjs +11 -8
- package/dist/fonts/bilhold/regular.css.js +8 -5
- package/dist/fonts/cupra/Cupra-Bold.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Bold.woff2.js +4 -4
- package/dist/fonts/cupra/Cupra-Book.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Book.woff2.js +4 -4
- package/dist/fonts/cupra/Cupra-Medium.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Medium.woff2.js +4 -4
- package/dist/fonts/cupra/Cupra-Regular.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Regular.woff2.js +4 -4
- package/dist/fonts/cupra/bold.css.cjs +10 -8
- package/dist/fonts/cupra/bold.css.js +7 -5
- package/dist/fonts/cupra/book.css.cjs +10 -8
- package/dist/fonts/cupra/book.css.js +7 -5
- package/dist/fonts/cupra/index.cjs +13 -3
- package/dist/fonts/cupra/index.js +13 -5
- package/dist/fonts/cupra/medium.css.cjs +10 -8
- package/dist/fonts/cupra/medium.css.js +7 -5
- package/dist/fonts/cupra/regular.css.cjs +10 -8
- package/dist/fonts/cupra/regular.css.js +7 -5
- package/dist/fonts/dahles/SourceSans3-Bold.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-Bold.woff2.js +4 -4
- package/dist/fonts/dahles/SourceSans3-Medium.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-Medium.woff2.js +4 -4
- package/dist/fonts/dahles/SourceSans3-Regular.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-Regular.woff2.js +4 -4
- package/dist/fonts/dahles/SourceSans3-SemiBold.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-SemiBold.woff2.js +4 -4
- package/dist/fonts/dahles/bold.css.cjs +10 -8
- package/dist/fonts/dahles/bold.css.js +7 -5
- package/dist/fonts/dahles/index.cjs +13 -3
- package/dist/fonts/dahles/index.js +13 -5
- package/dist/fonts/dahles/medium.css.cjs +10 -8
- package/dist/fonts/dahles/medium.css.js +7 -5
- package/dist/fonts/dahles/regular.css.cjs +10 -8
- package/dist/fonts/dahles/regular.css.js +7 -5
- package/dist/fonts/dahles/semibold.css.cjs +10 -8
- package/dist/fonts/dahles/semibold.css.js +7 -5
- package/dist/fonts/gumpen/ES-Build-Bold.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-Bold.woff2.js +4 -4
- package/dist/fonts/gumpen/ES-Build-Medium.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-Medium.woff2.js +4 -4
- package/dist/fonts/gumpen/ES-Build-Regular.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-Regular.woff2.js +4 -4
- package/dist/fonts/gumpen/ES-Build-SemiBold.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-SemiBold.woff2.js +4 -4
- package/dist/fonts/gumpen/bold.css.cjs +10 -8
- package/dist/fonts/gumpen/bold.css.js +7 -5
- package/dist/fonts/gumpen/index.cjs +13 -3
- package/dist/fonts/gumpen/index.js +13 -5
- package/dist/fonts/gumpen/medium.css.cjs +10 -8
- package/dist/fonts/gumpen/medium.css.js +7 -5
- package/dist/fonts/gumpen/regular.css.cjs +10 -8
- package/dist/fonts/gumpen/regular.css.js +7 -5
- package/dist/fonts/gumpen/semibold.css.cjs +10 -8
- package/dist/fonts/gumpen/semibold.css.js +7 -5
- package/dist/fonts/index.cjs +144 -62
- package/dist/fonts/index.js +144 -73
- package/dist/fonts/moller/Larken-Bold.woff2.cjs +4 -4
- package/dist/fonts/moller/Larken-Bold.woff2.js +4 -4
- package/dist/fonts/moller/bold.css.cjs +14 -12
- package/dist/fonts/moller/bold.css.js +10 -8
- package/dist/fonts/moller/index.cjs +14 -4
- package/dist/fonts/moller/index.js +14 -6
- package/dist/fonts/moller/medium.css.cjs +10 -10
- package/dist/fonts/moller/medium.css.js +7 -7
- package/dist/fonts/moller/moller-bold-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-bold-webfont.woff2.js +4 -4
- package/dist/fonts/moller/moller-book-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-book-webfont.woff2.js +4 -4
- package/dist/fonts/moller/moller-medium-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-medium-webfont.woff2.js +4 -4
- package/dist/fonts/moller/moller-regular-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-regular-webfont.woff2.js +4 -4
- package/dist/fonts/moller/regular.css.cjs +10 -8
- package/dist/fonts/moller/regular.css.js +7 -5
- package/dist/fonts/moller/semibold.css.cjs +10 -10
- package/dist/fonts/moller/semibold.css.js +7 -7
- package/dist/fonts/seat/SEATBCN-Bold.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Bold.woff2.js +4 -4
- package/dist/fonts/seat/SEATBCN-Light.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Light.woff2.js +4 -4
- package/dist/fonts/seat/SEATBCN-Medium.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Medium.woff2.js +4 -4
- package/dist/fonts/seat/SEATBCN-Regular.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Regular.woff2.js +4 -4
- package/dist/fonts/seat/bold.css.cjs +10 -8
- package/dist/fonts/seat/bold.css.js +6 -4
- package/dist/fonts/seat/index.cjs +13 -3
- package/dist/fonts/seat/index.js +13 -5
- package/dist/fonts/seat/light.css.cjs +10 -8
- package/dist/fonts/seat/light.css.js +6 -4
- package/dist/fonts/seat/medium.css.cjs +10 -8
- package/dist/fonts/seat/medium.css.js +6 -4
- package/dist/fonts/seat/regular.css.cjs +10 -8
- package/dist/fonts/seat/regular.css.js +6 -4
- package/dist/fonts/skoda/SKODANextW07-Bold.woff2.cjs +4 -4
- package/dist/fonts/skoda/SKODANextW07-Bold.woff2.js +4 -4
- package/dist/fonts/skoda/SKODANextW07-Thin.woff2.cjs +4 -4
- package/dist/fonts/skoda/SKODANextW07-Thin.woff2.js +4 -4
- package/dist/fonts/skoda/bold.css.cjs +10 -8
- package/dist/fonts/skoda/bold.css.js +7 -5
- package/dist/fonts/skoda/index.cjs +13 -3
- package/dist/fonts/skoda/index.js +13 -5
- package/dist/fonts/skoda/medium.css.cjs +10 -8
- package/dist/fonts/skoda/medium.css.js +7 -5
- package/dist/fonts/skoda/regular.css.cjs +10 -8
- package/dist/fonts/skoda/regular.css.js +7 -5
- package/dist/fonts/skoda/semibold.css.cjs +10 -8
- package/dist/fonts/skoda/semibold.css.js +7 -5
- package/dist/fonts/tools/GeistVariableVF.woff2.cjs +4 -4
- package/dist/fonts/tools/GeistVariableVF.woff2.js +4 -4
- package/dist/fonts/tools/index.cjs +13 -3
- package/dist/fonts/tools/index.js +13 -5
- package/dist/fonts/tools/regular.css.cjs +11 -9
- package/dist/fonts/tools/regular.css.js +8 -6
- package/dist/foundation/iconography/ExtraIconsProvider.cjs +63 -7
- package/dist/foundation/iconography/ExtraIconsProvider.js +61 -7
- package/dist/foundation/iconography/Icon.cjs +63 -41
- package/dist/foundation/iconography/Icon.css.cjs +16 -16
- package/dist/foundation/iconography/Icon.css.d.ts.map +1 -1
- package/dist/foundation/iconography/Icon.css.js +15 -19
- package/dist/foundation/iconography/Icon.js +56 -34
- package/dist/foundation/iconography/IconVariantProvider.cjs +36 -7
- package/dist/foundation/iconography/IconVariantProvider.js +34 -7
- package/dist/foundation/iconography/icons.cjs +76 -63
- package/dist/foundation/iconography/icons.d.ts +1 -1
- package/dist/foundation/iconography/icons.d.ts.map +1 -1
- package/dist/foundation/iconography/icons.js +77 -65
- package/dist/foundation/iconography/index.cjs +8 -9
- package/dist/foundation/iconography/index.js +1 -6
- package/dist/foundation/iconography/svg/action/assignment-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/assignment-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/home-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/home-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/home-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/home-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/index.cjs +451 -423
- package/dist/foundation/iconography/svg/action/index.d.ts +0 -52
- package/dist/foundation/iconography/svg/action/index.d.ts.map +1 -1
- package/dist/foundation/iconography/svg/action/index.js +446 -464
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/index.cjs +31 -19
- package/dist/foundation/iconography/svg/communication/index.js +26 -22
- package/dist/foundation/iconography/svg/content/add-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/index.cjs +135 -91
- package/dist/foundation/iconography/svg/content/index.d.ts +52 -0
- package/dist/foundation/iconography/svg/content/index.d.ts.map +1 -1
- package/dist/foundation/iconography/svg/content/index.js +127 -101
- package/dist/foundation/iconography/svg/content/mail-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/mail-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/mail-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/mail-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/index.cjs +19 -10
- package/dist/foundation/iconography/svg/device/index.js +14 -12
- package/dist/foundation/iconography/svg/device/task-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/task-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/task-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/task-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/index.cjs +81 -64
- package/dist/foundation/iconography/svg/file/index.js +76 -72
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/unarchive-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/index.cjs +84 -25
- package/dist/foundation/iconography/svg/index.js +13 -26
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/ev_station-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/index.cjs +61 -46
- package/dist/foundation/iconography/svg/map/index.js +56 -52
- package/dist/foundation/iconography/svg/map/location-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/location-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/location-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/location-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/index.cjs +220 -191
- package/dist/foundation/iconography/svg/navigation/index.js +215 -211
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/menu-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/index.cjs +41 -28
- package/dist/foundation/iconography/svg/notifications/index.js +36 -32
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/index.cjs +31 -19
- package/dist/foundation/iconography/svg/search/index.js +26 -22
- package/dist/foundation/iconography/svg/search/search-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/search-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/search-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/search-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/index.cjs +61 -46
- package/dist/foundation/iconography/svg/social/index.js +56 -52
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/index.cjs +31 -19
- package/dist/foundation/iconography/svg/toggle/index.js +26 -22
- package/dist/foundation/iconography/svg/toggle/star-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/star-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/index.cjs +61 -46
- package/dist/foundation/iconography/svg/validation/index.js +56 -52
- package/dist/foundation/iconography/svg/validation/info-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/info-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/info-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/info-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg-react.js +17 -0
- package/dist/foundation/index.cjs +23 -22
- package/dist/foundation/index.js +3 -17
- package/dist/foundation/logos/Logo.cjs +47 -35
- package/dist/foundation/logos/Logo.css.cjs +16 -19
- package/dist/foundation/logos/Logo.css.d.ts.map +1 -1
- package/dist/foundation/logos/Logo.css.js +15 -20
- package/dist/foundation/logos/Logo.js +44 -32
- package/dist/foundation/logos/index.cjs +2 -3
- package/dist/foundation/logos/index.js +1 -3
- package/dist/foundation/logos/logos.cjs +33 -32
- package/dist/foundation/logos/logos.js +24 -23
- package/dist/foundation/logos/svg/audi/audi_symbol.svg-react.cjs +51 -0
- package/dist/foundation/logos/svg/audi/audi_symbol.svg-react.js +49 -0
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg-react.cjs +51 -0
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg-react.js +49 -0
- package/dist/foundation/logos/svg/audi/index.cjs +8 -7
- package/dist/foundation/logos/svg/audi/index.js +9 -9
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg-react.js +20 -0
- package/dist/foundation/logos/svg/autoria/index.cjs +8 -7
- package/dist/foundation/logos/svg/autoria/index.js +9 -9
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg-react.js +20 -0
- package/dist/foundation/logos/svg/bilhold/index.cjs +8 -7
- package/dist/foundation/logos/svg/bilhold/index.js +9 -9
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg-react.cjs +51 -0
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg-react.js +49 -0
- package/dist/foundation/logos/svg/cupra/index.cjs +8 -7
- package/dist/foundation/logos/svg/cupra/index.js +9 -9
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg-react.cjs +61 -0
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg-react.js +59 -0
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg-react.cjs +61 -0
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg-react.js +59 -0
- package/dist/foundation/logos/svg/dahles/index.cjs +8 -7
- package/dist/foundation/logos/svg/dahles/index.js +9 -9
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg-react.cjs +47 -0
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg-react.js +45 -0
- package/dist/foundation/logos/svg/gumpen/index.cjs +8 -7
- package/dist/foundation/logos/svg/gumpen/index.js +9 -9
- package/dist/foundation/logos/svg/index.cjs +29 -30
- package/dist/foundation/logos/svg/index.js +1 -21
- package/dist/foundation/logos/svg/mollerbil/index.cjs +8 -7
- package/dist/foundation/logos/svg/mollerbil/index.js +9 -9
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg-react.cjs +57 -0
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg-react.js +55 -0
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg-react.cjs +42 -0
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg-react.js +40 -0
- package/dist/foundation/logos/svg/others/alta_wordmark.svg-react.cjs +21 -0
- package/dist/foundation/logos/svg/others/alta_wordmark.svg-react.js +19 -0
- package/dist/foundation/logos/svg/others/berge_wordmark.svg-react.cjs +23 -0
- package/dist/foundation/logos/svg/others/berge_wordmark.svg-react.js +21 -0
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg-react.cjs +31 -0
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg-react.js +29 -0
- package/dist/foundation/logos/svg/others/index.cjs +47 -46
- package/dist/foundation/logos/svg/others/index.js +57 -65
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg-react.cjs +21 -0
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg-react.js +19 -0
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg-react.cjs +30 -0
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg-react.js +28 -0
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg-react.cjs +24 -0
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg-react.js +22 -0
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg-react.cjs +63 -0
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg-react.js +61 -0
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg-react.cjs +21 -0
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg-react.js +19 -0
- package/dist/foundation/logos/svg/skoda/index.cjs +8 -7
- package/dist/foundation/logos/svg/skoda/index.js +9 -9
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg-react.js +20 -0
- package/dist/foundation/logos/svg/vw/index.cjs +14 -13
- package/dist/foundation/logos/svg/vw/index.js +15 -16
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg-react.cjs +29 -0
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg-react.js +27 -0
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg-react.cjs +29 -0
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg-react.js +27 -0
- package/dist/foundation/logos/svg/vw/vw_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/vw/vw_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg-react.js +20 -0
- package/dist/foundation/typography/index.cjs +48 -15
- package/dist/foundation/typography/index.js +47 -25
- package/dist/foundation/typography/typography.css.cjs +13 -21
- package/dist/foundation/typography/typography.css.js +12 -28
- package/dist/index.cjs +145 -140
- package/dist/index.js +24 -107
- package/dist/styles/animations.css.cjs +6 -10
- package/dist/styles/animations.css.js +7 -11
- package/dist/styles/states.css.cjs +69 -102
- package/dist/styles/states.css.d.ts.map +1 -1
- package/dist/styles/states.css.js +66 -101
- package/dist/translations/LocalizationProvider.cjs +17 -27
- package/dist/translations/LocalizationProvider.js +14 -10
- package/dist/translations/en.cjs +60 -74
- package/dist/translations/en.js +61 -75
- package/dist/translations/index.cjs +35 -17
- package/dist/translations/index.js +29 -21
- package/dist/translations/no.cjs +60 -74
- package/dist/translations/no.js +61 -75
- package/dist/utilities/accessibility/ScreenReaderOnly.cjs +5 -5
- package/dist/utilities/accessibility/ScreenReaderOnly.js +4 -4
- package/dist/utilities/accessibility/index.cjs +4 -5
- package/dist/utilities/accessibility/index.js +2 -5
- package/dist/utilities/accessibility/visuallyHidden.css.cjs +15 -15
- package/dist/utilities/accessibility/visuallyHidden.css.js +16 -16
- package/dist/utilities/forms/formContext.cjs +61 -41
- package/dist/utilities/forms/formContext.js +58 -23
- package/dist/utilities/forms/formHelpers.cjs +60 -46
- package/dist/utilities/forms/formHelpers.js +58 -47
- package/dist/utilities/forms/formInputs.cjs +16 -17
- package/dist/utilities/forms/formInputs.js +17 -18
- package/dist/utilities/forms/index.cjs +7 -8
- package/dist/utilities/forms/index.js +1 -6
- package/dist/utilities/forms/internal/components.cjs +67 -75
- package/dist/utilities/forms/internal/components.js +61 -75
- package/dist/utilities/forms/useFormProps.cjs +25 -28
- package/dist/utilities/forms/useFormProps.js +24 -27
- package/dist/utilities/forms/useLocalFormState.cjs +77 -72
- package/dist/utilities/forms/useLocalFormState.js +76 -72
- package/dist/utilities/html/index.cjs +3 -2
- package/dist/utilities/html/index.js +4 -4
- package/dist/utilities/index.cjs +18 -18
- package/dist/utilities/index.js +3 -16
- package/dist/utilities/layout/Column.cjs +5 -5
- package/dist/utilities/layout/Column.js +5 -5
- package/dist/utilities/layout/Row.cjs +5 -5
- package/dist/utilities/layout/Row.js +5 -5
- package/dist/utilities/layout/breakpoints.cjs +5 -5
- package/dist/utilities/layout/breakpoints.js +6 -8
- package/dist/utilities/layout/index.cjs +8 -9
- package/dist/utilities/layout/index.js +1 -7
- package/dist/utilities/layout/styles.css.cjs +100 -100
- package/dist/utilities/layout/styles.css.js +99 -100
- package/dist/utilities/time/date.cjs +387 -388
- package/dist/utilities/time/date.js +388 -397
- package/dist/utilities/time/index.cjs +10 -11
- package/dist/utilities/time/index.js +1 -11
- package/dist/utilities/tokens/index.cjs +4 -5
- package/dist/utilities/tokens/index.js +1 -5
- package/dist/utilities/tokens/tokens.cjs +8 -10
- package/dist/utilities/tokens/tokens.js +9 -13
- package/dist/utilities/validation/index.cjs +24 -25
- package/dist/utilities/validation/index.js +2 -24
- package/dist/utilities/validation/regex.cjs +9 -11
- package/dist/utilities/validation/regex.js +10 -18
- package/dist/utilities/validation/validation.cjs +109 -93
- package/dist/utilities/validation/validation.js +109 -101
- package/dist/utilities/validation/validationSteps.cjs +12 -12
- package/dist/utilities/validation/validationSteps.js +12 -14
- package/dist/utilities/validation/validators.cjs +42 -66
- package/dist/utilities/validation/validators.js +42 -74
- package/package.json +7 -7
- package/dist/fonts/bilhold/Figtree-Bold.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-Bold.woff2.js +0 -5
- package/dist/fonts/bilhold/Figtree-Medium.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-Medium.woff2.js +0 -5
- package/dist/fonts/bilhold/Figtree-Regular.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-Regular.woff2.js +0 -5
- package/dist/fonts/bilhold/Figtree-SemiBold.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-SemiBold.woff2.js +0 -5
- package/dist/fonts/bilhold/bold.css.cjs +0 -10
- package/dist/fonts/bilhold/bold.css.d.ts +0 -2
- package/dist/fonts/bilhold/bold.css.d.ts.map +0 -1
- package/dist/fonts/bilhold/bold.css.js +0 -9
- package/dist/fonts/bilhold/medium.css.cjs +0 -10
- package/dist/fonts/bilhold/medium.css.d.ts +0 -2
- package/dist/fonts/bilhold/medium.css.d.ts.map +0 -1
- package/dist/fonts/bilhold/medium.css.js +0 -9
- package/dist/fonts/bilhold/semibold.css.cjs +0 -10
- package/dist/fonts/bilhold/semibold.css.d.ts +0 -2
- package/dist/fonts/bilhold/semibold.css.d.ts.map +0 -1
- package/dist/fonts/bilhold/semibold.css.js +0 -9
- package/dist/foundation/iconography/svg/action/assignment-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/assignment-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg.js +0 -10
- package/dist/foundation/logos/svg/audi/audi_symbol.svg.cjs +0 -30
- package/dist/foundation/logos/svg/audi/audi_symbol.svg.js +0 -12
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg.cjs +0 -30
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg.js +0 -12
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/alta_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/alta_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/berge_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/berge_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vw_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vw_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg.js +0 -10
|
@@ -1,37 +1,49 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx, Fragment } from "react/jsx-runtime";
|
|
3
2
|
import { logos } from "./logos.js";
|
|
3
|
+
import { logoVariant, svgVariant } from "./Logo.css.js";
|
|
4
|
+
import { Fragment, jsx } from "react/jsx-runtime";
|
|
4
5
|
import classNames from "classnames";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
6
|
+
//#region src/foundation/logos/Logo.tsx
|
|
7
|
+
var logoTitles = {
|
|
8
|
+
bilhold: "Bilhold",
|
|
9
|
+
mollerbil: "Møller Bil",
|
|
10
|
+
skoda: "Skoda",
|
|
11
|
+
gumpen: "Gumpen",
|
|
12
|
+
vw: "Volkswagen",
|
|
13
|
+
vwnytte: "Volkswagen Nytte",
|
|
14
|
+
dahles: "Dahles Auto",
|
|
15
|
+
autoria: "Autoria",
|
|
16
|
+
audi: "Audi",
|
|
17
|
+
cupra: "Cupra",
|
|
18
|
+
berge: "Berge & Co",
|
|
19
|
+
fremme: "fremme",
|
|
20
|
+
sulland: "Sulland",
|
|
21
|
+
slatlem: "Slatlem",
|
|
22
|
+
albjerk: "Albjerk",
|
|
23
|
+
kirkenes: "Kirkenes",
|
|
24
|
+
alta: "Alta",
|
|
25
|
+
svebjorn: "Svebjørn",
|
|
26
|
+
mobile: "Mobile"
|
|
26
27
|
};
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
|
|
28
|
+
/**
|
|
29
|
+
* A logo component that displays brand logos with consistent sizing and styling.
|
|
30
|
+
*
|
|
31
|
+
* Documentation: [Logo](https://gnist.moller.no/developers/components/latest/?path=/docs/foundation-iconography-logo--docs)
|
|
32
|
+
*/
|
|
33
|
+
var Logo = ({ size = "l", role = "img", focusable = false, type, brand, className, ...rest }) => {
|
|
34
|
+
const logo = logos.find((x) => x.key === brand);
|
|
35
|
+
if (!logo) return jsx(Fragment, {});
|
|
36
|
+
const Component = logo[type];
|
|
37
|
+
return jsx("span", {
|
|
38
|
+
className: classNames(className, logoVariant[size]),
|
|
39
|
+
children: jsx(Component, {
|
|
40
|
+
title: logoTitles[brand],
|
|
41
|
+
role,
|
|
42
|
+
focusable,
|
|
43
|
+
className: svgVariant[size],
|
|
44
|
+
...rest
|
|
45
|
+
})
|
|
46
|
+
});
|
|
37
47
|
};
|
|
48
|
+
//#endregion
|
|
49
|
+
export { Logo };
|
|
@@ -1,35 +1,36 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
2
|
+
const require_index = require("./svg/bilhold/index.cjs");
|
|
3
|
+
const require_index$1 = require("./svg/mollerbil/index.cjs");
|
|
4
|
+
const require_index$2 = require("./svg/skoda/index.cjs");
|
|
5
|
+
const require_index$3 = require("./svg/gumpen/index.cjs");
|
|
6
|
+
const require_index$4 = require("./svg/vw/index.cjs");
|
|
7
|
+
const require_index$5 = require("./svg/dahles/index.cjs");
|
|
8
|
+
const require_index$6 = require("./svg/autoria/index.cjs");
|
|
9
|
+
const require_index$7 = require("./svg/audi/index.cjs");
|
|
10
|
+
const require_index$8 = require("./svg/cupra/index.cjs");
|
|
11
|
+
const require_index$9 = require("./svg/others/index.cjs");
|
|
12
|
+
require("./svg/index.cjs");
|
|
13
|
+
//#region src/foundation/logos/logos.tsx
|
|
14
|
+
var logos = [
|
|
15
|
+
require_index$9.albjerk,
|
|
16
|
+
require_index$9.alta,
|
|
17
|
+
require_index$7.audi,
|
|
18
|
+
require_index$6.autoria,
|
|
19
|
+
require_index$9.berge,
|
|
20
|
+
require_index.bilhold,
|
|
21
|
+
require_index$8.cupra,
|
|
22
|
+
require_index$5.dahles,
|
|
23
|
+
require_index$9.fremme,
|
|
24
|
+
require_index$3.gumpen,
|
|
25
|
+
require_index$9.kirkenes,
|
|
26
|
+
require_index$9.mobile,
|
|
27
|
+
require_index$1.mollerbil,
|
|
28
|
+
require_index$2.skoda,
|
|
29
|
+
require_index$9.slatlem,
|
|
30
|
+
require_index$9.sulland,
|
|
31
|
+
require_index$9.svebjorn,
|
|
32
|
+
require_index$4.vw,
|
|
33
|
+
require_index$4.vwnytte
|
|
34
34
|
];
|
|
35
|
+
//#endregion
|
|
35
36
|
exports.logos = logos;
|
|
@@ -9,27 +9,28 @@ import { autoria } from "./svg/autoria/index.js";
|
|
|
9
9
|
import { audi } from "./svg/audi/index.js";
|
|
10
10
|
import { cupra } from "./svg/cupra/index.js";
|
|
11
11
|
import { albjerk, alta, berge, fremme, kirkenes, mobile, slatlem, sulland, svebjorn } from "./svg/others/index.js";
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
12
|
+
import "./svg/index.js";
|
|
13
|
+
//#region src/foundation/logos/logos.tsx
|
|
14
|
+
var logos = [
|
|
15
|
+
albjerk,
|
|
16
|
+
alta,
|
|
17
|
+
audi,
|
|
18
|
+
autoria,
|
|
19
|
+
berge,
|
|
20
|
+
bilhold,
|
|
21
|
+
cupra,
|
|
22
|
+
dahles,
|
|
23
|
+
fremme,
|
|
24
|
+
gumpen,
|
|
25
|
+
kirkenes,
|
|
26
|
+
mobile,
|
|
27
|
+
mollerbil,
|
|
28
|
+
skoda,
|
|
29
|
+
slatlem,
|
|
30
|
+
sulland,
|
|
31
|
+
svebjorn,
|
|
32
|
+
vw,
|
|
33
|
+
vwnytte
|
|
32
34
|
];
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
};
|
|
35
|
+
//#endregion
|
|
36
|
+
export { logos };
|
|
@@ -0,0 +1,51 @@
|
|
|
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/audi/audi_symbol.svg-react
|
|
7
|
+
var SvgAudiSymbol = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
viewBox: "0 0 133 46",
|
|
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.jsxs)("g", {
|
|
19
|
+
clipPath: "url(#clip0_2077_1052)",
|
|
20
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("mask", {
|
|
21
|
+
id: "mask0_2077_1052",
|
|
22
|
+
style: { maskType: "luminance" },
|
|
23
|
+
maskUnits: "userSpaceOnUse",
|
|
24
|
+
x: 0,
|
|
25
|
+
y: 0,
|
|
26
|
+
width: 133,
|
|
27
|
+
height: 47,
|
|
28
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
29
|
+
d: "M0 0.000183105H133V46.0002H0V0.000183105Z",
|
|
30
|
+
fill: "white"
|
|
31
|
+
})
|
|
32
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
33
|
+
mask: "url(#mask0_2077_1052)",
|
|
34
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
35
|
+
d: "M109.99 40.8521C105.901 40.8521 102.132 39.4685 99.1177 37.1491C102.176 33.2442 104.007 28.3332 104.007 23C104.007 17.6672 102.176 12.7563 99.1177 8.85086C102.132 6.532 105.901 5.14786 109.99 5.14786C119.838 5.14786 127.85 13.1565 127.85 23C127.85 32.844 119.838 40.8521 109.99 40.8521ZM70.1241 37.1491C73.1831 33.2442 75.0138 28.3332 75.0138 23C75.0138 17.6672 73.1831 12.7563 70.1246 8.85086C73.138 6.532 76.9081 5.14786 80.9965 5.14786C85.0855 5.14786 88.8546 6.532 91.8685 8.85086C88.8099 12.7563 86.9792 17.6672 86.9792 23C86.9792 28.3332 88.8099 33.2442 91.8685 37.1491C88.8546 39.4685 85.0855 40.8521 80.9965 40.8521C76.9081 40.8521 73.138 39.4685 70.1241 37.1491ZM41.1311 37.1491C44.1901 33.2442 46.0208 28.3332 46.0208 23C46.0208 17.6672 44.1901 12.7563 41.1315 8.85086C44.145 6.532 47.915 5.14786 52.0035 5.14786C56.0919 5.14786 59.862 6.532 62.8754 8.85086C59.8169 12.7563 57.9862 17.6672 57.9862 23C57.9862 28.3332 59.8169 33.2442 62.8754 37.1491C59.862 39.4685 56.0919 40.8521 52.0035 40.8521C47.915 40.8521 44.145 39.4685 41.1311 37.1491ZM5.15018 23C5.15018 13.1565 13.1624 5.14786 23.0104 5.14786C27.0989 5.14786 30.8689 6.532 33.8823 8.85086C30.8238 12.7563 28.9931 17.6672 28.9931 23C28.9931 28.3332 30.8238 33.2442 33.8823 37.1491C30.8689 39.4685 27.0989 40.8521 23.0104 40.8521C13.1624 40.8521 5.15018 32.844 5.15018 23ZM37.5069 33.4084C35.3932 30.4759 34.1433 26.8824 34.1433 23C34.1433 19.1181 35.3932 15.5241 37.5069 12.5916C39.6207 15.5241 40.8706 19.1181 40.8706 23C40.8706 26.8824 39.6207 30.4759 37.5069 33.4084ZM66.5 33.4084C64.3863 30.4759 63.1363 26.8824 63.1363 23C63.1363 19.1181 64.3863 15.5241 66.5 12.5916C68.6137 15.5241 69.8637 19.1181 69.8637 23C69.8637 26.8824 68.6137 30.4759 66.5 33.4084ZM95.4931 33.4084C93.3793 30.4759 92.1294 26.8824 92.1294 23C92.1294 19.1181 93.3793 15.5241 95.4931 12.5916C97.6068 15.5241 98.8567 19.1181 98.8567 23C98.8567 26.8824 97.6068 30.4759 95.4931 33.4084ZM109.99 0C104.498 0 99.4527 1.93521 95.4931 5.15522C91.5335 1.93521 86.4877 0 80.9965 0C75.5053 0 70.4596 1.93521 66.5 5.15522C62.5404 1.93521 57.4942 0 52.0035 0C46.5123 0 41.4665 1.93521 37.5069 5.15522C33.5473 1.93521 28.5011 0 23.0104 0C10.3225 0 0 10.3178 0 23C0 35.6827 10.3225 46 23.0104 46C28.5011 46 33.5473 44.0652 37.5069 40.8448C41.4665 44.0652 46.5123 46 52.0035 46C57.4942 46 62.5404 44.0652 66.5 40.8448C70.4596 44.0652 75.5053 46 80.9965 46C86.4877 46 91.5335 44.0652 95.4931 40.8448C99.4527 44.0652 104.498 46 109.99 46C122.678 46 133 35.6827 133 23C133 10.3178 122.678 0 109.99 0Z",
|
|
36
|
+
fill: "currentColor"
|
|
37
|
+
})
|
|
38
|
+
})]
|
|
39
|
+
}),
|
|
40
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("defs", { children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("clipPath", {
|
|
41
|
+
id: "clip0_2077_1052",
|
|
42
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
43
|
+
width: 133,
|
|
44
|
+
height: 46,
|
|
45
|
+
fill: "white"
|
|
46
|
+
})
|
|
47
|
+
}) })
|
|
48
|
+
]
|
|
49
|
+
});
|
|
50
|
+
//#endregion
|
|
51
|
+
exports.default = SvgAudiSymbol;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/logos/svg/audi/audi_symbol.svg-react
|
|
5
|
+
var SvgAudiSymbol = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
viewBox: "0 0 133 46",
|
|
7
|
+
fill: "none",
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [
|
|
12
|
+
title ? /* @__PURE__ */ jsx("title", {
|
|
13
|
+
id: titleId,
|
|
14
|
+
children: title
|
|
15
|
+
}) : null,
|
|
16
|
+
/* @__PURE__ */ jsxs("g", {
|
|
17
|
+
clipPath: "url(#clip0_2077_1052)",
|
|
18
|
+
children: [/* @__PURE__ */ jsx("mask", {
|
|
19
|
+
id: "mask0_2077_1052",
|
|
20
|
+
style: { maskType: "luminance" },
|
|
21
|
+
maskUnits: "userSpaceOnUse",
|
|
22
|
+
x: 0,
|
|
23
|
+
y: 0,
|
|
24
|
+
width: 133,
|
|
25
|
+
height: 47,
|
|
26
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
27
|
+
d: "M0 0.000183105H133V46.0002H0V0.000183105Z",
|
|
28
|
+
fill: "white"
|
|
29
|
+
})
|
|
30
|
+
}), /* @__PURE__ */ jsx("g", {
|
|
31
|
+
mask: "url(#mask0_2077_1052)",
|
|
32
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
33
|
+
d: "M109.99 40.8521C105.901 40.8521 102.132 39.4685 99.1177 37.1491C102.176 33.2442 104.007 28.3332 104.007 23C104.007 17.6672 102.176 12.7563 99.1177 8.85086C102.132 6.532 105.901 5.14786 109.99 5.14786C119.838 5.14786 127.85 13.1565 127.85 23C127.85 32.844 119.838 40.8521 109.99 40.8521ZM70.1241 37.1491C73.1831 33.2442 75.0138 28.3332 75.0138 23C75.0138 17.6672 73.1831 12.7563 70.1246 8.85086C73.138 6.532 76.9081 5.14786 80.9965 5.14786C85.0855 5.14786 88.8546 6.532 91.8685 8.85086C88.8099 12.7563 86.9792 17.6672 86.9792 23C86.9792 28.3332 88.8099 33.2442 91.8685 37.1491C88.8546 39.4685 85.0855 40.8521 80.9965 40.8521C76.9081 40.8521 73.138 39.4685 70.1241 37.1491ZM41.1311 37.1491C44.1901 33.2442 46.0208 28.3332 46.0208 23C46.0208 17.6672 44.1901 12.7563 41.1315 8.85086C44.145 6.532 47.915 5.14786 52.0035 5.14786C56.0919 5.14786 59.862 6.532 62.8754 8.85086C59.8169 12.7563 57.9862 17.6672 57.9862 23C57.9862 28.3332 59.8169 33.2442 62.8754 37.1491C59.862 39.4685 56.0919 40.8521 52.0035 40.8521C47.915 40.8521 44.145 39.4685 41.1311 37.1491ZM5.15018 23C5.15018 13.1565 13.1624 5.14786 23.0104 5.14786C27.0989 5.14786 30.8689 6.532 33.8823 8.85086C30.8238 12.7563 28.9931 17.6672 28.9931 23C28.9931 28.3332 30.8238 33.2442 33.8823 37.1491C30.8689 39.4685 27.0989 40.8521 23.0104 40.8521C13.1624 40.8521 5.15018 32.844 5.15018 23ZM37.5069 33.4084C35.3932 30.4759 34.1433 26.8824 34.1433 23C34.1433 19.1181 35.3932 15.5241 37.5069 12.5916C39.6207 15.5241 40.8706 19.1181 40.8706 23C40.8706 26.8824 39.6207 30.4759 37.5069 33.4084ZM66.5 33.4084C64.3863 30.4759 63.1363 26.8824 63.1363 23C63.1363 19.1181 64.3863 15.5241 66.5 12.5916C68.6137 15.5241 69.8637 19.1181 69.8637 23C69.8637 26.8824 68.6137 30.4759 66.5 33.4084ZM95.4931 33.4084C93.3793 30.4759 92.1294 26.8824 92.1294 23C92.1294 19.1181 93.3793 15.5241 95.4931 12.5916C97.6068 15.5241 98.8567 19.1181 98.8567 23C98.8567 26.8824 97.6068 30.4759 95.4931 33.4084ZM109.99 0C104.498 0 99.4527 1.93521 95.4931 5.15522C91.5335 1.93521 86.4877 0 80.9965 0C75.5053 0 70.4596 1.93521 66.5 5.15522C62.5404 1.93521 57.4942 0 52.0035 0C46.5123 0 41.4665 1.93521 37.5069 5.15522C33.5473 1.93521 28.5011 0 23.0104 0C10.3225 0 0 10.3178 0 23C0 35.6827 10.3225 46 23.0104 46C28.5011 46 33.5473 44.0652 37.5069 40.8448C41.4665 44.0652 46.5123 46 52.0035 46C57.4942 46 62.5404 44.0652 66.5 40.8448C70.4596 44.0652 75.5053 46 80.9965 46C86.4877 46 91.5335 44.0652 95.4931 40.8448C99.4527 44.0652 104.498 46 109.99 46C122.678 46 133 35.6827 133 23C133 10.3178 122.678 0 109.99 0Z",
|
|
34
|
+
fill: "currentColor"
|
|
35
|
+
})
|
|
36
|
+
})]
|
|
37
|
+
}),
|
|
38
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
|
|
39
|
+
id: "clip0_2077_1052",
|
|
40
|
+
children: /* @__PURE__ */ jsx("rect", {
|
|
41
|
+
width: 133,
|
|
42
|
+
height: 46,
|
|
43
|
+
fill: "white"
|
|
44
|
+
})
|
|
45
|
+
}) })
|
|
46
|
+
]
|
|
47
|
+
});
|
|
48
|
+
//#endregion
|
|
49
|
+
export { SvgAudiSymbol as default };
|
|
@@ -0,0 +1,51 @@
|
|
|
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/audi/audi_wordmark.svg-react
|
|
7
|
+
var SvgAudiWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
viewBox: "0 0 133 46",
|
|
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.jsxs)("g", {
|
|
19
|
+
clipPath: "url(#clip0_2077_1052)",
|
|
20
|
+
children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("mask", {
|
|
21
|
+
id: "mask0_2077_1052",
|
|
22
|
+
style: { maskType: "luminance" },
|
|
23
|
+
maskUnits: "userSpaceOnUse",
|
|
24
|
+
x: 0,
|
|
25
|
+
y: 0,
|
|
26
|
+
width: 133,
|
|
27
|
+
height: 47,
|
|
28
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
29
|
+
d: "M0 0.000183105H133V46.0002H0V0.000183105Z",
|
|
30
|
+
fill: "white"
|
|
31
|
+
})
|
|
32
|
+
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("g", {
|
|
33
|
+
mask: "url(#mask0_2077_1052)",
|
|
34
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
35
|
+
d: "M109.99 40.8521C105.901 40.8521 102.132 39.4685 99.1177 37.1491C102.176 33.2442 104.007 28.3332 104.007 23C104.007 17.6672 102.176 12.7563 99.1177 8.85086C102.132 6.532 105.901 5.14786 109.99 5.14786C119.838 5.14786 127.85 13.1565 127.85 23C127.85 32.844 119.838 40.8521 109.99 40.8521ZM70.1241 37.1491C73.1831 33.2442 75.0138 28.3332 75.0138 23C75.0138 17.6672 73.1831 12.7563 70.1246 8.85086C73.138 6.532 76.9081 5.14786 80.9965 5.14786C85.0855 5.14786 88.8546 6.532 91.8685 8.85086C88.8099 12.7563 86.9792 17.6672 86.9792 23C86.9792 28.3332 88.8099 33.2442 91.8685 37.1491C88.8546 39.4685 85.0855 40.8521 80.9965 40.8521C76.9081 40.8521 73.138 39.4685 70.1241 37.1491ZM41.1311 37.1491C44.1901 33.2442 46.0208 28.3332 46.0208 23C46.0208 17.6672 44.1901 12.7563 41.1315 8.85086C44.145 6.532 47.915 5.14786 52.0035 5.14786C56.0919 5.14786 59.862 6.532 62.8754 8.85086C59.8169 12.7563 57.9862 17.6672 57.9862 23C57.9862 28.3332 59.8169 33.2442 62.8754 37.1491C59.862 39.4685 56.0919 40.8521 52.0035 40.8521C47.915 40.8521 44.145 39.4685 41.1311 37.1491ZM5.15018 23C5.15018 13.1565 13.1624 5.14786 23.0104 5.14786C27.0989 5.14786 30.8689 6.532 33.8823 8.85086C30.8238 12.7563 28.9931 17.6672 28.9931 23C28.9931 28.3332 30.8238 33.2442 33.8823 37.1491C30.8689 39.4685 27.0989 40.8521 23.0104 40.8521C13.1624 40.8521 5.15018 32.844 5.15018 23ZM37.5069 33.4084C35.3932 30.4759 34.1433 26.8824 34.1433 23C34.1433 19.1181 35.3932 15.5241 37.5069 12.5916C39.6207 15.5241 40.8706 19.1181 40.8706 23C40.8706 26.8824 39.6207 30.4759 37.5069 33.4084ZM66.5 33.4084C64.3863 30.4759 63.1363 26.8824 63.1363 23C63.1363 19.1181 64.3863 15.5241 66.5 12.5916C68.6137 15.5241 69.8637 19.1181 69.8637 23C69.8637 26.8824 68.6137 30.4759 66.5 33.4084ZM95.4931 33.4084C93.3793 30.4759 92.1294 26.8824 92.1294 23C92.1294 19.1181 93.3793 15.5241 95.4931 12.5916C97.6068 15.5241 98.8567 19.1181 98.8567 23C98.8567 26.8824 97.6068 30.4759 95.4931 33.4084ZM109.99 0C104.498 0 99.4527 1.93521 95.4931 5.15522C91.5335 1.93521 86.4877 0 80.9965 0C75.5053 0 70.4596 1.93521 66.5 5.15522C62.5404 1.93521 57.4942 0 52.0035 0C46.5123 0 41.4665 1.93521 37.5069 5.15522C33.5473 1.93521 28.5011 0 23.0104 0C10.3225 0 0 10.3178 0 23C0 35.6827 10.3225 46 23.0104 46C28.5011 46 33.5473 44.0652 37.5069 40.8448C41.4665 44.0652 46.5123 46 52.0035 46C57.4942 46 62.5404 44.0652 66.5 40.8448C70.4596 44.0652 75.5053 46 80.9965 46C86.4877 46 91.5335 44.0652 95.4931 40.8448C99.4527 44.0652 104.498 46 109.99 46C122.678 46 133 35.6827 133 23C133 10.3178 122.678 0 109.99 0Z",
|
|
36
|
+
fill: "currentColor"
|
|
37
|
+
})
|
|
38
|
+
})]
|
|
39
|
+
}),
|
|
40
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("defs", { children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("clipPath", {
|
|
41
|
+
id: "clip0_2077_1052",
|
|
42
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("rect", {
|
|
43
|
+
width: 133,
|
|
44
|
+
height: 46,
|
|
45
|
+
fill: "white"
|
|
46
|
+
})
|
|
47
|
+
}) })
|
|
48
|
+
]
|
|
49
|
+
});
|
|
50
|
+
//#endregion
|
|
51
|
+
exports.default = SvgAudiWordmark;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/logos/svg/audi/audi_wordmark.svg-react
|
|
5
|
+
var SvgAudiWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
viewBox: "0 0 133 46",
|
|
7
|
+
fill: "none",
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [
|
|
12
|
+
title ? /* @__PURE__ */ jsx("title", {
|
|
13
|
+
id: titleId,
|
|
14
|
+
children: title
|
|
15
|
+
}) : null,
|
|
16
|
+
/* @__PURE__ */ jsxs("g", {
|
|
17
|
+
clipPath: "url(#clip0_2077_1052)",
|
|
18
|
+
children: [/* @__PURE__ */ jsx("mask", {
|
|
19
|
+
id: "mask0_2077_1052",
|
|
20
|
+
style: { maskType: "luminance" },
|
|
21
|
+
maskUnits: "userSpaceOnUse",
|
|
22
|
+
x: 0,
|
|
23
|
+
y: 0,
|
|
24
|
+
width: 133,
|
|
25
|
+
height: 47,
|
|
26
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
27
|
+
d: "M0 0.000183105H133V46.0002H0V0.000183105Z",
|
|
28
|
+
fill: "white"
|
|
29
|
+
})
|
|
30
|
+
}), /* @__PURE__ */ jsx("g", {
|
|
31
|
+
mask: "url(#mask0_2077_1052)",
|
|
32
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
33
|
+
d: "M109.99 40.8521C105.901 40.8521 102.132 39.4685 99.1177 37.1491C102.176 33.2442 104.007 28.3332 104.007 23C104.007 17.6672 102.176 12.7563 99.1177 8.85086C102.132 6.532 105.901 5.14786 109.99 5.14786C119.838 5.14786 127.85 13.1565 127.85 23C127.85 32.844 119.838 40.8521 109.99 40.8521ZM70.1241 37.1491C73.1831 33.2442 75.0138 28.3332 75.0138 23C75.0138 17.6672 73.1831 12.7563 70.1246 8.85086C73.138 6.532 76.9081 5.14786 80.9965 5.14786C85.0855 5.14786 88.8546 6.532 91.8685 8.85086C88.8099 12.7563 86.9792 17.6672 86.9792 23C86.9792 28.3332 88.8099 33.2442 91.8685 37.1491C88.8546 39.4685 85.0855 40.8521 80.9965 40.8521C76.9081 40.8521 73.138 39.4685 70.1241 37.1491ZM41.1311 37.1491C44.1901 33.2442 46.0208 28.3332 46.0208 23C46.0208 17.6672 44.1901 12.7563 41.1315 8.85086C44.145 6.532 47.915 5.14786 52.0035 5.14786C56.0919 5.14786 59.862 6.532 62.8754 8.85086C59.8169 12.7563 57.9862 17.6672 57.9862 23C57.9862 28.3332 59.8169 33.2442 62.8754 37.1491C59.862 39.4685 56.0919 40.8521 52.0035 40.8521C47.915 40.8521 44.145 39.4685 41.1311 37.1491ZM5.15018 23C5.15018 13.1565 13.1624 5.14786 23.0104 5.14786C27.0989 5.14786 30.8689 6.532 33.8823 8.85086C30.8238 12.7563 28.9931 17.6672 28.9931 23C28.9931 28.3332 30.8238 33.2442 33.8823 37.1491C30.8689 39.4685 27.0989 40.8521 23.0104 40.8521C13.1624 40.8521 5.15018 32.844 5.15018 23ZM37.5069 33.4084C35.3932 30.4759 34.1433 26.8824 34.1433 23C34.1433 19.1181 35.3932 15.5241 37.5069 12.5916C39.6207 15.5241 40.8706 19.1181 40.8706 23C40.8706 26.8824 39.6207 30.4759 37.5069 33.4084ZM66.5 33.4084C64.3863 30.4759 63.1363 26.8824 63.1363 23C63.1363 19.1181 64.3863 15.5241 66.5 12.5916C68.6137 15.5241 69.8637 19.1181 69.8637 23C69.8637 26.8824 68.6137 30.4759 66.5 33.4084ZM95.4931 33.4084C93.3793 30.4759 92.1294 26.8824 92.1294 23C92.1294 19.1181 93.3793 15.5241 95.4931 12.5916C97.6068 15.5241 98.8567 19.1181 98.8567 23C98.8567 26.8824 97.6068 30.4759 95.4931 33.4084ZM109.99 0C104.498 0 99.4527 1.93521 95.4931 5.15522C91.5335 1.93521 86.4877 0 80.9965 0C75.5053 0 70.4596 1.93521 66.5 5.15522C62.5404 1.93521 57.4942 0 52.0035 0C46.5123 0 41.4665 1.93521 37.5069 5.15522C33.5473 1.93521 28.5011 0 23.0104 0C10.3225 0 0 10.3178 0 23C0 35.6827 10.3225 46 23.0104 46C28.5011 46 33.5473 44.0652 37.5069 40.8448C41.4665 44.0652 46.5123 46 52.0035 46C57.4942 46 62.5404 44.0652 66.5 40.8448C70.4596 44.0652 75.5053 46 80.9965 46C86.4877 46 91.5335 44.0652 95.4931 40.8448C99.4527 44.0652 104.498 46 109.99 46C122.678 46 133 35.6827 133 23C133 10.3178 122.678 0 109.99 0Z",
|
|
34
|
+
fill: "currentColor"
|
|
35
|
+
})
|
|
36
|
+
})]
|
|
37
|
+
}),
|
|
38
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
|
|
39
|
+
id: "clip0_2077_1052",
|
|
40
|
+
children: /* @__PURE__ */ jsx("rect", {
|
|
41
|
+
width: 133,
|
|
42
|
+
height: 46,
|
|
43
|
+
fill: "white"
|
|
44
|
+
})
|
|
45
|
+
}) })
|
|
46
|
+
]
|
|
47
|
+
});
|
|
48
|
+
//#endregion
|
|
49
|
+
export { SvgAudiWordmark as default };
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"use strict";
|
|
3
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
3
|
+
const require_audi_symbol = require("./audi_symbol.svg-react.cjs");
|
|
4
|
+
const require_audi_wordmark = require("./audi_wordmark.svg-react.cjs");
|
|
5
|
+
//#region src/foundation/logos/svg/audi/index.ts
|
|
6
|
+
var audi = {
|
|
7
|
+
key: "audi",
|
|
8
|
+
symbol: require_audi_symbol.default,
|
|
9
|
+
wordmark: require_audi_wordmark.default
|
|
10
10
|
};
|
|
11
|
+
//#endregion
|
|
11
12
|
exports.audi = audi;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import SvgAudiSymbol from "./audi_symbol.svg.js";
|
|
3
|
-
import SvgAudiWordmark from "./audi_wordmark.svg.js";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export {
|
|
10
|
-
audi
|
|
2
|
+
import SvgAudiSymbol from "./audi_symbol.svg-react.js";
|
|
3
|
+
import SvgAudiWordmark from "./audi_wordmark.svg-react.js";
|
|
4
|
+
//#region src/foundation/logos/svg/audi/index.ts
|
|
5
|
+
var audi = {
|
|
6
|
+
key: "audi",
|
|
7
|
+
symbol: SvgAudiSymbol,
|
|
8
|
+
wordmark: SvgAudiWordmark
|
|
11
9
|
};
|
|
10
|
+
//#endregion
|
|
11
|
+
export { audi };
|
|
@@ -0,0 +1,22 @@
|
|
|
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/autoria/autoria_symbol.svg-react
|
|
7
|
+
var SvgAutoriaSymbol = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
viewBox: "0 0 24 25",
|
|
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
|
+
d: "M15.7675 5.7404C15.5312 4.88607 15.047 4.17555 14.3671 3.68545C13.7466 3.23792 13.0045 3.00116 12.2215 3.00001C11.5676 2.99863 10.9305 3.1666 10.3794 3.48435C9.70455 3.8739 9.1712 4.4673 8.79431 5.24915L4.50586 14.1459C3.75208 15.7096 3.84527 17.5275 4.75482 19.0091C5.65517 20.4755 7.21565 21.3717 8.92891 21.4064C8.96527 21.4071 9.00139 21.4076 9.03775 21.4076C10.1723 21.4076 11.1235 21.1257 11.9454 20.5459C12.6302 20.0629 13.1094 19.4499 13.5326 18.9092C13.9599 18.363 14.3289 17.8913 14.8673 17.554C15.12 17.3955 15.409 17.2703 15.7373 17.1778L16.8077 21.0486H20L15.7675 5.7404ZM13.2335 14.9464C12.2379 15.5704 11.612 16.3702 11.1093 17.0133C10.3435 17.9921 10.0283 18.3306 9.03798 18.3306C9.02233 18.3306 9.00668 18.3303 8.99127 18.3301C8.32032 18.3165 7.73198 17.9769 7.37695 17.3989C7.01248 16.8055 6.97636 16.1069 7.27732 15.4818L11.5658 6.5853C11.7809 6.13892 12.005 6.07679 12.2153 6.07679H12.2169C12.5165 6.07725 12.7132 6.24016 12.8018 6.56022L14.917 14.2115C14.3004 14.3836 13.7417 14.6279 13.2335 14.9464Z",
|
|
18
|
+
fill: "#2F2F2F"
|
|
19
|
+
})]
|
|
20
|
+
});
|
|
21
|
+
//#endregion
|
|
22
|
+
exports.default = SvgAutoriaSymbol;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/logos/svg/autoria/autoria_symbol.svg-react
|
|
5
|
+
var SvgAutoriaSymbol = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
viewBox: "0 0 24 25",
|
|
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
|
+
d: "M15.7675 5.7404C15.5312 4.88607 15.047 4.17555 14.3671 3.68545C13.7466 3.23792 13.0045 3.00116 12.2215 3.00001C11.5676 2.99863 10.9305 3.1666 10.3794 3.48435C9.70455 3.8739 9.1712 4.4673 8.79431 5.24915L4.50586 14.1459C3.75208 15.7096 3.84527 17.5275 4.75482 19.0091C5.65517 20.4755 7.21565 21.3717 8.92891 21.4064C8.96527 21.4071 9.00139 21.4076 9.03775 21.4076C10.1723 21.4076 11.1235 21.1257 11.9454 20.5459C12.6302 20.0629 13.1094 19.4499 13.5326 18.9092C13.9599 18.363 14.3289 17.8913 14.8673 17.554C15.12 17.3955 15.409 17.2703 15.7373 17.1778L16.8077 21.0486H20L15.7675 5.7404ZM13.2335 14.9464C12.2379 15.5704 11.612 16.3702 11.1093 17.0133C10.3435 17.9921 10.0283 18.3306 9.03798 18.3306C9.02233 18.3306 9.00668 18.3303 8.99127 18.3301C8.32032 18.3165 7.73198 17.9769 7.37695 17.3989C7.01248 16.8055 6.97636 16.1069 7.27732 15.4818L11.5658 6.5853C11.7809 6.13892 12.005 6.07679 12.2153 6.07679H12.2169C12.5165 6.07725 12.7132 6.24016 12.8018 6.56022L14.917 14.2115C14.3004 14.3836 13.7417 14.6279 13.2335 14.9464Z",
|
|
16
|
+
fill: "#2F2F2F"
|
|
17
|
+
})]
|
|
18
|
+
});
|
|
19
|
+
//#endregion
|
|
20
|
+
export { SvgAutoriaSymbol as default };
|
|
@@ -0,0 +1,22 @@
|
|
|
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/autoria/autoria_wordmark.svg-react
|
|
7
|
+
var SvgAutoriaWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
viewBox: "0 0 100 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
|
+
d: "M33.8148 8.01895V15.5035C33.8148 18.0767 32.5577 19.5382 30.1894 19.5382C28.0842 19.5382 26.9149 18.3395 26.9149 16.3224V8.01895H23.2308V16.6731C23.2308 20.4447 25.6573 22.7545 28.8736 22.7545C31.5343 22.7545 32.8792 21.5262 33.4636 20.1816H33.8732V22.5205H37.4986V8.01895H33.8148ZM49.7828 11.1178V8.01895H45.8065V3.51671H42.1224V8.01922H38.4386V11.1181H42.1224V19.7138C42.1224 21.3514 43.3504 22.5208 44.9875 22.5208H48.9641V19.4216H46.6249C46.0987 19.4216 45.8065 19.1294 45.8065 18.5445V11.1181H49.7828V11.1178ZM57.3724 7.60933C53.1039 7.60933 49.771 10.7085 49.771 15.2697C49.771 19.8307 53.1042 22.9298 57.3724 22.9298C61.6411 22.9298 64.9741 19.8307 64.9741 15.2697C64.9741 10.7085 61.6409 7.60933 57.3724 7.60933ZM57.3724 19.6554C55.0335 19.6554 53.4543 17.9011 53.4543 15.2697C53.4543 12.6383 55.0332 10.8838 57.3724 10.8838C59.7116 10.8838 61.2902 12.6383 61.2902 15.2697C61.29 17.9011 59.7116 19.6554 57.3724 19.6554ZM73.609 7.96078C71.7672 7.96078 70.5392 8.51582 69.9836 10.1241H69.5742V8.01895H65.9489V22.5205H69.6327V14.217C69.6327 12.1706 70.9779 11.1766 72.8487 11.1766H75.0126V7.96078H73.609ZM75.9879 8.01895V22.5205H79.6715V8.01895H75.9879ZM92.3746 8.01895V10.0654H91.9647C91.2047 8.83764 89.9185 7.60933 87.3456 7.60933C83.7199 7.60933 80.6795 10.8256 80.6795 15.2697C80.6795 19.7135 83.7199 22.9298 87.3456 22.9298C89.9185 22.9298 91.205 21.7013 91.9647 20.4738H92.3746V22.5202H96V8.01867H92.3746V8.01895ZM88.3396 19.6554C86.1176 19.6554 84.3633 18.0767 84.3633 15.2697C84.3633 12.4627 86.1173 10.8838 88.3396 10.8838C90.6204 10.8838 92.3162 12.5215 92.3162 15.2697C92.3159 18.0183 90.6204 19.6554 88.3396 19.6554ZM79.6715 5.65068H75.9879V1.96685H79.6715V5.65068ZM18.0314 4.26763C17.7497 3.24893 17.1724 2.40171 16.3617 1.81733C15.6217 1.2837 14.7369 1.00138 13.8033 1.00001C13.0236 0.998364 12.2639 1.19865 11.6068 1.57754C10.8021 2.04203 10.1661 2.7496 9.7167 3.68187L4.60319 14.2903C3.70439 16.1548 3.8155 18.3225 4.90005 20.0891C5.97361 21.8376 7.83432 22.9062 9.8772 22.9477C9.92055 22.9485 9.96362 22.949 10.007 22.949C11.3598 22.949 12.494 22.613 13.4741 21.9216C14.2905 21.3457 14.862 20.6148 15.3666 19.97C15.8761 19.3187 16.3161 18.7563 16.9581 18.3541C17.2594 18.165 17.604 18.0158 17.9955 17.9055L19.2718 22.521H23.0783L18.0314 4.26763ZM15.0099 15.2445C13.8228 15.9885 13.0765 16.9422 12.477 17.7091C11.564 18.8762 11.1881 19.2798 10.0072 19.2798C9.98859 19.2798 9.96993 19.2795 9.95155 19.2792C9.15152 19.263 8.44998 18.8581 8.02665 18.1689C7.59206 17.4613 7.54899 16.6283 7.90785 15.8829L13.0214 5.27453C13.2779 4.74227 13.5451 4.6682 13.7959 4.6682H13.7978C14.155 4.66875 14.3896 4.86299 14.4952 5.24463L17.0174 14.3679C16.2821 14.5734 15.616 14.8648 15.0099 15.2445Z",
|
|
18
|
+
fill: "#2F2F2F"
|
|
19
|
+
})]
|
|
20
|
+
});
|
|
21
|
+
//#endregion
|
|
22
|
+
exports.default = SvgAutoriaWordmark;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/logos/svg/autoria/autoria_wordmark.svg-react
|
|
5
|
+
var SvgAutoriaWordmark = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
viewBox: "0 0 100 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
|
+
d: "M33.8148 8.01895V15.5035C33.8148 18.0767 32.5577 19.5382 30.1894 19.5382C28.0842 19.5382 26.9149 18.3395 26.9149 16.3224V8.01895H23.2308V16.6731C23.2308 20.4447 25.6573 22.7545 28.8736 22.7545C31.5343 22.7545 32.8792 21.5262 33.4636 20.1816H33.8732V22.5205H37.4986V8.01895H33.8148ZM49.7828 11.1178V8.01895H45.8065V3.51671H42.1224V8.01922H38.4386V11.1181H42.1224V19.7138C42.1224 21.3514 43.3504 22.5208 44.9875 22.5208H48.9641V19.4216H46.6249C46.0987 19.4216 45.8065 19.1294 45.8065 18.5445V11.1181H49.7828V11.1178ZM57.3724 7.60933C53.1039 7.60933 49.771 10.7085 49.771 15.2697C49.771 19.8307 53.1042 22.9298 57.3724 22.9298C61.6411 22.9298 64.9741 19.8307 64.9741 15.2697C64.9741 10.7085 61.6409 7.60933 57.3724 7.60933ZM57.3724 19.6554C55.0335 19.6554 53.4543 17.9011 53.4543 15.2697C53.4543 12.6383 55.0332 10.8838 57.3724 10.8838C59.7116 10.8838 61.2902 12.6383 61.2902 15.2697C61.29 17.9011 59.7116 19.6554 57.3724 19.6554ZM73.609 7.96078C71.7672 7.96078 70.5392 8.51582 69.9836 10.1241H69.5742V8.01895H65.9489V22.5205H69.6327V14.217C69.6327 12.1706 70.9779 11.1766 72.8487 11.1766H75.0126V7.96078H73.609ZM75.9879 8.01895V22.5205H79.6715V8.01895H75.9879ZM92.3746 8.01895V10.0654H91.9647C91.2047 8.83764 89.9185 7.60933 87.3456 7.60933C83.7199 7.60933 80.6795 10.8256 80.6795 15.2697C80.6795 19.7135 83.7199 22.9298 87.3456 22.9298C89.9185 22.9298 91.205 21.7013 91.9647 20.4738H92.3746V22.5202H96V8.01867H92.3746V8.01895ZM88.3396 19.6554C86.1176 19.6554 84.3633 18.0767 84.3633 15.2697C84.3633 12.4627 86.1173 10.8838 88.3396 10.8838C90.6204 10.8838 92.3162 12.5215 92.3162 15.2697C92.3159 18.0183 90.6204 19.6554 88.3396 19.6554ZM79.6715 5.65068H75.9879V1.96685H79.6715V5.65068ZM18.0314 4.26763C17.7497 3.24893 17.1724 2.40171 16.3617 1.81733C15.6217 1.2837 14.7369 1.00138 13.8033 1.00001C13.0236 0.998364 12.2639 1.19865 11.6068 1.57754C10.8021 2.04203 10.1661 2.7496 9.7167 3.68187L4.60319 14.2903C3.70439 16.1548 3.8155 18.3225 4.90005 20.0891C5.97361 21.8376 7.83432 22.9062 9.8772 22.9477C9.92055 22.9485 9.96362 22.949 10.007 22.949C11.3598 22.949 12.494 22.613 13.4741 21.9216C14.2905 21.3457 14.862 20.6148 15.3666 19.97C15.8761 19.3187 16.3161 18.7563 16.9581 18.3541C17.2594 18.165 17.604 18.0158 17.9955 17.9055L19.2718 22.521H23.0783L18.0314 4.26763ZM15.0099 15.2445C13.8228 15.9885 13.0765 16.9422 12.477 17.7091C11.564 18.8762 11.1881 19.2798 10.0072 19.2798C9.98859 19.2798 9.96993 19.2795 9.95155 19.2792C9.15152 19.263 8.44998 18.8581 8.02665 18.1689C7.59206 17.4613 7.54899 16.6283 7.90785 15.8829L13.0214 5.27453C13.2779 4.74227 13.5451 4.6682 13.7959 4.6682H13.7978C14.155 4.66875 14.3896 4.86299 14.4952 5.24463L17.0174 14.3679C16.2821 14.5734 15.616 14.8648 15.0099 15.2445Z",
|
|
16
|
+
fill: "#2F2F2F"
|
|
17
|
+
})]
|
|
18
|
+
});
|
|
19
|
+
//#endregion
|
|
20
|
+
export { SvgAutoriaWordmark as default };
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"use strict";
|
|
3
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
3
|
+
const require_autoria_symbol = require("./autoria_symbol.svg-react.cjs");
|
|
4
|
+
const require_autoria_wordmark = require("./autoria_wordmark.svg-react.cjs");
|
|
5
|
+
//#region src/foundation/logos/svg/autoria/index.ts
|
|
6
|
+
var autoria = {
|
|
7
|
+
key: "autoria",
|
|
8
|
+
symbol: require_autoria_symbol.default,
|
|
9
|
+
wordmark: require_autoria_wordmark.default
|
|
10
10
|
};
|
|
11
|
+
//#endregion
|
|
11
12
|
exports.autoria = autoria;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import SvgAutoriaSymbol from "./autoria_symbol.svg.js";
|
|
3
|
-
import SvgAutoriaWordmark from "./autoria_wordmark.svg.js";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export {
|
|
10
|
-
autoria
|
|
2
|
+
import SvgAutoriaSymbol from "./autoria_symbol.svg-react.js";
|
|
3
|
+
import SvgAutoriaWordmark from "./autoria_wordmark.svg-react.js";
|
|
4
|
+
//#region src/foundation/logos/svg/autoria/index.ts
|
|
5
|
+
var autoria = {
|
|
6
|
+
key: "autoria",
|
|
7
|
+
symbol: SvgAutoriaSymbol,
|
|
8
|
+
wordmark: SvgAutoriaWordmark
|
|
11
9
|
};
|
|
10
|
+
//#endregion
|
|
11
|
+
export { autoria };
|