@gnist/design-system 6.0.0-alpha.3 → 6.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -14
- package/README.md +11 -8
- package/dist/_virtual/_rolldown/runtime.cjs +34 -0
- package/dist/_virtual/_rolldown/runtime.js +14 -0
- package/dist/building-blocks/index.cjs +11 -10
- package/dist/building-blocks/index.js +3 -7
- package/dist/building-blocks/inputs/InputHelperText.cjs +49 -27
- package/dist/building-blocks/inputs/InputHelperText.js +47 -27
- package/dist/building-blocks/inputs/index.cjs +3 -4
- package/dist/building-blocks/inputs/index.js +1 -4
- package/dist/building-blocks/inputs/internal/TextBelowInput.cjs +5 -5
- package/dist/building-blocks/inputs/internal/TextBelowInput.js +5 -5
- package/dist/building-blocks/inputs/internal/ValidationText.cjs +25 -15
- package/dist/building-blocks/inputs/internal/ValidationText.js +23 -14
- package/dist/building-blocks/inputs/internal/textBelowInput.css.cjs +35 -35
- package/dist/building-blocks/inputs/internal/textBelowInput.css.js +35 -35
- package/dist/building-blocks/skeletons/CircularSkeleton.cjs +35 -18
- package/dist/building-blocks/skeletons/CircularSkeleton.js +31 -14
- package/dist/building-blocks/skeletons/RectangularSkeleton.cjs +30 -9
- package/dist/building-blocks/skeletons/RectangularSkeleton.js +26 -5
- package/dist/building-blocks/skeletons/TextSkeleton.cjs +39 -14
- package/dist/building-blocks/skeletons/TextSkeleton.js +35 -10
- package/dist/building-blocks/skeletons/index.cjs +6 -7
- package/dist/building-blocks/skeletons/index.js +1 -5
- package/dist/components/actions/buttons/ButtonBase.cjs +42 -54
- package/dist/components/actions/buttons/ButtonBase.js +36 -31
- package/dist/components/actions/buttons/DangerButton.cjs +12 -6
- package/dist/components/actions/buttons/DangerButton.js +10 -5
- package/dist/components/actions/buttons/GhostButton.cjs +14 -6
- package/dist/components/actions/buttons/GhostButton.js +12 -5
- package/dist/components/actions/buttons/IconButton.cjs +45 -23
- package/dist/components/actions/buttons/IconButton.js +42 -20
- package/dist/components/actions/buttons/PrimaryButton.cjs +14 -6
- package/dist/components/actions/buttons/PrimaryButton.js +12 -5
- package/dist/components/actions/buttons/SecondaryButton.cjs +12 -6
- package/dist/components/actions/buttons/SecondaryButton.js +10 -5
- package/dist/components/actions/buttons/SuccessButton.cjs +14 -6
- package/dist/components/actions/buttons/SuccessButton.js +12 -5
- package/dist/components/actions/buttons/TextButton.cjs +33 -24
- package/dist/components/actions/buttons/TextButton.js +29 -20
- package/dist/components/actions/buttons/createButtonVariant.cjs +24 -24
- package/dist/components/actions/buttons/createButtonVariant.js +21 -21
- package/dist/components/actions/buttons/index.cjs +14 -15
- package/dist/components/actions/buttons/index.js +1 -9
- package/dist/components/actions/buttons/styles.css.cjs +125 -143
- package/dist/components/actions/buttons/styles.css.d.ts.map +1 -1
- package/dist/components/actions/buttons/styles.css.js +120 -143
- package/dist/components/actions/chips/ActionChip.cjs +51 -29
- package/dist/components/actions/chips/ActionChip.js +45 -23
- package/dist/components/actions/chips/FilterChip.cjs +46 -29
- package/dist/components/actions/chips/FilterChip.js +40 -23
- package/dist/components/actions/chips/TagChip.cjs +46 -23
- package/dist/components/actions/chips/TagChip.js +40 -17
- package/dist/components/actions/chips/index.cjs +6 -7
- package/dist/components/actions/chips/index.js +1 -5
- package/dist/components/actions/chips/styles.css.cjs +61 -69
- package/dist/components/actions/chips/styles.css.d.ts.map +1 -1
- package/dist/components/actions/chips/styles.css.js +58 -68
- package/dist/components/actions/index.cjs +31 -29
- package/dist/components/actions/index.js +5 -17
- package/dist/components/actions/selectionControls/Checkbox.cjs +91 -52
- package/dist/components/actions/selectionControls/Checkbox.js +87 -49
- package/dist/components/actions/selectionControls/RadioButton.cjs +94 -74
- package/dist/components/actions/selectionControls/RadioButton.js +88 -68
- package/dist/components/actions/selectionControls/RadioGroup.cjs +54 -27
- package/dist/components/actions/selectionControls/RadioGroup.js +51 -25
- package/dist/components/actions/selectionControls/Switch.cjs +101 -41
- package/dist/components/actions/selectionControls/Switch.js +96 -37
- package/dist/components/actions/selectionControls/checkbox.css.cjs +70 -114
- package/dist/components/actions/selectionControls/checkbox.css.js +68 -114
- package/dist/components/actions/selectionControls/index.cjs +8 -9
- package/dist/components/actions/selectionControls/index.js +2 -7
- package/dist/components/actions/selectionControls/radiobutton.css.cjs +75 -107
- package/dist/components/actions/selectionControls/radiobutton.css.js +73 -107
- package/dist/components/actions/selectionControls/radiogroup.css.cjs +24 -40
- package/dist/components/actions/selectionControls/radiogroup.css.d.ts.map +1 -1
- package/dist/components/actions/selectionControls/radiogroup.css.js +24 -42
- package/dist/components/actions/selectionControls/shared.cjs +27 -21
- package/dist/components/actions/selectionControls/shared.css.cjs +45 -71
- package/dist/components/actions/selectionControls/shared.css.d.ts.map +1 -1
- package/dist/components/actions/selectionControls/shared.css.js +41 -72
- package/dist/components/actions/selectionControls/shared.js +24 -20
- package/dist/components/actions/selectionControls/switch.css.cjs +142 -214
- package/dist/components/actions/selectionControls/switch.css.d.ts.map +1 -1
- package/dist/components/actions/selectionControls/switch.css.js +137 -221
- package/dist/components/feedback/alerts/AlertBanner.cjs +64 -28
- package/dist/components/feedback/alerts/AlertBanner.css.cjs +47 -60
- package/dist/components/feedback/alerts/AlertBanner.css.d.ts.map +1 -1
- package/dist/components/feedback/alerts/AlertBanner.css.js +46 -66
- package/dist/components/feedback/alerts/AlertBanner.js +59 -23
- package/dist/components/feedback/alerts/index.cjs +2 -3
- package/dist/components/feedback/alerts/index.js +1 -3
- package/dist/components/feedback/index.cjs +16 -13
- package/dist/components/feedback/index.js +5 -9
- package/dist/components/feedback/loaders/LoadingBar.cjs +34 -17
- package/dist/components/feedback/loaders/LoadingBar.js +32 -17
- package/dist/components/feedback/loaders/LoadingSpinner.cjs +32 -26
- package/dist/components/feedback/loaders/LoadingSpinner.js +31 -25
- package/dist/components/feedback/loaders/index.cjs +5 -6
- package/dist/components/feedback/loaders/index.js +1 -5
- package/dist/components/feedback/loaders/loadingBar.css.cjs +19 -33
- package/dist/components/feedback/loaders/loadingBar.css.d.ts.map +1 -1
- package/dist/components/feedback/loaders/loadingBar.css.js +17 -33
- package/dist/components/feedback/loaders/loadingSpinner.css.cjs +18 -21
- package/dist/components/feedback/loaders/loadingSpinner.css.d.ts.map +1 -1
- package/dist/components/feedback/loaders/loadingSpinner.css.js +16 -20
- package/dist/components/feedback/notifications/Lozenge.cjs +9 -5
- package/dist/components/feedback/notifications/Lozenge.js +9 -5
- package/dist/components/feedback/notifications/index.cjs +2 -3
- package/dist/components/feedback/notifications/index.js +1 -3
- package/dist/components/feedback/notifications/lozenge.css.cjs +58 -64
- package/dist/components/feedback/notifications/lozenge.css.js +54 -61
- package/dist/components/feedback/progress/ProgressBar.cjs +30 -22
- package/dist/components/feedback/progress/ProgressBar.css.cjs +20 -22
- package/dist/components/feedback/progress/ProgressBar.css.d.ts.map +1 -1
- package/dist/components/feedback/progress/ProgressBar.css.js +19 -26
- package/dist/components/feedback/progress/ProgressBar.js +27 -21
- package/dist/components/feedback/progress/index.cjs +3 -4
- package/dist/components/feedback/progress/index.js +1 -4
- package/dist/components/index.cjs +73 -69
- package/dist/components/index.js +9 -41
- package/dist/components/inputs/dropdowns/MultiSelect.cjs +9 -4
- package/dist/components/inputs/dropdowns/MultiSelect.js +9 -4
- package/dist/components/inputs/dropdowns/SelectBase.cjs +126 -99
- package/dist/components/inputs/dropdowns/SelectBase.js +122 -78
- package/dist/components/inputs/dropdowns/SingleSelect.cjs +11 -4
- package/dist/components/inputs/dropdowns/SingleSelect.js +11 -4
- package/dist/components/inputs/dropdowns/index.cjs +4 -5
- package/dist/components/inputs/dropdowns/index.js +1 -4
- package/dist/components/inputs/dropdowns/select.css.cjs +71 -92
- package/dist/components/inputs/dropdowns/select.css.js +69 -96
- package/dist/components/inputs/index.cjs +15 -13
- package/dist/components/inputs/index.js +4 -9
- package/dist/components/inputs/pickers/Calendar.css.cjs +100 -138
- package/dist/components/inputs/pickers/Calendar.css.d.ts.map +1 -1
- package/dist/components/inputs/pickers/Calendar.css.js +96 -144
- package/dist/components/inputs/pickers/calendar.cjs +278 -201
- package/dist/components/inputs/pickers/calendar.js +272 -196
- package/dist/components/inputs/pickers/index.cjs +2 -3
- package/dist/components/inputs/pickers/index.js +1 -3
- package/dist/components/inputs/shared-styles/iconButtonOverlay.css.cjs +32 -38
- package/dist/components/inputs/shared-styles/iconButtonOverlay.css.js +30 -37
- package/dist/components/inputs/shared-styles/inputField.css.cjs +100 -140
- package/dist/components/inputs/shared-styles/inputField.css.d.ts.map +1 -1
- package/dist/components/inputs/shared-styles/inputField.css.js +97 -141
- package/dist/components/inputs/shared-styles/inputFieldConstants.css.cjs +8 -7
- package/dist/components/inputs/shared-styles/inputFieldConstants.css.js +7 -10
- package/dist/components/inputs/shared-styles/labelStyles.css.cjs +152 -176
- package/dist/components/inputs/shared-styles/labelStyles.css.js +149 -174
- package/dist/components/inputs/shared-styles/suffixPrefix.css.cjs +13 -10
- package/dist/components/inputs/shared-styles/suffixPrefix.css.js +12 -11
- package/dist/components/inputs/shared.cjs +92 -93
- package/dist/components/inputs/shared.js +87 -92
- package/dist/components/inputs/textFields/TextArea.cjs +131 -62
- package/dist/components/inputs/textFields/TextArea.js +125 -58
- package/dist/components/inputs/textFields/TextField.cjs +140 -74
- package/dist/components/inputs/textFields/TextField.js +134 -68
- package/dist/components/inputs/textFields/index.cjs +6 -7
- package/dist/components/inputs/textFields/index.js +1 -6
- package/dist/components/inputs/textFields/textArea.css.cjs +17 -21
- package/dist/components/inputs/textFields/textArea.css.js +17 -21
- package/dist/components/progress/Spinner.cjs +19 -14
- package/dist/components/progress/Spinner.js +16 -12
- package/dist/components/progress/index.cjs +2 -3
- package/dist/components/progress/index.js +1 -3
- package/dist/components/progress/spinner.css.cjs +21 -24
- package/dist/components/progress/spinner.css.d.ts.map +1 -1
- package/dist/components/progress/spinner.css.js +20 -24
- package/dist/components/surfaces/accordion/Accordion.cjs +41 -17
- package/dist/components/surfaces/accordion/Accordion.js +38 -15
- package/dist/components/surfaces/accordion/accordion.css.cjs +45 -72
- package/dist/components/surfaces/accordion/accordion.css.js +41 -73
- package/dist/components/surfaces/accordion/index.cjs +2 -3
- package/dist/components/surfaces/accordion/index.js +1 -3
- package/dist/components/surfaces/cards/ActionCard.cjs +29 -19
- package/dist/components/surfaces/cards/ActionCard.js +26 -16
- package/dist/components/surfaces/cards/CheckboxCard.cjs +44 -14
- package/dist/components/surfaces/cards/CheckboxCard.js +39 -9
- package/dist/components/surfaces/cards/InfoCard.cjs +27 -14
- package/dist/components/surfaces/cards/InfoCard.js +24 -11
- package/dist/components/surfaces/cards/LinkCard.cjs +29 -19
- package/dist/components/surfaces/cards/LinkCard.js +26 -16
- package/dist/components/surfaces/cards/RadioCard.cjs +45 -14
- package/dist/components/surfaces/cards/RadioCard.js +40 -9
- package/dist/components/surfaces/cards/SharedComponents.cjs +19 -21
- package/dist/components/surfaces/cards/SharedComponents.js +17 -20
- package/dist/components/surfaces/cards/cards.css.cjs +83 -80
- package/dist/components/surfaces/cards/cards.css.d.ts.map +1 -1
- package/dist/components/surfaces/cards/cards.css.js +78 -76
- package/dist/components/surfaces/cards/checkboxCard.css.cjs +21 -31
- package/dist/components/surfaces/cards/checkboxCard.css.js +19 -30
- package/dist/components/surfaces/cards/index.cjs +10 -11
- package/dist/components/surfaces/cards/index.js +2 -8
- package/dist/components/surfaces/cards/internal/SelectionCard.cjs +36 -31
- package/dist/components/surfaces/cards/internal/SelectionCard.css.cjs +28 -39
- package/dist/components/surfaces/cards/internal/SelectionCard.css.js +27 -40
- package/dist/components/surfaces/cards/internal/SelectionCard.js +34 -31
- package/dist/components/surfaces/index.cjs +17 -15
- package/dist/components/surfaces/index.js +5 -10
- package/dist/components/surfaces/modal/Modal.cjs +128 -101
- package/dist/components/surfaces/modal/Modal.js +121 -94
- package/dist/components/surfaces/modal/index.cjs +2 -3
- package/dist/components/surfaces/modal/index.js +1 -3
- package/dist/components/surfaces/modal/modal.css.cjs +210 -253
- package/dist/components/surfaces/modal/modal.css.js +206 -256
- package/dist/fonts/VW/VWHeadWeb-Bold.woff2.cjs +4 -4
- package/dist/fonts/VW/VWHeadWeb-Bold.woff2.js +4 -4
- package/dist/fonts/VW/VWHeadWeb-ExtraBold.woff2.cjs +4 -4
- package/dist/fonts/VW/VWHeadWeb-ExtraBold.woff2.js +4 -4
- package/dist/fonts/VW/VWHeadWeb-Regular.woff2.cjs +4 -4
- package/dist/fonts/VW/VWHeadWeb-Regular.woff2.js +4 -4
- package/dist/fonts/VW/VWTextWeb-Bold.woff2.cjs +4 -4
- package/dist/fonts/VW/VWTextWeb-Bold.woff2.js +4 -4
- package/dist/fonts/VW/VWTextWeb-Regular.woff2.cjs +4 -4
- package/dist/fonts/VW/VWTextWeb-Regular.woff2.js +4 -4
- package/dist/fonts/VW/head-bold.css.cjs +10 -8
- package/dist/fonts/VW/head-bold.css.js +7 -5
- package/dist/fonts/VW/head-extra-bold.css.cjs +10 -9
- package/dist/fonts/VW/head-extra-bold.css.js +7 -6
- package/dist/fonts/VW/head-regular.css.cjs +10 -8
- package/dist/fonts/VW/head-regular.css.js +7 -5
- package/dist/fonts/VW/index.cjs +13 -3
- package/dist/fonts/VW/index.js +13 -5
- package/dist/fonts/VW/text-bold.css.cjs +10 -8
- package/dist/fonts/VW/text-bold.css.js +7 -5
- package/dist/fonts/VW/text-regular.css.cjs +10 -8
- package/dist/fonts/VW/text-regular.css.js +7 -5
- package/dist/fonts/audi/AudiType-Bold_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-Bold_4.03.woff2.js +4 -4
- package/dist/fonts/audi/AudiType-ExtendedBold_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-ExtendedBold_4.03.woff2.js +4 -4
- package/dist/fonts/audi/AudiType-ExtendedNormal_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-ExtendedNormal_4.03.woff2.js +4 -4
- package/dist/fonts/audi/AudiType-Normal_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-Normal_4.03.woff2.js +4 -4
- package/dist/fonts/audi/bold.css.cjs +10 -8
- package/dist/fonts/audi/bold.css.js +7 -5
- package/dist/fonts/audi/extended-bold.css.cjs +10 -8
- package/dist/fonts/audi/extended-bold.css.js +7 -5
- package/dist/fonts/audi/extended-regular.css.cjs +10 -8
- package/dist/fonts/audi/extended-regular.css.js +7 -5
- package/dist/fonts/audi/index.cjs +13 -3
- package/dist/fonts/audi/index.js +13 -5
- package/dist/fonts/audi/regular.css.cjs +10 -8
- package/dist/fonts/audi/regular.css.js +7 -5
- package/dist/fonts/autoria/Texgyreheros-Bold.woff2.cjs +4 -4
- package/dist/fonts/autoria/Texgyreheros-Bold.woff2.js +4 -4
- package/dist/fonts/autoria/Texgyreheros-Regular.woff2.cjs +4 -4
- package/dist/fonts/autoria/Texgyreheros-Regular.woff2.js +4 -4
- package/dist/fonts/autoria/bold.css.cjs +10 -8
- package/dist/fonts/autoria/bold.css.js +7 -5
- package/dist/fonts/autoria/index.cjs +13 -3
- package/dist/fonts/autoria/index.js +13 -5
- package/dist/fonts/autoria/regular.css.cjs +10 -8
- package/dist/fonts/autoria/regular.css.js +7 -5
- package/dist/fonts/bilhold/GeistVariableVF.woff2.cjs +5 -0
- package/dist/fonts/bilhold/GeistVariableVF.woff2.js +5 -0
- package/dist/fonts/bilhold/index.cjs +13 -4
- package/dist/fonts/bilhold/index.d.ts +0 -1
- package/dist/fonts/bilhold/index.d.ts.map +1 -1
- package/dist/fonts/bilhold/index.js +13 -6
- package/dist/fonts/bilhold/regular.css.cjs +11 -8
- package/dist/fonts/bilhold/regular.css.js +8 -5
- package/dist/fonts/cupra/Cupra-Bold.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Bold.woff2.js +4 -4
- package/dist/fonts/cupra/Cupra-Book.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Book.woff2.js +4 -4
- package/dist/fonts/cupra/Cupra-Medium.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Medium.woff2.js +4 -4
- package/dist/fonts/cupra/Cupra-Regular.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Regular.woff2.js +4 -4
- package/dist/fonts/cupra/bold.css.cjs +10 -8
- package/dist/fonts/cupra/bold.css.js +7 -5
- package/dist/fonts/cupra/book.css.cjs +10 -8
- package/dist/fonts/cupra/book.css.js +7 -5
- package/dist/fonts/cupra/index.cjs +13 -3
- package/dist/fonts/cupra/index.js +13 -5
- package/dist/fonts/cupra/medium.css.cjs +10 -8
- package/dist/fonts/cupra/medium.css.js +7 -5
- package/dist/fonts/cupra/regular.css.cjs +10 -8
- package/dist/fonts/cupra/regular.css.js +7 -5
- package/dist/fonts/dahles/SourceSans3-Bold.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-Bold.woff2.js +4 -4
- package/dist/fonts/dahles/SourceSans3-Medium.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-Medium.woff2.js +4 -4
- package/dist/fonts/dahles/SourceSans3-Regular.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-Regular.woff2.js +4 -4
- package/dist/fonts/dahles/SourceSans3-SemiBold.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-SemiBold.woff2.js +4 -4
- package/dist/fonts/dahles/bold.css.cjs +10 -8
- package/dist/fonts/dahles/bold.css.js +7 -5
- package/dist/fonts/dahles/index.cjs +13 -3
- package/dist/fonts/dahles/index.js +13 -5
- package/dist/fonts/dahles/medium.css.cjs +10 -8
- package/dist/fonts/dahles/medium.css.js +7 -5
- package/dist/fonts/dahles/regular.css.cjs +10 -8
- package/dist/fonts/dahles/regular.css.js +7 -5
- package/dist/fonts/dahles/semibold.css.cjs +10 -8
- package/dist/fonts/dahles/semibold.css.js +7 -5
- package/dist/fonts/gumpen/ES-Build-Bold.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-Bold.woff2.js +4 -4
- package/dist/fonts/gumpen/ES-Build-Medium.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-Medium.woff2.js +4 -4
- package/dist/fonts/gumpen/ES-Build-Regular.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-Regular.woff2.js +4 -4
- package/dist/fonts/gumpen/ES-Build-SemiBold.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-SemiBold.woff2.js +4 -4
- package/dist/fonts/gumpen/bold.css.cjs +10 -8
- package/dist/fonts/gumpen/bold.css.js +7 -5
- package/dist/fonts/gumpen/index.cjs +13 -3
- package/dist/fonts/gumpen/index.js +13 -5
- package/dist/fonts/gumpen/medium.css.cjs +10 -8
- package/dist/fonts/gumpen/medium.css.js +7 -5
- package/dist/fonts/gumpen/regular.css.cjs +10 -8
- package/dist/fonts/gumpen/regular.css.js +7 -5
- package/dist/fonts/gumpen/semibold.css.cjs +10 -8
- package/dist/fonts/gumpen/semibold.css.js +7 -5
- package/dist/fonts/index.cjs +144 -62
- package/dist/fonts/index.js +144 -73
- package/dist/fonts/moller/Larken-Bold.woff2.cjs +4 -4
- package/dist/fonts/moller/Larken-Bold.woff2.js +4 -4
- package/dist/fonts/moller/bold.css.cjs +14 -12
- package/dist/fonts/moller/bold.css.js +10 -8
- package/dist/fonts/moller/index.cjs +14 -4
- package/dist/fonts/moller/index.js +14 -6
- package/dist/fonts/moller/medium.css.cjs +10 -10
- package/dist/fonts/moller/medium.css.js +7 -7
- package/dist/fonts/moller/moller-bold-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-bold-webfont.woff2.js +4 -4
- package/dist/fonts/moller/moller-book-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-book-webfont.woff2.js +4 -4
- package/dist/fonts/moller/moller-medium-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-medium-webfont.woff2.js +4 -4
- package/dist/fonts/moller/moller-regular-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-regular-webfont.woff2.js +4 -4
- package/dist/fonts/moller/regular.css.cjs +10 -8
- package/dist/fonts/moller/regular.css.js +7 -5
- package/dist/fonts/moller/semibold.css.cjs +10 -10
- package/dist/fonts/moller/semibold.css.js +7 -7
- package/dist/fonts/seat/SEATBCN-Bold.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Bold.woff2.js +4 -4
- package/dist/fonts/seat/SEATBCN-Light.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Light.woff2.js +4 -4
- package/dist/fonts/seat/SEATBCN-Medium.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Medium.woff2.js +4 -4
- package/dist/fonts/seat/SEATBCN-Regular.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Regular.woff2.js +4 -4
- package/dist/fonts/seat/bold.css.cjs +10 -8
- package/dist/fonts/seat/bold.css.js +6 -4
- package/dist/fonts/seat/index.cjs +13 -3
- package/dist/fonts/seat/index.js +13 -5
- package/dist/fonts/seat/light.css.cjs +10 -8
- package/dist/fonts/seat/light.css.js +6 -4
- package/dist/fonts/seat/medium.css.cjs +10 -8
- package/dist/fonts/seat/medium.css.js +6 -4
- package/dist/fonts/seat/regular.css.cjs +10 -8
- package/dist/fonts/seat/regular.css.js +6 -4
- package/dist/fonts/skoda/SKODANextW07-Bold.woff2.cjs +4 -4
- package/dist/fonts/skoda/SKODANextW07-Bold.woff2.js +4 -4
- package/dist/fonts/skoda/SKODANextW07-Thin.woff2.cjs +4 -4
- package/dist/fonts/skoda/SKODANextW07-Thin.woff2.js +4 -4
- package/dist/fonts/skoda/bold.css.cjs +10 -8
- package/dist/fonts/skoda/bold.css.js +7 -5
- package/dist/fonts/skoda/index.cjs +13 -3
- package/dist/fonts/skoda/index.js +13 -5
- package/dist/fonts/skoda/medium.css.cjs +10 -8
- package/dist/fonts/skoda/medium.css.js +7 -5
- package/dist/fonts/skoda/regular.css.cjs +10 -8
- package/dist/fonts/skoda/regular.css.js +7 -5
- package/dist/fonts/skoda/semibold.css.cjs +10 -8
- package/dist/fonts/skoda/semibold.css.js +7 -5
- package/dist/fonts/tools/GeistVariableVF.woff2.cjs +4 -4
- package/dist/fonts/tools/GeistVariableVF.woff2.js +4 -4
- package/dist/fonts/tools/index.cjs +13 -3
- package/dist/fonts/tools/index.js +13 -5
- package/dist/fonts/tools/regular.css.cjs +11 -9
- package/dist/fonts/tools/regular.css.js +8 -6
- package/dist/foundation/iconography/ExtraIconsProvider.cjs +63 -7
- package/dist/foundation/iconography/ExtraIconsProvider.js +61 -7
- package/dist/foundation/iconography/Icon.cjs +63 -41
- package/dist/foundation/iconography/Icon.css.cjs +16 -16
- package/dist/foundation/iconography/Icon.css.d.ts.map +1 -1
- package/dist/foundation/iconography/Icon.css.js +15 -19
- package/dist/foundation/iconography/Icon.js +56 -34
- package/dist/foundation/iconography/IconVariantProvider.cjs +36 -7
- package/dist/foundation/iconography/IconVariantProvider.js +34 -7
- package/dist/foundation/iconography/icons.cjs +76 -63
- package/dist/foundation/iconography/icons.d.ts +1 -1
- package/dist/foundation/iconography/icons.d.ts.map +1 -1
- package/dist/foundation/iconography/icons.js +77 -65
- package/dist/foundation/iconography/index.cjs +8 -9
- package/dist/foundation/iconography/index.js +1 -6
- package/dist/foundation/iconography/svg/action/assignment-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/assignment-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/home-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/home-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/home-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/home-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/index.cjs +451 -423
- package/dist/foundation/iconography/svg/action/index.d.ts +0 -52
- package/dist/foundation/iconography/svg/action/index.d.ts.map +1 -1
- package/dist/foundation/iconography/svg/action/index.js +446 -464
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/index.cjs +31 -19
- package/dist/foundation/iconography/svg/communication/index.js +26 -22
- package/dist/foundation/iconography/svg/content/add-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/index.cjs +135 -91
- package/dist/foundation/iconography/svg/content/index.d.ts +52 -0
- package/dist/foundation/iconography/svg/content/index.d.ts.map +1 -1
- package/dist/foundation/iconography/svg/content/index.js +127 -101
- package/dist/foundation/iconography/svg/content/mail-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/mail-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/mail-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/mail-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/index.cjs +19 -10
- package/dist/foundation/iconography/svg/device/index.js +14 -12
- package/dist/foundation/iconography/svg/device/task-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/task-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/task-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/task-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/index.cjs +81 -64
- package/dist/foundation/iconography/svg/file/index.js +76 -72
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/unarchive-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/index.cjs +84 -25
- package/dist/foundation/iconography/svg/index.js +13 -26
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/ev_station-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/index.cjs +61 -46
- package/dist/foundation/iconography/svg/map/index.js +56 -52
- package/dist/foundation/iconography/svg/map/location-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/location-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/location-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/location-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/index.cjs +220 -191
- package/dist/foundation/iconography/svg/navigation/index.js +215 -211
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/menu-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/index.cjs +41 -28
- package/dist/foundation/iconography/svg/notifications/index.js +36 -32
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/index.cjs +31 -19
- package/dist/foundation/iconography/svg/search/index.js +26 -22
- package/dist/foundation/iconography/svg/search/search-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/search-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/search-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/search-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/index.cjs +61 -46
- package/dist/foundation/iconography/svg/social/index.js +56 -52
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/index.cjs +31 -19
- package/dist/foundation/iconography/svg/toggle/index.js +26 -22
- package/dist/foundation/iconography/svg/toggle/star-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/star-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/index.cjs +61 -46
- package/dist/foundation/iconography/svg/validation/index.js +56 -52
- package/dist/foundation/iconography/svg/validation/info-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/info-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/info-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/info-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg-react.js +17 -0
- package/dist/foundation/index.cjs +23 -22
- package/dist/foundation/index.js +3 -17
- package/dist/foundation/logos/Logo.cjs +47 -35
- package/dist/foundation/logos/Logo.css.cjs +16 -19
- package/dist/foundation/logos/Logo.css.d.ts.map +1 -1
- package/dist/foundation/logos/Logo.css.js +15 -20
- package/dist/foundation/logos/Logo.js +44 -32
- package/dist/foundation/logos/index.cjs +2 -3
- package/dist/foundation/logos/index.js +1 -3
- package/dist/foundation/logos/logos.cjs +33 -32
- package/dist/foundation/logos/logos.js +24 -23
- package/dist/foundation/logos/svg/audi/audi_symbol.svg-react.cjs +51 -0
- package/dist/foundation/logos/svg/audi/audi_symbol.svg-react.js +49 -0
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg-react.cjs +51 -0
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg-react.js +49 -0
- package/dist/foundation/logos/svg/audi/index.cjs +8 -7
- package/dist/foundation/logos/svg/audi/index.js +9 -9
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg-react.js +20 -0
- package/dist/foundation/logos/svg/autoria/index.cjs +8 -7
- package/dist/foundation/logos/svg/autoria/index.js +9 -9
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg-react.js +20 -0
- package/dist/foundation/logos/svg/bilhold/index.cjs +8 -7
- package/dist/foundation/logos/svg/bilhold/index.js +9 -9
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg-react.cjs +51 -0
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg-react.js +49 -0
- package/dist/foundation/logos/svg/cupra/index.cjs +8 -7
- package/dist/foundation/logos/svg/cupra/index.js +9 -9
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg-react.cjs +61 -0
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg-react.js +59 -0
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg-react.cjs +61 -0
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg-react.js +59 -0
- package/dist/foundation/logos/svg/dahles/index.cjs +8 -7
- package/dist/foundation/logos/svg/dahles/index.js +9 -9
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg-react.cjs +47 -0
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg-react.js +45 -0
- package/dist/foundation/logos/svg/gumpen/index.cjs +8 -7
- package/dist/foundation/logos/svg/gumpen/index.js +9 -9
- package/dist/foundation/logos/svg/index.cjs +29 -30
- package/dist/foundation/logos/svg/index.js +1 -21
- package/dist/foundation/logos/svg/mollerbil/index.cjs +8 -7
- package/dist/foundation/logos/svg/mollerbil/index.js +9 -9
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg-react.cjs +57 -0
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg-react.js +55 -0
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg-react.cjs +42 -0
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg-react.js +40 -0
- package/dist/foundation/logos/svg/others/alta_wordmark.svg-react.cjs +21 -0
- package/dist/foundation/logos/svg/others/alta_wordmark.svg-react.js +19 -0
- package/dist/foundation/logos/svg/others/berge_wordmark.svg-react.cjs +23 -0
- package/dist/foundation/logos/svg/others/berge_wordmark.svg-react.js +21 -0
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg-react.cjs +31 -0
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg-react.js +29 -0
- package/dist/foundation/logos/svg/others/index.cjs +47 -46
- package/dist/foundation/logos/svg/others/index.js +57 -65
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg-react.cjs +21 -0
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg-react.js +19 -0
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg-react.cjs +30 -0
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg-react.js +28 -0
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg-react.cjs +24 -0
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg-react.js +22 -0
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg-react.cjs +63 -0
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg-react.js +61 -0
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg-react.cjs +21 -0
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg-react.js +19 -0
- package/dist/foundation/logos/svg/skoda/index.cjs +8 -7
- package/dist/foundation/logos/svg/skoda/index.js +9 -9
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg-react.js +20 -0
- package/dist/foundation/logos/svg/vw/index.cjs +14 -13
- package/dist/foundation/logos/svg/vw/index.js +15 -16
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg-react.cjs +29 -0
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg-react.js +27 -0
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg-react.cjs +29 -0
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg-react.js +27 -0
- package/dist/foundation/logos/svg/vw/vw_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/vw/vw_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg-react.js +20 -0
- package/dist/foundation/typography/index.cjs +48 -15
- package/dist/foundation/typography/index.js +47 -25
- package/dist/foundation/typography/typography.css.cjs +13 -21
- package/dist/foundation/typography/typography.css.js +12 -28
- package/dist/index.cjs +145 -140
- package/dist/index.js +24 -107
- package/dist/styles/animations.css.cjs +6 -10
- package/dist/styles/animations.css.js +7 -11
- package/dist/styles/states.css.cjs +69 -102
- package/dist/styles/states.css.d.ts.map +1 -1
- package/dist/styles/states.css.js +66 -101
- package/dist/translations/LocalizationProvider.cjs +17 -27
- package/dist/translations/LocalizationProvider.js +14 -10
- package/dist/translations/en.cjs +60 -74
- package/dist/translations/en.js +61 -75
- package/dist/translations/index.cjs +35 -17
- package/dist/translations/index.js +29 -21
- package/dist/translations/no.cjs +60 -74
- package/dist/translations/no.js +61 -75
- package/dist/utilities/accessibility/ScreenReaderOnly.cjs +5 -5
- package/dist/utilities/accessibility/ScreenReaderOnly.js +4 -4
- package/dist/utilities/accessibility/index.cjs +4 -5
- package/dist/utilities/accessibility/index.js +2 -5
- package/dist/utilities/accessibility/visuallyHidden.css.cjs +15 -15
- package/dist/utilities/accessibility/visuallyHidden.css.js +16 -16
- package/dist/utilities/forms/formContext.cjs +61 -41
- package/dist/utilities/forms/formContext.js +58 -23
- package/dist/utilities/forms/formHelpers.cjs +60 -46
- package/dist/utilities/forms/formHelpers.js +58 -47
- package/dist/utilities/forms/formInputs.cjs +16 -17
- package/dist/utilities/forms/formInputs.js +17 -18
- package/dist/utilities/forms/index.cjs +7 -8
- package/dist/utilities/forms/index.js +1 -6
- package/dist/utilities/forms/internal/components.cjs +67 -75
- package/dist/utilities/forms/internal/components.js +61 -75
- package/dist/utilities/forms/useFormProps.cjs +25 -28
- package/dist/utilities/forms/useFormProps.js +24 -27
- package/dist/utilities/forms/useLocalFormState.cjs +77 -72
- package/dist/utilities/forms/useLocalFormState.js +76 -72
- package/dist/utilities/html/index.cjs +3 -2
- package/dist/utilities/html/index.js +4 -4
- package/dist/utilities/index.cjs +18 -18
- package/dist/utilities/index.js +3 -16
- package/dist/utilities/layout/Column.cjs +5 -5
- package/dist/utilities/layout/Column.js +5 -5
- package/dist/utilities/layout/Row.cjs +5 -5
- package/dist/utilities/layout/Row.js +5 -5
- package/dist/utilities/layout/breakpoints.cjs +5 -5
- package/dist/utilities/layout/breakpoints.js +6 -8
- package/dist/utilities/layout/index.cjs +8 -9
- package/dist/utilities/layout/index.js +1 -7
- package/dist/utilities/layout/styles.css.cjs +100 -100
- package/dist/utilities/layout/styles.css.js +99 -100
- package/dist/utilities/time/date.cjs +387 -388
- package/dist/utilities/time/date.js +388 -397
- package/dist/utilities/time/index.cjs +10 -11
- package/dist/utilities/time/index.js +1 -11
- package/dist/utilities/tokens/index.cjs +4 -5
- package/dist/utilities/tokens/index.js +1 -5
- package/dist/utilities/tokens/tokens.cjs +8 -10
- package/dist/utilities/tokens/tokens.js +9 -13
- package/dist/utilities/validation/index.cjs +24 -25
- package/dist/utilities/validation/index.js +2 -24
- package/dist/utilities/validation/regex.cjs +9 -11
- package/dist/utilities/validation/regex.js +10 -18
- package/dist/utilities/validation/validation.cjs +109 -93
- package/dist/utilities/validation/validation.js +109 -101
- package/dist/utilities/validation/validationSteps.cjs +12 -12
- package/dist/utilities/validation/validationSteps.js +12 -14
- package/dist/utilities/validation/validators.cjs +42 -66
- package/dist/utilities/validation/validators.js +42 -74
- package/package.json +7 -7
- package/dist/fonts/bilhold/Figtree-Bold.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-Bold.woff2.js +0 -5
- package/dist/fonts/bilhold/Figtree-Medium.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-Medium.woff2.js +0 -5
- package/dist/fonts/bilhold/Figtree-Regular.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-Regular.woff2.js +0 -5
- package/dist/fonts/bilhold/Figtree-SemiBold.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-SemiBold.woff2.js +0 -5
- package/dist/fonts/bilhold/bold.css.cjs +0 -10
- package/dist/fonts/bilhold/bold.css.d.ts +0 -2
- package/dist/fonts/bilhold/bold.css.d.ts.map +0 -1
- package/dist/fonts/bilhold/bold.css.js +0 -9
- package/dist/fonts/bilhold/medium.css.cjs +0 -10
- package/dist/fonts/bilhold/medium.css.d.ts +0 -2
- package/dist/fonts/bilhold/medium.css.d.ts.map +0 -1
- package/dist/fonts/bilhold/medium.css.js +0 -9
- package/dist/fonts/bilhold/semibold.css.cjs +0 -10
- package/dist/fonts/bilhold/semibold.css.d.ts +0 -2
- package/dist/fonts/bilhold/semibold.css.d.ts.map +0 -1
- package/dist/fonts/bilhold/semibold.css.js +0 -9
- package/dist/foundation/iconography/svg/action/assignment-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/assignment-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg.js +0 -10
- package/dist/foundation/logos/svg/audi/audi_symbol.svg.cjs +0 -30
- package/dist/foundation/logos/svg/audi/audi_symbol.svg.js +0 -12
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg.cjs +0 -30
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg.js +0 -12
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/alta_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/alta_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/berge_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/berge_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vw_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vw_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg.js +0 -10
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
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/iconography/svg/action/visibility_on-filled.svg-react
|
|
7
|
+
var SvgVisibilityOnFilled = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
viewBox: "0 0 22 15",
|
|
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", { d: "M14.0125 10.5125Q15.25 9.275 15.25 7.5t-1.2375-3.0125T11 3.25 7.9875 4.4875 6.75 7.5t1.2375 3.0125T11 11.75t3.0125-1.2375m-5-1.025Q8.2 8.675 8.2 7.5t.8125-1.9875T11 4.7t1.9875.8125T13.8 7.5t-.8125 1.9875T11 10.3t-1.9875-.8125M4.4 12.925Q1.45 10.85 0 7.5q1.45-3.35 4.4-5.425T11 0t6.6 2.075T22 7.5q-1.45 3.35-4.4 5.425T11 15t-6.6-2.075" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.default = SvgVisibilityOnFilled;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/iconography/svg/action/visibility_on-filled.svg-react
|
|
5
|
+
var SvgVisibilityOnFilled = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 22 15",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", { d: "M14.0125 10.5125Q15.25 9.275 15.25 7.5t-1.2375-3.0125T11 3.25 7.9875 4.4875 6.75 7.5t1.2375 3.0125T11 11.75t3.0125-1.2375m-5-1.025Q8.2 8.675 8.2 7.5t.8125-1.9875T11 4.7t1.9875.8125T13.8 7.5t-.8125 1.9875T11 10.3t-1.9875-.8125M4.4 12.925Q1.45 10.85 0 7.5q1.45-3.35 4.4-5.425T11 0t6.6 2.075T22 7.5q-1.45 3.35-4.4 5.425T11 15t-6.6-2.075" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { SvgVisibilityOnFilled as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
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/iconography/svg/action/visibility_on-outlined.svg-react
|
|
7
|
+
var SvgVisibilityOnOutlined = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
viewBox: "0 0 22 15",
|
|
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", { d: "M14.0125 10.5125Q15.25 9.275 15.25 7.5t-1.2375-3.0125T11 3.25 7.9875 4.4875 6.75 7.5t1.2375 3.0125T11 11.75t3.0125-1.2375m-5-1.025Q8.2 8.675 8.2 7.5t.8125-1.9875T11 4.7t1.9875.8125T13.8 7.5t-.8125 1.9875T11 10.3t-1.9875-.8125M4.4 12.925Q1.45 10.85 0 7.5q1.45-3.35 4.4-5.425T11 0t6.6 2.075T22 7.5q-1.45 3.35-4.4 5.425T11 15t-6.6-2.075m12.1625-1.0625Q19.1 10.225 20.425 7.5 19.1 4.775 16.5625 3.1375T11 1.5 5.4375 3.1375 1.55 7.5q1.35 2.725 3.8875 4.3625T11 13.5t5.5625-1.6375" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.default = SvgVisibilityOnOutlined;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/iconography/svg/action/visibility_on-outlined.svg-react
|
|
5
|
+
var SvgVisibilityOnOutlined = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 22 15",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", { d: "M14.0125 10.5125Q15.25 9.275 15.25 7.5t-1.2375-3.0125T11 3.25 7.9875 4.4875 6.75 7.5t1.2375 3.0125T11 11.75t3.0125-1.2375m-5-1.025Q8.2 8.675 8.2 7.5t.8125-1.9875T11 4.7t1.9875.8125T13.8 7.5t-.8125 1.9875T11 10.3t-1.9875-.8125M4.4 12.925Q1.45 10.85 0 7.5q1.45-3.35 4.4-5.425T11 0t6.6 2.075T22 7.5q-1.45 3.35-4.4 5.425T11 15t-6.6-2.075m12.1625-1.0625Q19.1 10.225 20.425 7.5 19.1 4.775 16.5625 3.1375T11 1.5 5.4375 3.1375 1.55 7.5q1.35 2.725 3.8875 4.3625T11 13.5t5.5625-1.6375" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { SvgVisibilityOnOutlined as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
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/iconography/svg/action/visibility_on-round.svg-react
|
|
7
|
+
var SvgVisibilityOnRound = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
viewBox: "0 0 22 15",
|
|
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", { d: "M14.0125 10.5095Q15.25 9.269 15.25 7.497t-1.2405-3.0095T10.997 3.25 7.9875 4.4905 6.75 7.503t1.2405 3.0095T11.003 11.75t3.0095-1.2405m-5-1.028Q8.2 8.6632 8.2 7.494q0-1.169.8185-1.9815Q9.8368 4.7 11.006 4.7q1.169 0 1.9815.8185.8125.8182.8125 1.9875 0 1.169-.8185 1.9815-.8182.8125-1.9875.8125-1.169 0-1.9815-.8185M4.8625 13.1Q2.1 11.2.425 8.25q-.1-.1783-.15-.3662t-.05-.3858q0-.198.05-.3845.05-.1868.15-.3635Q2.1 3.8 4.8625 1.9T11 0t6.1375 1.9 4.4375 4.85q.1.178.15.3663.05.188.05.3857 0 .198-.05.3845-.05.1868-.15.3635-1.675 2.95-4.4375 4.85T11 15t-6.1375-1.9m11.7-1.2375Q19.1 10.225 20.425 7.5 19.1 4.775 16.5667 3.1375T11.0043 1.5 5.4375 3.1375 1.55 7.5q1.35 2.725 3.8833 4.3625Q7.9665 13.5 10.9958 13.5t5.5667-1.6375" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.default = SvgVisibilityOnRound;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/iconography/svg/action/visibility_on-round.svg-react
|
|
5
|
+
var SvgVisibilityOnRound = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 22 15",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", { d: "M14.0125 10.5095Q15.25 9.269 15.25 7.497t-1.2405-3.0095T10.997 3.25 7.9875 4.4905 6.75 7.503t1.2405 3.0095T11.003 11.75t3.0095-1.2405m-5-1.028Q8.2 8.6632 8.2 7.494q0-1.169.8185-1.9815Q9.8368 4.7 11.006 4.7q1.169 0 1.9815.8185.8125.8182.8125 1.9875 0 1.169-.8185 1.9815-.8182.8125-1.9875.8125-1.169 0-1.9815-.8185M4.8625 13.1Q2.1 11.2.425 8.25q-.1-.1783-.15-.3662t-.05-.3858q0-.198.05-.3845.05-.1868.15-.3635Q2.1 3.8 4.8625 1.9T11 0t6.1375 1.9 4.4375 4.85q.1.178.15.3663.05.188.05.3857 0 .198-.05.3845-.05.1868-.15.3635-1.675 2.95-4.4375 4.85T11 15t-6.1375-1.9m11.7-1.2375Q19.1 10.225 20.425 7.5 19.1 4.775 16.5667 3.1375T11.0043 1.5 5.4375 3.1375 1.55 7.5q1.35 2.725 3.8833 4.3625Q7.9665 13.5 10.9958 13.5t5.5667-1.6375" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { SvgVisibilityOnRound as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
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/iconography/svg/action/visibility_on-sharp.svg-react
|
|
7
|
+
var SvgVisibilityOnSharp = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
viewBox: "0 0 22 15",
|
|
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", { d: "M14.0125 10.5125Q15.25 9.275 15.25 7.5t-1.2375-3.0125T11 3.25 7.9875 4.4875 6.75 7.5t1.2375 3.0125T11 11.75t3.0125-1.2375m-5-1.025Q8.2 8.675 8.2 7.5t.8125-1.9875T11 4.7t1.9875.8125T13.8 7.5t-.8125 1.9875T11 10.3t-1.9875-.8125M4.4 12.925Q1.45 10.85 0 7.5q1.45-3.35 4.4-5.425T11 0t6.6 2.075T22 7.5q-1.45 3.35-4.4 5.425T11 15t-6.6-2.075m12.1625-1.0625Q19.1 10.225 20.425 7.5 19.1 4.775 16.5625 3.1375T11 1.5 5.4375 3.1375 1.55 7.5q1.35 2.725 3.8875 4.3625T11 13.5t5.5625-1.6375" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.default = SvgVisibilityOnSharp;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/iconography/svg/action/visibility_on-sharp.svg-react
|
|
5
|
+
var SvgVisibilityOnSharp = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 22 15",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", { d: "M14.0125 10.5125Q15.25 9.275 15.25 7.5t-1.2375-3.0125T11 3.25 7.9875 4.4875 6.75 7.5t1.2375 3.0125T11 11.75t3.0125-1.2375m-5-1.025Q8.2 8.675 8.2 7.5t.8125-1.9875T11 4.7t1.9875.8125T13.8 7.5t-.8125 1.9875T11 10.3t-1.9875-.8125M4.4 12.925Q1.45 10.85 0 7.5q1.45-3.35 4.4-5.425T11 0t6.6 2.075T22 7.5q-1.45 3.35-4.4 5.425T11 15t-6.6-2.075m12.1625-1.0625Q19.1 10.225 20.425 7.5 19.1 4.775 16.5625 3.1375T11 1.5 5.4375 3.1375 1.55 7.5q1.35 2.725 3.8875 4.3625T11 13.5t5.5625-1.6375" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { SvgVisibilityOnSharp as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
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/iconography/svg/communication/call-filled.svg-react
|
|
7
|
+
var SvgCallFilled = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
viewBox: "0 0 18 18",
|
|
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", { d: "M16.875 18q-2.9 0-5.9125-1.4T5.375 12.625 1.4 7.0375 0 1.125q0-.475.325-.8t.8-.325h3.5q.35 0 .6.25t.35.625l.675 3.15q.05.35-.0125.6375T5.975 5.15l-2.5 2.525q.65 1.1 1.375 2.05t1.6 1.8q.925.95 1.95 1.7375t2.15 1.3875l2.375-2.45q.25-.275.575-.375t.65-.05l2.975.65q.375.1.625.4t.25.675v3.375q0 .475-.325.8t-.8.325" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.default = SvgCallFilled;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/iconography/svg/communication/call-filled.svg-react
|
|
5
|
+
var SvgCallFilled = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 18 18",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", { d: "M16.875 18q-2.9 0-5.9125-1.4T5.375 12.625 1.4 7.0375 0 1.125q0-.475.325-.8t.8-.325h3.5q.35 0 .6.25t.35.625l.675 3.15q.05.35-.0125.6375T5.975 5.15l-2.5 2.525q.65 1.1 1.375 2.05t1.6 1.8q.925.95 1.95 1.7375t2.15 1.3875l2.375-2.45q.25-.275.575-.375t.65-.05l2.975.65q.375.1.625.4t.25.675v3.375q0 .475-.325.8t-.8.325" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { SvgCallFilled as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
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/iconography/svg/communication/call-outlined.svg-react
|
|
7
|
+
var SvgCallOutlined = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
viewBox: "0 0 18 18",
|
|
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", { d: "M16.875 18q-2.9 0-5.9125-1.4T5.375 12.625 1.4 7.0375 0 1.125Q0 .6428.3215.3215.6428 0 1.125 0h3.5q.35 0 .6.25t.35.625l.6733 3.141q.0517.359-.0108.6465t-.2683.4932L3.475 7.675q.65 1.1 1.375 2.05t1.6 1.8q.925.95 1.95 1.7375t2.15 1.3875l2.375-2.45q.25-.275.5788-.375t.6462-.05l2.975.65q.375.1.625.401.25.3012.25.674v3.375q0 .4822-.3215.8035Q17.3573 18 16.875 18M2.725 6.3 4.75 4.25 4.175 1.5H1.5q.05 1.05.3375 2.2125T2.725 6.3m9.225 9.075q1.025.475 2.225.775t2.325.35v-2.675l-2.575-.525zm0 0" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.default = SvgCallOutlined;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/iconography/svg/communication/call-outlined.svg-react
|
|
5
|
+
var SvgCallOutlined = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 18 18",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", { d: "M16.875 18q-2.9 0-5.9125-1.4T5.375 12.625 1.4 7.0375 0 1.125Q0 .6428.3215.3215.6428 0 1.125 0h3.5q.35 0 .6.25t.35.625l.6733 3.141q.0517.359-.0108.6465t-.2683.4932L3.475 7.675q.65 1.1 1.375 2.05t1.6 1.8q.925.95 1.95 1.7375t2.15 1.3875l2.375-2.45q.25-.275.5788-.375t.6462-.05l2.975.65q.375.1.625.401.25.3012.25.674v3.375q0 .4822-.3215.8035Q17.3573 18 16.875 18M2.725 6.3 4.75 4.25 4.175 1.5H1.5q.05 1.05.3375 2.2125T2.725 6.3m9.225 9.075q1.025.475 2.225.775t2.325.35v-2.675l-2.575-.525zm0 0" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { SvgCallOutlined as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
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/iconography/svg/communication/call-round.svg-react
|
|
7
|
+
var SvgCallRound = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
viewBox: "0 0 18 18",
|
|
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", { d: "M16.875 18q-2.9 0-5.9125-1.4T5.375 12.625 1.4 7.0375 0 1.125Q0 .6428.3215.3215.6428 0 1.125 0h3.5q.35 0 .6.25t.35.625l.6733 3.141q.0517.359-.0108.6465t-.2683.4932L3.475 7.675q.65 1.1 1.375 2.05t1.6 1.8q.925.95 1.95 1.7375t2.15 1.3875l2.375-2.45q.25-.275.5788-.375t.6462-.05l2.975.65q.375.1.625.401.25.3012.25.674v3.375q0 .4822-.3215.8035Q17.3573 18 16.875 18M2.725 6.3 4.75 4.25 4.175 1.5H1.5q.05 1.05.3375 2.2125T2.725 6.3m9.225 9.075q1.025.475 2.225.775t2.325.35v-2.675l-2.575-.525zm0 0" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.default = SvgCallRound;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/iconography/svg/communication/call-round.svg-react
|
|
5
|
+
var SvgCallRound = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 18 18",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", { d: "M16.875 18q-2.9 0-5.9125-1.4T5.375 12.625 1.4 7.0375 0 1.125Q0 .6428.3215.3215.6428 0 1.125 0h3.5q.35 0 .6.25t.35.625l.6733 3.141q.0517.359-.0108.6465t-.2683.4932L3.475 7.675q.65 1.1 1.375 2.05t1.6 1.8q.925.95 1.95 1.7375t2.15 1.3875l2.375-2.45q.25-.275.5788-.375t.6462-.05l2.975.65q.375.1.625.401.25.3012.25.674v3.375q0 .4822-.3215.8035Q17.3573 18 16.875 18M2.725 6.3 4.75 4.25 4.175 1.5H1.5q.05 1.05.3375 2.2125T2.725 6.3m9.225 9.075q1.025.475 2.225.775t2.325.35v-2.675l-2.575-.525zm0 0" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { SvgCallRound as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
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/iconography/svg/communication/call-sharp.svg-react
|
|
7
|
+
var SvgCallSharp = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
viewBox: "0 0 18 18",
|
|
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", { d: "M16.5 18q-2.7 0-5.625-1.4125T5.4 12.625q-2.575-2.55-3.9875-5.475T0 1.5V0h5.375l1 4.725L3.45 7.7q.7 1.125 1.4375 2.0875T6.425 11.55q.9.9 1.925 1.6875t2.2 1.4375l2.925-3.025 4.525.975V18zM2.725 6.3 4.75 4.25 4.175 1.5H1.5q0 .95.2875 2.125T2.725 6.3m9.225 9.075q1.025.475 2.225.775t2.325.35v-2.675l-2.575-.525zm0 0" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.default = SvgCallSharp;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/iconography/svg/communication/call-sharp.svg-react
|
|
5
|
+
var SvgCallSharp = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 18 18",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", { d: "M16.5 18q-2.7 0-5.625-1.4125T5.4 12.625q-2.575-2.55-3.9875-5.475T0 1.5V0h5.375l1 4.725L3.45 7.7q.7 1.125 1.4375 2.0875T6.425 11.55q.9.9 1.925 1.6875t2.2 1.4375l2.925-3.025 4.525.975V18zM2.725 6.3 4.75 4.25 4.175 1.5H1.5q0 .95.2875 2.125T2.725 6.3m9.225 9.075q1.025.475 2.225.775t2.325.35v-2.675l-2.575-.525zm0 0" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { SvgCallSharp as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
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/iconography/svg/communication/chat-filled.svg-react
|
|
7
|
+
var SvgChatFilled = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
viewBox: "0 0 20 20",
|
|
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", { d: "M0 20V1.5Q0 .9.45.45T1.5 0h17q.6 0 1.05.45T20 1.5v13q0 .6-.45 1.05T18.5 16H4zm4-7.975h7.825v-1.5H4zm0-3.25h12v-1.5H4zm0-3.25h12v-1.5H4z" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.default = SvgChatFilled;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/iconography/svg/communication/chat-filled.svg-react
|
|
5
|
+
var SvgChatFilled = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 20 20",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", { d: "M0 20V1.5Q0 .9.45.45T1.5 0h17q.6 0 1.05.45T20 1.5v13q0 .6-.45 1.05T18.5 16H4zm4-7.975h7.825v-1.5H4zm0-3.25h12v-1.5H4zm0-3.25h12v-1.5H4z" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { SvgChatFilled as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
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/iconography/svg/communication/chat-outlined.svg-react
|
|
7
|
+
var SvgChatOutlined = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
viewBox: "0 0 20 20",
|
|
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", { d: "M4 12.025h7.825v-1.5H4zm0-3.25h12v-1.5H4zm0-3.25h12v-1.5H4zM0 20V1.5Q0 .9.45.45T1.5 0h17q.6 0 1.05.45T20 1.5v13q0 .6-.45 1.05T18.5 16H4zm3.35-5.5H18.5v-13h-17v15zm-1.85 0v-13z" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.default = SvgChatOutlined;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/iconography/svg/communication/chat-outlined.svg-react
|
|
5
|
+
var SvgChatOutlined = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 20 20",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", { d: "M4 12.025h7.825v-1.5H4zm0-3.25h12v-1.5H4zm0-3.25h12v-1.5H4zM0 20V1.5Q0 .9.45.45T1.5 0h17q.6 0 1.05.45T20 1.5v13q0 .6-.45 1.05T18.5 16H4zm3.35-5.5H18.5v-13h-17v15zm-1.85 0v-13z" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { SvgChatOutlined as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
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/iconography/svg/communication/chat-round.svg-react
|
|
7
|
+
var SvgChatRound = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
viewBox: "0 0 20 19",
|
|
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", { d: "m4 16-2.725 2.725q-.35.35-.8125.1585Q0 18.6922 0 18.2V1.5Q0 .9.45.45T1.5 0h17q.6 0 1.05.45T20 1.5v13q0 .6-.45 1.05T18.5 16zm-.65-1.5H18.5v-13h-17v15zm-1.85 0v-13zm3.25-2.475h6.325q.3188 0 .5345-.217.2155-.2167.2155-.5375 0-.3205-.2155-.533-.2158-.2125-.5345-.2125H4.75q-.3188 0-.5342.217Q4 10.9587 4 11.2795q0 .3205.2158.533.2155.2125.5342.2125m0-3.25h10.5q.3188 0 .5345-.217Q16 8.3413 16 8.0205q0-.3205-.2155-.533-.2158-.2125-.5345-.2125H4.75q-.3188 0-.5342.217Q4 7.7087 4 8.0295q0 .3205.2158.533.2155.2125.5342.2125m0-3.25h10.5q.3188 0 .5345-.217Q16 5.0913 16 4.7705q0-.3205-.2155-.533-.2158-.2125-.5345-.2125H4.75q-.3188 0-.5342.217Q4 4.4587 4 4.7795q0 .3205.2158.533.2155.2125.5342.2125" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.default = SvgChatRound;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/iconography/svg/communication/chat-round.svg-react
|
|
5
|
+
var SvgChatRound = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 20 19",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", { d: "m4 16-2.725 2.725q-.35.35-.8125.1585Q0 18.6922 0 18.2V1.5Q0 .9.45.45T1.5 0h17q.6 0 1.05.45T20 1.5v13q0 .6-.45 1.05T18.5 16zm-.65-1.5H18.5v-13h-17v15zm-1.85 0v-13zm3.25-2.475h6.325q.3188 0 .5345-.217.2155-.2167.2155-.5375 0-.3205-.2155-.533-.2158-.2125-.5345-.2125H4.75q-.3188 0-.5342.217Q4 10.9587 4 11.2795q0 .3205.2158.533.2155.2125.5342.2125m0-3.25h10.5q.3188 0 .5345-.217Q16 8.3413 16 8.0205q0-.3205-.2155-.533-.2158-.2125-.5345-.2125H4.75q-.3188 0-.5342.217Q4 7.7087 4 8.0295q0 .3205.2158.533.2155.2125.5342.2125m0-3.25h10.5q.3188 0 .5345-.217Q16 5.0913 16 4.7705q0-.3205-.2155-.533-.2158-.2125-.5345-.2125H4.75q-.3188 0-.5342.217Q4 4.4587 4 4.7795q0 .3205.2158.533.2155.2125.5342.2125" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { SvgChatRound as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
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/iconography/svg/communication/chat-sharp.svg-react
|
|
7
|
+
var SvgChatSharp = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
viewBox: "0 0 20 20",
|
|
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", { d: "M0 20V0h20v16H4zm3.35-5.5H18.5v-13h-17v15zm-1.85 0v-13zM4 12.025h7.825v-1.5H4zm0-3.25h12v-1.5H4zm0-3.25h12v-1.5H4z" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.default = SvgChatSharp;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/iconography/svg/communication/chat-sharp.svg-react
|
|
5
|
+
var SvgChatSharp = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 20 20",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", { d: "M0 20V0h20v16H4zm3.35-5.5H18.5v-13h-17v15zm-1.85 0v-13zM4 12.025h7.825v-1.5H4zm0-3.25h12v-1.5H4zm0-3.25h12v-1.5H4z" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { SvgChatSharp as default };
|
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"use strict";
|
|
3
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
const
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
3
|
+
const require_runtime = require("../../../../_virtual/_rolldown/runtime.cjs");
|
|
4
|
+
const require_call_filled = require("./call-filled.svg-react.cjs");
|
|
5
|
+
const require_call_outlined = require("./call-outlined.svg-react.cjs");
|
|
6
|
+
const require_call_round = require("./call-round.svg-react.cjs");
|
|
7
|
+
const require_call_sharp = require("./call-sharp.svg-react.cjs");
|
|
8
|
+
const require_chat_filled = require("./chat-filled.svg-react.cjs");
|
|
9
|
+
const require_chat_outlined = require("./chat-outlined.svg-react.cjs");
|
|
10
|
+
const require_chat_round = require("./chat-round.svg-react.cjs");
|
|
11
|
+
const require_chat_sharp = require("./chat-sharp.svg-react.cjs");
|
|
12
|
+
//#region src/foundation/iconography/svg/communication/index.ts
|
|
13
|
+
var communication_exports = /* @__PURE__ */ require_runtime.__exportAll({
|
|
14
|
+
call: () => call,
|
|
15
|
+
chat: () => chat
|
|
16
|
+
});
|
|
17
|
+
var call = {
|
|
18
|
+
filled: require_call_filled.default,
|
|
19
|
+
outlined: require_call_outlined.default,
|
|
20
|
+
round: require_call_round.default,
|
|
21
|
+
sharp: require_call_sharp.default
|
|
17
22
|
};
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
var chat = {
|
|
24
|
+
filled: require_chat_filled.default,
|
|
25
|
+
outlined: require_chat_outlined.default,
|
|
26
|
+
round: require_chat_round.default,
|
|
27
|
+
sharp: require_chat_sharp.default
|
|
23
28
|
};
|
|
29
|
+
//#endregion
|
|
24
30
|
exports.call = call;
|
|
25
31
|
exports.chat = chat;
|
|
32
|
+
Object.defineProperty(exports, "communication_exports", {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
get: function() {
|
|
35
|
+
return communication_exports;
|
|
36
|
+
}
|
|
37
|
+
});
|
|
@@ -1,25 +1,29 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
2
|
+
import { __exportAll } from "../../../../_virtual/_rolldown/runtime.js";
|
|
3
|
+
import SvgCallFilled from "./call-filled.svg-react.js";
|
|
4
|
+
import SvgCallOutlined from "./call-outlined.svg-react.js";
|
|
5
|
+
import SvgCallRound from "./call-round.svg-react.js";
|
|
6
|
+
import SvgCallSharp from "./call-sharp.svg-react.js";
|
|
7
|
+
import SvgChatFilled from "./chat-filled.svg-react.js";
|
|
8
|
+
import SvgChatOutlined from "./chat-outlined.svg-react.js";
|
|
9
|
+
import SvgChatRound from "./chat-round.svg-react.js";
|
|
10
|
+
import SvgChatSharp from "./chat-sharp.svg-react.js";
|
|
11
|
+
//#region src/foundation/iconography/svg/communication/index.ts
|
|
12
|
+
var communication_exports = /* @__PURE__ */ __exportAll({
|
|
13
|
+
call: () => call,
|
|
14
|
+
chat: () => chat
|
|
15
|
+
});
|
|
16
|
+
var call = {
|
|
17
|
+
filled: SvgCallFilled,
|
|
18
|
+
outlined: SvgCallOutlined,
|
|
19
|
+
round: SvgCallRound,
|
|
20
|
+
sharp: SvgCallSharp
|
|
15
21
|
};
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
};
|
|
22
|
-
export {
|
|
23
|
-
call,
|
|
24
|
-
chat
|
|
22
|
+
var chat = {
|
|
23
|
+
filled: SvgChatFilled,
|
|
24
|
+
outlined: SvgChatOutlined,
|
|
25
|
+
round: SvgChatRound,
|
|
26
|
+
sharp: SvgChatSharp
|
|
25
27
|
};
|
|
28
|
+
//#endregion
|
|
29
|
+
export { call, chat, communication_exports };
|
|
@@ -0,0 +1,19 @@
|
|
|
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/iconography/svg/content/add-filled.svg-react
|
|
7
|
+
var SvgAddFilled = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
viewBox: "0 0 14 14",
|
|
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", { d: "M6.25 7.75H0v-1.5h6.25V0h1.5v6.25H14v1.5H7.75V14h-1.5z" })]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.default = SvgAddFilled;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import "react";
|
|
4
|
+
//#region src/foundation/iconography/svg/content/add-filled.svg-react
|
|
5
|
+
var SvgAddFilled = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 14 14",
|
|
9
|
+
"aria-labelledby": titleId,
|
|
10
|
+
...props,
|
|
11
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
12
|
+
id: titleId,
|
|
13
|
+
children: title
|
|
14
|
+
}) : null, /* @__PURE__ */ jsx("path", { d: "M6.25 7.75H0v-1.5h6.25V0h1.5v6.25H14v1.5H7.75V14h-1.5z" })]
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { SvgAddFilled as default };
|