@gnist/design-system 6.0.0 → 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.
Files changed (2254) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/_virtual/_rolldown/runtime.cjs +34 -0
  3. package/dist/_virtual/_rolldown/runtime.js +14 -0
  4. package/dist/building-blocks/index.cjs +11 -10
  5. package/dist/building-blocks/index.js +3 -7
  6. package/dist/building-blocks/inputs/InputHelperText.cjs +49 -27
  7. package/dist/building-blocks/inputs/InputHelperText.js +47 -27
  8. package/dist/building-blocks/inputs/index.cjs +3 -4
  9. package/dist/building-blocks/inputs/index.js +1 -4
  10. package/dist/building-blocks/inputs/internal/TextBelowInput.cjs +5 -5
  11. package/dist/building-blocks/inputs/internal/TextBelowInput.js +5 -5
  12. package/dist/building-blocks/inputs/internal/ValidationText.cjs +25 -15
  13. package/dist/building-blocks/inputs/internal/ValidationText.js +23 -14
  14. package/dist/building-blocks/inputs/internal/textBelowInput.css.cjs +35 -35
  15. package/dist/building-blocks/inputs/internal/textBelowInput.css.js +34 -34
  16. package/dist/building-blocks/skeletons/CircularSkeleton.cjs +35 -18
  17. package/dist/building-blocks/skeletons/CircularSkeleton.js +31 -14
  18. package/dist/building-blocks/skeletons/RectangularSkeleton.cjs +30 -9
  19. package/dist/building-blocks/skeletons/RectangularSkeleton.js +26 -5
  20. package/dist/building-blocks/skeletons/TextSkeleton.cjs +39 -14
  21. package/dist/building-blocks/skeletons/TextSkeleton.js +35 -10
  22. package/dist/building-blocks/skeletons/index.cjs +6 -7
  23. package/dist/building-blocks/skeletons/index.js +1 -5
  24. package/dist/components/actions/buttons/ButtonBase.cjs +42 -54
  25. package/dist/components/actions/buttons/ButtonBase.js +36 -31
  26. package/dist/components/actions/buttons/DangerButton.cjs +12 -6
  27. package/dist/components/actions/buttons/DangerButton.js +10 -5
  28. package/dist/components/actions/buttons/GhostButton.cjs +14 -6
  29. package/dist/components/actions/buttons/GhostButton.js +12 -5
  30. package/dist/components/actions/buttons/IconButton.cjs +45 -23
  31. package/dist/components/actions/buttons/IconButton.js +42 -20
  32. package/dist/components/actions/buttons/PrimaryButton.cjs +14 -6
  33. package/dist/components/actions/buttons/PrimaryButton.js +12 -5
  34. package/dist/components/actions/buttons/SecondaryButton.cjs +12 -6
  35. package/dist/components/actions/buttons/SecondaryButton.js +10 -5
  36. package/dist/components/actions/buttons/SuccessButton.cjs +14 -6
  37. package/dist/components/actions/buttons/SuccessButton.js +12 -5
  38. package/dist/components/actions/buttons/TextButton.cjs +33 -24
  39. package/dist/components/actions/buttons/TextButton.js +29 -20
  40. package/dist/components/actions/buttons/createButtonVariant.cjs +24 -24
  41. package/dist/components/actions/buttons/createButtonVariant.js +21 -21
  42. package/dist/components/actions/buttons/index.cjs +14 -15
  43. package/dist/components/actions/buttons/index.js +1 -9
  44. package/dist/components/actions/buttons/styles.css.cjs +125 -144
  45. package/dist/components/actions/buttons/styles.css.js +120 -144
  46. package/dist/components/actions/chips/ActionChip.cjs +51 -29
  47. package/dist/components/actions/chips/ActionChip.js +45 -23
  48. package/dist/components/actions/chips/FilterChip.cjs +46 -29
  49. package/dist/components/actions/chips/FilterChip.js +40 -23
  50. package/dist/components/actions/chips/TagChip.cjs +46 -23
  51. package/dist/components/actions/chips/TagChip.js +40 -17
  52. package/dist/components/actions/chips/index.cjs +6 -7
  53. package/dist/components/actions/chips/index.js +1 -5
  54. package/dist/components/actions/chips/styles.css.cjs +61 -70
  55. package/dist/components/actions/chips/styles.css.js +58 -69
  56. package/dist/components/actions/index.cjs +31 -29
  57. package/dist/components/actions/index.js +5 -17
  58. package/dist/components/actions/selectionControls/Checkbox.cjs +91 -52
  59. package/dist/components/actions/selectionControls/Checkbox.js +87 -49
  60. package/dist/components/actions/selectionControls/RadioButton.cjs +94 -74
  61. package/dist/components/actions/selectionControls/RadioButton.js +88 -68
  62. package/dist/components/actions/selectionControls/RadioGroup.cjs +54 -27
  63. package/dist/components/actions/selectionControls/RadioGroup.js +51 -25
  64. package/dist/components/actions/selectionControls/Switch.cjs +101 -41
  65. package/dist/components/actions/selectionControls/Switch.js +96 -37
  66. package/dist/components/actions/selectionControls/checkbox.css.cjs +70 -114
  67. package/dist/components/actions/selectionControls/checkbox.css.js +68 -114
  68. package/dist/components/actions/selectionControls/index.cjs +8 -9
  69. package/dist/components/actions/selectionControls/index.js +2 -7
  70. package/dist/components/actions/selectionControls/radiobutton.css.cjs +75 -107
  71. package/dist/components/actions/selectionControls/radiobutton.css.js +73 -107
  72. package/dist/components/actions/selectionControls/radiogroup.css.cjs +24 -41
  73. package/dist/components/actions/selectionControls/radiogroup.css.js +23 -42
  74. package/dist/components/actions/selectionControls/shared.cjs +27 -21
  75. package/dist/components/actions/selectionControls/shared.css.cjs +45 -72
  76. package/dist/components/actions/selectionControls/shared.css.js +41 -73
  77. package/dist/components/actions/selectionControls/shared.js +24 -20
  78. package/dist/components/actions/selectionControls/switch.css.cjs +142 -215
  79. package/dist/components/actions/selectionControls/switch.css.js +136 -221
  80. package/dist/components/feedback/alerts/AlertBanner.cjs +64 -28
  81. package/dist/components/feedback/alerts/AlertBanner.css.cjs +47 -61
  82. package/dist/components/feedback/alerts/AlertBanner.css.js +45 -66
  83. package/dist/components/feedback/alerts/AlertBanner.js +59 -23
  84. package/dist/components/feedback/alerts/index.cjs +2 -3
  85. package/dist/components/feedback/alerts/index.js +1 -3
  86. package/dist/components/feedback/index.cjs +16 -13
  87. package/dist/components/feedback/index.js +5 -9
  88. package/dist/components/feedback/loaders/LoadingBar.cjs +34 -17
  89. package/dist/components/feedback/loaders/LoadingBar.js +32 -17
  90. package/dist/components/feedback/loaders/LoadingSpinner.cjs +32 -26
  91. package/dist/components/feedback/loaders/LoadingSpinner.js +31 -25
  92. package/dist/components/feedback/loaders/index.cjs +5 -6
  93. package/dist/components/feedback/loaders/index.js +1 -5
  94. package/dist/components/feedback/loaders/loadingBar.css.cjs +19 -32
  95. package/dist/components/feedback/loaders/loadingBar.css.js +17 -32
  96. package/dist/components/feedback/loaders/loadingSpinner.css.cjs +18 -20
  97. package/dist/components/feedback/loaders/loadingSpinner.css.js +15 -18
  98. package/dist/components/feedback/notifications/Lozenge.cjs +9 -5
  99. package/dist/components/feedback/notifications/Lozenge.js +9 -5
  100. package/dist/components/feedback/notifications/index.cjs +2 -3
  101. package/dist/components/feedback/notifications/index.js +1 -3
  102. package/dist/components/feedback/notifications/lozenge.css.cjs +58 -64
  103. package/dist/components/feedback/notifications/lozenge.css.js +54 -61
  104. package/dist/components/feedback/progress/ProgressBar.cjs +30 -22
  105. package/dist/components/feedback/progress/ProgressBar.css.cjs +20 -21
  106. package/dist/components/feedback/progress/ProgressBar.css.js +19 -25
  107. package/dist/components/feedback/progress/ProgressBar.js +27 -21
  108. package/dist/components/feedback/progress/index.cjs +3 -4
  109. package/dist/components/feedback/progress/index.js +1 -4
  110. package/dist/components/index.cjs +73 -69
  111. package/dist/components/index.js +9 -41
  112. package/dist/components/inputs/dropdowns/MultiSelect.cjs +9 -4
  113. package/dist/components/inputs/dropdowns/MultiSelect.js +9 -4
  114. package/dist/components/inputs/dropdowns/SelectBase.cjs +126 -99
  115. package/dist/components/inputs/dropdowns/SelectBase.js +122 -78
  116. package/dist/components/inputs/dropdowns/SingleSelect.cjs +11 -4
  117. package/dist/components/inputs/dropdowns/SingleSelect.js +11 -4
  118. package/dist/components/inputs/dropdowns/index.cjs +4 -5
  119. package/dist/components/inputs/dropdowns/index.js +1 -4
  120. package/dist/components/inputs/dropdowns/select.css.cjs +71 -92
  121. package/dist/components/inputs/dropdowns/select.css.js +68 -95
  122. package/dist/components/inputs/index.cjs +15 -13
  123. package/dist/components/inputs/index.js +4 -9
  124. package/dist/components/inputs/pickers/Calendar.css.cjs +100 -138
  125. package/dist/components/inputs/pickers/Calendar.css.js +96 -144
  126. package/dist/components/inputs/pickers/calendar.cjs +278 -201
  127. package/dist/components/inputs/pickers/calendar.js +272 -196
  128. package/dist/components/inputs/pickers/index.cjs +2 -3
  129. package/dist/components/inputs/pickers/index.js +1 -3
  130. package/dist/components/inputs/shared-styles/iconButtonOverlay.css.cjs +32 -38
  131. package/dist/components/inputs/shared-styles/iconButtonOverlay.css.js +30 -37
  132. package/dist/components/inputs/shared-styles/inputField.css.cjs +100 -141
  133. package/dist/components/inputs/shared-styles/inputField.css.js +97 -142
  134. package/dist/components/inputs/shared-styles/inputFieldConstants.css.cjs +8 -7
  135. package/dist/components/inputs/shared-styles/inputFieldConstants.css.js +7 -10
  136. package/dist/components/inputs/shared-styles/labelStyles.css.cjs +152 -176
  137. package/dist/components/inputs/shared-styles/labelStyles.css.js +149 -174
  138. package/dist/components/inputs/shared-styles/suffixPrefix.css.cjs +13 -10
  139. package/dist/components/inputs/shared-styles/suffixPrefix.css.js +11 -10
  140. package/dist/components/inputs/shared.cjs +92 -93
  141. package/dist/components/inputs/shared.js +87 -92
  142. package/dist/components/inputs/textFields/TextArea.cjs +131 -62
  143. package/dist/components/inputs/textFields/TextArea.js +125 -58
  144. package/dist/components/inputs/textFields/TextField.cjs +140 -74
  145. package/dist/components/inputs/textFields/TextField.js +134 -68
  146. package/dist/components/inputs/textFields/index.cjs +6 -7
  147. package/dist/components/inputs/textFields/index.js +1 -6
  148. package/dist/components/inputs/textFields/textArea.css.cjs +17 -21
  149. package/dist/components/inputs/textFields/textArea.css.js +16 -20
  150. package/dist/components/progress/Spinner.cjs +19 -14
  151. package/dist/components/progress/Spinner.js +16 -12
  152. package/dist/components/progress/index.cjs +2 -3
  153. package/dist/components/progress/index.js +1 -3
  154. package/dist/components/progress/spinner.css.cjs +21 -23
  155. package/dist/components/progress/spinner.css.js +19 -22
  156. package/dist/components/surfaces/accordion/Accordion.cjs +41 -17
  157. package/dist/components/surfaces/accordion/Accordion.js +38 -15
  158. package/dist/components/surfaces/accordion/accordion.css.cjs +45 -72
  159. package/dist/components/surfaces/accordion/accordion.css.js +41 -73
  160. package/dist/components/surfaces/accordion/index.cjs +2 -3
  161. package/dist/components/surfaces/accordion/index.js +1 -3
  162. package/dist/components/surfaces/cards/ActionCard.cjs +29 -19
  163. package/dist/components/surfaces/cards/ActionCard.js +26 -16
  164. package/dist/components/surfaces/cards/CheckboxCard.cjs +44 -14
  165. package/dist/components/surfaces/cards/CheckboxCard.js +39 -9
  166. package/dist/components/surfaces/cards/InfoCard.cjs +27 -14
  167. package/dist/components/surfaces/cards/InfoCard.js +24 -11
  168. package/dist/components/surfaces/cards/LinkCard.cjs +29 -19
  169. package/dist/components/surfaces/cards/LinkCard.js +26 -16
  170. package/dist/components/surfaces/cards/RadioCard.cjs +45 -14
  171. package/dist/components/surfaces/cards/RadioCard.js +40 -9
  172. package/dist/components/surfaces/cards/SharedComponents.cjs +19 -21
  173. package/dist/components/surfaces/cards/SharedComponents.js +17 -20
  174. package/dist/components/surfaces/cards/cards.css.cjs +83 -81
  175. package/dist/components/surfaces/cards/cards.css.js +78 -77
  176. package/dist/components/surfaces/cards/checkboxCard.css.cjs +21 -31
  177. package/dist/components/surfaces/cards/checkboxCard.css.js +19 -30
  178. package/dist/components/surfaces/cards/index.cjs +10 -11
  179. package/dist/components/surfaces/cards/index.js +2 -8
  180. package/dist/components/surfaces/cards/internal/SelectionCard.cjs +36 -31
  181. package/dist/components/surfaces/cards/internal/SelectionCard.css.cjs +28 -39
  182. package/dist/components/surfaces/cards/internal/SelectionCard.css.js +26 -39
  183. package/dist/components/surfaces/cards/internal/SelectionCard.js +34 -31
  184. package/dist/components/surfaces/index.cjs +17 -15
  185. package/dist/components/surfaces/index.js +5 -10
  186. package/dist/components/surfaces/modal/Modal.cjs +128 -101
  187. package/dist/components/surfaces/modal/Modal.js +121 -94
  188. package/dist/components/surfaces/modal/index.cjs +2 -3
  189. package/dist/components/surfaces/modal/index.js +1 -3
  190. package/dist/components/surfaces/modal/modal.css.cjs +210 -253
  191. package/dist/components/surfaces/modal/modal.css.js +206 -256
  192. package/dist/fonts/VW/VWHeadWeb-Bold.woff2.cjs +4 -4
  193. package/dist/fonts/VW/VWHeadWeb-Bold.woff2.js +4 -4
  194. package/dist/fonts/VW/VWHeadWeb-ExtraBold.woff2.cjs +4 -4
  195. package/dist/fonts/VW/VWHeadWeb-ExtraBold.woff2.js +4 -4
  196. package/dist/fonts/VW/VWHeadWeb-Regular.woff2.cjs +4 -4
  197. package/dist/fonts/VW/VWHeadWeb-Regular.woff2.js +4 -4
  198. package/dist/fonts/VW/VWTextWeb-Bold.woff2.cjs +4 -4
  199. package/dist/fonts/VW/VWTextWeb-Bold.woff2.js +4 -4
  200. package/dist/fonts/VW/VWTextWeb-Regular.woff2.cjs +4 -4
  201. package/dist/fonts/VW/VWTextWeb-Regular.woff2.js +4 -4
  202. package/dist/fonts/VW/head-bold.css.cjs +10 -8
  203. package/dist/fonts/VW/head-bold.css.js +7 -5
  204. package/dist/fonts/VW/head-extra-bold.css.cjs +10 -9
  205. package/dist/fonts/VW/head-extra-bold.css.js +7 -6
  206. package/dist/fonts/VW/head-regular.css.cjs +10 -8
  207. package/dist/fonts/VW/head-regular.css.js +7 -5
  208. package/dist/fonts/VW/index.cjs +13 -3
  209. package/dist/fonts/VW/index.js +13 -5
  210. package/dist/fonts/VW/text-bold.css.cjs +10 -8
  211. package/dist/fonts/VW/text-bold.css.js +7 -5
  212. package/dist/fonts/VW/text-regular.css.cjs +10 -8
  213. package/dist/fonts/VW/text-regular.css.js +7 -5
  214. package/dist/fonts/audi/AudiType-Bold_4.03.woff2.cjs +4 -4
  215. package/dist/fonts/audi/AudiType-Bold_4.03.woff2.js +4 -4
  216. package/dist/fonts/audi/AudiType-ExtendedBold_4.03.woff2.cjs +4 -4
  217. package/dist/fonts/audi/AudiType-ExtendedBold_4.03.woff2.js +4 -4
  218. package/dist/fonts/audi/AudiType-ExtendedNormal_4.03.woff2.cjs +4 -4
  219. package/dist/fonts/audi/AudiType-ExtendedNormal_4.03.woff2.js +4 -4
  220. package/dist/fonts/audi/AudiType-Normal_4.03.woff2.cjs +4 -4
  221. package/dist/fonts/audi/AudiType-Normal_4.03.woff2.js +4 -4
  222. package/dist/fonts/audi/bold.css.cjs +10 -8
  223. package/dist/fonts/audi/bold.css.js +7 -5
  224. package/dist/fonts/audi/extended-bold.css.cjs +10 -8
  225. package/dist/fonts/audi/extended-bold.css.js +7 -5
  226. package/dist/fonts/audi/extended-regular.css.cjs +10 -8
  227. package/dist/fonts/audi/extended-regular.css.js +7 -5
  228. package/dist/fonts/audi/index.cjs +13 -3
  229. package/dist/fonts/audi/index.js +13 -5
  230. package/dist/fonts/audi/regular.css.cjs +10 -8
  231. package/dist/fonts/audi/regular.css.js +7 -5
  232. package/dist/fonts/autoria/Texgyreheros-Bold.woff2.cjs +4 -4
  233. package/dist/fonts/autoria/Texgyreheros-Bold.woff2.js +4 -4
  234. package/dist/fonts/autoria/Texgyreheros-Regular.woff2.cjs +4 -4
  235. package/dist/fonts/autoria/Texgyreheros-Regular.woff2.js +4 -4
  236. package/dist/fonts/autoria/bold.css.cjs +10 -8
  237. package/dist/fonts/autoria/bold.css.js +7 -5
  238. package/dist/fonts/autoria/index.cjs +13 -3
  239. package/dist/fonts/autoria/index.js +13 -5
  240. package/dist/fonts/autoria/regular.css.cjs +10 -8
  241. package/dist/fonts/autoria/regular.css.js +7 -5
  242. package/dist/fonts/bilhold/GeistVariableVF.woff2.cjs +4 -4
  243. package/dist/fonts/bilhold/GeistVariableVF.woff2.js +4 -4
  244. package/dist/fonts/bilhold/index.cjs +13 -3
  245. package/dist/fonts/bilhold/index.js +13 -5
  246. package/dist/fonts/bilhold/regular.css.cjs +11 -9
  247. package/dist/fonts/bilhold/regular.css.js +8 -6
  248. package/dist/fonts/cupra/Cupra-Bold.woff2.cjs +4 -4
  249. package/dist/fonts/cupra/Cupra-Bold.woff2.js +4 -4
  250. package/dist/fonts/cupra/Cupra-Book.woff2.cjs +4 -4
  251. package/dist/fonts/cupra/Cupra-Book.woff2.js +4 -4
  252. package/dist/fonts/cupra/Cupra-Medium.woff2.cjs +4 -4
  253. package/dist/fonts/cupra/Cupra-Medium.woff2.js +4 -4
  254. package/dist/fonts/cupra/Cupra-Regular.woff2.cjs +4 -4
  255. package/dist/fonts/cupra/Cupra-Regular.woff2.js +4 -4
  256. package/dist/fonts/cupra/bold.css.cjs +10 -8
  257. package/dist/fonts/cupra/bold.css.js +7 -5
  258. package/dist/fonts/cupra/book.css.cjs +10 -8
  259. package/dist/fonts/cupra/book.css.js +7 -5
  260. package/dist/fonts/cupra/index.cjs +13 -3
  261. package/dist/fonts/cupra/index.js +13 -5
  262. package/dist/fonts/cupra/medium.css.cjs +10 -8
  263. package/dist/fonts/cupra/medium.css.js +7 -5
  264. package/dist/fonts/cupra/regular.css.cjs +10 -8
  265. package/dist/fonts/cupra/regular.css.js +7 -5
  266. package/dist/fonts/dahles/SourceSans3-Bold.woff2.cjs +4 -4
  267. package/dist/fonts/dahles/SourceSans3-Bold.woff2.js +4 -4
  268. package/dist/fonts/dahles/SourceSans3-Medium.woff2.cjs +4 -4
  269. package/dist/fonts/dahles/SourceSans3-Medium.woff2.js +4 -4
  270. package/dist/fonts/dahles/SourceSans3-Regular.woff2.cjs +4 -4
  271. package/dist/fonts/dahles/SourceSans3-Regular.woff2.js +4 -4
  272. package/dist/fonts/dahles/SourceSans3-SemiBold.woff2.cjs +4 -4
  273. package/dist/fonts/dahles/SourceSans3-SemiBold.woff2.js +4 -4
  274. package/dist/fonts/dahles/bold.css.cjs +10 -8
  275. package/dist/fonts/dahles/bold.css.js +7 -5
  276. package/dist/fonts/dahles/index.cjs +13 -3
  277. package/dist/fonts/dahles/index.js +13 -5
  278. package/dist/fonts/dahles/medium.css.cjs +10 -8
  279. package/dist/fonts/dahles/medium.css.js +7 -5
  280. package/dist/fonts/dahles/regular.css.cjs +10 -8
  281. package/dist/fonts/dahles/regular.css.js +7 -5
  282. package/dist/fonts/dahles/semibold.css.cjs +10 -8
  283. package/dist/fonts/dahles/semibold.css.js +7 -5
  284. package/dist/fonts/gumpen/ES-Build-Bold.woff2.cjs +4 -4
  285. package/dist/fonts/gumpen/ES-Build-Bold.woff2.js +4 -4
  286. package/dist/fonts/gumpen/ES-Build-Medium.woff2.cjs +4 -4
  287. package/dist/fonts/gumpen/ES-Build-Medium.woff2.js +4 -4
  288. package/dist/fonts/gumpen/ES-Build-Regular.woff2.cjs +4 -4
  289. package/dist/fonts/gumpen/ES-Build-Regular.woff2.js +4 -4
  290. package/dist/fonts/gumpen/ES-Build-SemiBold.woff2.cjs +4 -4
  291. package/dist/fonts/gumpen/ES-Build-SemiBold.woff2.js +4 -4
  292. package/dist/fonts/gumpen/bold.css.cjs +10 -8
  293. package/dist/fonts/gumpen/bold.css.js +7 -5
  294. package/dist/fonts/gumpen/index.cjs +13 -3
  295. package/dist/fonts/gumpen/index.js +13 -5
  296. package/dist/fonts/gumpen/medium.css.cjs +10 -8
  297. package/dist/fonts/gumpen/medium.css.js +7 -5
  298. package/dist/fonts/gumpen/regular.css.cjs +10 -8
  299. package/dist/fonts/gumpen/regular.css.js +7 -5
  300. package/dist/fonts/gumpen/semibold.css.cjs +10 -8
  301. package/dist/fonts/gumpen/semibold.css.js +7 -5
  302. package/dist/fonts/index.cjs +144 -62
  303. package/dist/fonts/index.js +144 -73
  304. package/dist/fonts/moller/Larken-Bold.woff2.cjs +4 -4
  305. package/dist/fonts/moller/Larken-Bold.woff2.js +4 -4
  306. package/dist/fonts/moller/bold.css.cjs +14 -12
  307. package/dist/fonts/moller/bold.css.js +10 -8
  308. package/dist/fonts/moller/index.cjs +14 -4
  309. package/dist/fonts/moller/index.js +14 -6
  310. package/dist/fonts/moller/medium.css.cjs +10 -10
  311. package/dist/fonts/moller/medium.css.js +7 -7
  312. package/dist/fonts/moller/moller-bold-webfont.woff2.cjs +4 -4
  313. package/dist/fonts/moller/moller-bold-webfont.woff2.js +4 -4
  314. package/dist/fonts/moller/moller-book-webfont.woff2.cjs +4 -4
  315. package/dist/fonts/moller/moller-book-webfont.woff2.js +4 -4
  316. package/dist/fonts/moller/moller-medium-webfont.woff2.cjs +4 -4
  317. package/dist/fonts/moller/moller-medium-webfont.woff2.js +4 -4
  318. package/dist/fonts/moller/moller-regular-webfont.woff2.cjs +4 -4
  319. package/dist/fonts/moller/moller-regular-webfont.woff2.js +4 -4
  320. package/dist/fonts/moller/regular.css.cjs +10 -8
  321. package/dist/fonts/moller/regular.css.js +7 -5
  322. package/dist/fonts/moller/semibold.css.cjs +10 -10
  323. package/dist/fonts/moller/semibold.css.js +7 -7
  324. package/dist/fonts/seat/SEATBCN-Bold.woff2.cjs +4 -4
  325. package/dist/fonts/seat/SEATBCN-Bold.woff2.js +4 -4
  326. package/dist/fonts/seat/SEATBCN-Light.woff2.cjs +4 -4
  327. package/dist/fonts/seat/SEATBCN-Light.woff2.js +4 -4
  328. package/dist/fonts/seat/SEATBCN-Medium.woff2.cjs +4 -4
  329. package/dist/fonts/seat/SEATBCN-Medium.woff2.js +4 -4
  330. package/dist/fonts/seat/SEATBCN-Regular.woff2.cjs +4 -4
  331. package/dist/fonts/seat/SEATBCN-Regular.woff2.js +4 -4
  332. package/dist/fonts/seat/bold.css.cjs +10 -8
  333. package/dist/fonts/seat/bold.css.js +6 -4
  334. package/dist/fonts/seat/index.cjs +13 -3
  335. package/dist/fonts/seat/index.js +13 -5
  336. package/dist/fonts/seat/light.css.cjs +10 -8
  337. package/dist/fonts/seat/light.css.js +6 -4
  338. package/dist/fonts/seat/medium.css.cjs +10 -8
  339. package/dist/fonts/seat/medium.css.js +6 -4
  340. package/dist/fonts/seat/regular.css.cjs +10 -8
  341. package/dist/fonts/seat/regular.css.js +6 -4
  342. package/dist/fonts/skoda/SKODANextW07-Bold.woff2.cjs +4 -4
  343. package/dist/fonts/skoda/SKODANextW07-Bold.woff2.js +4 -4
  344. package/dist/fonts/skoda/SKODANextW07-Thin.woff2.cjs +4 -4
  345. package/dist/fonts/skoda/SKODANextW07-Thin.woff2.js +4 -4
  346. package/dist/fonts/skoda/bold.css.cjs +10 -8
  347. package/dist/fonts/skoda/bold.css.js +7 -5
  348. package/dist/fonts/skoda/index.cjs +13 -3
  349. package/dist/fonts/skoda/index.js +13 -5
  350. package/dist/fonts/skoda/medium.css.cjs +10 -8
  351. package/dist/fonts/skoda/medium.css.js +7 -5
  352. package/dist/fonts/skoda/regular.css.cjs +10 -8
  353. package/dist/fonts/skoda/regular.css.js +7 -5
  354. package/dist/fonts/skoda/semibold.css.cjs +10 -8
  355. package/dist/fonts/skoda/semibold.css.js +7 -5
  356. package/dist/fonts/tools/GeistVariableVF.woff2.cjs +4 -4
  357. package/dist/fonts/tools/GeistVariableVF.woff2.js +4 -4
  358. package/dist/fonts/tools/index.cjs +13 -3
  359. package/dist/fonts/tools/index.js +13 -5
  360. package/dist/fonts/tools/regular.css.cjs +11 -9
  361. package/dist/fonts/tools/regular.css.js +8 -6
  362. package/dist/foundation/iconography/ExtraIconsProvider.cjs +63 -7
  363. package/dist/foundation/iconography/ExtraIconsProvider.js +61 -7
  364. package/dist/foundation/iconography/Icon.cjs +63 -41
  365. package/dist/foundation/iconography/Icon.css.cjs +16 -15
  366. package/dist/foundation/iconography/Icon.css.js +14 -17
  367. package/dist/foundation/iconography/Icon.js +56 -34
  368. package/dist/foundation/iconography/IconVariantProvider.cjs +36 -7
  369. package/dist/foundation/iconography/IconVariantProvider.js +34 -7
  370. package/dist/foundation/iconography/icons.cjs +76 -63
  371. package/dist/foundation/iconography/icons.d.ts +1 -1
  372. package/dist/foundation/iconography/icons.d.ts.map +1 -1
  373. package/dist/foundation/iconography/icons.js +77 -65
  374. package/dist/foundation/iconography/index.cjs +8 -9
  375. package/dist/foundation/iconography/index.js +1 -6
  376. package/dist/foundation/iconography/svg/action/assignment-filled.svg-react.cjs +19 -0
  377. package/dist/foundation/iconography/svg/action/assignment-filled.svg-react.js +17 -0
  378. package/dist/foundation/iconography/svg/action/assignment-outlined.svg-react.cjs +19 -0
  379. package/dist/foundation/iconography/svg/action/assignment-outlined.svg-react.js +17 -0
  380. package/dist/foundation/iconography/svg/action/assignment-round.svg-react.cjs +19 -0
  381. package/dist/foundation/iconography/svg/action/assignment-round.svg-react.js +17 -0
  382. package/dist/foundation/iconography/svg/action/assignment-sharp.svg-react.cjs +19 -0
  383. package/dist/foundation/iconography/svg/action/assignment-sharp.svg-react.js +17 -0
  384. package/dist/foundation/iconography/svg/action/bolt-filled.svg-react.cjs +19 -0
  385. package/dist/foundation/iconography/svg/action/bolt-filled.svg-react.js +17 -0
  386. package/dist/foundation/iconography/svg/action/bolt-outlined.svg-react.cjs +19 -0
  387. package/dist/foundation/iconography/svg/action/bolt-outlined.svg-react.js +17 -0
  388. package/dist/foundation/iconography/svg/action/bolt-round.svg-react.cjs +19 -0
  389. package/dist/foundation/iconography/svg/action/bolt-round.svg-react.js +17 -0
  390. package/dist/foundation/iconography/svg/action/bolt-sharp.svg-react.cjs +19 -0
  391. package/dist/foundation/iconography/svg/action/bolt-sharp.svg-react.js +17 -0
  392. package/dist/foundation/iconography/svg/action/build-filled.svg-react.cjs +19 -0
  393. package/dist/foundation/iconography/svg/action/build-filled.svg-react.js +17 -0
  394. package/dist/foundation/iconography/svg/action/build-outlined.svg-react.cjs +19 -0
  395. package/dist/foundation/iconography/svg/action/build-outlined.svg-react.js +17 -0
  396. package/dist/foundation/iconography/svg/action/build-round.svg-react.cjs +19 -0
  397. package/dist/foundation/iconography/svg/action/build-round.svg-react.js +17 -0
  398. package/dist/foundation/iconography/svg/action/build-sharp.svg-react.cjs +19 -0
  399. package/dist/foundation/iconography/svg/action/build-sharp.svg-react.js +17 -0
  400. package/dist/foundation/iconography/svg/action/calculate-filled.svg-react.cjs +19 -0
  401. package/dist/foundation/iconography/svg/action/calculate-filled.svg-react.js +17 -0
  402. package/dist/foundation/iconography/svg/action/calculate-outlined.svg-react.cjs +19 -0
  403. package/dist/foundation/iconography/svg/action/calculate-outlined.svg-react.js +17 -0
  404. package/dist/foundation/iconography/svg/action/calculate-round.svg-react.cjs +19 -0
  405. package/dist/foundation/iconography/svg/action/calculate-round.svg-react.js +17 -0
  406. package/dist/foundation/iconography/svg/action/calculate-sharp.svg-react.cjs +19 -0
  407. package/dist/foundation/iconography/svg/action/calculate-sharp.svg-react.js +17 -0
  408. package/dist/foundation/iconography/svg/action/calendar-filled.svg-react.cjs +19 -0
  409. package/dist/foundation/iconography/svg/action/calendar-filled.svg-react.js +17 -0
  410. package/dist/foundation/iconography/svg/action/calendar-outlined.svg-react.cjs +19 -0
  411. package/dist/foundation/iconography/svg/action/calendar-outlined.svg-react.js +17 -0
  412. package/dist/foundation/iconography/svg/action/calendar-round.svg-react.cjs +19 -0
  413. package/dist/foundation/iconography/svg/action/calendar-round.svg-react.js +17 -0
  414. package/dist/foundation/iconography/svg/action/calendar-sharp.svg-react.cjs +19 -0
  415. package/dist/foundation/iconography/svg/action/calendar-sharp.svg-react.js +17 -0
  416. package/dist/foundation/iconography/svg/action/car-filled.svg-react.cjs +19 -0
  417. package/dist/foundation/iconography/svg/action/car-filled.svg-react.js +17 -0
  418. package/dist/foundation/iconography/svg/action/car-outlined.svg-react.cjs +19 -0
  419. package/dist/foundation/iconography/svg/action/car-outlined.svg-react.js +17 -0
  420. package/dist/foundation/iconography/svg/action/car-round.svg-react.cjs +19 -0
  421. package/dist/foundation/iconography/svg/action/car-round.svg-react.js +17 -0
  422. package/dist/foundation/iconography/svg/action/car-sharp.svg-react.cjs +19 -0
  423. package/dist/foundation/iconography/svg/action/car-sharp.svg-react.js +17 -0
  424. package/dist/foundation/iconography/svg/action/car_crash-filled.svg-react.cjs +19 -0
  425. package/dist/foundation/iconography/svg/action/car_crash-filled.svg-react.js +17 -0
  426. package/dist/foundation/iconography/svg/action/car_crash-outlined.svg-react.cjs +19 -0
  427. package/dist/foundation/iconography/svg/action/car_crash-outlined.svg-react.js +17 -0
  428. package/dist/foundation/iconography/svg/action/car_crash-round.svg-react.cjs +19 -0
  429. package/dist/foundation/iconography/svg/action/car_crash-round.svg-react.js +17 -0
  430. package/dist/foundation/iconography/svg/action/car_crash-sharp.svg-react.cjs +19 -0
  431. package/dist/foundation/iconography/svg/action/car_crash-sharp.svg-react.js +17 -0
  432. package/dist/foundation/iconography/svg/action/change-filled.svg-react.cjs +19 -0
  433. package/dist/foundation/iconography/svg/action/change-filled.svg-react.js +17 -0
  434. package/dist/foundation/iconography/svg/action/change-outlined.svg-react.cjs +19 -0
  435. package/dist/foundation/iconography/svg/action/change-outlined.svg-react.js +17 -0
  436. package/dist/foundation/iconography/svg/action/change-round.svg-react.cjs +19 -0
  437. package/dist/foundation/iconography/svg/action/change-round.svg-react.js +17 -0
  438. package/dist/foundation/iconography/svg/action/change-sharp.svg-react.cjs +19 -0
  439. package/dist/foundation/iconography/svg/action/change-sharp.svg-react.js +17 -0
  440. package/dist/foundation/iconography/svg/action/code-filled.svg-react.cjs +19 -0
  441. package/dist/foundation/iconography/svg/action/code-filled.svg-react.js +17 -0
  442. package/dist/foundation/iconography/svg/action/code-outlined.svg-react.cjs +19 -0
  443. package/dist/foundation/iconography/svg/action/code-outlined.svg-react.js +17 -0
  444. package/dist/foundation/iconography/svg/action/code-round.svg-react.cjs +19 -0
  445. package/dist/foundation/iconography/svg/action/code-round.svg-react.js +17 -0
  446. package/dist/foundation/iconography/svg/action/code-sharp.svg-react.cjs +19 -0
  447. package/dist/foundation/iconography/svg/action/code-sharp.svg-react.js +17 -0
  448. package/dist/foundation/iconography/svg/action/contract-filled.svg-react.cjs +19 -0
  449. package/dist/foundation/iconography/svg/action/contract-filled.svg-react.js +17 -0
  450. package/dist/foundation/iconography/svg/action/contract-outlined.svg-react.cjs +19 -0
  451. package/dist/foundation/iconography/svg/action/contract-outlined.svg-react.js +17 -0
  452. package/dist/foundation/iconography/svg/action/contract-round.svg-react.cjs +19 -0
  453. package/dist/foundation/iconography/svg/action/contract-round.svg-react.js +17 -0
  454. package/dist/foundation/iconography/svg/action/contract-sharp.svg-react.cjs +19 -0
  455. package/dist/foundation/iconography/svg/action/contract-sharp.svg-react.js +17 -0
  456. package/dist/foundation/iconography/svg/action/edit-filled.svg-react.cjs +19 -0
  457. package/dist/foundation/iconography/svg/action/edit-filled.svg-react.js +17 -0
  458. package/dist/foundation/iconography/svg/action/edit-outlined.svg-react.cjs +19 -0
  459. package/dist/foundation/iconography/svg/action/edit-outlined.svg-react.js +17 -0
  460. package/dist/foundation/iconography/svg/action/edit-round.svg-react.cjs +19 -0
  461. package/dist/foundation/iconography/svg/action/edit-round.svg-react.js +17 -0
  462. package/dist/foundation/iconography/svg/action/edit-sharp.svg-react.cjs +19 -0
  463. package/dist/foundation/iconography/svg/action/edit-sharp.svg-react.js +17 -0
  464. package/dist/foundation/iconography/svg/action/electric_car-filled.svg-react.cjs +19 -0
  465. package/dist/foundation/iconography/svg/action/electric_car-filled.svg-react.js +17 -0
  466. package/dist/foundation/iconography/svg/action/electric_car-outlined.svg-react.cjs +19 -0
  467. package/dist/foundation/iconography/svg/action/electric_car-outlined.svg-react.js +17 -0
  468. package/dist/foundation/iconography/svg/action/electric_car-round.svg-react.cjs +19 -0
  469. package/dist/foundation/iconography/svg/action/electric_car-round.svg-react.js +17 -0
  470. package/dist/foundation/iconography/svg/action/electric_car-sharp.svg-react.cjs +19 -0
  471. package/dist/foundation/iconography/svg/action/electric_car-sharp.svg-react.js +17 -0
  472. package/dist/foundation/iconography/svg/action/explore-filled.svg-react.cjs +19 -0
  473. package/dist/foundation/iconography/svg/action/explore-filled.svg-react.js +17 -0
  474. package/dist/foundation/iconography/svg/action/explore-outlined.svg-react.cjs +19 -0
  475. package/dist/foundation/iconography/svg/action/explore-outlined.svg-react.js +17 -0
  476. package/dist/foundation/iconography/svg/action/explore-round.svg-react.cjs +19 -0
  477. package/dist/foundation/iconography/svg/action/explore-round.svg-react.js +17 -0
  478. package/dist/foundation/iconography/svg/action/explore-sharp.svg-react.cjs +19 -0
  479. package/dist/foundation/iconography/svg/action/explore-sharp.svg-react.js +17 -0
  480. package/dist/foundation/iconography/svg/action/glass_damage-filled.svg-react.cjs +22 -0
  481. package/dist/foundation/iconography/svg/action/glass_damage-filled.svg-react.js +20 -0
  482. package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg-react.cjs +22 -0
  483. package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg-react.js +20 -0
  484. package/dist/foundation/iconography/svg/action/glass_damage-round.svg-react.cjs +22 -0
  485. package/dist/foundation/iconography/svg/action/glass_damage-round.svg-react.js +20 -0
  486. package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg-react.cjs +22 -0
  487. package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg-react.js +20 -0
  488. package/dist/foundation/iconography/svg/action/home-filled.svg-react.cjs +19 -0
  489. package/dist/foundation/iconography/svg/action/home-filled.svg-react.js +17 -0
  490. package/dist/foundation/iconography/svg/action/home-outlined.svg-react.cjs +19 -0
  491. package/dist/foundation/iconography/svg/action/home-outlined.svg-react.js +17 -0
  492. package/dist/foundation/iconography/svg/action/home-round.svg-react.cjs +19 -0
  493. package/dist/foundation/iconography/svg/action/home-round.svg-react.js +17 -0
  494. package/dist/foundation/iconography/svg/action/home-sharp.svg-react.cjs +19 -0
  495. package/dist/foundation/iconography/svg/action/home-sharp.svg-react.js +17 -0
  496. package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg-react.cjs +19 -0
  497. package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg-react.js +17 -0
  498. package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg-react.cjs +19 -0
  499. package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg-react.js +17 -0
  500. package/dist/foundation/iconography/svg/action/image_not_supported-round.svg-react.cjs +19 -0
  501. package/dist/foundation/iconography/svg/action/image_not_supported-round.svg-react.js +17 -0
  502. package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg-react.cjs +19 -0
  503. package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg-react.js +17 -0
  504. package/dist/foundation/iconography/svg/action/index.cjs +451 -401
  505. package/dist/foundation/iconography/svg/action/index.js +446 -442
  506. package/dist/foundation/iconography/svg/action/lightbulb-filled.svg-react.cjs +19 -0
  507. package/dist/foundation/iconography/svg/action/lightbulb-filled.svg-react.js +17 -0
  508. package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg-react.cjs +19 -0
  509. package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg-react.js +17 -0
  510. package/dist/foundation/iconography/svg/action/lightbulb-round.svg-react.cjs +19 -0
  511. package/dist/foundation/iconography/svg/action/lightbulb-round.svg-react.js +17 -0
  512. package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg-react.cjs +19 -0
  513. package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg-react.js +17 -0
  514. package/dist/foundation/iconography/svg/action/login-filled.svg-react.cjs +19 -0
  515. package/dist/foundation/iconography/svg/action/login-filled.svg-react.js +17 -0
  516. package/dist/foundation/iconography/svg/action/login-outlined.svg-react.cjs +19 -0
  517. package/dist/foundation/iconography/svg/action/login-outlined.svg-react.js +17 -0
  518. package/dist/foundation/iconography/svg/action/login-round.svg-react.cjs +19 -0
  519. package/dist/foundation/iconography/svg/action/login-round.svg-react.js +17 -0
  520. package/dist/foundation/iconography/svg/action/login-sharp.svg-react.cjs +19 -0
  521. package/dist/foundation/iconography/svg/action/login-sharp.svg-react.js +17 -0
  522. package/dist/foundation/iconography/svg/action/logout-filled.svg-react.cjs +19 -0
  523. package/dist/foundation/iconography/svg/action/logout-filled.svg-react.js +17 -0
  524. package/dist/foundation/iconography/svg/action/logout-outlined.svg-react.cjs +19 -0
  525. package/dist/foundation/iconography/svg/action/logout-outlined.svg-react.js +17 -0
  526. package/dist/foundation/iconography/svg/action/logout-round.svg-react.cjs +19 -0
  527. package/dist/foundation/iconography/svg/action/logout-round.svg-react.js +17 -0
  528. package/dist/foundation/iconography/svg/action/logout-sharp.svg-react.cjs +19 -0
  529. package/dist/foundation/iconography/svg/action/logout-sharp.svg-react.js +17 -0
  530. package/dist/foundation/iconography/svg/action/manual_gear-filled.svg-react.cjs +19 -0
  531. package/dist/foundation/iconography/svg/action/manual_gear-filled.svg-react.js +17 -0
  532. package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg-react.cjs +19 -0
  533. package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg-react.js +17 -0
  534. package/dist/foundation/iconography/svg/action/manual_gear-round.svg-react.cjs +19 -0
  535. package/dist/foundation/iconography/svg/action/manual_gear-round.svg-react.js +17 -0
  536. package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg-react.cjs +19 -0
  537. package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg-react.js +17 -0
  538. package/dist/foundation/iconography/svg/action/minor_crash-filled.svg-react.cjs +19 -0
  539. package/dist/foundation/iconography/svg/action/minor_crash-filled.svg-react.js +17 -0
  540. package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg-react.cjs +19 -0
  541. package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg-react.js +17 -0
  542. package/dist/foundation/iconography/svg/action/minor_crash-round.svg-react.cjs +19 -0
  543. package/dist/foundation/iconography/svg/action/minor_crash-round.svg-react.js +17 -0
  544. package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg-react.cjs +19 -0
  545. package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg-react.js +17 -0
  546. package/dist/foundation/iconography/svg/action/notifications-filled.svg-react.cjs +19 -0
  547. package/dist/foundation/iconography/svg/action/notifications-filled.svg-react.js +17 -0
  548. package/dist/foundation/iconography/svg/action/notifications-outlined.svg-react.cjs +19 -0
  549. package/dist/foundation/iconography/svg/action/notifications-outlined.svg-react.js +17 -0
  550. package/dist/foundation/iconography/svg/action/notifications-round.svg-react.cjs +19 -0
  551. package/dist/foundation/iconography/svg/action/notifications-round.svg-react.js +17 -0
  552. package/dist/foundation/iconography/svg/action/notifications-sharp.svg-react.cjs +19 -0
  553. package/dist/foundation/iconography/svg/action/notifications-sharp.svg-react.js +17 -0
  554. package/dist/foundation/iconography/svg/action/payment-filled.svg-react.cjs +19 -0
  555. package/dist/foundation/iconography/svg/action/payment-filled.svg-react.js +17 -0
  556. package/dist/foundation/iconography/svg/action/payment-outlined.svg-react.cjs +19 -0
  557. package/dist/foundation/iconography/svg/action/payment-outlined.svg-react.js +17 -0
  558. package/dist/foundation/iconography/svg/action/payment-round.svg-react.cjs +19 -0
  559. package/dist/foundation/iconography/svg/action/payment-round.svg-react.js +17 -0
  560. package/dist/foundation/iconography/svg/action/payment-sharp.svg-react.cjs +19 -0
  561. package/dist/foundation/iconography/svg/action/payment-sharp.svg-react.js +17 -0
  562. package/dist/foundation/iconography/svg/action/pets-filled.svg-react.cjs +19 -0
  563. package/dist/foundation/iconography/svg/action/pets-filled.svg-react.js +17 -0
  564. package/dist/foundation/iconography/svg/action/pets-outlined.svg-react.cjs +19 -0
  565. package/dist/foundation/iconography/svg/action/pets-outlined.svg-react.js +17 -0
  566. package/dist/foundation/iconography/svg/action/pets-round.svg-react.cjs +19 -0
  567. package/dist/foundation/iconography/svg/action/pets-round.svg-react.js +17 -0
  568. package/dist/foundation/iconography/svg/action/pets-sharp.svg-react.cjs +19 -0
  569. package/dist/foundation/iconography/svg/action/pets-sharp.svg-react.js +17 -0
  570. package/dist/foundation/iconography/svg/action/play_circle-filled.svg-react.cjs +19 -0
  571. package/dist/foundation/iconography/svg/action/play_circle-filled.svg-react.js +17 -0
  572. package/dist/foundation/iconography/svg/action/play_circle-outlined.svg-react.cjs +19 -0
  573. package/dist/foundation/iconography/svg/action/play_circle-outlined.svg-react.js +17 -0
  574. package/dist/foundation/iconography/svg/action/play_circle-round.svg-react.cjs +19 -0
  575. package/dist/foundation/iconography/svg/action/play_circle-round.svg-react.js +17 -0
  576. package/dist/foundation/iconography/svg/action/play_circle-sharp.svg-react.cjs +19 -0
  577. package/dist/foundation/iconography/svg/action/play_circle-sharp.svg-react.js +17 -0
  578. package/dist/foundation/iconography/svg/action/print-filled.svg-react.cjs +19 -0
  579. package/dist/foundation/iconography/svg/action/print-filled.svg-react.js +17 -0
  580. package/dist/foundation/iconography/svg/action/print-outlined.svg-react.cjs +19 -0
  581. package/dist/foundation/iconography/svg/action/print-outlined.svg-react.js +17 -0
  582. package/dist/foundation/iconography/svg/action/print-round.svg-react.cjs +19 -0
  583. package/dist/foundation/iconography/svg/action/print-round.svg-react.js +17 -0
  584. package/dist/foundation/iconography/svg/action/print-sharp.svg-react.cjs +19 -0
  585. package/dist/foundation/iconography/svg/action/print-sharp.svg-react.js +17 -0
  586. package/dist/foundation/iconography/svg/action/query_stats-filled.svg-react.cjs +19 -0
  587. package/dist/foundation/iconography/svg/action/query_stats-filled.svg-react.js +17 -0
  588. package/dist/foundation/iconography/svg/action/query_stats-outlined.svg-react.cjs +19 -0
  589. package/dist/foundation/iconography/svg/action/query_stats-outlined.svg-react.js +17 -0
  590. package/dist/foundation/iconography/svg/action/query_stats-round.svg-react.cjs +19 -0
  591. package/dist/foundation/iconography/svg/action/query_stats-round.svg-react.js +17 -0
  592. package/dist/foundation/iconography/svg/action/query_stats-sharp.svg-react.cjs +19 -0
  593. package/dist/foundation/iconography/svg/action/query_stats-sharp.svg-react.js +17 -0
  594. package/dist/foundation/iconography/svg/action/savings-filled.svg-react.cjs +19 -0
  595. package/dist/foundation/iconography/svg/action/savings-filled.svg-react.js +17 -0
  596. package/dist/foundation/iconography/svg/action/savings-outlined.svg-react.cjs +19 -0
  597. package/dist/foundation/iconography/svg/action/savings-outlined.svg-react.js +17 -0
  598. package/dist/foundation/iconography/svg/action/savings-round.svg-react.cjs +19 -0
  599. package/dist/foundation/iconography/svg/action/savings-round.svg-react.js +17 -0
  600. package/dist/foundation/iconography/svg/action/savings-sharp.svg-react.cjs +19 -0
  601. package/dist/foundation/iconography/svg/action/savings-sharp.svg-react.js +17 -0
  602. package/dist/foundation/iconography/svg/action/schedule-filled.svg-react.cjs +19 -0
  603. package/dist/foundation/iconography/svg/action/schedule-filled.svg-react.js +17 -0
  604. package/dist/foundation/iconography/svg/action/schedule-outlined.svg-react.cjs +19 -0
  605. package/dist/foundation/iconography/svg/action/schedule-outlined.svg-react.js +17 -0
  606. package/dist/foundation/iconography/svg/action/schedule-round.svg-react.cjs +19 -0
  607. package/dist/foundation/iconography/svg/action/schedule-round.svg-react.js +17 -0
  608. package/dist/foundation/iconography/svg/action/schedule-sharp.svg-react.cjs +19 -0
  609. package/dist/foundation/iconography/svg/action/schedule-sharp.svg-react.js +17 -0
  610. package/dist/foundation/iconography/svg/action/settings-filled.svg-react.cjs +19 -0
  611. package/dist/foundation/iconography/svg/action/settings-filled.svg-react.js +17 -0
  612. package/dist/foundation/iconography/svg/action/settings-outlined.svg-react.cjs +19 -0
  613. package/dist/foundation/iconography/svg/action/settings-outlined.svg-react.js +17 -0
  614. package/dist/foundation/iconography/svg/action/settings-round.svg-react.cjs +19 -0
  615. package/dist/foundation/iconography/svg/action/settings-round.svg-react.js +17 -0
  616. package/dist/foundation/iconography/svg/action/settings-sharp.svg-react.cjs +19 -0
  617. package/dist/foundation/iconography/svg/action/settings-sharp.svg-react.js +17 -0
  618. package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg-react.cjs +19 -0
  619. package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg-react.js +17 -0
  620. package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg-react.cjs +19 -0
  621. package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg-react.js +17 -0
  622. package/dist/foundation/iconography/svg/action/shopping_cart-round.svg-react.cjs +19 -0
  623. package/dist/foundation/iconography/svg/action/shopping_cart-round.svg-react.js +17 -0
  624. package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg-react.cjs +19 -0
  625. package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg-react.js +17 -0
  626. package/dist/foundation/iconography/svg/action/signature-filled.svg-react.cjs +19 -0
  627. package/dist/foundation/iconography/svg/action/signature-filled.svg-react.js +17 -0
  628. package/dist/foundation/iconography/svg/action/signature-outlined.svg-react.cjs +19 -0
  629. package/dist/foundation/iconography/svg/action/signature-outlined.svg-react.js +17 -0
  630. package/dist/foundation/iconography/svg/action/signature-round.svg-react.cjs +19 -0
  631. package/dist/foundation/iconography/svg/action/signature-round.svg-react.js +17 -0
  632. package/dist/foundation/iconography/svg/action/signature-sharp.svg-react.cjs +19 -0
  633. package/dist/foundation/iconography/svg/action/signature-sharp.svg-react.js +17 -0
  634. package/dist/foundation/iconography/svg/action/sort-filled.svg-react.cjs +19 -0
  635. package/dist/foundation/iconography/svg/action/sort-filled.svg-react.js +17 -0
  636. package/dist/foundation/iconography/svg/action/sort-outlined.svg-react.cjs +19 -0
  637. package/dist/foundation/iconography/svg/action/sort-outlined.svg-react.js +17 -0
  638. package/dist/foundation/iconography/svg/action/sort-round.svg-react.cjs +19 -0
  639. package/dist/foundation/iconography/svg/action/sort-round.svg-react.js +17 -0
  640. package/dist/foundation/iconography/svg/action/sort-sharp.svg-react.cjs +19 -0
  641. package/dist/foundation/iconography/svg/action/sort-sharp.svg-react.js +17 -0
  642. package/dist/foundation/iconography/svg/action/speed-filled.svg-react.cjs +19 -0
  643. package/dist/foundation/iconography/svg/action/speed-filled.svg-react.js +17 -0
  644. package/dist/foundation/iconography/svg/action/speed-outlined.svg-react.cjs +19 -0
  645. package/dist/foundation/iconography/svg/action/speed-outlined.svg-react.js +17 -0
  646. package/dist/foundation/iconography/svg/action/speed-round.svg-react.cjs +19 -0
  647. package/dist/foundation/iconography/svg/action/speed-round.svg-react.js +17 -0
  648. package/dist/foundation/iconography/svg/action/speed-sharp.svg-react.cjs +19 -0
  649. package/dist/foundation/iconography/svg/action/speed-sharp.svg-react.js +17 -0
  650. package/dist/foundation/iconography/svg/action/tire-filled.svg-react.cjs +19 -0
  651. package/dist/foundation/iconography/svg/action/tire-filled.svg-react.js +17 -0
  652. package/dist/foundation/iconography/svg/action/tire-outlined.svg-react.cjs +19 -0
  653. package/dist/foundation/iconography/svg/action/tire-outlined.svg-react.js +17 -0
  654. package/dist/foundation/iconography/svg/action/tire-round.svg-react.cjs +19 -0
  655. package/dist/foundation/iconography/svg/action/tire-round.svg-react.js +17 -0
  656. package/dist/foundation/iconography/svg/action/tire-sharp.svg-react.cjs +19 -0
  657. package/dist/foundation/iconography/svg/action/tire-sharp.svg-react.js +17 -0
  658. package/dist/foundation/iconography/svg/action/trash-filled.svg-react.cjs +19 -0
  659. package/dist/foundation/iconography/svg/action/trash-filled.svg-react.js +17 -0
  660. package/dist/foundation/iconography/svg/action/trash-outlined.svg-react.cjs +19 -0
  661. package/dist/foundation/iconography/svg/action/trash-outlined.svg-react.js +17 -0
  662. package/dist/foundation/iconography/svg/action/trash-round.svg-react.cjs +19 -0
  663. package/dist/foundation/iconography/svg/action/trash-round.svg-react.js +17 -0
  664. package/dist/foundation/iconography/svg/action/trash-sharp.svg-react.cjs +19 -0
  665. package/dist/foundation/iconography/svg/action/trash-sharp.svg-react.js +17 -0
  666. package/dist/foundation/iconography/svg/action/tune-filled.svg-react.cjs +19 -0
  667. package/dist/foundation/iconography/svg/action/tune-filled.svg-react.js +17 -0
  668. package/dist/foundation/iconography/svg/action/tune-outlined.svg-react.cjs +19 -0
  669. package/dist/foundation/iconography/svg/action/tune-outlined.svg-react.js +17 -0
  670. package/dist/foundation/iconography/svg/action/tune-round.svg-react.cjs +19 -0
  671. package/dist/foundation/iconography/svg/action/tune-round.svg-react.js +17 -0
  672. package/dist/foundation/iconography/svg/action/tune-sharp.svg-react.cjs +19 -0
  673. package/dist/foundation/iconography/svg/action/tune-sharp.svg-react.js +17 -0
  674. package/dist/foundation/iconography/svg/action/verified-filled.svg-react.cjs +19 -0
  675. package/dist/foundation/iconography/svg/action/verified-filled.svg-react.js +17 -0
  676. package/dist/foundation/iconography/svg/action/verified-outlined.svg-react.cjs +19 -0
  677. package/dist/foundation/iconography/svg/action/verified-outlined.svg-react.js +17 -0
  678. package/dist/foundation/iconography/svg/action/verified-round.svg-react.cjs +19 -0
  679. package/dist/foundation/iconography/svg/action/verified-round.svg-react.js +17 -0
  680. package/dist/foundation/iconography/svg/action/verified-sharp.svg-react.cjs +19 -0
  681. package/dist/foundation/iconography/svg/action/verified-sharp.svg-react.js +17 -0
  682. package/dist/foundation/iconography/svg/action/visibility_off-filled.svg-react.cjs +19 -0
  683. package/dist/foundation/iconography/svg/action/visibility_off-filled.svg-react.js +17 -0
  684. package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg-react.cjs +19 -0
  685. package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg-react.js +17 -0
  686. package/dist/foundation/iconography/svg/action/visibility_off-round.svg-react.cjs +19 -0
  687. package/dist/foundation/iconography/svg/action/visibility_off-round.svg-react.js +17 -0
  688. package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg-react.cjs +19 -0
  689. package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg-react.js +17 -0
  690. package/dist/foundation/iconography/svg/action/visibility_on-filled.svg-react.cjs +19 -0
  691. package/dist/foundation/iconography/svg/action/visibility_on-filled.svg-react.js +17 -0
  692. package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg-react.cjs +19 -0
  693. package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg-react.js +17 -0
  694. package/dist/foundation/iconography/svg/action/visibility_on-round.svg-react.cjs +19 -0
  695. package/dist/foundation/iconography/svg/action/visibility_on-round.svg-react.js +17 -0
  696. package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg-react.cjs +19 -0
  697. package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg-react.js +17 -0
  698. package/dist/foundation/iconography/svg/communication/call-filled.svg-react.cjs +19 -0
  699. package/dist/foundation/iconography/svg/communication/call-filled.svg-react.js +17 -0
  700. package/dist/foundation/iconography/svg/communication/call-outlined.svg-react.cjs +19 -0
  701. package/dist/foundation/iconography/svg/communication/call-outlined.svg-react.js +17 -0
  702. package/dist/foundation/iconography/svg/communication/call-round.svg-react.cjs +19 -0
  703. package/dist/foundation/iconography/svg/communication/call-round.svg-react.js +17 -0
  704. package/dist/foundation/iconography/svg/communication/call-sharp.svg-react.cjs +19 -0
  705. package/dist/foundation/iconography/svg/communication/call-sharp.svg-react.js +17 -0
  706. package/dist/foundation/iconography/svg/communication/chat-filled.svg-react.cjs +19 -0
  707. package/dist/foundation/iconography/svg/communication/chat-filled.svg-react.js +17 -0
  708. package/dist/foundation/iconography/svg/communication/chat-outlined.svg-react.cjs +19 -0
  709. package/dist/foundation/iconography/svg/communication/chat-outlined.svg-react.js +17 -0
  710. package/dist/foundation/iconography/svg/communication/chat-round.svg-react.cjs +19 -0
  711. package/dist/foundation/iconography/svg/communication/chat-round.svg-react.js +17 -0
  712. package/dist/foundation/iconography/svg/communication/chat-sharp.svg-react.cjs +19 -0
  713. package/dist/foundation/iconography/svg/communication/chat-sharp.svg-react.js +17 -0
  714. package/dist/foundation/iconography/svg/communication/index.cjs +31 -19
  715. package/dist/foundation/iconography/svg/communication/index.js +26 -22
  716. package/dist/foundation/iconography/svg/content/add-filled.svg-react.cjs +19 -0
  717. package/dist/foundation/iconography/svg/content/add-filled.svg-react.js +17 -0
  718. package/dist/foundation/iconography/svg/content/add-outlined.svg-react.cjs +19 -0
  719. package/dist/foundation/iconography/svg/content/add-outlined.svg-react.js +17 -0
  720. package/dist/foundation/iconography/svg/content/add-round.svg-react.cjs +19 -0
  721. package/dist/foundation/iconography/svg/content/add-round.svg-react.js +17 -0
  722. package/dist/foundation/iconography/svg/content/add-sharp.svg-react.cjs +19 -0
  723. package/dist/foundation/iconography/svg/content/add-sharp.svg-react.js +17 -0
  724. package/dist/foundation/iconography/svg/content/add_circle-filled.svg-react.cjs +19 -0
  725. package/dist/foundation/iconography/svg/content/add_circle-filled.svg-react.js +17 -0
  726. package/dist/foundation/iconography/svg/content/add_circle-outlined.svg-react.cjs +19 -0
  727. package/dist/foundation/iconography/svg/content/add_circle-outlined.svg-react.js +17 -0
  728. package/dist/foundation/iconography/svg/content/add_circle-round.svg-react.cjs +19 -0
  729. package/dist/foundation/iconography/svg/content/add_circle-round.svg-react.js +17 -0
  730. package/dist/foundation/iconography/svg/content/add_circle-sharp.svg-react.cjs +19 -0
  731. package/dist/foundation/iconography/svg/content/add_circle-sharp.svg-react.js +17 -0
  732. package/dist/foundation/iconography/svg/content/auto-filled.svg-react.cjs +19 -0
  733. package/dist/foundation/iconography/svg/content/auto-filled.svg-react.js +17 -0
  734. package/dist/foundation/iconography/svg/content/auto-outlined.svg-react.cjs +19 -0
  735. package/dist/foundation/iconography/svg/content/auto-outlined.svg-react.js +17 -0
  736. package/dist/foundation/iconography/svg/content/auto-round.svg-react.cjs +19 -0
  737. package/dist/foundation/iconography/svg/content/auto-round.svg-react.js +17 -0
  738. package/dist/foundation/iconography/svg/content/auto-sharp.svg-react.cjs +19 -0
  739. package/dist/foundation/iconography/svg/content/auto-sharp.svg-react.js +17 -0
  740. package/dist/foundation/iconography/svg/content/backspace-filled.svg-react.cjs +19 -0
  741. package/dist/foundation/iconography/svg/content/backspace-filled.svg-react.js +17 -0
  742. package/dist/foundation/iconography/svg/content/backspace-outlined.svg-react.cjs +19 -0
  743. package/dist/foundation/iconography/svg/content/backspace-outlined.svg-react.js +17 -0
  744. package/dist/foundation/iconography/svg/content/backspace-round.svg-react.cjs +19 -0
  745. package/dist/foundation/iconography/svg/content/backspace-round.svg-react.js +17 -0
  746. package/dist/foundation/iconography/svg/content/backspace-sharp.svg-react.cjs +19 -0
  747. package/dist/foundation/iconography/svg/content/backspace-sharp.svg-react.js +17 -0
  748. package/dist/foundation/iconography/svg/content/clear-filled.svg-react.cjs +19 -0
  749. package/dist/foundation/iconography/svg/content/clear-filled.svg-react.js +17 -0
  750. package/dist/foundation/iconography/svg/content/clear-outlined.svg-react.cjs +19 -0
  751. package/dist/foundation/iconography/svg/content/clear-outlined.svg-react.js +17 -0
  752. package/dist/foundation/iconography/svg/content/clear-round.svg-react.cjs +19 -0
  753. package/dist/foundation/iconography/svg/content/clear-round.svg-react.js +17 -0
  754. package/dist/foundation/iconography/svg/content/clear-sharp.svg-react.cjs +19 -0
  755. package/dist/foundation/iconography/svg/content/clear-sharp.svg-react.js +17 -0
  756. package/dist/foundation/iconography/svg/content/content_copy-filled.svg-react.cjs +19 -0
  757. package/dist/foundation/iconography/svg/content/content_copy-filled.svg-react.js +17 -0
  758. package/dist/foundation/iconography/svg/content/content_copy-outlined.svg-react.cjs +19 -0
  759. package/dist/foundation/iconography/svg/content/content_copy-outlined.svg-react.js +17 -0
  760. package/dist/foundation/iconography/svg/content/content_copy-round.svg-react.cjs +19 -0
  761. package/dist/foundation/iconography/svg/content/content_copy-round.svg-react.js +17 -0
  762. package/dist/foundation/iconography/svg/content/content_copy-sharp.svg-react.cjs +19 -0
  763. package/dist/foundation/iconography/svg/content/content_copy-sharp.svg-react.js +17 -0
  764. package/dist/foundation/iconography/svg/content/index.cjs +135 -91
  765. package/dist/foundation/iconography/svg/content/index.d.ts +52 -0
  766. package/dist/foundation/iconography/svg/content/index.d.ts.map +1 -1
  767. package/dist/foundation/iconography/svg/content/index.js +127 -101
  768. package/dist/foundation/iconography/svg/content/mail-filled.svg-react.cjs +19 -0
  769. package/dist/foundation/iconography/svg/content/mail-filled.svg-react.js +17 -0
  770. package/dist/foundation/iconography/svg/content/mail-outlined.svg-react.cjs +19 -0
  771. package/dist/foundation/iconography/svg/content/mail-outlined.svg-react.js +17 -0
  772. package/dist/foundation/iconography/svg/content/mail-round.svg-react.cjs +19 -0
  773. package/dist/foundation/iconography/svg/content/mail-round.svg-react.js +17 -0
  774. package/dist/foundation/iconography/svg/content/mail-sharp.svg-react.cjs +19 -0
  775. package/dist/foundation/iconography/svg/content/mail-sharp.svg-react.js +17 -0
  776. package/dist/foundation/iconography/svg/content/manage_account-filled.svg-react.cjs +19 -0
  777. package/dist/foundation/iconography/svg/content/manage_account-filled.svg-react.js +17 -0
  778. package/dist/foundation/iconography/svg/content/manage_account-outlined.svg-react.cjs +19 -0
  779. package/dist/foundation/iconography/svg/content/manage_account-outlined.svg-react.js +17 -0
  780. package/dist/foundation/iconography/svg/content/manage_account-round.svg-react.cjs +19 -0
  781. package/dist/foundation/iconography/svg/content/manage_account-round.svg-react.js +17 -0
  782. package/dist/foundation/iconography/svg/content/manage_account-sharp.svg-react.cjs +19 -0
  783. package/dist/foundation/iconography/svg/content/manage_account-sharp.svg-react.js +17 -0
  784. package/dist/foundation/iconography/svg/content/person-filled.svg-react.cjs +19 -0
  785. package/dist/foundation/iconography/svg/content/person-filled.svg-react.js +17 -0
  786. package/dist/foundation/iconography/svg/content/person-outlined.svg-react.cjs +19 -0
  787. package/dist/foundation/iconography/svg/content/person-outlined.svg-react.js +17 -0
  788. package/dist/foundation/iconography/svg/content/person-round.svg-react.cjs +19 -0
  789. package/dist/foundation/iconography/svg/content/person-round.svg-react.js +17 -0
  790. package/dist/foundation/iconography/svg/content/person-sharp.svg-react.cjs +19 -0
  791. package/dist/foundation/iconography/svg/content/person-sharp.svg-react.js +17 -0
  792. package/dist/foundation/iconography/svg/content/remove-filled.svg-react.cjs +19 -0
  793. package/dist/foundation/iconography/svg/content/remove-filled.svg-react.js +17 -0
  794. package/dist/foundation/iconography/svg/content/remove-outlined.svg-react.cjs +19 -0
  795. package/dist/foundation/iconography/svg/content/remove-outlined.svg-react.js +17 -0
  796. package/dist/foundation/iconography/svg/content/remove-round.svg-react.cjs +19 -0
  797. package/dist/foundation/iconography/svg/content/remove-round.svg-react.js +17 -0
  798. package/dist/foundation/iconography/svg/content/remove-sharp.svg-react.cjs +19 -0
  799. package/dist/foundation/iconography/svg/content/remove-sharp.svg-react.js +17 -0
  800. package/dist/foundation/iconography/svg/content/send-filled.svg-react.cjs +19 -0
  801. package/dist/foundation/iconography/svg/content/send-filled.svg-react.js +17 -0
  802. package/dist/foundation/iconography/svg/content/send-outlined.svg-react.cjs +19 -0
  803. package/dist/foundation/iconography/svg/content/send-outlined.svg-react.js +17 -0
  804. package/dist/foundation/iconography/svg/content/send-round.svg-react.cjs +19 -0
  805. package/dist/foundation/iconography/svg/content/send-round.svg-react.js +17 -0
  806. package/dist/foundation/iconography/svg/content/send-sharp.svg-react.cjs +19 -0
  807. package/dist/foundation/iconography/svg/content/send-sharp.svg-react.js +17 -0
  808. package/dist/foundation/iconography/svg/content/work-filled.svg-react.cjs +19 -0
  809. package/dist/foundation/iconography/svg/content/work-filled.svg-react.js +17 -0
  810. package/dist/foundation/iconography/svg/content/work-outlined.svg-react.cjs +19 -0
  811. package/dist/foundation/iconography/svg/content/work-outlined.svg-react.js +17 -0
  812. package/dist/foundation/iconography/svg/content/work-round.svg-react.cjs +19 -0
  813. package/dist/foundation/iconography/svg/content/work-round.svg-react.js +17 -0
  814. package/dist/foundation/iconography/svg/content/work-sharp.svg-react.cjs +19 -0
  815. package/dist/foundation/iconography/svg/content/work-sharp.svg-react.js +17 -0
  816. package/dist/foundation/iconography/svg/device/index.cjs +19 -10
  817. package/dist/foundation/iconography/svg/device/index.js +14 -12
  818. package/dist/foundation/iconography/svg/device/task-filled.svg-react.cjs +19 -0
  819. package/dist/foundation/iconography/svg/device/task-filled.svg-react.js +17 -0
  820. package/dist/foundation/iconography/svg/device/task-outlined.svg-react.cjs +19 -0
  821. package/dist/foundation/iconography/svg/device/task-outlined.svg-react.js +17 -0
  822. package/dist/foundation/iconography/svg/device/task-round.svg-react.cjs +19 -0
  823. package/dist/foundation/iconography/svg/device/task-round.svg-react.js +17 -0
  824. package/dist/foundation/iconography/svg/device/task-sharp.svg-react.cjs +19 -0
  825. package/dist/foundation/iconography/svg/device/task-sharp.svg-react.js +17 -0
  826. package/dist/foundation/iconography/svg/file/archive-filled.svg-react.cjs +19 -0
  827. package/dist/foundation/iconography/svg/file/archive-filled.svg-react.js +17 -0
  828. package/dist/foundation/iconography/svg/file/archive-outlined.svg-react.cjs +19 -0
  829. package/dist/foundation/iconography/svg/file/archive-outlined.svg-react.js +17 -0
  830. package/dist/foundation/iconography/svg/file/archive-round.svg-react.cjs +19 -0
  831. package/dist/foundation/iconography/svg/file/archive-round.svg-react.js +17 -0
  832. package/dist/foundation/iconography/svg/file/archive-sharp.svg-react.cjs +19 -0
  833. package/dist/foundation/iconography/svg/file/archive-sharp.svg-react.js +17 -0
  834. package/dist/foundation/iconography/svg/file/file_copy-filled.svg-react.cjs +19 -0
  835. package/dist/foundation/iconography/svg/file/file_copy-filled.svg-react.js +17 -0
  836. package/dist/foundation/iconography/svg/file/file_copy-outlined.svg-react.cjs +19 -0
  837. package/dist/foundation/iconography/svg/file/file_copy-outlined.svg-react.js +17 -0
  838. package/dist/foundation/iconography/svg/file/file_copy-round.svg-react.cjs +19 -0
  839. package/dist/foundation/iconography/svg/file/file_copy-round.svg-react.js +17 -0
  840. package/dist/foundation/iconography/svg/file/file_copy-sharp.svg-react.cjs +19 -0
  841. package/dist/foundation/iconography/svg/file/file_copy-sharp.svg-react.js +17 -0
  842. package/dist/foundation/iconography/svg/file/file_download-filled.svg-react.cjs +19 -0
  843. package/dist/foundation/iconography/svg/file/file_download-filled.svg-react.js +17 -0
  844. package/dist/foundation/iconography/svg/file/file_download-outlined.svg-react.cjs +19 -0
  845. package/dist/foundation/iconography/svg/file/file_download-outlined.svg-react.js +17 -0
  846. package/dist/foundation/iconography/svg/file/file_download-round.svg-react.cjs +19 -0
  847. package/dist/foundation/iconography/svg/file/file_download-round.svg-react.js +17 -0
  848. package/dist/foundation/iconography/svg/file/file_download-sharp.svg-react.cjs +19 -0
  849. package/dist/foundation/iconography/svg/file/file_download-sharp.svg-react.js +17 -0
  850. package/dist/foundation/iconography/svg/file/file_download_off-filled.svg-react.cjs +19 -0
  851. package/dist/foundation/iconography/svg/file/file_download_off-filled.svg-react.js +17 -0
  852. package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg-react.cjs +19 -0
  853. package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg-react.js +17 -0
  854. package/dist/foundation/iconography/svg/file/file_download_off-round.svg-react.cjs +19 -0
  855. package/dist/foundation/iconography/svg/file/file_download_off-round.svg-react.js +17 -0
  856. package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg-react.cjs +19 -0
  857. package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg-react.js +17 -0
  858. package/dist/foundation/iconography/svg/file/file_open-filled.svg-react.cjs +19 -0
  859. package/dist/foundation/iconography/svg/file/file_open-filled.svg-react.js +17 -0
  860. package/dist/foundation/iconography/svg/file/file_open-outlined.svg-react.cjs +19 -0
  861. package/dist/foundation/iconography/svg/file/file_open-outlined.svg-react.js +17 -0
  862. package/dist/foundation/iconography/svg/file/file_open-round.svg-react.cjs +19 -0
  863. package/dist/foundation/iconography/svg/file/file_open-round.svg-react.js +17 -0
  864. package/dist/foundation/iconography/svg/file/file_open-sharp.svg-react.cjs +19 -0
  865. package/dist/foundation/iconography/svg/file/file_open-sharp.svg-react.js +17 -0
  866. package/dist/foundation/iconography/svg/file/file_upload-filled.svg-react.cjs +19 -0
  867. package/dist/foundation/iconography/svg/file/file_upload-filled.svg-react.js +17 -0
  868. package/dist/foundation/iconography/svg/file/file_upload-outlined.svg-react.cjs +19 -0
  869. package/dist/foundation/iconography/svg/file/file_upload-outlined.svg-react.js +17 -0
  870. package/dist/foundation/iconography/svg/file/file_upload-round.svg-react.cjs +19 -0
  871. package/dist/foundation/iconography/svg/file/file_upload-round.svg-react.js +17 -0
  872. package/dist/foundation/iconography/svg/file/file_upload-sharp.svg-react.cjs +19 -0
  873. package/dist/foundation/iconography/svg/file/file_upload-sharp.svg-react.js +17 -0
  874. package/dist/foundation/iconography/svg/file/index.cjs +81 -64
  875. package/dist/foundation/iconography/svg/file/index.js +76 -72
  876. package/dist/foundation/iconography/svg/file/unarchive-filled.svg-react.cjs +19 -0
  877. package/dist/foundation/iconography/svg/file/unarchive-filled.svg-react.js +17 -0
  878. package/dist/foundation/iconography/svg/file/unarchive-outlined.svg-react.cjs +19 -0
  879. package/dist/foundation/iconography/svg/file/unarchive-outlined.svg-react.js +17 -0
  880. package/dist/foundation/iconography/svg/file/unarchive-round.svg-react.cjs +19 -0
  881. package/dist/foundation/iconography/svg/file/unarchive-round.svg-react.js +17 -0
  882. package/dist/foundation/iconography/svg/file/unarchive-sharp.svg-react.cjs +19 -0
  883. package/dist/foundation/iconography/svg/file/unarchive-sharp.svg-react.js +17 -0
  884. package/dist/foundation/iconography/svg/index.cjs +84 -25
  885. package/dist/foundation/iconography/svg/index.js +13 -26
  886. package/dist/foundation/iconography/svg/map/ev_station-filled.svg-react.cjs +19 -0
  887. package/dist/foundation/iconography/svg/map/ev_station-filled.svg-react.js +17 -0
  888. package/dist/foundation/iconography/svg/map/ev_station-outlined.svg-react.cjs +19 -0
  889. package/dist/foundation/iconography/svg/map/ev_station-outlined.svg-react.js +17 -0
  890. package/dist/foundation/iconography/svg/map/ev_station-round.svg-react.cjs +19 -0
  891. package/dist/foundation/iconography/svg/map/ev_station-round.svg-react.js +17 -0
  892. package/dist/foundation/iconography/svg/map/ev_station-sharp.svg-react.cjs +19 -0
  893. package/dist/foundation/iconography/svg/map/ev_station-sharp.svg-react.js +17 -0
  894. package/dist/foundation/iconography/svg/map/forest-filled.svg-react.cjs +19 -0
  895. package/dist/foundation/iconography/svg/map/forest-filled.svg-react.js +17 -0
  896. package/dist/foundation/iconography/svg/map/forest-outlined.svg-react.cjs +19 -0
  897. package/dist/foundation/iconography/svg/map/forest-outlined.svg-react.js +17 -0
  898. package/dist/foundation/iconography/svg/map/forest-round.svg-react.cjs +19 -0
  899. package/dist/foundation/iconography/svg/map/forest-round.svg-react.js +17 -0
  900. package/dist/foundation/iconography/svg/map/forest-sharp.svg-react.cjs +19 -0
  901. package/dist/foundation/iconography/svg/map/forest-sharp.svg-react.js +17 -0
  902. package/dist/foundation/iconography/svg/map/gas_station-filled.svg-react.cjs +19 -0
  903. package/dist/foundation/iconography/svg/map/gas_station-filled.svg-react.js +17 -0
  904. package/dist/foundation/iconography/svg/map/gas_station-outlined.svg-react.cjs +19 -0
  905. package/dist/foundation/iconography/svg/map/gas_station-outlined.svg-react.js +17 -0
  906. package/dist/foundation/iconography/svg/map/gas_station-round.svg-react.cjs +19 -0
  907. package/dist/foundation/iconography/svg/map/gas_station-round.svg-react.js +17 -0
  908. package/dist/foundation/iconography/svg/map/gas_station-sharp.svg-react.cjs +19 -0
  909. package/dist/foundation/iconography/svg/map/gas_station-sharp.svg-react.js +17 -0
  910. package/dist/foundation/iconography/svg/map/index.cjs +61 -46
  911. package/dist/foundation/iconography/svg/map/index.js +56 -52
  912. package/dist/foundation/iconography/svg/map/location-filled.svg-react.cjs +19 -0
  913. package/dist/foundation/iconography/svg/map/location-filled.svg-react.js +17 -0
  914. package/dist/foundation/iconography/svg/map/location-outlined.svg-react.cjs +19 -0
  915. package/dist/foundation/iconography/svg/map/location-outlined.svg-react.js +17 -0
  916. package/dist/foundation/iconography/svg/map/location-round.svg-react.cjs +19 -0
  917. package/dist/foundation/iconography/svg/map/location-round.svg-react.js +17 -0
  918. package/dist/foundation/iconography/svg/map/location-sharp.svg-react.cjs +19 -0
  919. package/dist/foundation/iconography/svg/map/location-sharp.svg-react.js +17 -0
  920. package/dist/foundation/iconography/svg/map/route-filled.svg-react.cjs +19 -0
  921. package/dist/foundation/iconography/svg/map/route-filled.svg-react.js +17 -0
  922. package/dist/foundation/iconography/svg/map/route-outlined.svg-react.cjs +19 -0
  923. package/dist/foundation/iconography/svg/map/route-outlined.svg-react.js +17 -0
  924. package/dist/foundation/iconography/svg/map/route-round.svg-react.cjs +19 -0
  925. package/dist/foundation/iconography/svg/map/route-round.svg-react.js +17 -0
  926. package/dist/foundation/iconography/svg/map/route-sharp.svg-react.cjs +19 -0
  927. package/dist/foundation/iconography/svg/map/route-sharp.svg-react.js +17 -0
  928. package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg-react.cjs +19 -0
  929. package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg-react.js +17 -0
  930. package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg-react.cjs +19 -0
  931. package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg-react.js +17 -0
  932. package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg-react.cjs +19 -0
  933. package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg-react.js +17 -0
  934. package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg-react.cjs +19 -0
  935. package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg-react.js +17 -0
  936. package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg-react.cjs +19 -0
  937. package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg-react.js +17 -0
  938. package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg-react.cjs +19 -0
  939. package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg-react.js +17 -0
  940. package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg-react.cjs +19 -0
  941. package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg-react.js +17 -0
  942. package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg-react.cjs +19 -0
  943. package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg-react.js +17 -0
  944. package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg-react.cjs +19 -0
  945. package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg-react.js +17 -0
  946. package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg-react.cjs +19 -0
  947. package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg-react.js +17 -0
  948. package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg-react.cjs +19 -0
  949. package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg-react.js +17 -0
  950. package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg-react.cjs +19 -0
  951. package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg-react.js +17 -0
  952. package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg-react.cjs +19 -0
  953. package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg-react.js +17 -0
  954. package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg-react.cjs +19 -0
  955. package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg-react.js +17 -0
  956. package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg-react.cjs +19 -0
  957. package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg-react.js +17 -0
  958. package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg-react.cjs +19 -0
  959. package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg-react.js +17 -0
  960. package/dist/foundation/iconography/svg/navigation/check-filled.svg-react.cjs +19 -0
  961. package/dist/foundation/iconography/svg/navigation/check-filled.svg-react.js +17 -0
  962. package/dist/foundation/iconography/svg/navigation/check-outlined.svg-react.cjs +19 -0
  963. package/dist/foundation/iconography/svg/navigation/check-outlined.svg-react.js +17 -0
  964. package/dist/foundation/iconography/svg/navigation/check-round.svg-react.cjs +19 -0
  965. package/dist/foundation/iconography/svg/navigation/check-round.svg-react.js +17 -0
  966. package/dist/foundation/iconography/svg/navigation/check-sharp.svg-react.cjs +19 -0
  967. package/dist/foundation/iconography/svg/navigation/check-sharp.svg-react.js +17 -0
  968. package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg-react.cjs +19 -0
  969. package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg-react.js +17 -0
  970. package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg-react.cjs +19 -0
  971. package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg-react.js +17 -0
  972. package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg-react.cjs +19 -0
  973. package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg-react.js +17 -0
  974. package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg-react.cjs +19 -0
  975. package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg-react.js +17 -0
  976. package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg-react.cjs +19 -0
  977. package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg-react.js +17 -0
  978. package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg-react.cjs +19 -0
  979. package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg-react.js +17 -0
  980. package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg-react.cjs +19 -0
  981. package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg-react.js +17 -0
  982. package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg-react.cjs +19 -0
  983. package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg-react.js +17 -0
  984. package/dist/foundation/iconography/svg/navigation/close-filled.svg-react.cjs +19 -0
  985. package/dist/foundation/iconography/svg/navigation/close-filled.svg-react.js +17 -0
  986. package/dist/foundation/iconography/svg/navigation/close-outlined.svg-react.cjs +19 -0
  987. package/dist/foundation/iconography/svg/navigation/close-outlined.svg-react.js +17 -0
  988. package/dist/foundation/iconography/svg/navigation/close-round.svg-react.cjs +19 -0
  989. package/dist/foundation/iconography/svg/navigation/close-round.svg-react.js +17 -0
  990. package/dist/foundation/iconography/svg/navigation/close-sharp.svg-react.cjs +19 -0
  991. package/dist/foundation/iconography/svg/navigation/close-sharp.svg-react.js +17 -0
  992. package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg-react.cjs +19 -0
  993. package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg-react.js +17 -0
  994. package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg-react.cjs +19 -0
  995. package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg-react.js +17 -0
  996. package/dist/foundation/iconography/svg/navigation/expand_less-round.svg-react.cjs +19 -0
  997. package/dist/foundation/iconography/svg/navigation/expand_less-round.svg-react.js +17 -0
  998. package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg-react.cjs +19 -0
  999. package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg-react.js +17 -0
  1000. package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg-react.cjs +19 -0
  1001. package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg-react.js +17 -0
  1002. package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg-react.cjs +19 -0
  1003. package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg-react.js +17 -0
  1004. package/dist/foundation/iconography/svg/navigation/expand_more-round.svg-react.cjs +19 -0
  1005. package/dist/foundation/iconography/svg/navigation/expand_more-round.svg-react.js +17 -0
  1006. package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg-react.cjs +19 -0
  1007. package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg-react.js +17 -0
  1008. package/dist/foundation/iconography/svg/navigation/external-filled.svg-react.cjs +19 -0
  1009. package/dist/foundation/iconography/svg/navigation/external-filled.svg-react.js +17 -0
  1010. package/dist/foundation/iconography/svg/navigation/external-outlined.svg-react.cjs +19 -0
  1011. package/dist/foundation/iconography/svg/navigation/external-outlined.svg-react.js +17 -0
  1012. package/dist/foundation/iconography/svg/navigation/external-round.svg-react.cjs +19 -0
  1013. package/dist/foundation/iconography/svg/navigation/external-round.svg-react.js +17 -0
  1014. package/dist/foundation/iconography/svg/navigation/external-sharp.svg-react.cjs +19 -0
  1015. package/dist/foundation/iconography/svg/navigation/external-sharp.svg-react.js +17 -0
  1016. package/dist/foundation/iconography/svg/navigation/index.cjs +220 -191
  1017. package/dist/foundation/iconography/svg/navigation/index.js +215 -211
  1018. package/dist/foundation/iconography/svg/navigation/menu-filled.svg-react.cjs +19 -0
  1019. package/dist/foundation/iconography/svg/navigation/menu-filled.svg-react.js +17 -0
  1020. package/dist/foundation/iconography/svg/navigation/menu-outlined.svg-react.cjs +19 -0
  1021. package/dist/foundation/iconography/svg/navigation/menu-outlined.svg-react.js +17 -0
  1022. package/dist/foundation/iconography/svg/navigation/menu-round.svg-react.cjs +19 -0
  1023. package/dist/foundation/iconography/svg/navigation/menu-round.svg-react.js +17 -0
  1024. package/dist/foundation/iconography/svg/navigation/menu-sharp.svg-react.cjs +19 -0
  1025. package/dist/foundation/iconography/svg/navigation/menu-sharp.svg-react.js +17 -0
  1026. package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg-react.cjs +19 -0
  1027. package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg-react.js +17 -0
  1028. package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg-react.cjs +19 -0
  1029. package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg-react.js +17 -0
  1030. package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg-react.cjs +19 -0
  1031. package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg-react.js +17 -0
  1032. package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg-react.cjs +19 -0
  1033. package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg-react.js +17 -0
  1034. package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg-react.cjs +19 -0
  1035. package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg-react.js +17 -0
  1036. package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg-react.cjs +19 -0
  1037. package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg-react.js +17 -0
  1038. package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg-react.cjs +19 -0
  1039. package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg-react.js +17 -0
  1040. package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg-react.cjs +19 -0
  1041. package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg-react.js +17 -0
  1042. package/dist/foundation/iconography/svg/navigation/open-filled.svg-react.cjs +19 -0
  1043. package/dist/foundation/iconography/svg/navigation/open-filled.svg-react.js +17 -0
  1044. package/dist/foundation/iconography/svg/navigation/open-outlined.svg-react.cjs +19 -0
  1045. package/dist/foundation/iconography/svg/navigation/open-outlined.svg-react.js +17 -0
  1046. package/dist/foundation/iconography/svg/navigation/open-round.svg-react.cjs +19 -0
  1047. package/dist/foundation/iconography/svg/navigation/open-round.svg-react.js +17 -0
  1048. package/dist/foundation/iconography/svg/navigation/open-sharp.svg-react.cjs +19 -0
  1049. package/dist/foundation/iconography/svg/navigation/open-sharp.svg-react.js +17 -0
  1050. package/dist/foundation/iconography/svg/navigation/refresh-filled.svg-react.cjs +19 -0
  1051. package/dist/foundation/iconography/svg/navigation/refresh-filled.svg-react.js +17 -0
  1052. package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg-react.cjs +19 -0
  1053. package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg-react.js +17 -0
  1054. package/dist/foundation/iconography/svg/navigation/refresh-round.svg-react.cjs +19 -0
  1055. package/dist/foundation/iconography/svg/navigation/refresh-round.svg-react.js +17 -0
  1056. package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg-react.cjs +19 -0
  1057. package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg-react.js +17 -0
  1058. package/dist/foundation/iconography/svg/navigation/spinner-filled.svg-react.cjs +19 -0
  1059. package/dist/foundation/iconography/svg/navigation/spinner-filled.svg-react.js +17 -0
  1060. package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg-react.cjs +19 -0
  1061. package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg-react.js +17 -0
  1062. package/dist/foundation/iconography/svg/navigation/spinner-round.svg-react.cjs +19 -0
  1063. package/dist/foundation/iconography/svg/navigation/spinner-round.svg-react.js +17 -0
  1064. package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg-react.cjs +19 -0
  1065. package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg-react.js +17 -0
  1066. package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg-react.cjs +19 -0
  1067. package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg-react.js +17 -0
  1068. package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg-react.cjs +19 -0
  1069. package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg-react.js +17 -0
  1070. package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg-react.cjs +19 -0
  1071. package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg-react.js +17 -0
  1072. package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg-react.cjs +19 -0
  1073. package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg-react.js +17 -0
  1074. package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg-react.cjs +19 -0
  1075. package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg-react.js +17 -0
  1076. package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg-react.cjs +19 -0
  1077. package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg-react.js +17 -0
  1078. package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg-react.cjs +19 -0
  1079. package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg-react.js +17 -0
  1080. package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg-react.cjs +19 -0
  1081. package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg-react.js +17 -0
  1082. package/dist/foundation/iconography/svg/notifications/event_note-filled.svg-react.cjs +19 -0
  1083. package/dist/foundation/iconography/svg/notifications/event_note-filled.svg-react.js +17 -0
  1084. package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg-react.cjs +19 -0
  1085. package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg-react.js +17 -0
  1086. package/dist/foundation/iconography/svg/notifications/event_note-round.svg-react.cjs +19 -0
  1087. package/dist/foundation/iconography/svg/notifications/event_note-round.svg-react.js +17 -0
  1088. package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg-react.cjs +19 -0
  1089. package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg-react.js +17 -0
  1090. package/dist/foundation/iconography/svg/notifications/index.cjs +41 -28
  1091. package/dist/foundation/iconography/svg/notifications/index.js +36 -32
  1092. package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg-react.cjs +19 -0
  1093. package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg-react.js +17 -0
  1094. package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg-react.cjs +19 -0
  1095. package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg-react.js +17 -0
  1096. package/dist/foundation/iconography/svg/notifications/live_tv-round.svg-react.cjs +19 -0
  1097. package/dist/foundation/iconography/svg/notifications/live_tv-round.svg-react.js +17 -0
  1098. package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg-react.cjs +19 -0
  1099. package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg-react.js +17 -0
  1100. package/dist/foundation/iconography/svg/notifications/wifi-filled.svg-react.cjs +19 -0
  1101. package/dist/foundation/iconography/svg/notifications/wifi-filled.svg-react.js +17 -0
  1102. package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg-react.cjs +19 -0
  1103. package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg-react.js +17 -0
  1104. package/dist/foundation/iconography/svg/notifications/wifi-round.svg-react.cjs +19 -0
  1105. package/dist/foundation/iconography/svg/notifications/wifi-round.svg-react.js +17 -0
  1106. package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg-react.cjs +19 -0
  1107. package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg-react.js +17 -0
  1108. package/dist/foundation/iconography/svg/search/coffee-filled.svg-react.cjs +19 -0
  1109. package/dist/foundation/iconography/svg/search/coffee-filled.svg-react.js +17 -0
  1110. package/dist/foundation/iconography/svg/search/coffee-outlined.svg-react.cjs +19 -0
  1111. package/dist/foundation/iconography/svg/search/coffee-outlined.svg-react.js +17 -0
  1112. package/dist/foundation/iconography/svg/search/coffee-round.svg-react.cjs +19 -0
  1113. package/dist/foundation/iconography/svg/search/coffee-round.svg-react.js +17 -0
  1114. package/dist/foundation/iconography/svg/search/coffee-sharp.svg-react.cjs +19 -0
  1115. package/dist/foundation/iconography/svg/search/coffee-sharp.svg-react.js +17 -0
  1116. package/dist/foundation/iconography/svg/search/index.cjs +31 -19
  1117. package/dist/foundation/iconography/svg/search/index.js +26 -22
  1118. package/dist/foundation/iconography/svg/search/search-filled.svg-react.cjs +19 -0
  1119. package/dist/foundation/iconography/svg/search/search-filled.svg-react.js +17 -0
  1120. package/dist/foundation/iconography/svg/search/search-outlined.svg-react.cjs +19 -0
  1121. package/dist/foundation/iconography/svg/search/search-outlined.svg-react.js +17 -0
  1122. package/dist/foundation/iconography/svg/search/search-round.svg-react.cjs +19 -0
  1123. package/dist/foundation/iconography/svg/search/search-round.svg-react.js +17 -0
  1124. package/dist/foundation/iconography/svg/search/search-sharp.svg-react.cjs +19 -0
  1125. package/dist/foundation/iconography/svg/search/search-sharp.svg-react.js +17 -0
  1126. package/dist/foundation/iconography/svg/social/index.cjs +61 -46
  1127. package/dist/foundation/iconography/svg/social/index.js +56 -52
  1128. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg-react.cjs +19 -0
  1129. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg-react.js +17 -0
  1130. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg-react.cjs +19 -0
  1131. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg-react.js +17 -0
  1132. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg-react.cjs +19 -0
  1133. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg-react.js +17 -0
  1134. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg-react.cjs +19 -0
  1135. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg-react.js +17 -0
  1136. package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg-react.cjs +19 -0
  1137. package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg-react.js +17 -0
  1138. package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg-react.cjs +19 -0
  1139. package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg-react.js +17 -0
  1140. package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg-react.cjs +19 -0
  1141. package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg-react.js +17 -0
  1142. package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg-react.cjs +19 -0
  1143. package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg-react.js +17 -0
  1144. package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg-react.cjs +19 -0
  1145. package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg-react.js +17 -0
  1146. package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg-react.cjs +19 -0
  1147. package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg-react.js +17 -0
  1148. package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg-react.cjs +19 -0
  1149. package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg-react.js +17 -0
  1150. package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg-react.cjs +19 -0
  1151. package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg-react.js +17 -0
  1152. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg-react.cjs +19 -0
  1153. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg-react.js +17 -0
  1154. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg-react.cjs +19 -0
  1155. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg-react.js +17 -0
  1156. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg-react.cjs +19 -0
  1157. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg-react.js +17 -0
  1158. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg-react.cjs +19 -0
  1159. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg-react.js +17 -0
  1160. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg-react.cjs +19 -0
  1161. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg-react.js +17 -0
  1162. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg-react.cjs +19 -0
  1163. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg-react.js +17 -0
  1164. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg-react.cjs +19 -0
  1165. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg-react.js +17 -0
  1166. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg-react.cjs +19 -0
  1167. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg-react.js +17 -0
  1168. package/dist/foundation/iconography/svg/toggle/favorite-filled.svg-react.cjs +19 -0
  1169. package/dist/foundation/iconography/svg/toggle/favorite-filled.svg-react.js +17 -0
  1170. package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg-react.cjs +19 -0
  1171. package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg-react.js +17 -0
  1172. package/dist/foundation/iconography/svg/toggle/favorite-round.svg-react.cjs +19 -0
  1173. package/dist/foundation/iconography/svg/toggle/favorite-round.svg-react.js +17 -0
  1174. package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg-react.cjs +19 -0
  1175. package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg-react.js +17 -0
  1176. package/dist/foundation/iconography/svg/toggle/index.cjs +31 -19
  1177. package/dist/foundation/iconography/svg/toggle/index.js +26 -22
  1178. package/dist/foundation/iconography/svg/toggle/star-filled.svg-react.cjs +19 -0
  1179. package/dist/foundation/iconography/svg/toggle/star-filled.svg-react.js +17 -0
  1180. package/dist/foundation/iconography/svg/toggle/star-outlined.svg-react.cjs +19 -0
  1181. package/dist/foundation/iconography/svg/toggle/star-outlined.svg-react.js +17 -0
  1182. package/dist/foundation/iconography/svg/toggle/star-round.svg-react.cjs +19 -0
  1183. package/dist/foundation/iconography/svg/toggle/star-round.svg-react.js +17 -0
  1184. package/dist/foundation/iconography/svg/toggle/star-sharp.svg-react.cjs +19 -0
  1185. package/dist/foundation/iconography/svg/toggle/star-sharp.svg-react.js +17 -0
  1186. package/dist/foundation/iconography/svg/validation/error-filled.svg-react.cjs +19 -0
  1187. package/dist/foundation/iconography/svg/validation/error-filled.svg-react.js +17 -0
  1188. package/dist/foundation/iconography/svg/validation/error-outlined.svg-react.cjs +19 -0
  1189. package/dist/foundation/iconography/svg/validation/error-outlined.svg-react.js +17 -0
  1190. package/dist/foundation/iconography/svg/validation/error-round.svg-react.cjs +19 -0
  1191. package/dist/foundation/iconography/svg/validation/error-round.svg-react.js +17 -0
  1192. package/dist/foundation/iconography/svg/validation/error-sharp.svg-react.cjs +19 -0
  1193. package/dist/foundation/iconography/svg/validation/error-sharp.svg-react.js +17 -0
  1194. package/dist/foundation/iconography/svg/validation/help-filled.svg-react.cjs +19 -0
  1195. package/dist/foundation/iconography/svg/validation/help-filled.svg-react.js +17 -0
  1196. package/dist/foundation/iconography/svg/validation/help-outlined.svg-react.cjs +19 -0
  1197. package/dist/foundation/iconography/svg/validation/help-outlined.svg-react.js +17 -0
  1198. package/dist/foundation/iconography/svg/validation/help-round.svg-react.cjs +19 -0
  1199. package/dist/foundation/iconography/svg/validation/help-round.svg-react.js +17 -0
  1200. package/dist/foundation/iconography/svg/validation/help-sharp.svg-react.cjs +19 -0
  1201. package/dist/foundation/iconography/svg/validation/help-sharp.svg-react.js +17 -0
  1202. package/dist/foundation/iconography/svg/validation/index.cjs +61 -46
  1203. package/dist/foundation/iconography/svg/validation/index.js +56 -52
  1204. package/dist/foundation/iconography/svg/validation/info-filled.svg-react.cjs +19 -0
  1205. package/dist/foundation/iconography/svg/validation/info-filled.svg-react.js +17 -0
  1206. package/dist/foundation/iconography/svg/validation/info-outlined.svg-react.cjs +19 -0
  1207. package/dist/foundation/iconography/svg/validation/info-outlined.svg-react.js +17 -0
  1208. package/dist/foundation/iconography/svg/validation/info-round.svg-react.cjs +19 -0
  1209. package/dist/foundation/iconography/svg/validation/info-round.svg-react.js +17 -0
  1210. package/dist/foundation/iconography/svg/validation/info-sharp.svg-react.cjs +19 -0
  1211. package/dist/foundation/iconography/svg/validation/info-sharp.svg-react.js +17 -0
  1212. package/dist/foundation/iconography/svg/validation/success-filled.svg-react.cjs +19 -0
  1213. package/dist/foundation/iconography/svg/validation/success-filled.svg-react.js +17 -0
  1214. package/dist/foundation/iconography/svg/validation/success-outlined.svg-react.cjs +19 -0
  1215. package/dist/foundation/iconography/svg/validation/success-outlined.svg-react.js +17 -0
  1216. package/dist/foundation/iconography/svg/validation/success-round.svg-react.cjs +19 -0
  1217. package/dist/foundation/iconography/svg/validation/success-round.svg-react.js +17 -0
  1218. package/dist/foundation/iconography/svg/validation/success-sharp.svg-react.cjs +19 -0
  1219. package/dist/foundation/iconography/svg/validation/success-sharp.svg-react.js +17 -0
  1220. package/dist/foundation/iconography/svg/validation/warning-filled.svg-react.cjs +19 -0
  1221. package/dist/foundation/iconography/svg/validation/warning-filled.svg-react.js +17 -0
  1222. package/dist/foundation/iconography/svg/validation/warning-outlined.svg-react.cjs +19 -0
  1223. package/dist/foundation/iconography/svg/validation/warning-outlined.svg-react.js +17 -0
  1224. package/dist/foundation/iconography/svg/validation/warning-round.svg-react.cjs +19 -0
  1225. package/dist/foundation/iconography/svg/validation/warning-round.svg-react.js +17 -0
  1226. package/dist/foundation/iconography/svg/validation/warning-sharp.svg-react.cjs +19 -0
  1227. package/dist/foundation/iconography/svg/validation/warning-sharp.svg-react.js +17 -0
  1228. package/dist/foundation/index.cjs +23 -22
  1229. package/dist/foundation/index.js +3 -17
  1230. package/dist/foundation/logos/Logo.cjs +47 -35
  1231. package/dist/foundation/logos/Logo.css.cjs +16 -18
  1232. package/dist/foundation/logos/Logo.css.js +15 -19
  1233. package/dist/foundation/logos/Logo.js +44 -32
  1234. package/dist/foundation/logos/index.cjs +2 -3
  1235. package/dist/foundation/logos/index.js +1 -3
  1236. package/dist/foundation/logos/logos.cjs +33 -32
  1237. package/dist/foundation/logos/logos.js +24 -23
  1238. package/dist/foundation/logos/svg/audi/audi_symbol.svg-react.cjs +51 -0
  1239. package/dist/foundation/logos/svg/audi/audi_symbol.svg-react.js +49 -0
  1240. package/dist/foundation/logos/svg/audi/audi_wordmark.svg-react.cjs +51 -0
  1241. package/dist/foundation/logos/svg/audi/audi_wordmark.svg-react.js +49 -0
  1242. package/dist/foundation/logos/svg/audi/index.cjs +8 -7
  1243. package/dist/foundation/logos/svg/audi/index.js +9 -9
  1244. package/dist/foundation/logos/svg/autoria/autoria_symbol.svg-react.cjs +22 -0
  1245. package/dist/foundation/logos/svg/autoria/autoria_symbol.svg-react.js +20 -0
  1246. package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg-react.cjs +22 -0
  1247. package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg-react.js +20 -0
  1248. package/dist/foundation/logos/svg/autoria/index.cjs +8 -7
  1249. package/dist/foundation/logos/svg/autoria/index.js +9 -9
  1250. package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg-react.cjs +22 -0
  1251. package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg-react.js +20 -0
  1252. package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg-react.cjs +22 -0
  1253. package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg-react.js +20 -0
  1254. package/dist/foundation/logos/svg/bilhold/index.cjs +8 -7
  1255. package/dist/foundation/logos/svg/bilhold/index.js +9 -9
  1256. package/dist/foundation/logos/svg/cupra/cupra_symbol.svg-react.cjs +22 -0
  1257. package/dist/foundation/logos/svg/cupra/cupra_symbol.svg-react.js +20 -0
  1258. package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg-react.cjs +51 -0
  1259. package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg-react.js +49 -0
  1260. package/dist/foundation/logos/svg/cupra/index.cjs +8 -7
  1261. package/dist/foundation/logos/svg/cupra/index.js +9 -9
  1262. package/dist/foundation/logos/svg/dahles/dahles_symbol.svg-react.cjs +61 -0
  1263. package/dist/foundation/logos/svg/dahles/dahles_symbol.svg-react.js +59 -0
  1264. package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg-react.cjs +61 -0
  1265. package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg-react.js +59 -0
  1266. package/dist/foundation/logos/svg/dahles/index.cjs +8 -7
  1267. package/dist/foundation/logos/svg/dahles/index.js +9 -9
  1268. package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg-react.cjs +22 -0
  1269. package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg-react.js +20 -0
  1270. package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg-react.cjs +47 -0
  1271. package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg-react.js +45 -0
  1272. package/dist/foundation/logos/svg/gumpen/index.cjs +8 -7
  1273. package/dist/foundation/logos/svg/gumpen/index.js +9 -9
  1274. package/dist/foundation/logos/svg/index.cjs +29 -30
  1275. package/dist/foundation/logos/svg/index.js +1 -21
  1276. package/dist/foundation/logos/svg/mollerbil/index.cjs +8 -7
  1277. package/dist/foundation/logos/svg/mollerbil/index.js +9 -9
  1278. package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg-react.cjs +22 -0
  1279. package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg-react.js +20 -0
  1280. package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg-react.cjs +57 -0
  1281. package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg-react.js +55 -0
  1282. package/dist/foundation/logos/svg/others/albjerk_wordmark.svg-react.cjs +42 -0
  1283. package/dist/foundation/logos/svg/others/albjerk_wordmark.svg-react.js +40 -0
  1284. package/dist/foundation/logos/svg/others/alta_wordmark.svg-react.cjs +21 -0
  1285. package/dist/foundation/logos/svg/others/alta_wordmark.svg-react.js +19 -0
  1286. package/dist/foundation/logos/svg/others/berge_wordmark.svg-react.cjs +23 -0
  1287. package/dist/foundation/logos/svg/others/berge_wordmark.svg-react.js +21 -0
  1288. package/dist/foundation/logos/svg/others/fremme_wordmark.svg-react.cjs +31 -0
  1289. package/dist/foundation/logos/svg/others/fremme_wordmark.svg-react.js +29 -0
  1290. package/dist/foundation/logos/svg/others/index.cjs +47 -46
  1291. package/dist/foundation/logos/svg/others/index.js +57 -65
  1292. package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg-react.cjs +21 -0
  1293. package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg-react.js +19 -0
  1294. package/dist/foundation/logos/svg/others/mobile_wordmark.svg-react.cjs +30 -0
  1295. package/dist/foundation/logos/svg/others/mobile_wordmark.svg-react.js +28 -0
  1296. package/dist/foundation/logos/svg/others/slatlem_wordmark.svg-react.cjs +24 -0
  1297. package/dist/foundation/logos/svg/others/slatlem_wordmark.svg-react.js +22 -0
  1298. package/dist/foundation/logos/svg/others/sulland_wordmark.svg-react.cjs +63 -0
  1299. package/dist/foundation/logos/svg/others/sulland_wordmark.svg-react.js +61 -0
  1300. package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg-react.cjs +21 -0
  1301. package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg-react.js +19 -0
  1302. package/dist/foundation/logos/svg/skoda/index.cjs +8 -7
  1303. package/dist/foundation/logos/svg/skoda/index.js +9 -9
  1304. package/dist/foundation/logos/svg/skoda/skoda_symbol.svg-react.cjs +22 -0
  1305. package/dist/foundation/logos/svg/skoda/skoda_symbol.svg-react.js +20 -0
  1306. package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg-react.cjs +22 -0
  1307. package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg-react.js +20 -0
  1308. package/dist/foundation/logos/svg/vw/index.cjs +14 -13
  1309. package/dist/foundation/logos/svg/vw/index.js +15 -16
  1310. package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg-react.cjs +29 -0
  1311. package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg-react.js +27 -0
  1312. package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg-react.cjs +29 -0
  1313. package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg-react.js +27 -0
  1314. package/dist/foundation/logos/svg/vw/vw_symbol.svg-react.cjs +22 -0
  1315. package/dist/foundation/logos/svg/vw/vw_symbol.svg-react.js +20 -0
  1316. package/dist/foundation/logos/svg/vw/vw_wordmark.svg-react.cjs +22 -0
  1317. package/dist/foundation/logos/svg/vw/vw_wordmark.svg-react.js +20 -0
  1318. package/dist/foundation/typography/index.cjs +48 -15
  1319. package/dist/foundation/typography/index.js +47 -25
  1320. package/dist/foundation/typography/typography.css.cjs +13 -21
  1321. package/dist/foundation/typography/typography.css.js +12 -28
  1322. package/dist/index.cjs +145 -140
  1323. package/dist/index.js +24 -107
  1324. package/dist/styles/animations.css.cjs +6 -10
  1325. package/dist/styles/animations.css.js +6 -10
  1326. package/dist/styles/states.css.cjs +69 -103
  1327. package/dist/styles/states.css.js +66 -102
  1328. package/dist/translations/LocalizationProvider.cjs +17 -27
  1329. package/dist/translations/LocalizationProvider.js +14 -10
  1330. package/dist/translations/en.cjs +60 -74
  1331. package/dist/translations/en.js +61 -75
  1332. package/dist/translations/index.cjs +35 -17
  1333. package/dist/translations/index.js +29 -21
  1334. package/dist/translations/no.cjs +60 -74
  1335. package/dist/translations/no.js +61 -75
  1336. package/dist/utilities/accessibility/ScreenReaderOnly.cjs +5 -5
  1337. package/dist/utilities/accessibility/ScreenReaderOnly.js +4 -4
  1338. package/dist/utilities/accessibility/index.cjs +4 -5
  1339. package/dist/utilities/accessibility/index.js +2 -5
  1340. package/dist/utilities/accessibility/visuallyHidden.css.cjs +15 -15
  1341. package/dist/utilities/accessibility/visuallyHidden.css.js +15 -15
  1342. package/dist/utilities/forms/formContext.cjs +61 -41
  1343. package/dist/utilities/forms/formContext.js +58 -23
  1344. package/dist/utilities/forms/formHelpers.cjs +60 -46
  1345. package/dist/utilities/forms/formHelpers.js +58 -47
  1346. package/dist/utilities/forms/formInputs.cjs +16 -17
  1347. package/dist/utilities/forms/formInputs.js +17 -18
  1348. package/dist/utilities/forms/index.cjs +7 -8
  1349. package/dist/utilities/forms/index.js +1 -6
  1350. package/dist/utilities/forms/internal/components.cjs +67 -75
  1351. package/dist/utilities/forms/internal/components.js +61 -75
  1352. package/dist/utilities/forms/useFormProps.cjs +25 -28
  1353. package/dist/utilities/forms/useFormProps.js +24 -27
  1354. package/dist/utilities/forms/useLocalFormState.cjs +77 -72
  1355. package/dist/utilities/forms/useLocalFormState.js +76 -72
  1356. package/dist/utilities/html/index.cjs +3 -2
  1357. package/dist/utilities/html/index.js +4 -4
  1358. package/dist/utilities/index.cjs +18 -18
  1359. package/dist/utilities/index.js +3 -16
  1360. package/dist/utilities/layout/Column.cjs +5 -5
  1361. package/dist/utilities/layout/Column.js +5 -5
  1362. package/dist/utilities/layout/Row.cjs +5 -5
  1363. package/dist/utilities/layout/Row.js +5 -5
  1364. package/dist/utilities/layout/breakpoints.cjs +5 -5
  1365. package/dist/utilities/layout/breakpoints.js +6 -8
  1366. package/dist/utilities/layout/index.cjs +8 -9
  1367. package/dist/utilities/layout/index.js +1 -7
  1368. package/dist/utilities/layout/styles.css.cjs +100 -100
  1369. package/dist/utilities/layout/styles.css.js +99 -100
  1370. package/dist/utilities/time/date.cjs +387 -388
  1371. package/dist/utilities/time/date.js +388 -397
  1372. package/dist/utilities/time/index.cjs +10 -11
  1373. package/dist/utilities/time/index.js +1 -11
  1374. package/dist/utilities/tokens/index.cjs +4 -5
  1375. package/dist/utilities/tokens/index.js +1 -5
  1376. package/dist/utilities/tokens/tokens.cjs +8 -10
  1377. package/dist/utilities/tokens/tokens.js +9 -13
  1378. package/dist/utilities/validation/index.cjs +24 -25
  1379. package/dist/utilities/validation/index.js +2 -24
  1380. package/dist/utilities/validation/regex.cjs +9 -11
  1381. package/dist/utilities/validation/regex.js +10 -18
  1382. package/dist/utilities/validation/validation.cjs +109 -93
  1383. package/dist/utilities/validation/validation.js +109 -101
  1384. package/dist/utilities/validation/validationSteps.cjs +12 -12
  1385. package/dist/utilities/validation/validationSteps.js +12 -14
  1386. package/dist/utilities/validation/validators.cjs +42 -66
  1387. package/dist/utilities/validation/validators.js +42 -74
  1388. package/package.json +6 -6
  1389. package/dist/foundation/iconography/svg/action/assignment-filled.svg.cjs +0 -28
  1390. package/dist/foundation/iconography/svg/action/assignment-filled.svg.js +0 -10
  1391. package/dist/foundation/iconography/svg/action/assignment-outlined.svg.cjs +0 -28
  1392. package/dist/foundation/iconography/svg/action/assignment-outlined.svg.js +0 -10
  1393. package/dist/foundation/iconography/svg/action/assignment-round.svg.cjs +0 -28
  1394. package/dist/foundation/iconography/svg/action/assignment-round.svg.js +0 -10
  1395. package/dist/foundation/iconography/svg/action/assignment-sharp.svg.cjs +0 -28
  1396. package/dist/foundation/iconography/svg/action/assignment-sharp.svg.js +0 -10
  1397. package/dist/foundation/iconography/svg/action/bolt-filled.svg.cjs +0 -28
  1398. package/dist/foundation/iconography/svg/action/bolt-filled.svg.js +0 -10
  1399. package/dist/foundation/iconography/svg/action/bolt-outlined.svg.cjs +0 -28
  1400. package/dist/foundation/iconography/svg/action/bolt-outlined.svg.js +0 -10
  1401. package/dist/foundation/iconography/svg/action/bolt-round.svg.cjs +0 -28
  1402. package/dist/foundation/iconography/svg/action/bolt-round.svg.js +0 -10
  1403. package/dist/foundation/iconography/svg/action/bolt-sharp.svg.cjs +0 -28
  1404. package/dist/foundation/iconography/svg/action/bolt-sharp.svg.js +0 -10
  1405. package/dist/foundation/iconography/svg/action/build-filled.svg.cjs +0 -28
  1406. package/dist/foundation/iconography/svg/action/build-filled.svg.js +0 -10
  1407. package/dist/foundation/iconography/svg/action/build-outlined.svg.cjs +0 -28
  1408. package/dist/foundation/iconography/svg/action/build-outlined.svg.js +0 -10
  1409. package/dist/foundation/iconography/svg/action/build-round.svg.cjs +0 -28
  1410. package/dist/foundation/iconography/svg/action/build-round.svg.js +0 -10
  1411. package/dist/foundation/iconography/svg/action/build-sharp.svg.cjs +0 -28
  1412. package/dist/foundation/iconography/svg/action/build-sharp.svg.js +0 -10
  1413. package/dist/foundation/iconography/svg/action/calculate-filled.svg.cjs +0 -28
  1414. package/dist/foundation/iconography/svg/action/calculate-filled.svg.js +0 -10
  1415. package/dist/foundation/iconography/svg/action/calculate-outlined.svg.cjs +0 -28
  1416. package/dist/foundation/iconography/svg/action/calculate-outlined.svg.js +0 -10
  1417. package/dist/foundation/iconography/svg/action/calculate-round.svg.cjs +0 -28
  1418. package/dist/foundation/iconography/svg/action/calculate-round.svg.js +0 -10
  1419. package/dist/foundation/iconography/svg/action/calculate-sharp.svg.cjs +0 -28
  1420. package/dist/foundation/iconography/svg/action/calculate-sharp.svg.js +0 -10
  1421. package/dist/foundation/iconography/svg/action/calendar-filled.svg.cjs +0 -28
  1422. package/dist/foundation/iconography/svg/action/calendar-filled.svg.js +0 -10
  1423. package/dist/foundation/iconography/svg/action/calendar-outlined.svg.cjs +0 -28
  1424. package/dist/foundation/iconography/svg/action/calendar-outlined.svg.js +0 -10
  1425. package/dist/foundation/iconography/svg/action/calendar-round.svg.cjs +0 -28
  1426. package/dist/foundation/iconography/svg/action/calendar-round.svg.js +0 -10
  1427. package/dist/foundation/iconography/svg/action/calendar-sharp.svg.cjs +0 -28
  1428. package/dist/foundation/iconography/svg/action/calendar-sharp.svg.js +0 -10
  1429. package/dist/foundation/iconography/svg/action/car-filled.svg.cjs +0 -28
  1430. package/dist/foundation/iconography/svg/action/car-filled.svg.js +0 -10
  1431. package/dist/foundation/iconography/svg/action/car-outlined.svg.cjs +0 -28
  1432. package/dist/foundation/iconography/svg/action/car-outlined.svg.js +0 -10
  1433. package/dist/foundation/iconography/svg/action/car-round.svg.cjs +0 -28
  1434. package/dist/foundation/iconography/svg/action/car-round.svg.js +0 -10
  1435. package/dist/foundation/iconography/svg/action/car-sharp.svg.cjs +0 -28
  1436. package/dist/foundation/iconography/svg/action/car-sharp.svg.js +0 -10
  1437. package/dist/foundation/iconography/svg/action/car_crash-filled.svg.cjs +0 -28
  1438. package/dist/foundation/iconography/svg/action/car_crash-filled.svg.js +0 -10
  1439. package/dist/foundation/iconography/svg/action/car_crash-outlined.svg.cjs +0 -28
  1440. package/dist/foundation/iconography/svg/action/car_crash-outlined.svg.js +0 -10
  1441. package/dist/foundation/iconography/svg/action/car_crash-round.svg.cjs +0 -28
  1442. package/dist/foundation/iconography/svg/action/car_crash-round.svg.js +0 -10
  1443. package/dist/foundation/iconography/svg/action/car_crash-sharp.svg.cjs +0 -28
  1444. package/dist/foundation/iconography/svg/action/car_crash-sharp.svg.js +0 -10
  1445. package/dist/foundation/iconography/svg/action/change-filled.svg.cjs +0 -28
  1446. package/dist/foundation/iconography/svg/action/change-filled.svg.js +0 -10
  1447. package/dist/foundation/iconography/svg/action/change-outlined.svg.cjs +0 -28
  1448. package/dist/foundation/iconography/svg/action/change-outlined.svg.js +0 -10
  1449. package/dist/foundation/iconography/svg/action/change-round.svg.cjs +0 -28
  1450. package/dist/foundation/iconography/svg/action/change-round.svg.js +0 -10
  1451. package/dist/foundation/iconography/svg/action/change-sharp.svg.cjs +0 -28
  1452. package/dist/foundation/iconography/svg/action/change-sharp.svg.js +0 -10
  1453. package/dist/foundation/iconography/svg/action/code-filled.svg.cjs +0 -28
  1454. package/dist/foundation/iconography/svg/action/code-filled.svg.js +0 -10
  1455. package/dist/foundation/iconography/svg/action/code-outlined.svg.cjs +0 -28
  1456. package/dist/foundation/iconography/svg/action/code-outlined.svg.js +0 -10
  1457. package/dist/foundation/iconography/svg/action/code-round.svg.cjs +0 -28
  1458. package/dist/foundation/iconography/svg/action/code-round.svg.js +0 -10
  1459. package/dist/foundation/iconography/svg/action/code-sharp.svg.cjs +0 -28
  1460. package/dist/foundation/iconography/svg/action/code-sharp.svg.js +0 -10
  1461. package/dist/foundation/iconography/svg/action/contract-filled.svg.cjs +0 -28
  1462. package/dist/foundation/iconography/svg/action/contract-filled.svg.js +0 -10
  1463. package/dist/foundation/iconography/svg/action/contract-outlined.svg.cjs +0 -28
  1464. package/dist/foundation/iconography/svg/action/contract-outlined.svg.js +0 -10
  1465. package/dist/foundation/iconography/svg/action/contract-round.svg.cjs +0 -28
  1466. package/dist/foundation/iconography/svg/action/contract-round.svg.js +0 -10
  1467. package/dist/foundation/iconography/svg/action/contract-sharp.svg.cjs +0 -28
  1468. package/dist/foundation/iconography/svg/action/contract-sharp.svg.js +0 -10
  1469. package/dist/foundation/iconography/svg/action/edit-filled.svg.cjs +0 -28
  1470. package/dist/foundation/iconography/svg/action/edit-filled.svg.js +0 -10
  1471. package/dist/foundation/iconography/svg/action/edit-outlined.svg.cjs +0 -28
  1472. package/dist/foundation/iconography/svg/action/edit-outlined.svg.js +0 -10
  1473. package/dist/foundation/iconography/svg/action/edit-round.svg.cjs +0 -28
  1474. package/dist/foundation/iconography/svg/action/edit-round.svg.js +0 -10
  1475. package/dist/foundation/iconography/svg/action/edit-sharp.svg.cjs +0 -28
  1476. package/dist/foundation/iconography/svg/action/edit-sharp.svg.js +0 -10
  1477. package/dist/foundation/iconography/svg/action/electric_car-filled.svg.cjs +0 -28
  1478. package/dist/foundation/iconography/svg/action/electric_car-filled.svg.js +0 -10
  1479. package/dist/foundation/iconography/svg/action/electric_car-outlined.svg.cjs +0 -28
  1480. package/dist/foundation/iconography/svg/action/electric_car-outlined.svg.js +0 -10
  1481. package/dist/foundation/iconography/svg/action/electric_car-round.svg.cjs +0 -28
  1482. package/dist/foundation/iconography/svg/action/electric_car-round.svg.js +0 -10
  1483. package/dist/foundation/iconography/svg/action/electric_car-sharp.svg.cjs +0 -28
  1484. package/dist/foundation/iconography/svg/action/electric_car-sharp.svg.js +0 -10
  1485. package/dist/foundation/iconography/svg/action/explore-filled.svg.cjs +0 -28
  1486. package/dist/foundation/iconography/svg/action/explore-filled.svg.js +0 -10
  1487. package/dist/foundation/iconography/svg/action/explore-outlined.svg.cjs +0 -28
  1488. package/dist/foundation/iconography/svg/action/explore-outlined.svg.js +0 -10
  1489. package/dist/foundation/iconography/svg/action/explore-round.svg.cjs +0 -28
  1490. package/dist/foundation/iconography/svg/action/explore-round.svg.js +0 -10
  1491. package/dist/foundation/iconography/svg/action/explore-sharp.svg.cjs +0 -28
  1492. package/dist/foundation/iconography/svg/action/explore-sharp.svg.js +0 -10
  1493. package/dist/foundation/iconography/svg/action/glass_damage-filled.svg.cjs +0 -28
  1494. package/dist/foundation/iconography/svg/action/glass_damage-filled.svg.js +0 -10
  1495. package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg.cjs +0 -28
  1496. package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg.js +0 -10
  1497. package/dist/foundation/iconography/svg/action/glass_damage-round.svg.cjs +0 -28
  1498. package/dist/foundation/iconography/svg/action/glass_damage-round.svg.js +0 -10
  1499. package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg.cjs +0 -28
  1500. package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg.js +0 -10
  1501. package/dist/foundation/iconography/svg/action/home-filled.svg.cjs +0 -28
  1502. package/dist/foundation/iconography/svg/action/home-filled.svg.js +0 -10
  1503. package/dist/foundation/iconography/svg/action/home-outlined.svg.cjs +0 -28
  1504. package/dist/foundation/iconography/svg/action/home-outlined.svg.js +0 -10
  1505. package/dist/foundation/iconography/svg/action/home-round.svg.cjs +0 -28
  1506. package/dist/foundation/iconography/svg/action/home-round.svg.js +0 -10
  1507. package/dist/foundation/iconography/svg/action/home-sharp.svg.cjs +0 -28
  1508. package/dist/foundation/iconography/svg/action/home-sharp.svg.js +0 -10
  1509. package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg.cjs +0 -28
  1510. package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg.js +0 -10
  1511. package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg.cjs +0 -28
  1512. package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg.js +0 -10
  1513. package/dist/foundation/iconography/svg/action/image_not_supported-round.svg.cjs +0 -28
  1514. package/dist/foundation/iconography/svg/action/image_not_supported-round.svg.js +0 -10
  1515. package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg.cjs +0 -28
  1516. package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg.js +0 -10
  1517. package/dist/foundation/iconography/svg/action/lightbulb-filled.svg.cjs +0 -28
  1518. package/dist/foundation/iconography/svg/action/lightbulb-filled.svg.js +0 -10
  1519. package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg.cjs +0 -28
  1520. package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg.js +0 -10
  1521. package/dist/foundation/iconography/svg/action/lightbulb-round.svg.cjs +0 -28
  1522. package/dist/foundation/iconography/svg/action/lightbulb-round.svg.js +0 -10
  1523. package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg.cjs +0 -28
  1524. package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg.js +0 -10
  1525. package/dist/foundation/iconography/svg/action/login-filled.svg.cjs +0 -28
  1526. package/dist/foundation/iconography/svg/action/login-filled.svg.js +0 -10
  1527. package/dist/foundation/iconography/svg/action/login-outlined.svg.cjs +0 -28
  1528. package/dist/foundation/iconography/svg/action/login-outlined.svg.js +0 -10
  1529. package/dist/foundation/iconography/svg/action/login-round.svg.cjs +0 -28
  1530. package/dist/foundation/iconography/svg/action/login-round.svg.js +0 -10
  1531. package/dist/foundation/iconography/svg/action/login-sharp.svg.cjs +0 -28
  1532. package/dist/foundation/iconography/svg/action/login-sharp.svg.js +0 -10
  1533. package/dist/foundation/iconography/svg/action/logout-filled.svg.cjs +0 -28
  1534. package/dist/foundation/iconography/svg/action/logout-filled.svg.js +0 -10
  1535. package/dist/foundation/iconography/svg/action/logout-outlined.svg.cjs +0 -28
  1536. package/dist/foundation/iconography/svg/action/logout-outlined.svg.js +0 -10
  1537. package/dist/foundation/iconography/svg/action/logout-round.svg.cjs +0 -28
  1538. package/dist/foundation/iconography/svg/action/logout-round.svg.js +0 -10
  1539. package/dist/foundation/iconography/svg/action/logout-sharp.svg.cjs +0 -28
  1540. package/dist/foundation/iconography/svg/action/logout-sharp.svg.js +0 -10
  1541. package/dist/foundation/iconography/svg/action/manual_gear-filled.svg.cjs +0 -28
  1542. package/dist/foundation/iconography/svg/action/manual_gear-filled.svg.js +0 -10
  1543. package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg.cjs +0 -28
  1544. package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg.js +0 -10
  1545. package/dist/foundation/iconography/svg/action/manual_gear-round.svg.cjs +0 -28
  1546. package/dist/foundation/iconography/svg/action/manual_gear-round.svg.js +0 -10
  1547. package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg.cjs +0 -28
  1548. package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg.js +0 -10
  1549. package/dist/foundation/iconography/svg/action/minor_crash-filled.svg.cjs +0 -28
  1550. package/dist/foundation/iconography/svg/action/minor_crash-filled.svg.js +0 -10
  1551. package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg.cjs +0 -28
  1552. package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg.js +0 -10
  1553. package/dist/foundation/iconography/svg/action/minor_crash-round.svg.cjs +0 -28
  1554. package/dist/foundation/iconography/svg/action/minor_crash-round.svg.js +0 -10
  1555. package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg.cjs +0 -28
  1556. package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg.js +0 -10
  1557. package/dist/foundation/iconography/svg/action/notifications-filled.svg.cjs +0 -28
  1558. package/dist/foundation/iconography/svg/action/notifications-filled.svg.js +0 -10
  1559. package/dist/foundation/iconography/svg/action/notifications-outlined.svg.cjs +0 -28
  1560. package/dist/foundation/iconography/svg/action/notifications-outlined.svg.js +0 -10
  1561. package/dist/foundation/iconography/svg/action/notifications-round.svg.cjs +0 -28
  1562. package/dist/foundation/iconography/svg/action/notifications-round.svg.js +0 -10
  1563. package/dist/foundation/iconography/svg/action/notifications-sharp.svg.cjs +0 -28
  1564. package/dist/foundation/iconography/svg/action/notifications-sharp.svg.js +0 -10
  1565. package/dist/foundation/iconography/svg/action/payment-filled.svg.cjs +0 -28
  1566. package/dist/foundation/iconography/svg/action/payment-filled.svg.js +0 -10
  1567. package/dist/foundation/iconography/svg/action/payment-outlined.svg.cjs +0 -28
  1568. package/dist/foundation/iconography/svg/action/payment-outlined.svg.js +0 -10
  1569. package/dist/foundation/iconography/svg/action/payment-round.svg.cjs +0 -28
  1570. package/dist/foundation/iconography/svg/action/payment-round.svg.js +0 -10
  1571. package/dist/foundation/iconography/svg/action/payment-sharp.svg.cjs +0 -28
  1572. package/dist/foundation/iconography/svg/action/payment-sharp.svg.js +0 -10
  1573. package/dist/foundation/iconography/svg/action/pets-filled.svg.cjs +0 -28
  1574. package/dist/foundation/iconography/svg/action/pets-filled.svg.js +0 -10
  1575. package/dist/foundation/iconography/svg/action/pets-outlined.svg.cjs +0 -28
  1576. package/dist/foundation/iconography/svg/action/pets-outlined.svg.js +0 -10
  1577. package/dist/foundation/iconography/svg/action/pets-round.svg.cjs +0 -28
  1578. package/dist/foundation/iconography/svg/action/pets-round.svg.js +0 -10
  1579. package/dist/foundation/iconography/svg/action/pets-sharp.svg.cjs +0 -28
  1580. package/dist/foundation/iconography/svg/action/pets-sharp.svg.js +0 -10
  1581. package/dist/foundation/iconography/svg/action/play_circle-filled.svg.cjs +0 -28
  1582. package/dist/foundation/iconography/svg/action/play_circle-filled.svg.js +0 -10
  1583. package/dist/foundation/iconography/svg/action/play_circle-outlined.svg.cjs +0 -28
  1584. package/dist/foundation/iconography/svg/action/play_circle-outlined.svg.js +0 -10
  1585. package/dist/foundation/iconography/svg/action/play_circle-round.svg.cjs +0 -28
  1586. package/dist/foundation/iconography/svg/action/play_circle-round.svg.js +0 -10
  1587. package/dist/foundation/iconography/svg/action/play_circle-sharp.svg.cjs +0 -28
  1588. package/dist/foundation/iconography/svg/action/play_circle-sharp.svg.js +0 -10
  1589. package/dist/foundation/iconography/svg/action/print-filled.svg.cjs +0 -28
  1590. package/dist/foundation/iconography/svg/action/print-filled.svg.js +0 -10
  1591. package/dist/foundation/iconography/svg/action/print-outlined.svg.cjs +0 -28
  1592. package/dist/foundation/iconography/svg/action/print-outlined.svg.js +0 -10
  1593. package/dist/foundation/iconography/svg/action/print-round.svg.cjs +0 -28
  1594. package/dist/foundation/iconography/svg/action/print-round.svg.js +0 -10
  1595. package/dist/foundation/iconography/svg/action/print-sharp.svg.cjs +0 -28
  1596. package/dist/foundation/iconography/svg/action/print-sharp.svg.js +0 -10
  1597. package/dist/foundation/iconography/svg/action/query_stats-filled.svg.cjs +0 -28
  1598. package/dist/foundation/iconography/svg/action/query_stats-filled.svg.js +0 -10
  1599. package/dist/foundation/iconography/svg/action/query_stats-outlined.svg.cjs +0 -28
  1600. package/dist/foundation/iconography/svg/action/query_stats-outlined.svg.js +0 -10
  1601. package/dist/foundation/iconography/svg/action/query_stats-round.svg.cjs +0 -28
  1602. package/dist/foundation/iconography/svg/action/query_stats-round.svg.js +0 -10
  1603. package/dist/foundation/iconography/svg/action/query_stats-sharp.svg.cjs +0 -28
  1604. package/dist/foundation/iconography/svg/action/query_stats-sharp.svg.js +0 -10
  1605. package/dist/foundation/iconography/svg/action/savings-filled.svg.cjs +0 -28
  1606. package/dist/foundation/iconography/svg/action/savings-filled.svg.js +0 -10
  1607. package/dist/foundation/iconography/svg/action/savings-outlined.svg.cjs +0 -28
  1608. package/dist/foundation/iconography/svg/action/savings-outlined.svg.js +0 -10
  1609. package/dist/foundation/iconography/svg/action/savings-round.svg.cjs +0 -28
  1610. package/dist/foundation/iconography/svg/action/savings-round.svg.js +0 -10
  1611. package/dist/foundation/iconography/svg/action/savings-sharp.svg.cjs +0 -28
  1612. package/dist/foundation/iconography/svg/action/savings-sharp.svg.js +0 -10
  1613. package/dist/foundation/iconography/svg/action/schedule-filled.svg.cjs +0 -28
  1614. package/dist/foundation/iconography/svg/action/schedule-filled.svg.js +0 -10
  1615. package/dist/foundation/iconography/svg/action/schedule-outlined.svg.cjs +0 -28
  1616. package/dist/foundation/iconography/svg/action/schedule-outlined.svg.js +0 -10
  1617. package/dist/foundation/iconography/svg/action/schedule-round.svg.cjs +0 -28
  1618. package/dist/foundation/iconography/svg/action/schedule-round.svg.js +0 -10
  1619. package/dist/foundation/iconography/svg/action/schedule-sharp.svg.cjs +0 -28
  1620. package/dist/foundation/iconography/svg/action/schedule-sharp.svg.js +0 -10
  1621. package/dist/foundation/iconography/svg/action/settings-filled.svg.cjs +0 -28
  1622. package/dist/foundation/iconography/svg/action/settings-filled.svg.js +0 -10
  1623. package/dist/foundation/iconography/svg/action/settings-outlined.svg.cjs +0 -28
  1624. package/dist/foundation/iconography/svg/action/settings-outlined.svg.js +0 -10
  1625. package/dist/foundation/iconography/svg/action/settings-round.svg.cjs +0 -28
  1626. package/dist/foundation/iconography/svg/action/settings-round.svg.js +0 -10
  1627. package/dist/foundation/iconography/svg/action/settings-sharp.svg.cjs +0 -28
  1628. package/dist/foundation/iconography/svg/action/settings-sharp.svg.js +0 -10
  1629. package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg.cjs +0 -28
  1630. package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg.js +0 -10
  1631. package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg.cjs +0 -28
  1632. package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg.js +0 -10
  1633. package/dist/foundation/iconography/svg/action/shopping_cart-round.svg.cjs +0 -28
  1634. package/dist/foundation/iconography/svg/action/shopping_cart-round.svg.js +0 -10
  1635. package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg.cjs +0 -28
  1636. package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg.js +0 -10
  1637. package/dist/foundation/iconography/svg/action/signature-filled.svg.cjs +0 -28
  1638. package/dist/foundation/iconography/svg/action/signature-filled.svg.js +0 -10
  1639. package/dist/foundation/iconography/svg/action/signature-outlined.svg.cjs +0 -28
  1640. package/dist/foundation/iconography/svg/action/signature-outlined.svg.js +0 -10
  1641. package/dist/foundation/iconography/svg/action/signature-round.svg.cjs +0 -28
  1642. package/dist/foundation/iconography/svg/action/signature-round.svg.js +0 -10
  1643. package/dist/foundation/iconography/svg/action/signature-sharp.svg.cjs +0 -28
  1644. package/dist/foundation/iconography/svg/action/signature-sharp.svg.js +0 -10
  1645. package/dist/foundation/iconography/svg/action/sort-filled.svg.cjs +0 -28
  1646. package/dist/foundation/iconography/svg/action/sort-filled.svg.js +0 -10
  1647. package/dist/foundation/iconography/svg/action/sort-outlined.svg.cjs +0 -28
  1648. package/dist/foundation/iconography/svg/action/sort-outlined.svg.js +0 -10
  1649. package/dist/foundation/iconography/svg/action/sort-round.svg.cjs +0 -28
  1650. package/dist/foundation/iconography/svg/action/sort-round.svg.js +0 -10
  1651. package/dist/foundation/iconography/svg/action/sort-sharp.svg.cjs +0 -28
  1652. package/dist/foundation/iconography/svg/action/sort-sharp.svg.js +0 -10
  1653. package/dist/foundation/iconography/svg/action/speed-filled.svg.cjs +0 -28
  1654. package/dist/foundation/iconography/svg/action/speed-filled.svg.js +0 -10
  1655. package/dist/foundation/iconography/svg/action/speed-outlined.svg.cjs +0 -28
  1656. package/dist/foundation/iconography/svg/action/speed-outlined.svg.js +0 -10
  1657. package/dist/foundation/iconography/svg/action/speed-round.svg.cjs +0 -28
  1658. package/dist/foundation/iconography/svg/action/speed-round.svg.js +0 -10
  1659. package/dist/foundation/iconography/svg/action/speed-sharp.svg.cjs +0 -28
  1660. package/dist/foundation/iconography/svg/action/speed-sharp.svg.js +0 -10
  1661. package/dist/foundation/iconography/svg/action/tire-filled.svg.cjs +0 -28
  1662. package/dist/foundation/iconography/svg/action/tire-filled.svg.js +0 -10
  1663. package/dist/foundation/iconography/svg/action/tire-outlined.svg.cjs +0 -28
  1664. package/dist/foundation/iconography/svg/action/tire-outlined.svg.js +0 -10
  1665. package/dist/foundation/iconography/svg/action/tire-round.svg.cjs +0 -28
  1666. package/dist/foundation/iconography/svg/action/tire-round.svg.js +0 -10
  1667. package/dist/foundation/iconography/svg/action/tire-sharp.svg.cjs +0 -28
  1668. package/dist/foundation/iconography/svg/action/tire-sharp.svg.js +0 -10
  1669. package/dist/foundation/iconography/svg/action/trash-filled.svg.cjs +0 -28
  1670. package/dist/foundation/iconography/svg/action/trash-filled.svg.js +0 -10
  1671. package/dist/foundation/iconography/svg/action/trash-outlined.svg.cjs +0 -28
  1672. package/dist/foundation/iconography/svg/action/trash-outlined.svg.js +0 -10
  1673. package/dist/foundation/iconography/svg/action/trash-round.svg.cjs +0 -28
  1674. package/dist/foundation/iconography/svg/action/trash-round.svg.js +0 -10
  1675. package/dist/foundation/iconography/svg/action/trash-sharp.svg.cjs +0 -28
  1676. package/dist/foundation/iconography/svg/action/trash-sharp.svg.js +0 -10
  1677. package/dist/foundation/iconography/svg/action/tune-filled.svg.cjs +0 -28
  1678. package/dist/foundation/iconography/svg/action/tune-filled.svg.js +0 -10
  1679. package/dist/foundation/iconography/svg/action/tune-outlined.svg.cjs +0 -28
  1680. package/dist/foundation/iconography/svg/action/tune-outlined.svg.js +0 -10
  1681. package/dist/foundation/iconography/svg/action/tune-round.svg.cjs +0 -28
  1682. package/dist/foundation/iconography/svg/action/tune-round.svg.js +0 -10
  1683. package/dist/foundation/iconography/svg/action/tune-sharp.svg.cjs +0 -28
  1684. package/dist/foundation/iconography/svg/action/tune-sharp.svg.js +0 -10
  1685. package/dist/foundation/iconography/svg/action/verified-filled.svg.cjs +0 -28
  1686. package/dist/foundation/iconography/svg/action/verified-filled.svg.js +0 -10
  1687. package/dist/foundation/iconography/svg/action/verified-outlined.svg.cjs +0 -28
  1688. package/dist/foundation/iconography/svg/action/verified-outlined.svg.js +0 -10
  1689. package/dist/foundation/iconography/svg/action/verified-round.svg.cjs +0 -28
  1690. package/dist/foundation/iconography/svg/action/verified-round.svg.js +0 -10
  1691. package/dist/foundation/iconography/svg/action/verified-sharp.svg.cjs +0 -28
  1692. package/dist/foundation/iconography/svg/action/verified-sharp.svg.js +0 -10
  1693. package/dist/foundation/iconography/svg/action/visibility_off-filled.svg.cjs +0 -28
  1694. package/dist/foundation/iconography/svg/action/visibility_off-filled.svg.js +0 -10
  1695. package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg.cjs +0 -28
  1696. package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg.js +0 -10
  1697. package/dist/foundation/iconography/svg/action/visibility_off-round.svg.cjs +0 -28
  1698. package/dist/foundation/iconography/svg/action/visibility_off-round.svg.js +0 -10
  1699. package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg.cjs +0 -28
  1700. package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg.js +0 -10
  1701. package/dist/foundation/iconography/svg/action/visibility_on-filled.svg.cjs +0 -28
  1702. package/dist/foundation/iconography/svg/action/visibility_on-filled.svg.js +0 -10
  1703. package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg.cjs +0 -28
  1704. package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg.js +0 -10
  1705. package/dist/foundation/iconography/svg/action/visibility_on-round.svg.cjs +0 -28
  1706. package/dist/foundation/iconography/svg/action/visibility_on-round.svg.js +0 -10
  1707. package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg.cjs +0 -28
  1708. package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg.js +0 -10
  1709. package/dist/foundation/iconography/svg/communication/call-filled.svg.cjs +0 -28
  1710. package/dist/foundation/iconography/svg/communication/call-filled.svg.js +0 -10
  1711. package/dist/foundation/iconography/svg/communication/call-outlined.svg.cjs +0 -28
  1712. package/dist/foundation/iconography/svg/communication/call-outlined.svg.js +0 -10
  1713. package/dist/foundation/iconography/svg/communication/call-round.svg.cjs +0 -28
  1714. package/dist/foundation/iconography/svg/communication/call-round.svg.js +0 -10
  1715. package/dist/foundation/iconography/svg/communication/call-sharp.svg.cjs +0 -28
  1716. package/dist/foundation/iconography/svg/communication/call-sharp.svg.js +0 -10
  1717. package/dist/foundation/iconography/svg/communication/chat-filled.svg.cjs +0 -28
  1718. package/dist/foundation/iconography/svg/communication/chat-filled.svg.js +0 -10
  1719. package/dist/foundation/iconography/svg/communication/chat-outlined.svg.cjs +0 -28
  1720. package/dist/foundation/iconography/svg/communication/chat-outlined.svg.js +0 -10
  1721. package/dist/foundation/iconography/svg/communication/chat-round.svg.cjs +0 -28
  1722. package/dist/foundation/iconography/svg/communication/chat-round.svg.js +0 -10
  1723. package/dist/foundation/iconography/svg/communication/chat-sharp.svg.cjs +0 -28
  1724. package/dist/foundation/iconography/svg/communication/chat-sharp.svg.js +0 -10
  1725. package/dist/foundation/iconography/svg/content/add-filled.svg.cjs +0 -28
  1726. package/dist/foundation/iconography/svg/content/add-filled.svg.js +0 -10
  1727. package/dist/foundation/iconography/svg/content/add-outlined.svg.cjs +0 -28
  1728. package/dist/foundation/iconography/svg/content/add-outlined.svg.js +0 -10
  1729. package/dist/foundation/iconography/svg/content/add-round.svg.cjs +0 -28
  1730. package/dist/foundation/iconography/svg/content/add-round.svg.js +0 -10
  1731. package/dist/foundation/iconography/svg/content/add-sharp.svg.cjs +0 -28
  1732. package/dist/foundation/iconography/svg/content/add-sharp.svg.js +0 -10
  1733. package/dist/foundation/iconography/svg/content/auto-filled.svg.cjs +0 -28
  1734. package/dist/foundation/iconography/svg/content/auto-filled.svg.js +0 -10
  1735. package/dist/foundation/iconography/svg/content/auto-outlined.svg.cjs +0 -28
  1736. package/dist/foundation/iconography/svg/content/auto-outlined.svg.js +0 -10
  1737. package/dist/foundation/iconography/svg/content/auto-round.svg.cjs +0 -28
  1738. package/dist/foundation/iconography/svg/content/auto-round.svg.js +0 -10
  1739. package/dist/foundation/iconography/svg/content/auto-sharp.svg.cjs +0 -28
  1740. package/dist/foundation/iconography/svg/content/auto-sharp.svg.js +0 -10
  1741. package/dist/foundation/iconography/svg/content/backspace-filled.svg.cjs +0 -28
  1742. package/dist/foundation/iconography/svg/content/backspace-filled.svg.js +0 -10
  1743. package/dist/foundation/iconography/svg/content/backspace-outlined.svg.cjs +0 -28
  1744. package/dist/foundation/iconography/svg/content/backspace-outlined.svg.js +0 -10
  1745. package/dist/foundation/iconography/svg/content/backspace-round.svg.cjs +0 -28
  1746. package/dist/foundation/iconography/svg/content/backspace-round.svg.js +0 -10
  1747. package/dist/foundation/iconography/svg/content/backspace-sharp.svg.cjs +0 -28
  1748. package/dist/foundation/iconography/svg/content/backspace-sharp.svg.js +0 -10
  1749. package/dist/foundation/iconography/svg/content/clear-filled.svg.cjs +0 -28
  1750. package/dist/foundation/iconography/svg/content/clear-filled.svg.js +0 -10
  1751. package/dist/foundation/iconography/svg/content/clear-outlined.svg.cjs +0 -28
  1752. package/dist/foundation/iconography/svg/content/clear-outlined.svg.js +0 -10
  1753. package/dist/foundation/iconography/svg/content/clear-round.svg.cjs +0 -28
  1754. package/dist/foundation/iconography/svg/content/clear-round.svg.js +0 -10
  1755. package/dist/foundation/iconography/svg/content/clear-sharp.svg.cjs +0 -28
  1756. package/dist/foundation/iconography/svg/content/clear-sharp.svg.js +0 -10
  1757. package/dist/foundation/iconography/svg/content/mail-filled.svg.cjs +0 -28
  1758. package/dist/foundation/iconography/svg/content/mail-filled.svg.js +0 -10
  1759. package/dist/foundation/iconography/svg/content/mail-outlined.svg.cjs +0 -28
  1760. package/dist/foundation/iconography/svg/content/mail-outlined.svg.js +0 -10
  1761. package/dist/foundation/iconography/svg/content/mail-round.svg.cjs +0 -28
  1762. package/dist/foundation/iconography/svg/content/mail-round.svg.js +0 -10
  1763. package/dist/foundation/iconography/svg/content/mail-sharp.svg.cjs +0 -28
  1764. package/dist/foundation/iconography/svg/content/mail-sharp.svg.js +0 -10
  1765. package/dist/foundation/iconography/svg/content/manage_account-filled.svg.cjs +0 -28
  1766. package/dist/foundation/iconography/svg/content/manage_account-filled.svg.js +0 -10
  1767. package/dist/foundation/iconography/svg/content/manage_account-outlined.svg.cjs +0 -28
  1768. package/dist/foundation/iconography/svg/content/manage_account-outlined.svg.js +0 -10
  1769. package/dist/foundation/iconography/svg/content/manage_account-round.svg.cjs +0 -28
  1770. package/dist/foundation/iconography/svg/content/manage_account-round.svg.js +0 -10
  1771. package/dist/foundation/iconography/svg/content/manage_account-sharp.svg.cjs +0 -28
  1772. package/dist/foundation/iconography/svg/content/manage_account-sharp.svg.js +0 -10
  1773. package/dist/foundation/iconography/svg/content/person-filled.svg.cjs +0 -28
  1774. package/dist/foundation/iconography/svg/content/person-filled.svg.js +0 -10
  1775. package/dist/foundation/iconography/svg/content/person-outlined.svg.cjs +0 -28
  1776. package/dist/foundation/iconography/svg/content/person-outlined.svg.js +0 -10
  1777. package/dist/foundation/iconography/svg/content/person-round.svg.cjs +0 -28
  1778. package/dist/foundation/iconography/svg/content/person-round.svg.js +0 -10
  1779. package/dist/foundation/iconography/svg/content/person-sharp.svg.cjs +0 -28
  1780. package/dist/foundation/iconography/svg/content/person-sharp.svg.js +0 -10
  1781. package/dist/foundation/iconography/svg/content/remove-filled.svg.cjs +0 -28
  1782. package/dist/foundation/iconography/svg/content/remove-filled.svg.js +0 -10
  1783. package/dist/foundation/iconography/svg/content/remove-outlined.svg.cjs +0 -28
  1784. package/dist/foundation/iconography/svg/content/remove-outlined.svg.js +0 -10
  1785. package/dist/foundation/iconography/svg/content/remove-round.svg.cjs +0 -28
  1786. package/dist/foundation/iconography/svg/content/remove-round.svg.js +0 -10
  1787. package/dist/foundation/iconography/svg/content/remove-sharp.svg.cjs +0 -28
  1788. package/dist/foundation/iconography/svg/content/remove-sharp.svg.js +0 -10
  1789. package/dist/foundation/iconography/svg/content/send-filled.svg.cjs +0 -28
  1790. package/dist/foundation/iconography/svg/content/send-filled.svg.js +0 -10
  1791. package/dist/foundation/iconography/svg/content/send-outlined.svg.cjs +0 -28
  1792. package/dist/foundation/iconography/svg/content/send-outlined.svg.js +0 -10
  1793. package/dist/foundation/iconography/svg/content/send-round.svg.cjs +0 -28
  1794. package/dist/foundation/iconography/svg/content/send-round.svg.js +0 -10
  1795. package/dist/foundation/iconography/svg/content/send-sharp.svg.cjs +0 -28
  1796. package/dist/foundation/iconography/svg/content/send-sharp.svg.js +0 -10
  1797. package/dist/foundation/iconography/svg/content/work-filled.svg.cjs +0 -28
  1798. package/dist/foundation/iconography/svg/content/work-filled.svg.js +0 -10
  1799. package/dist/foundation/iconography/svg/content/work-outlined.svg.cjs +0 -28
  1800. package/dist/foundation/iconography/svg/content/work-outlined.svg.js +0 -10
  1801. package/dist/foundation/iconography/svg/content/work-round.svg.cjs +0 -28
  1802. package/dist/foundation/iconography/svg/content/work-round.svg.js +0 -10
  1803. package/dist/foundation/iconography/svg/content/work-sharp.svg.cjs +0 -28
  1804. package/dist/foundation/iconography/svg/content/work-sharp.svg.js +0 -10
  1805. package/dist/foundation/iconography/svg/device/task-filled.svg.cjs +0 -28
  1806. package/dist/foundation/iconography/svg/device/task-filled.svg.js +0 -10
  1807. package/dist/foundation/iconography/svg/device/task-outlined.svg.cjs +0 -28
  1808. package/dist/foundation/iconography/svg/device/task-outlined.svg.js +0 -10
  1809. package/dist/foundation/iconography/svg/device/task-round.svg.cjs +0 -28
  1810. package/dist/foundation/iconography/svg/device/task-round.svg.js +0 -10
  1811. package/dist/foundation/iconography/svg/device/task-sharp.svg.cjs +0 -28
  1812. package/dist/foundation/iconography/svg/device/task-sharp.svg.js +0 -10
  1813. package/dist/foundation/iconography/svg/file/archive-filled.svg.cjs +0 -28
  1814. package/dist/foundation/iconography/svg/file/archive-filled.svg.js +0 -10
  1815. package/dist/foundation/iconography/svg/file/archive-outlined.svg.cjs +0 -28
  1816. package/dist/foundation/iconography/svg/file/archive-outlined.svg.js +0 -10
  1817. package/dist/foundation/iconography/svg/file/archive-round.svg.cjs +0 -28
  1818. package/dist/foundation/iconography/svg/file/archive-round.svg.js +0 -10
  1819. package/dist/foundation/iconography/svg/file/archive-sharp.svg.cjs +0 -28
  1820. package/dist/foundation/iconography/svg/file/archive-sharp.svg.js +0 -10
  1821. package/dist/foundation/iconography/svg/file/file_copy-filled.svg.cjs +0 -28
  1822. package/dist/foundation/iconography/svg/file/file_copy-filled.svg.js +0 -10
  1823. package/dist/foundation/iconography/svg/file/file_copy-outlined.svg.cjs +0 -28
  1824. package/dist/foundation/iconography/svg/file/file_copy-outlined.svg.js +0 -10
  1825. package/dist/foundation/iconography/svg/file/file_copy-round.svg.cjs +0 -28
  1826. package/dist/foundation/iconography/svg/file/file_copy-round.svg.js +0 -10
  1827. package/dist/foundation/iconography/svg/file/file_copy-sharp.svg.cjs +0 -28
  1828. package/dist/foundation/iconography/svg/file/file_copy-sharp.svg.js +0 -10
  1829. package/dist/foundation/iconography/svg/file/file_download-filled.svg.cjs +0 -28
  1830. package/dist/foundation/iconography/svg/file/file_download-filled.svg.js +0 -10
  1831. package/dist/foundation/iconography/svg/file/file_download-outlined.svg.cjs +0 -28
  1832. package/dist/foundation/iconography/svg/file/file_download-outlined.svg.js +0 -10
  1833. package/dist/foundation/iconography/svg/file/file_download-round.svg.cjs +0 -28
  1834. package/dist/foundation/iconography/svg/file/file_download-round.svg.js +0 -10
  1835. package/dist/foundation/iconography/svg/file/file_download-sharp.svg.cjs +0 -28
  1836. package/dist/foundation/iconography/svg/file/file_download-sharp.svg.js +0 -10
  1837. package/dist/foundation/iconography/svg/file/file_download_off-filled.svg.cjs +0 -28
  1838. package/dist/foundation/iconography/svg/file/file_download_off-filled.svg.js +0 -10
  1839. package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg.cjs +0 -28
  1840. package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg.js +0 -10
  1841. package/dist/foundation/iconography/svg/file/file_download_off-round.svg.cjs +0 -28
  1842. package/dist/foundation/iconography/svg/file/file_download_off-round.svg.js +0 -10
  1843. package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg.cjs +0 -28
  1844. package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg.js +0 -10
  1845. package/dist/foundation/iconography/svg/file/file_open-filled.svg.cjs +0 -28
  1846. package/dist/foundation/iconography/svg/file/file_open-filled.svg.js +0 -10
  1847. package/dist/foundation/iconography/svg/file/file_open-outlined.svg.cjs +0 -28
  1848. package/dist/foundation/iconography/svg/file/file_open-outlined.svg.js +0 -10
  1849. package/dist/foundation/iconography/svg/file/file_open-round.svg.cjs +0 -28
  1850. package/dist/foundation/iconography/svg/file/file_open-round.svg.js +0 -10
  1851. package/dist/foundation/iconography/svg/file/file_open-sharp.svg.cjs +0 -28
  1852. package/dist/foundation/iconography/svg/file/file_open-sharp.svg.js +0 -10
  1853. package/dist/foundation/iconography/svg/file/file_upload-filled.svg.cjs +0 -28
  1854. package/dist/foundation/iconography/svg/file/file_upload-filled.svg.js +0 -10
  1855. package/dist/foundation/iconography/svg/file/file_upload-outlined.svg.cjs +0 -28
  1856. package/dist/foundation/iconography/svg/file/file_upload-outlined.svg.js +0 -10
  1857. package/dist/foundation/iconography/svg/file/file_upload-round.svg.cjs +0 -28
  1858. package/dist/foundation/iconography/svg/file/file_upload-round.svg.js +0 -10
  1859. package/dist/foundation/iconography/svg/file/file_upload-sharp.svg.cjs +0 -28
  1860. package/dist/foundation/iconography/svg/file/file_upload-sharp.svg.js +0 -10
  1861. package/dist/foundation/iconography/svg/file/unarchive-filled.svg.cjs +0 -28
  1862. package/dist/foundation/iconography/svg/file/unarchive-filled.svg.js +0 -10
  1863. package/dist/foundation/iconography/svg/file/unarchive-outlined.svg.cjs +0 -28
  1864. package/dist/foundation/iconography/svg/file/unarchive-outlined.svg.js +0 -10
  1865. package/dist/foundation/iconography/svg/file/unarchive-round.svg.cjs +0 -28
  1866. package/dist/foundation/iconography/svg/file/unarchive-round.svg.js +0 -10
  1867. package/dist/foundation/iconography/svg/file/unarchive-sharp.svg.cjs +0 -28
  1868. package/dist/foundation/iconography/svg/file/unarchive-sharp.svg.js +0 -10
  1869. package/dist/foundation/iconography/svg/map/ev_station-filled.svg.cjs +0 -28
  1870. package/dist/foundation/iconography/svg/map/ev_station-filled.svg.js +0 -10
  1871. package/dist/foundation/iconography/svg/map/ev_station-outlined.svg.cjs +0 -28
  1872. package/dist/foundation/iconography/svg/map/ev_station-outlined.svg.js +0 -10
  1873. package/dist/foundation/iconography/svg/map/ev_station-round.svg.cjs +0 -28
  1874. package/dist/foundation/iconography/svg/map/ev_station-round.svg.js +0 -10
  1875. package/dist/foundation/iconography/svg/map/ev_station-sharp.svg.cjs +0 -28
  1876. package/dist/foundation/iconography/svg/map/ev_station-sharp.svg.js +0 -10
  1877. package/dist/foundation/iconography/svg/map/forest-filled.svg.cjs +0 -28
  1878. package/dist/foundation/iconography/svg/map/forest-filled.svg.js +0 -10
  1879. package/dist/foundation/iconography/svg/map/forest-outlined.svg.cjs +0 -28
  1880. package/dist/foundation/iconography/svg/map/forest-outlined.svg.js +0 -10
  1881. package/dist/foundation/iconography/svg/map/forest-round.svg.cjs +0 -28
  1882. package/dist/foundation/iconography/svg/map/forest-round.svg.js +0 -10
  1883. package/dist/foundation/iconography/svg/map/forest-sharp.svg.cjs +0 -28
  1884. package/dist/foundation/iconography/svg/map/forest-sharp.svg.js +0 -10
  1885. package/dist/foundation/iconography/svg/map/gas_station-filled.svg.cjs +0 -28
  1886. package/dist/foundation/iconography/svg/map/gas_station-filled.svg.js +0 -10
  1887. package/dist/foundation/iconography/svg/map/gas_station-outlined.svg.cjs +0 -28
  1888. package/dist/foundation/iconography/svg/map/gas_station-outlined.svg.js +0 -10
  1889. package/dist/foundation/iconography/svg/map/gas_station-round.svg.cjs +0 -28
  1890. package/dist/foundation/iconography/svg/map/gas_station-round.svg.js +0 -10
  1891. package/dist/foundation/iconography/svg/map/gas_station-sharp.svg.cjs +0 -28
  1892. package/dist/foundation/iconography/svg/map/gas_station-sharp.svg.js +0 -10
  1893. package/dist/foundation/iconography/svg/map/location-filled.svg.cjs +0 -28
  1894. package/dist/foundation/iconography/svg/map/location-filled.svg.js +0 -10
  1895. package/dist/foundation/iconography/svg/map/location-outlined.svg.cjs +0 -28
  1896. package/dist/foundation/iconography/svg/map/location-outlined.svg.js +0 -10
  1897. package/dist/foundation/iconography/svg/map/location-round.svg.cjs +0 -28
  1898. package/dist/foundation/iconography/svg/map/location-round.svg.js +0 -10
  1899. package/dist/foundation/iconography/svg/map/location-sharp.svg.cjs +0 -28
  1900. package/dist/foundation/iconography/svg/map/location-sharp.svg.js +0 -10
  1901. package/dist/foundation/iconography/svg/map/route-filled.svg.cjs +0 -28
  1902. package/dist/foundation/iconography/svg/map/route-filled.svg.js +0 -10
  1903. package/dist/foundation/iconography/svg/map/route-outlined.svg.cjs +0 -28
  1904. package/dist/foundation/iconography/svg/map/route-outlined.svg.js +0 -10
  1905. package/dist/foundation/iconography/svg/map/route-round.svg.cjs +0 -28
  1906. package/dist/foundation/iconography/svg/map/route-round.svg.js +0 -10
  1907. package/dist/foundation/iconography/svg/map/route-sharp.svg.cjs +0 -28
  1908. package/dist/foundation/iconography/svg/map/route-sharp.svg.js +0 -10
  1909. package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg.cjs +0 -28
  1910. package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg.js +0 -10
  1911. package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg.cjs +0 -28
  1912. package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg.js +0 -10
  1913. package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg.cjs +0 -28
  1914. package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg.js +0 -10
  1915. package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg.cjs +0 -28
  1916. package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg.js +0 -10
  1917. package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg.cjs +0 -28
  1918. package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg.js +0 -10
  1919. package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg.cjs +0 -28
  1920. package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg.js +0 -10
  1921. package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg.cjs +0 -28
  1922. package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg.js +0 -10
  1923. package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg.cjs +0 -28
  1924. package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg.js +0 -10
  1925. package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg.cjs +0 -28
  1926. package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg.js +0 -10
  1927. package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg.cjs +0 -28
  1928. package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg.js +0 -10
  1929. package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg.cjs +0 -28
  1930. package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg.js +0 -10
  1931. package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg.cjs +0 -28
  1932. package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg.js +0 -10
  1933. package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg.cjs +0 -28
  1934. package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg.js +0 -10
  1935. package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg.cjs +0 -28
  1936. package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg.js +0 -10
  1937. package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg.cjs +0 -28
  1938. package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg.js +0 -10
  1939. package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg.cjs +0 -28
  1940. package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg.js +0 -10
  1941. package/dist/foundation/iconography/svg/navigation/check-filled.svg.cjs +0 -28
  1942. package/dist/foundation/iconography/svg/navigation/check-filled.svg.js +0 -10
  1943. package/dist/foundation/iconography/svg/navigation/check-outlined.svg.cjs +0 -28
  1944. package/dist/foundation/iconography/svg/navigation/check-outlined.svg.js +0 -10
  1945. package/dist/foundation/iconography/svg/navigation/check-round.svg.cjs +0 -28
  1946. package/dist/foundation/iconography/svg/navigation/check-round.svg.js +0 -10
  1947. package/dist/foundation/iconography/svg/navigation/check-sharp.svg.cjs +0 -28
  1948. package/dist/foundation/iconography/svg/navigation/check-sharp.svg.js +0 -10
  1949. package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg.cjs +0 -28
  1950. package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg.js +0 -10
  1951. package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg.cjs +0 -28
  1952. package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg.js +0 -10
  1953. package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg.cjs +0 -28
  1954. package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg.js +0 -10
  1955. package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg.cjs +0 -28
  1956. package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg.js +0 -10
  1957. package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg.cjs +0 -28
  1958. package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg.js +0 -10
  1959. package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg.cjs +0 -28
  1960. package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg.js +0 -10
  1961. package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg.cjs +0 -28
  1962. package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg.js +0 -10
  1963. package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg.cjs +0 -28
  1964. package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg.js +0 -10
  1965. package/dist/foundation/iconography/svg/navigation/close-filled.svg.cjs +0 -28
  1966. package/dist/foundation/iconography/svg/navigation/close-filled.svg.js +0 -10
  1967. package/dist/foundation/iconography/svg/navigation/close-outlined.svg.cjs +0 -28
  1968. package/dist/foundation/iconography/svg/navigation/close-outlined.svg.js +0 -10
  1969. package/dist/foundation/iconography/svg/navigation/close-round.svg.cjs +0 -28
  1970. package/dist/foundation/iconography/svg/navigation/close-round.svg.js +0 -10
  1971. package/dist/foundation/iconography/svg/navigation/close-sharp.svg.cjs +0 -28
  1972. package/dist/foundation/iconography/svg/navigation/close-sharp.svg.js +0 -10
  1973. package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg.cjs +0 -28
  1974. package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg.js +0 -10
  1975. package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg.cjs +0 -28
  1976. package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg.js +0 -10
  1977. package/dist/foundation/iconography/svg/navigation/expand_less-round.svg.cjs +0 -28
  1978. package/dist/foundation/iconography/svg/navigation/expand_less-round.svg.js +0 -10
  1979. package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg.cjs +0 -28
  1980. package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg.js +0 -10
  1981. package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg.cjs +0 -28
  1982. package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg.js +0 -10
  1983. package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg.cjs +0 -28
  1984. package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg.js +0 -10
  1985. package/dist/foundation/iconography/svg/navigation/expand_more-round.svg.cjs +0 -28
  1986. package/dist/foundation/iconography/svg/navigation/expand_more-round.svg.js +0 -10
  1987. package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg.cjs +0 -28
  1988. package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg.js +0 -10
  1989. package/dist/foundation/iconography/svg/navigation/external-filled.svg.cjs +0 -28
  1990. package/dist/foundation/iconography/svg/navigation/external-filled.svg.js +0 -10
  1991. package/dist/foundation/iconography/svg/navigation/external-outlined.svg.cjs +0 -28
  1992. package/dist/foundation/iconography/svg/navigation/external-outlined.svg.js +0 -10
  1993. package/dist/foundation/iconography/svg/navigation/external-round.svg.cjs +0 -28
  1994. package/dist/foundation/iconography/svg/navigation/external-round.svg.js +0 -10
  1995. package/dist/foundation/iconography/svg/navigation/external-sharp.svg.cjs +0 -28
  1996. package/dist/foundation/iconography/svg/navigation/external-sharp.svg.js +0 -10
  1997. package/dist/foundation/iconography/svg/navigation/menu-filled.svg.cjs +0 -28
  1998. package/dist/foundation/iconography/svg/navigation/menu-filled.svg.js +0 -10
  1999. package/dist/foundation/iconography/svg/navigation/menu-outlined.svg.cjs +0 -28
  2000. package/dist/foundation/iconography/svg/navigation/menu-outlined.svg.js +0 -10
  2001. package/dist/foundation/iconography/svg/navigation/menu-round.svg.cjs +0 -28
  2002. package/dist/foundation/iconography/svg/navigation/menu-round.svg.js +0 -10
  2003. package/dist/foundation/iconography/svg/navigation/menu-sharp.svg.cjs +0 -28
  2004. package/dist/foundation/iconography/svg/navigation/menu-sharp.svg.js +0 -10
  2005. package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg.cjs +0 -28
  2006. package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg.js +0 -10
  2007. package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg.cjs +0 -28
  2008. package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg.js +0 -10
  2009. package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg.cjs +0 -28
  2010. package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg.js +0 -10
  2011. package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg.cjs +0 -28
  2012. package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg.js +0 -10
  2013. package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg.cjs +0 -28
  2014. package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg.js +0 -10
  2015. package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg.cjs +0 -28
  2016. package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg.js +0 -10
  2017. package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg.cjs +0 -28
  2018. package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg.js +0 -10
  2019. package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg.cjs +0 -28
  2020. package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg.js +0 -10
  2021. package/dist/foundation/iconography/svg/navigation/open-filled.svg.cjs +0 -28
  2022. package/dist/foundation/iconography/svg/navigation/open-filled.svg.js +0 -10
  2023. package/dist/foundation/iconography/svg/navigation/open-outlined.svg.cjs +0 -28
  2024. package/dist/foundation/iconography/svg/navigation/open-outlined.svg.js +0 -10
  2025. package/dist/foundation/iconography/svg/navigation/open-round.svg.cjs +0 -28
  2026. package/dist/foundation/iconography/svg/navigation/open-round.svg.js +0 -10
  2027. package/dist/foundation/iconography/svg/navigation/open-sharp.svg.cjs +0 -28
  2028. package/dist/foundation/iconography/svg/navigation/open-sharp.svg.js +0 -10
  2029. package/dist/foundation/iconography/svg/navigation/refresh-filled.svg.cjs +0 -28
  2030. package/dist/foundation/iconography/svg/navigation/refresh-filled.svg.js +0 -10
  2031. package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg.cjs +0 -28
  2032. package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg.js +0 -10
  2033. package/dist/foundation/iconography/svg/navigation/refresh-round.svg.cjs +0 -28
  2034. package/dist/foundation/iconography/svg/navigation/refresh-round.svg.js +0 -10
  2035. package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg.cjs +0 -28
  2036. package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg.js +0 -10
  2037. package/dist/foundation/iconography/svg/navigation/spinner-filled.svg.cjs +0 -28
  2038. package/dist/foundation/iconography/svg/navigation/spinner-filled.svg.js +0 -10
  2039. package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg.cjs +0 -28
  2040. package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg.js +0 -10
  2041. package/dist/foundation/iconography/svg/navigation/spinner-round.svg.cjs +0 -28
  2042. package/dist/foundation/iconography/svg/navigation/spinner-round.svg.js +0 -10
  2043. package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg.cjs +0 -28
  2044. package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg.js +0 -10
  2045. package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg.cjs +0 -28
  2046. package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg.js +0 -10
  2047. package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg.cjs +0 -28
  2048. package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg.js +0 -10
  2049. package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg.cjs +0 -28
  2050. package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg.js +0 -10
  2051. package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg.cjs +0 -28
  2052. package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg.js +0 -10
  2053. package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg.cjs +0 -28
  2054. package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg.js +0 -10
  2055. package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg.cjs +0 -28
  2056. package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg.js +0 -10
  2057. package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg.cjs +0 -28
  2058. package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg.js +0 -10
  2059. package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg.cjs +0 -28
  2060. package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg.js +0 -10
  2061. package/dist/foundation/iconography/svg/notifications/event_note-filled.svg.cjs +0 -28
  2062. package/dist/foundation/iconography/svg/notifications/event_note-filled.svg.js +0 -10
  2063. package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg.cjs +0 -28
  2064. package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg.js +0 -10
  2065. package/dist/foundation/iconography/svg/notifications/event_note-round.svg.cjs +0 -28
  2066. package/dist/foundation/iconography/svg/notifications/event_note-round.svg.js +0 -10
  2067. package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg.cjs +0 -28
  2068. package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg.js +0 -10
  2069. package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg.cjs +0 -28
  2070. package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg.js +0 -10
  2071. package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg.cjs +0 -28
  2072. package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg.js +0 -10
  2073. package/dist/foundation/iconography/svg/notifications/live_tv-round.svg.cjs +0 -28
  2074. package/dist/foundation/iconography/svg/notifications/live_tv-round.svg.js +0 -10
  2075. package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg.cjs +0 -28
  2076. package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg.js +0 -10
  2077. package/dist/foundation/iconography/svg/notifications/wifi-filled.svg.cjs +0 -28
  2078. package/dist/foundation/iconography/svg/notifications/wifi-filled.svg.js +0 -10
  2079. package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg.cjs +0 -28
  2080. package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg.js +0 -10
  2081. package/dist/foundation/iconography/svg/notifications/wifi-round.svg.cjs +0 -28
  2082. package/dist/foundation/iconography/svg/notifications/wifi-round.svg.js +0 -10
  2083. package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg.cjs +0 -28
  2084. package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg.js +0 -10
  2085. package/dist/foundation/iconography/svg/search/coffee-filled.svg.cjs +0 -28
  2086. package/dist/foundation/iconography/svg/search/coffee-filled.svg.js +0 -10
  2087. package/dist/foundation/iconography/svg/search/coffee-outlined.svg.cjs +0 -28
  2088. package/dist/foundation/iconography/svg/search/coffee-outlined.svg.js +0 -10
  2089. package/dist/foundation/iconography/svg/search/coffee-round.svg.cjs +0 -28
  2090. package/dist/foundation/iconography/svg/search/coffee-round.svg.js +0 -10
  2091. package/dist/foundation/iconography/svg/search/coffee-sharp.svg.cjs +0 -28
  2092. package/dist/foundation/iconography/svg/search/coffee-sharp.svg.js +0 -10
  2093. package/dist/foundation/iconography/svg/search/search-filled.svg.cjs +0 -28
  2094. package/dist/foundation/iconography/svg/search/search-filled.svg.js +0 -10
  2095. package/dist/foundation/iconography/svg/search/search-outlined.svg.cjs +0 -28
  2096. package/dist/foundation/iconography/svg/search/search-outlined.svg.js +0 -10
  2097. package/dist/foundation/iconography/svg/search/search-round.svg.cjs +0 -28
  2098. package/dist/foundation/iconography/svg/search/search-round.svg.js +0 -10
  2099. package/dist/foundation/iconography/svg/search/search-sharp.svg.cjs +0 -28
  2100. package/dist/foundation/iconography/svg/search/search-sharp.svg.js +0 -10
  2101. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg.cjs +0 -28
  2102. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg.js +0 -10
  2103. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg.cjs +0 -28
  2104. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg.js +0 -10
  2105. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg.cjs +0 -28
  2106. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg.js +0 -10
  2107. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg.cjs +0 -28
  2108. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg.js +0 -10
  2109. package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg.cjs +0 -28
  2110. package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg.js +0 -10
  2111. package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg.cjs +0 -28
  2112. package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg.js +0 -10
  2113. package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg.cjs +0 -28
  2114. package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg.js +0 -10
  2115. package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg.cjs +0 -28
  2116. package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg.js +0 -10
  2117. package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg.cjs +0 -28
  2118. package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg.js +0 -10
  2119. package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg.cjs +0 -28
  2120. package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg.js +0 -10
  2121. package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg.cjs +0 -28
  2122. package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg.js +0 -10
  2123. package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg.cjs +0 -28
  2124. package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg.js +0 -10
  2125. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg.cjs +0 -28
  2126. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg.js +0 -10
  2127. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg.cjs +0 -28
  2128. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg.js +0 -10
  2129. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg.cjs +0 -28
  2130. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg.js +0 -10
  2131. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg.cjs +0 -28
  2132. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg.js +0 -10
  2133. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg.cjs +0 -28
  2134. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg.js +0 -10
  2135. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg.cjs +0 -28
  2136. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg.js +0 -10
  2137. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg.cjs +0 -28
  2138. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg.js +0 -10
  2139. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg.cjs +0 -28
  2140. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg.js +0 -10
  2141. package/dist/foundation/iconography/svg/toggle/favorite-filled.svg.cjs +0 -28
  2142. package/dist/foundation/iconography/svg/toggle/favorite-filled.svg.js +0 -10
  2143. package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg.cjs +0 -28
  2144. package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg.js +0 -10
  2145. package/dist/foundation/iconography/svg/toggle/favorite-round.svg.cjs +0 -28
  2146. package/dist/foundation/iconography/svg/toggle/favorite-round.svg.js +0 -10
  2147. package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg.cjs +0 -28
  2148. package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg.js +0 -10
  2149. package/dist/foundation/iconography/svg/toggle/star-filled.svg.cjs +0 -28
  2150. package/dist/foundation/iconography/svg/toggle/star-filled.svg.js +0 -10
  2151. package/dist/foundation/iconography/svg/toggle/star-outlined.svg.cjs +0 -28
  2152. package/dist/foundation/iconography/svg/toggle/star-outlined.svg.js +0 -10
  2153. package/dist/foundation/iconography/svg/toggle/star-round.svg.cjs +0 -28
  2154. package/dist/foundation/iconography/svg/toggle/star-round.svg.js +0 -10
  2155. package/dist/foundation/iconography/svg/toggle/star-sharp.svg.cjs +0 -28
  2156. package/dist/foundation/iconography/svg/toggle/star-sharp.svg.js +0 -10
  2157. package/dist/foundation/iconography/svg/validation/error-filled.svg.cjs +0 -28
  2158. package/dist/foundation/iconography/svg/validation/error-filled.svg.js +0 -10
  2159. package/dist/foundation/iconography/svg/validation/error-outlined.svg.cjs +0 -28
  2160. package/dist/foundation/iconography/svg/validation/error-outlined.svg.js +0 -10
  2161. package/dist/foundation/iconography/svg/validation/error-round.svg.cjs +0 -28
  2162. package/dist/foundation/iconography/svg/validation/error-round.svg.js +0 -10
  2163. package/dist/foundation/iconography/svg/validation/error-sharp.svg.cjs +0 -28
  2164. package/dist/foundation/iconography/svg/validation/error-sharp.svg.js +0 -10
  2165. package/dist/foundation/iconography/svg/validation/help-filled.svg.cjs +0 -28
  2166. package/dist/foundation/iconography/svg/validation/help-filled.svg.js +0 -10
  2167. package/dist/foundation/iconography/svg/validation/help-outlined.svg.cjs +0 -28
  2168. package/dist/foundation/iconography/svg/validation/help-outlined.svg.js +0 -10
  2169. package/dist/foundation/iconography/svg/validation/help-round.svg.cjs +0 -28
  2170. package/dist/foundation/iconography/svg/validation/help-round.svg.js +0 -10
  2171. package/dist/foundation/iconography/svg/validation/help-sharp.svg.cjs +0 -28
  2172. package/dist/foundation/iconography/svg/validation/help-sharp.svg.js +0 -10
  2173. package/dist/foundation/iconography/svg/validation/info-filled.svg.cjs +0 -28
  2174. package/dist/foundation/iconography/svg/validation/info-filled.svg.js +0 -10
  2175. package/dist/foundation/iconography/svg/validation/info-outlined.svg.cjs +0 -28
  2176. package/dist/foundation/iconography/svg/validation/info-outlined.svg.js +0 -10
  2177. package/dist/foundation/iconography/svg/validation/info-round.svg.cjs +0 -28
  2178. package/dist/foundation/iconography/svg/validation/info-round.svg.js +0 -10
  2179. package/dist/foundation/iconography/svg/validation/info-sharp.svg.cjs +0 -28
  2180. package/dist/foundation/iconography/svg/validation/info-sharp.svg.js +0 -10
  2181. package/dist/foundation/iconography/svg/validation/success-filled.svg.cjs +0 -28
  2182. package/dist/foundation/iconography/svg/validation/success-filled.svg.js +0 -10
  2183. package/dist/foundation/iconography/svg/validation/success-outlined.svg.cjs +0 -28
  2184. package/dist/foundation/iconography/svg/validation/success-outlined.svg.js +0 -10
  2185. package/dist/foundation/iconography/svg/validation/success-round.svg.cjs +0 -28
  2186. package/dist/foundation/iconography/svg/validation/success-round.svg.js +0 -10
  2187. package/dist/foundation/iconography/svg/validation/success-sharp.svg.cjs +0 -28
  2188. package/dist/foundation/iconography/svg/validation/success-sharp.svg.js +0 -10
  2189. package/dist/foundation/iconography/svg/validation/warning-filled.svg.cjs +0 -28
  2190. package/dist/foundation/iconography/svg/validation/warning-filled.svg.js +0 -10
  2191. package/dist/foundation/iconography/svg/validation/warning-outlined.svg.cjs +0 -28
  2192. package/dist/foundation/iconography/svg/validation/warning-outlined.svg.js +0 -10
  2193. package/dist/foundation/iconography/svg/validation/warning-round.svg.cjs +0 -28
  2194. package/dist/foundation/iconography/svg/validation/warning-round.svg.js +0 -10
  2195. package/dist/foundation/iconography/svg/validation/warning-sharp.svg.cjs +0 -28
  2196. package/dist/foundation/iconography/svg/validation/warning-sharp.svg.js +0 -10
  2197. package/dist/foundation/logos/svg/audi/audi_symbol.svg.cjs +0 -30
  2198. package/dist/foundation/logos/svg/audi/audi_symbol.svg.js +0 -12
  2199. package/dist/foundation/logos/svg/audi/audi_wordmark.svg.cjs +0 -30
  2200. package/dist/foundation/logos/svg/audi/audi_wordmark.svg.js +0 -12
  2201. package/dist/foundation/logos/svg/autoria/autoria_symbol.svg.cjs +0 -28
  2202. package/dist/foundation/logos/svg/autoria/autoria_symbol.svg.js +0 -10
  2203. package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg.cjs +0 -28
  2204. package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg.js +0 -10
  2205. package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg.cjs +0 -28
  2206. package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg.js +0 -10
  2207. package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg.cjs +0 -28
  2208. package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg.js +0 -10
  2209. package/dist/foundation/logos/svg/cupra/cupra_symbol.svg.cjs +0 -28
  2210. package/dist/foundation/logos/svg/cupra/cupra_symbol.svg.js +0 -10
  2211. package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg.cjs +0 -28
  2212. package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg.js +0 -10
  2213. package/dist/foundation/logos/svg/dahles/dahles_symbol.svg.cjs +0 -28
  2214. package/dist/foundation/logos/svg/dahles/dahles_symbol.svg.js +0 -10
  2215. package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg.cjs +0 -28
  2216. package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg.js +0 -10
  2217. package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg.cjs +0 -28
  2218. package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg.js +0 -10
  2219. package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg.cjs +0 -28
  2220. package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg.js +0 -10
  2221. package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg.cjs +0 -28
  2222. package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg.js +0 -10
  2223. package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg.cjs +0 -28
  2224. package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg.js +0 -10
  2225. package/dist/foundation/logos/svg/others/albjerk_wordmark.svg.cjs +0 -28
  2226. package/dist/foundation/logos/svg/others/albjerk_wordmark.svg.js +0 -10
  2227. package/dist/foundation/logos/svg/others/alta_wordmark.svg.cjs +0 -28
  2228. package/dist/foundation/logos/svg/others/alta_wordmark.svg.js +0 -10
  2229. package/dist/foundation/logos/svg/others/berge_wordmark.svg.cjs +0 -28
  2230. package/dist/foundation/logos/svg/others/berge_wordmark.svg.js +0 -10
  2231. package/dist/foundation/logos/svg/others/fremme_wordmark.svg.cjs +0 -28
  2232. package/dist/foundation/logos/svg/others/fremme_wordmark.svg.js +0 -10
  2233. package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg.cjs +0 -28
  2234. package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg.js +0 -10
  2235. package/dist/foundation/logos/svg/others/mobile_wordmark.svg.cjs +0 -28
  2236. package/dist/foundation/logos/svg/others/mobile_wordmark.svg.js +0 -10
  2237. package/dist/foundation/logos/svg/others/slatlem_wordmark.svg.cjs +0 -28
  2238. package/dist/foundation/logos/svg/others/slatlem_wordmark.svg.js +0 -10
  2239. package/dist/foundation/logos/svg/others/sulland_wordmark.svg.cjs +0 -28
  2240. package/dist/foundation/logos/svg/others/sulland_wordmark.svg.js +0 -10
  2241. package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg.cjs +0 -28
  2242. package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg.js +0 -10
  2243. package/dist/foundation/logos/svg/skoda/skoda_symbol.svg.cjs +0 -28
  2244. package/dist/foundation/logos/svg/skoda/skoda_symbol.svg.js +0 -10
  2245. package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg.cjs +0 -28
  2246. package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg.js +0 -10
  2247. package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg.cjs +0 -28
  2248. package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg.js +0 -10
  2249. package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg.cjs +0 -28
  2250. package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg.js +0 -10
  2251. package/dist/foundation/logos/svg/vw/vw_symbol.svg.cjs +0 -28
  2252. package/dist/foundation/logos/svg/vw/vw_symbol.svg.js +0 -10
  2253. package/dist/foundation/logos/svg/vw/vw_wordmark.svg.cjs +0 -28
  2254. package/dist/foundation/logos/svg/vw/vw_wordmark.svg.js +0 -10
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgCupraSymbol = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M18.3807 7.3035L14.8944 8.95606L17.0194 9.74607C17.4571 9.9073 17.978 10.1153 18.1693 10.6167C18.3607 11.1181 18.0762 11.584 17.8215 11.979L16.6567 13.7396C15.2799 15.828 13.902 17.9148 12.523 20C12.523 19.3551 12.523 18.7102 12.523 18.0653C13.0511 16.453 13.5647 14.8408 14.064 13.2285C14.2049 12.7685 14.3446 12.3085 14.4833 11.8484C14.5665 11.5711 14.5133 11.4051 14.237 11.2729L12.1169 10.262L10.0052 11.2713C9.72892 11.4035 9.67234 11.5695 9.75887 11.8468C9.89644 12.3079 10.0362 12.768 10.1782 13.2269C10.6753 14.8456 11.1889 16.4579 11.7192 18.0637C11.7192 18.7086 11.7192 19.3535 11.7192 19.9984C10.338 17.9132 8.9601 15.8264 7.58553 13.738L6.42065 11.9774C6.16437 11.5889 5.87648 11.1294 6.07284 10.6151C6.26921 10.1008 6.78509 9.9073 7.22275 9.74446L9.34784 8.95446L5.8615 7.3019L6.94817 9.06731L5.15092 9.73639C3.89174 7.82641 2.63421 5.91428 1.37836 4C4.95622 5.22854 8.53408 6.46836 12.1219 7.65659C15.7148 6.46836 19.2876 5.23015 22.8655 4C21.6119 5.91213 20.3549 7.82212 19.0946 9.72995L17.2973 9.06086L18.384 7.29545", fill: "#95572B" }));
28
- exports.default = SvgCupraSymbol;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgCupraSymbol = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { d: "M18.3807 7.3035L14.8944 8.95606L17.0194 9.74607C17.4571 9.9073 17.978 10.1153 18.1693 10.6167C18.3607 11.1181 18.0762 11.584 17.8215 11.979L16.6567 13.7396C15.2799 15.828 13.902 17.9148 12.523 20C12.523 19.3551 12.523 18.7102 12.523 18.0653C13.0511 16.453 13.5647 14.8408 14.064 13.2285C14.2049 12.7685 14.3446 12.3085 14.4833 11.8484C14.5665 11.5711 14.5133 11.4051 14.237 11.2729L12.1169 10.262L10.0052 11.2713C9.72892 11.4035 9.67234 11.5695 9.75887 11.8468C9.89644 12.3079 10.0362 12.768 10.1782 13.2269C10.6753 14.8456 11.1889 16.4579 11.7192 18.0637C11.7192 18.7086 11.7192 19.3535 11.7192 19.9984C10.338 17.9132 8.9601 15.8264 7.58553 13.738L6.42065 11.9774C6.16437 11.5889 5.87648 11.1294 6.07284 10.6151C6.26921 10.1008 6.78509 9.9073 7.22275 9.74446L9.34784 8.95446L5.8615 7.3019L6.94817 9.06731L5.15092 9.73639C3.89174 7.82641 2.63421 5.91428 1.37836 4C4.95622 5.22854 8.53408 6.46836 12.1219 7.65659C15.7148 6.46836 19.2876 5.23015 22.8655 4C21.6119 5.91213 20.3549 7.82212 19.0946 9.72995L17.2973 9.06086L18.384 7.29545", fill: "#95572B" }));
8
- export {
9
- SvgCupraSymbol as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgCupraWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 68 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M14.0947 23.8533H20.6013V22.8024H14.3108C14.2617 22.8041 14.2139 22.787 14.1777 22.7547C14.1416 22.7224 14.1201 22.6776 14.118 22.6301V21.2313C14.1185 21.2072 14.124 21.1834 14.1342 21.1614C14.1443 21.1394 14.159 21.1196 14.1772 21.1031C14.1954 21.0867 14.2168 21.0739 14.2402 21.0657C14.2636 21.0574 14.2884 21.0537 14.3133 21.0549H20.6013V20.0008H14.0947C13.4904 20.0008 13 20.4405 13 20.9825V22.8717C13 23.4136 13.4904 23.8533 14.0947 23.8533Z", fill: "#95572B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M29.2332 22.8717V20L27.9258 20.0008V22.6268C27.9236 22.6744 27.9021 22.7192 27.866 22.7515C27.8299 22.7838 27.782 22.8009 27.7329 22.7992H23.1215C23.0971 22.8001 23.0728 22.7965 23.0499 22.7883C23.0271 22.7802 23.0061 22.7678 22.9882 22.7518C22.9702 22.7357 22.9558 22.7165 22.9456 22.695C22.9353 22.6736 22.9296 22.6504 22.9286 22.6268V20.0008H21.6228V22.8717C21.6228 23.4136 22.1132 23.8533 22.7175 23.8533H28.1386C28.7428 23.8533 29.2332 23.4136 29.2332 22.8717Z", fill: "#95572B" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M53.9006 23.8533H55.1308L55.1266 20.0016C55.1258 20.0056 55.1191 20.0097 55.1075 20.0016H48.6009C47.9966 20.0016 47.5062 20.4413 47.5062 20.9833L47.517 23.8549H48.7472V22.6808H53.9006V23.8533ZM53.9006 20.8431V21.7451C53.7134 21.7446 53.5081 21.7442 53.2907 21.7436C51.45 21.7393 48.7405 21.733 48.7405 21.7402V21.0155C48.7427 20.9679 48.7642 20.9231 48.8003 20.8908C48.8364 20.8585 48.8843 20.8414 48.9334 20.8431H53.9006Z", fill: "#95572B" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M37.866 20.9011C37.866 20.3592 37.5751 20.0008 36.7713 20.0008H30.2431V23.8533H31.4758V22.6792H36.7713C37.6167 22.6792 37.866 22.2395 37.866 21.6975V20.9011ZM36.5527 21.7483H31.4758V20.8447H36.5527C36.6018 20.843 36.6497 20.8601 36.6858 20.8924C36.7219 20.9247 36.7434 20.9695 36.7456 21.0171V21.5759C36.7434 21.6235 36.7219 21.6683 36.6858 21.7006C36.6497 21.7329 36.6018 21.75 36.5527 21.7483Z", fill: "#95572B" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M38.8876 20V23.8509L40.1527 23.8525V22.6784H44.4242L45.1722 23.8525H46.5853L45.7192 22.6301C46.1065 22.6301 46.4889 22.2532 46.4889 21.6967V20.9003C46.4889 20.3584 45.9985 20 45.3942 20H38.8876ZM40.1527 21.7483V20.8439L45.1714 20.8447C45.2205 20.843 45.2684 20.8601 45.3045 20.8924C45.3406 20.9247 45.3621 20.9695 45.3643 21.0171V21.5759C45.3621 21.6235 45.3406 21.6683 45.3045 21.7006C45.2684 21.7329 45.2205 21.75 45.1714 21.7483H40.1527Z", fill: "#95572B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M40.3807 3.3035L36.8944 4.95606L39.0195 5.74607C39.4571 5.9073 39.978 6.11528 40.1694 6.61669C40.3607 7.1181 40.0762 7.58404 39.8216 7.97904L38.6567 9.73962C37.2799 11.828 35.902 13.9148 34.523 16C34.523 15.3551 34.523 14.7102 34.523 14.0653C35.0511 12.453 35.5647 10.8408 36.064 9.22853C36.2049 8.76851 36.3447 8.30848 36.4833 7.84845C36.5665 7.57114 36.5133 7.40508 36.237 7.27287L34.117 6.26199L32.0052 7.27126C31.7289 7.40347 31.6724 7.56953 31.7589 7.84684C31.8965 8.30794 32.0362 8.76797 32.1782 9.22693C32.6753 10.8456 33.1889 12.4579 33.7192 14.0637C33.7192 14.7086 33.7192 15.3535 33.7192 15.9984C32.338 13.9132 30.9601 11.8264 29.5855 9.73801L28.4207 7.97743C28.1644 7.58888 27.8765 7.12938 28.0729 6.61507C28.2692 6.10077 28.7851 5.9073 29.2228 5.74446L31.3479 4.95446L27.8615 3.3019L28.9482 5.06731L27.1509 5.73639C25.8918 3.82641 24.6342 1.91428 23.3784 0C26.9562 1.22854 30.5341 2.46836 34.1219 3.65659C37.7148 2.46836 41.2877 1.23015 44.8655 0C43.6119 1.91213 42.3549 3.82212 41.0946 5.72995L39.2974 5.06086L40.384 3.29545", fill: "#95572B" }));
28
- exports.default = SvgCupraWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgCupraWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 68 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { d: "M14.0947 23.8533H20.6013V22.8024H14.3108C14.2617 22.8041 14.2139 22.787 14.1777 22.7547C14.1416 22.7224 14.1201 22.6776 14.118 22.6301V21.2313C14.1185 21.2072 14.124 21.1834 14.1342 21.1614C14.1443 21.1394 14.159 21.1196 14.1772 21.1031C14.1954 21.0867 14.2168 21.0739 14.2402 21.0657C14.2636 21.0574 14.2884 21.0537 14.3133 21.0549H20.6013V20.0008H14.0947C13.4904 20.0008 13 20.4405 13 20.9825V22.8717C13 23.4136 13.4904 23.8533 14.0947 23.8533Z", fill: "#95572B" }), /* @__PURE__ */ React.createElement("path", { d: "M29.2332 22.8717V20L27.9258 20.0008V22.6268C27.9236 22.6744 27.9021 22.7192 27.866 22.7515C27.8299 22.7838 27.782 22.8009 27.7329 22.7992H23.1215C23.0971 22.8001 23.0728 22.7965 23.0499 22.7883C23.0271 22.7802 23.0061 22.7678 22.9882 22.7518C22.9702 22.7357 22.9558 22.7165 22.9456 22.695C22.9353 22.6736 22.9296 22.6504 22.9286 22.6268V20.0008H21.6228V22.8717C21.6228 23.4136 22.1132 23.8533 22.7175 23.8533H28.1386C28.7428 23.8533 29.2332 23.4136 29.2332 22.8717Z", fill: "#95572B" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M53.9006 23.8533H55.1308L55.1266 20.0016C55.1258 20.0056 55.1191 20.0097 55.1075 20.0016H48.6009C47.9966 20.0016 47.5062 20.4413 47.5062 20.9833L47.517 23.8549H48.7472V22.6808H53.9006V23.8533ZM53.9006 20.8431V21.7451C53.7134 21.7446 53.5081 21.7442 53.2907 21.7436C51.45 21.7393 48.7405 21.733 48.7405 21.7402V21.0155C48.7427 20.9679 48.7642 20.9231 48.8003 20.8908C48.8364 20.8585 48.8843 20.8414 48.9334 20.8431H53.9006Z", fill: "#95572B" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M37.866 20.9011C37.866 20.3592 37.5751 20.0008 36.7713 20.0008H30.2431V23.8533H31.4758V22.6792H36.7713C37.6167 22.6792 37.866 22.2395 37.866 21.6975V20.9011ZM36.5527 21.7483H31.4758V20.8447H36.5527C36.6018 20.843 36.6497 20.8601 36.6858 20.8924C36.7219 20.9247 36.7434 20.9695 36.7456 21.0171V21.5759C36.7434 21.6235 36.7219 21.6683 36.6858 21.7006C36.6497 21.7329 36.6018 21.75 36.5527 21.7483Z", fill: "#95572B" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M38.8876 20V23.8509L40.1527 23.8525V22.6784H44.4242L45.1722 23.8525H46.5853L45.7192 22.6301C46.1065 22.6301 46.4889 22.2532 46.4889 21.6967V20.9003C46.4889 20.3584 45.9985 20 45.3942 20H38.8876ZM40.1527 21.7483V20.8439L45.1714 20.8447C45.2205 20.843 45.2684 20.8601 45.3045 20.8924C45.3406 20.9247 45.3621 20.9695 45.3643 21.0171V21.5759C45.3621 21.6235 45.3406 21.6683 45.3045 21.7006C45.2684 21.7329 45.2205 21.75 45.1714 21.7483H40.1527Z", fill: "#95572B" }), /* @__PURE__ */ React.createElement("path", { d: "M40.3807 3.3035L36.8944 4.95606L39.0195 5.74607C39.4571 5.9073 39.978 6.11528 40.1694 6.61669C40.3607 7.1181 40.0762 7.58404 39.8216 7.97904L38.6567 9.73962C37.2799 11.828 35.902 13.9148 34.523 16C34.523 15.3551 34.523 14.7102 34.523 14.0653C35.0511 12.453 35.5647 10.8408 36.064 9.22853C36.2049 8.76851 36.3447 8.30848 36.4833 7.84845C36.5665 7.57114 36.5133 7.40508 36.237 7.27287L34.117 6.26199L32.0052 7.27126C31.7289 7.40347 31.6724 7.56953 31.7589 7.84684C31.8965 8.30794 32.0362 8.76797 32.1782 9.22693C32.6753 10.8456 33.1889 12.4579 33.7192 14.0637C33.7192 14.7086 33.7192 15.3535 33.7192 15.9984C32.338 13.9132 30.9601 11.8264 29.5855 9.73801L28.4207 7.97743C28.1644 7.58888 27.8765 7.12938 28.0729 6.61507C28.2692 6.10077 28.7851 5.9073 29.2228 5.74446L31.3479 4.95446L27.8615 3.3019L28.9482 5.06731L27.1509 5.73639C25.8918 3.82641 24.6342 1.91428 23.3784 0C26.9562 1.22854 30.5341 2.46836 34.1219 3.65659C37.7148 2.46836 41.2877 1.23015 44.8655 0C43.6119 1.91213 42.3549 3.82212 41.0946 5.72995L39.2974 5.06086L40.384 3.29545", fill: "#95572B" }));
8
- export {
9
- SvgCupraWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgDahlesSymbol = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 112 26", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M1.0874 20.3281V6.45897H5.02694C6.45431 6.45897 7.68898 6.70004 8.73096 7.1822C9.77294 7.66436 10.5794 8.41596 11.1503 9.43699C11.7356 10.4439 12.0282 11.7414 12.0282 13.3297C12.0282 14.918 11.7427 16.2297 11.1718 17.265C10.6008 18.3002 9.80148 19.073 8.77378 19.5836C7.76035 20.0799 6.56849 20.3281 5.19822 20.3281H1.0874ZM4.23475 17.7967H4.83424C5.63357 17.7967 6.32584 17.6549 6.91106 17.3713C7.51056 17.0877 7.97445 16.6197 8.30275 15.9674C8.63104 15.3151 8.79519 14.4358 8.79519 13.3297C8.79519 12.2236 8.63104 11.3585 8.30275 10.7346C7.97445 10.0964 7.51056 9.64971 6.91106 9.39445C6.32584 9.12501 5.63357 8.99029 4.83424 8.99029H4.23475V17.7967Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M17.0975 20.5833C16.1268 20.5833 15.3561 20.2784 14.7851 19.6686C14.2142 19.0447 13.9287 18.286 13.9287 17.3926C13.9287 16.2865 14.3997 15.4214 15.3418 14.7974C16.2839 14.1735 17.804 13.7551 19.9022 13.5424C19.8737 13.0744 19.7309 12.7057 19.474 12.4363C19.2314 12.1527 18.8174 12.0109 18.2322 12.0109C17.7897 12.0109 17.3401 12.0959 16.8833 12.2661C16.4266 12.4363 15.9413 12.6703 15.4274 12.9681L14.2927 10.9047C14.9635 10.4935 15.6772 10.1602 16.4337 9.90497C17.2045 9.64971 18.0038 9.52208 18.8317 9.52208C20.1877 9.52208 21.2297 9.91206 21.9576 10.692C22.6856 11.472 23.0496 12.6703 23.0496 14.2869V20.3281H20.4803L20.2662 19.2432H20.1806C19.7381 19.6403 19.2599 19.9664 18.7461 20.2217C18.2465 20.4628 17.6969 20.5833 17.0975 20.5833ZM18.168 18.1584C18.5248 18.1584 18.8317 18.0804 19.0886 17.9244C19.3598 17.7542 19.631 17.5344 19.9022 17.265V15.4143C18.7889 15.5561 18.0181 15.783 17.5899 16.095C17.1617 16.3928 16.9476 16.7473 16.9476 17.1586C16.9476 17.4989 17.0546 17.7542 17.2687 17.9244C17.4971 18.0804 17.7969 18.1584 18.168 18.1584Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M25.7118 20.3281V5.41666H28.8592V9.07537L28.7093 10.9686C29.109 10.614 29.5729 10.2879 30.101 9.99006C30.6434 9.67807 31.2714 9.52208 31.9851 9.52208C33.1413 9.52208 33.9763 9.90497 34.4901 10.6707C35.0183 11.4223 35.2823 12.4576 35.2823 13.7764V20.3281H32.135V14.1806C32.135 13.4148 32.0279 12.8901 31.8138 12.6065C31.614 12.3228 31.2857 12.181 30.829 12.181C30.4293 12.181 30.0867 12.2732 29.8012 12.4576C29.5158 12.6277 29.2018 12.8759 28.8592 13.2021V20.3281H25.7118Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M40.8339 20.5833C39.7491 20.5833 38.9925 20.2642 38.5643 19.6261C38.1504 18.9738 37.9434 18.1158 37.9434 17.0522V5.41666H41.0908V17.1799C41.0908 17.506 41.1479 17.7329 41.2621 17.8606C41.3905 17.9882 41.519 18.052 41.6475 18.052C41.7188 18.052 41.7759 18.052 41.8187 18.052C41.8758 18.0378 41.9472 18.0236 42.0328 18.0095L42.4182 20.3281C42.2469 20.399 42.0257 20.4557 41.7545 20.4982C41.4976 20.555 41.1907 20.5833 40.8339 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M48.8228 20.5833C47.8094 20.5833 46.8959 20.3635 46.0823 19.9239C45.2687 19.4843 44.6264 18.8532 44.1553 18.0307C43.6843 17.2082 43.4488 16.2155 43.4488 15.0527C43.4488 13.904 43.6843 12.9184 44.1553 12.0959C44.6406 11.2734 45.2687 10.6424 46.0394 10.2028C46.8102 9.74898 47.6167 9.52208 48.4588 9.52208C49.4723 9.52208 50.3073 9.74898 50.9639 10.2028C51.6347 10.6424 52.1343 11.2451 52.4626 12.0109C52.8052 12.7625 52.9765 13.6204 52.9765 14.5847C52.9765 14.8542 52.9622 15.1236 52.9336 15.393C52.9051 15.6483 52.8765 15.8398 52.848 15.9674H46.4891C46.6318 16.7332 46.953 17.3004 47.4525 17.6691C47.9521 18.0236 48.5516 18.2009 49.251 18.2009C50.0075 18.2009 50.7712 17.9669 51.542 17.4989L52.5911 19.3921C52.0487 19.7608 51.442 20.0515 50.7712 20.2642C50.1003 20.477 49.4509 20.5833 48.8228 20.5833ZM46.4677 13.904H50.3001C50.3001 13.3226 50.1574 12.8475 49.8719 12.4788C49.6007 12.0959 49.1511 11.9045 48.5231 11.9045C48.0378 11.9045 47.6024 12.0747 47.217 12.415C46.8316 12.7412 46.5818 13.2375 46.4677 13.904Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M58.2772 20.5833C57.5778 20.5833 56.857 20.4486 56.1148 20.1792C55.3868 19.9097 54.7516 19.5552 54.2092 19.1156L55.6223 17.1586C56.1076 17.5131 56.5715 17.7897 57.014 17.9882C57.4708 18.1725 57.9204 18.2647 58.3629 18.2647C58.8339 18.2647 59.1765 18.1867 59.3906 18.0307C59.6047 17.8606 59.7117 17.6407 59.7117 17.3713C59.7117 17.1302 59.6047 16.9317 59.3906 16.7757C59.1907 16.6197 58.9267 16.4779 58.5984 16.3503C58.2701 16.2085 57.9204 16.0666 57.5493 15.9248C57.1211 15.7547 56.6929 15.5419 56.2646 15.2867C55.8507 15.0314 55.501 14.7053 55.2155 14.3082C54.9301 13.8969 54.7873 13.4006 54.7873 12.8192C54.7873 11.8407 55.1584 11.0465 55.9007 10.4368C56.6572 9.82697 57.642 9.52208 58.8553 9.52208C59.6689 9.52208 60.3826 9.66389 60.9964 9.94751C61.6244 10.217 62.1597 10.5218 62.6022 10.8622L61.1891 12.7341C60.8179 12.4505 60.4468 12.2307 60.0757 12.0747C59.7046 11.9187 59.3335 11.8407 58.9624 11.8407C58.1488 11.8407 57.742 12.1172 57.742 12.6703C57.742 13.0106 57.9418 13.273 58.3415 13.4573C58.7554 13.6275 59.2336 13.8119 59.776 14.0104C60.2327 14.1664 60.6752 14.372 61.1034 14.6273C61.5459 14.8683 61.9099 15.1945 62.1954 15.6058C62.4951 16.0028 62.645 16.5275 62.645 17.1799C62.645 18.13 62.2739 18.9383 61.5316 19.6048C60.7894 20.2572 59.7046 20.5833 58.2772 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M72.4629 13.3084L72.1203 14.5847H75.0964L74.7752 13.3084C74.5896 12.6136 74.397 11.8761 74.1971 11.0962C74.0116 10.3162 73.826 9.56462 73.6404 8.84139H73.5548C73.3835 9.5788 73.2051 10.3375 73.0195 11.1175C72.8483 11.8832 72.6627 12.6136 72.4629 13.3084ZM67.41 20.3281L71.7777 6.45897H75.5674L79.9351 20.3281H76.5951L75.7387 17.031H71.478L70.6216 20.3281H67.41Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M84.3937 20.5833C83.2375 20.5833 82.3954 20.2075 81.8673 19.4559C81.3534 18.6901 81.0965 17.6478 81.0965 16.329V9.77734H84.2438V15.9248C84.2438 16.6764 84.3509 17.2011 84.565 17.4989C84.7791 17.7826 85.1145 17.9244 85.5713 17.9244C85.9709 17.9244 86.3064 17.8322 86.5776 17.6478C86.8488 17.4635 87.1414 17.1657 87.4554 16.7544V9.77734H90.6028V20.3281H88.0335L87.798 18.8603H87.7338C87.2913 19.385 86.806 19.8034 86.2778 20.1153C85.7497 20.4273 85.1217 20.5833 84.3937 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M97.4618 20.5833C96.1486 20.5833 95.2066 20.2075 94.6356 19.4559C94.079 18.7043 93.8006 17.7187 93.8006 16.4992V12.2236H92.3447V9.90497L93.9719 9.77734L94.3359 6.96948H96.948V9.77734H99.4958V12.2236H96.948V16.4566C96.948 17.0522 97.0693 17.4848 97.3119 17.7542C97.5689 18.0095 97.9043 18.1371 98.3182 18.1371C98.4895 18.1371 98.6608 18.1158 98.8321 18.0733C99.0176 18.0307 99.1818 17.9811 99.3245 17.9244L99.817 20.2004C99.5458 20.2855 99.2103 20.3706 98.8107 20.4557C98.4253 20.5408 97.9757 20.5833 97.4618 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M105.753 20.5833C104.853 20.5833 104.004 20.3706 103.205 19.9452C102.42 19.5056 101.785 18.8745 101.299 18.052C100.814 17.2153 100.571 16.2155 100.571 15.0527C100.571 13.8757 100.814 12.8759 101.299 12.0534C101.785 11.2309 102.42 10.6069 103.205 10.1815C104.004 9.74189 104.853 9.52208 105.753 9.52208C106.652 9.52208 107.494 9.74189 108.279 10.1815C109.064 10.6069 109.699 11.2309 110.185 12.0534C110.67 12.8759 110.913 13.8757 110.913 15.0527C110.913 16.2155 110.67 17.2153 110.185 18.052C109.699 18.8745 109.064 19.5056 108.279 19.9452C107.494 20.3706 106.652 20.5833 105.753 20.5833ZM105.753 18.052C106.395 18.052 106.88 17.7826 107.209 17.2437C107.537 16.6906 107.701 15.9603 107.701 15.0527C107.701 14.1309 107.537 13.4006 107.209 12.8617C106.88 12.3228 106.395 12.0534 105.753 12.0534C105.096 12.0534 104.604 12.3228 104.275 12.8617C103.961 13.4006 103.804 14.1309 103.804 15.0527C103.804 15.9603 103.961 16.6906 104.275 17.2437C104.604 17.7826 105.096 18.052 105.753 18.052Z", fill: "currentColor" }));
28
- exports.default = SvgDahlesSymbol;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgDahlesSymbol = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 112 26", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { d: "M1.0874 20.3281V6.45897H5.02694C6.45431 6.45897 7.68898 6.70004 8.73096 7.1822C9.77294 7.66436 10.5794 8.41596 11.1503 9.43699C11.7356 10.4439 12.0282 11.7414 12.0282 13.3297C12.0282 14.918 11.7427 16.2297 11.1718 17.265C10.6008 18.3002 9.80148 19.073 8.77378 19.5836C7.76035 20.0799 6.56849 20.3281 5.19822 20.3281H1.0874ZM4.23475 17.7967H4.83424C5.63357 17.7967 6.32584 17.6549 6.91106 17.3713C7.51056 17.0877 7.97445 16.6197 8.30275 15.9674C8.63104 15.3151 8.79519 14.4358 8.79519 13.3297C8.79519 12.2236 8.63104 11.3585 8.30275 10.7346C7.97445 10.0964 7.51056 9.64971 6.91106 9.39445C6.32584 9.12501 5.63357 8.99029 4.83424 8.99029H4.23475V17.7967Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M17.0975 20.5833C16.1268 20.5833 15.3561 20.2784 14.7851 19.6686C14.2142 19.0447 13.9287 18.286 13.9287 17.3926C13.9287 16.2865 14.3997 15.4214 15.3418 14.7974C16.2839 14.1735 17.804 13.7551 19.9022 13.5424C19.8737 13.0744 19.7309 12.7057 19.474 12.4363C19.2314 12.1527 18.8174 12.0109 18.2322 12.0109C17.7897 12.0109 17.3401 12.0959 16.8833 12.2661C16.4266 12.4363 15.9413 12.6703 15.4274 12.9681L14.2927 10.9047C14.9635 10.4935 15.6772 10.1602 16.4337 9.90497C17.2045 9.64971 18.0038 9.52208 18.8317 9.52208C20.1877 9.52208 21.2297 9.91206 21.9576 10.692C22.6856 11.472 23.0496 12.6703 23.0496 14.2869V20.3281H20.4803L20.2662 19.2432H20.1806C19.7381 19.6403 19.2599 19.9664 18.7461 20.2217C18.2465 20.4628 17.6969 20.5833 17.0975 20.5833ZM18.168 18.1584C18.5248 18.1584 18.8317 18.0804 19.0886 17.9244C19.3598 17.7542 19.631 17.5344 19.9022 17.265V15.4143C18.7889 15.5561 18.0181 15.783 17.5899 16.095C17.1617 16.3928 16.9476 16.7473 16.9476 17.1586C16.9476 17.4989 17.0546 17.7542 17.2687 17.9244C17.4971 18.0804 17.7969 18.1584 18.168 18.1584Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M25.7118 20.3281V5.41666H28.8592V9.07537L28.7093 10.9686C29.109 10.614 29.5729 10.2879 30.101 9.99006C30.6434 9.67807 31.2714 9.52208 31.9851 9.52208C33.1413 9.52208 33.9763 9.90497 34.4901 10.6707C35.0183 11.4223 35.2823 12.4576 35.2823 13.7764V20.3281H32.135V14.1806C32.135 13.4148 32.0279 12.8901 31.8138 12.6065C31.614 12.3228 31.2857 12.181 30.829 12.181C30.4293 12.181 30.0867 12.2732 29.8012 12.4576C29.5158 12.6277 29.2018 12.8759 28.8592 13.2021V20.3281H25.7118Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M40.8339 20.5833C39.7491 20.5833 38.9925 20.2642 38.5643 19.6261C38.1504 18.9738 37.9434 18.1158 37.9434 17.0522V5.41666H41.0908V17.1799C41.0908 17.506 41.1479 17.7329 41.2621 17.8606C41.3905 17.9882 41.519 18.052 41.6475 18.052C41.7188 18.052 41.7759 18.052 41.8187 18.052C41.8758 18.0378 41.9472 18.0236 42.0328 18.0095L42.4182 20.3281C42.2469 20.399 42.0257 20.4557 41.7545 20.4982C41.4976 20.555 41.1907 20.5833 40.8339 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M48.8228 20.5833C47.8094 20.5833 46.8959 20.3635 46.0823 19.9239C45.2687 19.4843 44.6264 18.8532 44.1553 18.0307C43.6843 17.2082 43.4488 16.2155 43.4488 15.0527C43.4488 13.904 43.6843 12.9184 44.1553 12.0959C44.6406 11.2734 45.2687 10.6424 46.0394 10.2028C46.8102 9.74898 47.6167 9.52208 48.4588 9.52208C49.4723 9.52208 50.3073 9.74898 50.9639 10.2028C51.6347 10.6424 52.1343 11.2451 52.4626 12.0109C52.8052 12.7625 52.9765 13.6204 52.9765 14.5847C52.9765 14.8542 52.9622 15.1236 52.9336 15.393C52.9051 15.6483 52.8765 15.8398 52.848 15.9674H46.4891C46.6318 16.7332 46.953 17.3004 47.4525 17.6691C47.9521 18.0236 48.5516 18.2009 49.251 18.2009C50.0075 18.2009 50.7712 17.9669 51.542 17.4989L52.5911 19.3921C52.0487 19.7608 51.442 20.0515 50.7712 20.2642C50.1003 20.477 49.4509 20.5833 48.8228 20.5833ZM46.4677 13.904H50.3001C50.3001 13.3226 50.1574 12.8475 49.8719 12.4788C49.6007 12.0959 49.1511 11.9045 48.5231 11.9045C48.0378 11.9045 47.6024 12.0747 47.217 12.415C46.8316 12.7412 46.5818 13.2375 46.4677 13.904Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M58.2772 20.5833C57.5778 20.5833 56.857 20.4486 56.1148 20.1792C55.3868 19.9097 54.7516 19.5552 54.2092 19.1156L55.6223 17.1586C56.1076 17.5131 56.5715 17.7897 57.014 17.9882C57.4708 18.1725 57.9204 18.2647 58.3629 18.2647C58.8339 18.2647 59.1765 18.1867 59.3906 18.0307C59.6047 17.8606 59.7117 17.6407 59.7117 17.3713C59.7117 17.1302 59.6047 16.9317 59.3906 16.7757C59.1907 16.6197 58.9267 16.4779 58.5984 16.3503C58.2701 16.2085 57.9204 16.0666 57.5493 15.9248C57.1211 15.7547 56.6929 15.5419 56.2646 15.2867C55.8507 15.0314 55.501 14.7053 55.2155 14.3082C54.9301 13.8969 54.7873 13.4006 54.7873 12.8192C54.7873 11.8407 55.1584 11.0465 55.9007 10.4368C56.6572 9.82697 57.642 9.52208 58.8553 9.52208C59.6689 9.52208 60.3826 9.66389 60.9964 9.94751C61.6244 10.217 62.1597 10.5218 62.6022 10.8622L61.1891 12.7341C60.8179 12.4505 60.4468 12.2307 60.0757 12.0747C59.7046 11.9187 59.3335 11.8407 58.9624 11.8407C58.1488 11.8407 57.742 12.1172 57.742 12.6703C57.742 13.0106 57.9418 13.273 58.3415 13.4573C58.7554 13.6275 59.2336 13.8119 59.776 14.0104C60.2327 14.1664 60.6752 14.372 61.1034 14.6273C61.5459 14.8683 61.9099 15.1945 62.1954 15.6058C62.4951 16.0028 62.645 16.5275 62.645 17.1799C62.645 18.13 62.2739 18.9383 61.5316 19.6048C60.7894 20.2572 59.7046 20.5833 58.2772 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M72.4629 13.3084L72.1203 14.5847H75.0964L74.7752 13.3084C74.5896 12.6136 74.397 11.8761 74.1971 11.0962C74.0116 10.3162 73.826 9.56462 73.6404 8.84139H73.5548C73.3835 9.5788 73.2051 10.3375 73.0195 11.1175C72.8483 11.8832 72.6627 12.6136 72.4629 13.3084ZM67.41 20.3281L71.7777 6.45897H75.5674L79.9351 20.3281H76.5951L75.7387 17.031H71.478L70.6216 20.3281H67.41Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M84.3937 20.5833C83.2375 20.5833 82.3954 20.2075 81.8673 19.4559C81.3534 18.6901 81.0965 17.6478 81.0965 16.329V9.77734H84.2438V15.9248C84.2438 16.6764 84.3509 17.2011 84.565 17.4989C84.7791 17.7826 85.1145 17.9244 85.5713 17.9244C85.9709 17.9244 86.3064 17.8322 86.5776 17.6478C86.8488 17.4635 87.1414 17.1657 87.4554 16.7544V9.77734H90.6028V20.3281H88.0335L87.798 18.8603H87.7338C87.2913 19.385 86.806 19.8034 86.2778 20.1153C85.7497 20.4273 85.1217 20.5833 84.3937 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M97.4618 20.5833C96.1486 20.5833 95.2066 20.2075 94.6356 19.4559C94.079 18.7043 93.8006 17.7187 93.8006 16.4992V12.2236H92.3447V9.90497L93.9719 9.77734L94.3359 6.96948H96.948V9.77734H99.4958V12.2236H96.948V16.4566C96.948 17.0522 97.0693 17.4848 97.3119 17.7542C97.5689 18.0095 97.9043 18.1371 98.3182 18.1371C98.4895 18.1371 98.6608 18.1158 98.8321 18.0733C99.0176 18.0307 99.1818 17.9811 99.3245 17.9244L99.817 20.2004C99.5458 20.2855 99.2103 20.3706 98.8107 20.4557C98.4253 20.5408 97.9757 20.5833 97.4618 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M105.753 20.5833C104.853 20.5833 104.004 20.3706 103.205 19.9452C102.42 19.5056 101.785 18.8745 101.299 18.052C100.814 17.2153 100.571 16.2155 100.571 15.0527C100.571 13.8757 100.814 12.8759 101.299 12.0534C101.785 11.2309 102.42 10.6069 103.205 10.1815C104.004 9.74189 104.853 9.52208 105.753 9.52208C106.652 9.52208 107.494 9.74189 108.279 10.1815C109.064 10.6069 109.699 11.2309 110.185 12.0534C110.67 12.8759 110.913 13.8757 110.913 15.0527C110.913 16.2155 110.67 17.2153 110.185 18.052C109.699 18.8745 109.064 19.5056 108.279 19.9452C107.494 20.3706 106.652 20.5833 105.753 20.5833ZM105.753 18.052C106.395 18.052 106.88 17.7826 107.209 17.2437C107.537 16.6906 107.701 15.9603 107.701 15.0527C107.701 14.1309 107.537 13.4006 107.209 12.8617C106.88 12.3228 106.395 12.0534 105.753 12.0534C105.096 12.0534 104.604 12.3228 104.275 12.8617C103.961 13.4006 103.804 14.1309 103.804 15.0527C103.804 15.9603 103.961 16.6906 104.275 17.2437C104.604 17.7826 105.096 18.052 105.753 18.052Z", fill: "currentColor" }));
8
- export {
9
- SvgDahlesSymbol as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgDahlesWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 112 26", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M1.0874 20.3281V6.45897H5.02694C6.45431 6.45897 7.68898 6.70004 8.73096 7.1822C9.77294 7.66436 10.5794 8.41596 11.1503 9.43699C11.7356 10.4439 12.0282 11.7414 12.0282 13.3297C12.0282 14.918 11.7427 16.2297 11.1718 17.265C10.6008 18.3002 9.80148 19.073 8.77378 19.5836C7.76035 20.0799 6.56849 20.3281 5.19822 20.3281H1.0874ZM4.23475 17.7967H4.83424C5.63357 17.7967 6.32584 17.6549 6.91106 17.3713C7.51056 17.0877 7.97445 16.6197 8.30275 15.9674C8.63104 15.3151 8.79519 14.4358 8.79519 13.3297C8.79519 12.2236 8.63104 11.3585 8.30275 10.7346C7.97445 10.0964 7.51056 9.64971 6.91106 9.39445C6.32584 9.12501 5.63357 8.99029 4.83424 8.99029H4.23475V17.7967Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M17.0975 20.5833C16.1268 20.5833 15.3561 20.2784 14.7851 19.6686C14.2142 19.0447 13.9287 18.286 13.9287 17.3926C13.9287 16.2865 14.3997 15.4214 15.3418 14.7974C16.2839 14.1735 17.804 13.7551 19.9022 13.5424C19.8737 13.0744 19.7309 12.7057 19.474 12.4363C19.2314 12.1527 18.8174 12.0109 18.2322 12.0109C17.7897 12.0109 17.3401 12.0959 16.8833 12.2661C16.4266 12.4363 15.9413 12.6703 15.4274 12.9681L14.2927 10.9047C14.9635 10.4935 15.6772 10.1602 16.4337 9.90497C17.2045 9.64971 18.0038 9.52208 18.8317 9.52208C20.1877 9.52208 21.2297 9.91206 21.9576 10.692C22.6856 11.472 23.0496 12.6703 23.0496 14.2869V20.3281H20.4803L20.2662 19.2432H20.1806C19.7381 19.6403 19.2599 19.9664 18.7461 20.2217C18.2465 20.4628 17.6969 20.5833 17.0975 20.5833ZM18.168 18.1584C18.5248 18.1584 18.8317 18.0804 19.0886 17.9244C19.3598 17.7542 19.631 17.5344 19.9022 17.265V15.4143C18.7889 15.5561 18.0181 15.783 17.5899 16.095C17.1617 16.3928 16.9476 16.7473 16.9476 17.1586C16.9476 17.4989 17.0546 17.7542 17.2687 17.9244C17.4971 18.0804 17.7969 18.1584 18.168 18.1584Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M25.7118 20.3281V5.41666H28.8592V9.07537L28.7093 10.9686C29.109 10.614 29.5729 10.2879 30.101 9.99006C30.6434 9.67807 31.2714 9.52208 31.9851 9.52208C33.1413 9.52208 33.9763 9.90497 34.4901 10.6707C35.0183 11.4223 35.2823 12.4576 35.2823 13.7764V20.3281H32.135V14.1806C32.135 13.4148 32.0279 12.8901 31.8138 12.6065C31.614 12.3228 31.2857 12.181 30.829 12.181C30.4293 12.181 30.0867 12.2732 29.8012 12.4576C29.5158 12.6277 29.2018 12.8759 28.8592 13.2021V20.3281H25.7118Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M40.8339 20.5833C39.7491 20.5833 38.9925 20.2642 38.5643 19.6261C38.1504 18.9738 37.9434 18.1158 37.9434 17.0522V5.41666H41.0908V17.1799C41.0908 17.506 41.1479 17.7329 41.2621 17.8606C41.3905 17.9882 41.519 18.052 41.6475 18.052C41.7188 18.052 41.7759 18.052 41.8187 18.052C41.8758 18.0378 41.9472 18.0236 42.0328 18.0095L42.4182 20.3281C42.2469 20.399 42.0257 20.4557 41.7545 20.4982C41.4976 20.555 41.1907 20.5833 40.8339 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M48.8228 20.5833C47.8094 20.5833 46.8959 20.3635 46.0823 19.9239C45.2687 19.4843 44.6264 18.8532 44.1553 18.0307C43.6843 17.2082 43.4488 16.2155 43.4488 15.0527C43.4488 13.904 43.6843 12.9184 44.1553 12.0959C44.6406 11.2734 45.2687 10.6424 46.0394 10.2028C46.8102 9.74898 47.6167 9.52208 48.4588 9.52208C49.4723 9.52208 50.3073 9.74898 50.9639 10.2028C51.6347 10.6424 52.1343 11.2451 52.4626 12.0109C52.8052 12.7625 52.9765 13.6204 52.9765 14.5847C52.9765 14.8542 52.9622 15.1236 52.9336 15.393C52.9051 15.6483 52.8765 15.8398 52.848 15.9674H46.4891C46.6318 16.7332 46.953 17.3004 47.4525 17.6691C47.9521 18.0236 48.5516 18.2009 49.251 18.2009C50.0075 18.2009 50.7712 17.9669 51.542 17.4989L52.5911 19.3921C52.0487 19.7608 51.442 20.0515 50.7712 20.2642C50.1003 20.477 49.4509 20.5833 48.8228 20.5833ZM46.4677 13.904H50.3001C50.3001 13.3226 50.1574 12.8475 49.8719 12.4788C49.6007 12.0959 49.1511 11.9045 48.5231 11.9045C48.0378 11.9045 47.6024 12.0747 47.217 12.415C46.8316 12.7412 46.5818 13.2375 46.4677 13.904Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M58.2772 20.5833C57.5778 20.5833 56.857 20.4486 56.1148 20.1792C55.3868 19.9097 54.7516 19.5552 54.2092 19.1156L55.6223 17.1586C56.1076 17.5131 56.5715 17.7897 57.014 17.9882C57.4708 18.1725 57.9204 18.2647 58.3629 18.2647C58.8339 18.2647 59.1765 18.1867 59.3906 18.0307C59.6047 17.8606 59.7117 17.6407 59.7117 17.3713C59.7117 17.1302 59.6047 16.9317 59.3906 16.7757C59.1907 16.6197 58.9267 16.4779 58.5984 16.3503C58.2701 16.2085 57.9204 16.0666 57.5493 15.9248C57.1211 15.7547 56.6929 15.5419 56.2646 15.2867C55.8507 15.0314 55.501 14.7053 55.2155 14.3082C54.9301 13.8969 54.7873 13.4006 54.7873 12.8192C54.7873 11.8407 55.1584 11.0465 55.9007 10.4368C56.6572 9.82697 57.642 9.52208 58.8553 9.52208C59.6689 9.52208 60.3826 9.66389 60.9964 9.94751C61.6244 10.217 62.1597 10.5218 62.6022 10.8622L61.1891 12.7341C60.8179 12.4505 60.4468 12.2307 60.0757 12.0747C59.7046 11.9187 59.3335 11.8407 58.9624 11.8407C58.1488 11.8407 57.742 12.1172 57.742 12.6703C57.742 13.0106 57.9418 13.273 58.3415 13.4573C58.7554 13.6275 59.2336 13.8119 59.776 14.0104C60.2327 14.1664 60.6752 14.372 61.1034 14.6273C61.5459 14.8683 61.9099 15.1945 62.1954 15.6058C62.4951 16.0028 62.645 16.5275 62.645 17.1799C62.645 18.13 62.2739 18.9383 61.5316 19.6048C60.7894 20.2572 59.7046 20.5833 58.2772 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M72.4629 13.3084L72.1203 14.5847H75.0964L74.7752 13.3084C74.5896 12.6136 74.397 11.8761 74.1971 11.0962C74.0116 10.3162 73.826 9.56462 73.6404 8.84139H73.5548C73.3835 9.5788 73.2051 10.3375 73.0195 11.1175C72.8483 11.8832 72.6627 12.6136 72.4629 13.3084ZM67.41 20.3281L71.7777 6.45897H75.5674L79.9351 20.3281H76.5951L75.7387 17.031H71.478L70.6216 20.3281H67.41Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M84.3937 20.5833C83.2375 20.5833 82.3954 20.2075 81.8673 19.4559C81.3534 18.6901 81.0965 17.6478 81.0965 16.329V9.77734H84.2438V15.9248C84.2438 16.6764 84.3509 17.2011 84.565 17.4989C84.7791 17.7826 85.1145 17.9244 85.5713 17.9244C85.9709 17.9244 86.3064 17.8322 86.5776 17.6478C86.8488 17.4635 87.1414 17.1657 87.4554 16.7544V9.77734H90.6028V20.3281H88.0335L87.798 18.8603H87.7338C87.2913 19.385 86.806 19.8034 86.2778 20.1153C85.7497 20.4273 85.1217 20.5833 84.3937 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M97.4618 20.5833C96.1486 20.5833 95.2066 20.2075 94.6356 19.4559C94.079 18.7043 93.8006 17.7187 93.8006 16.4992V12.2236H92.3447V9.90497L93.9719 9.77734L94.3359 6.96948H96.948V9.77734H99.4958V12.2236H96.948V16.4566C96.948 17.0522 97.0693 17.4848 97.3119 17.7542C97.5689 18.0095 97.9043 18.1371 98.3182 18.1371C98.4895 18.1371 98.6608 18.1158 98.8321 18.0733C99.0176 18.0307 99.1818 17.9811 99.3245 17.9244L99.817 20.2004C99.5458 20.2855 99.2103 20.3706 98.8107 20.4557C98.4253 20.5408 97.9757 20.5833 97.4618 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M105.753 20.5833C104.853 20.5833 104.004 20.3706 103.205 19.9452C102.42 19.5056 101.785 18.8745 101.299 18.052C100.814 17.2153 100.571 16.2155 100.571 15.0527C100.571 13.8757 100.814 12.8759 101.299 12.0534C101.785 11.2309 102.42 10.6069 103.205 10.1815C104.004 9.74189 104.853 9.52208 105.753 9.52208C106.652 9.52208 107.494 9.74189 108.279 10.1815C109.064 10.6069 109.699 11.2309 110.185 12.0534C110.67 12.8759 110.913 13.8757 110.913 15.0527C110.913 16.2155 110.67 17.2153 110.185 18.052C109.699 18.8745 109.064 19.5056 108.279 19.9452C107.494 20.3706 106.652 20.5833 105.753 20.5833ZM105.753 18.052C106.395 18.052 106.88 17.7826 107.209 17.2437C107.537 16.6906 107.701 15.9603 107.701 15.0527C107.701 14.1309 107.537 13.4006 107.209 12.8617C106.88 12.3228 106.395 12.0534 105.753 12.0534C105.096 12.0534 104.604 12.3228 104.275 12.8617C103.961 13.4006 103.804 14.1309 103.804 15.0527C103.804 15.9603 103.961 16.6906 104.275 17.2437C104.604 17.7826 105.096 18.052 105.753 18.052Z", fill: "currentColor" }));
28
- exports.default = SvgDahlesWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgDahlesWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 112 26", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { d: "M1.0874 20.3281V6.45897H5.02694C6.45431 6.45897 7.68898 6.70004 8.73096 7.1822C9.77294 7.66436 10.5794 8.41596 11.1503 9.43699C11.7356 10.4439 12.0282 11.7414 12.0282 13.3297C12.0282 14.918 11.7427 16.2297 11.1718 17.265C10.6008 18.3002 9.80148 19.073 8.77378 19.5836C7.76035 20.0799 6.56849 20.3281 5.19822 20.3281H1.0874ZM4.23475 17.7967H4.83424C5.63357 17.7967 6.32584 17.6549 6.91106 17.3713C7.51056 17.0877 7.97445 16.6197 8.30275 15.9674C8.63104 15.3151 8.79519 14.4358 8.79519 13.3297C8.79519 12.2236 8.63104 11.3585 8.30275 10.7346C7.97445 10.0964 7.51056 9.64971 6.91106 9.39445C6.32584 9.12501 5.63357 8.99029 4.83424 8.99029H4.23475V17.7967Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M17.0975 20.5833C16.1268 20.5833 15.3561 20.2784 14.7851 19.6686C14.2142 19.0447 13.9287 18.286 13.9287 17.3926C13.9287 16.2865 14.3997 15.4214 15.3418 14.7974C16.2839 14.1735 17.804 13.7551 19.9022 13.5424C19.8737 13.0744 19.7309 12.7057 19.474 12.4363C19.2314 12.1527 18.8174 12.0109 18.2322 12.0109C17.7897 12.0109 17.3401 12.0959 16.8833 12.2661C16.4266 12.4363 15.9413 12.6703 15.4274 12.9681L14.2927 10.9047C14.9635 10.4935 15.6772 10.1602 16.4337 9.90497C17.2045 9.64971 18.0038 9.52208 18.8317 9.52208C20.1877 9.52208 21.2297 9.91206 21.9576 10.692C22.6856 11.472 23.0496 12.6703 23.0496 14.2869V20.3281H20.4803L20.2662 19.2432H20.1806C19.7381 19.6403 19.2599 19.9664 18.7461 20.2217C18.2465 20.4628 17.6969 20.5833 17.0975 20.5833ZM18.168 18.1584C18.5248 18.1584 18.8317 18.0804 19.0886 17.9244C19.3598 17.7542 19.631 17.5344 19.9022 17.265V15.4143C18.7889 15.5561 18.0181 15.783 17.5899 16.095C17.1617 16.3928 16.9476 16.7473 16.9476 17.1586C16.9476 17.4989 17.0546 17.7542 17.2687 17.9244C17.4971 18.0804 17.7969 18.1584 18.168 18.1584Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M25.7118 20.3281V5.41666H28.8592V9.07537L28.7093 10.9686C29.109 10.614 29.5729 10.2879 30.101 9.99006C30.6434 9.67807 31.2714 9.52208 31.9851 9.52208C33.1413 9.52208 33.9763 9.90497 34.4901 10.6707C35.0183 11.4223 35.2823 12.4576 35.2823 13.7764V20.3281H32.135V14.1806C32.135 13.4148 32.0279 12.8901 31.8138 12.6065C31.614 12.3228 31.2857 12.181 30.829 12.181C30.4293 12.181 30.0867 12.2732 29.8012 12.4576C29.5158 12.6277 29.2018 12.8759 28.8592 13.2021V20.3281H25.7118Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M40.8339 20.5833C39.7491 20.5833 38.9925 20.2642 38.5643 19.6261C38.1504 18.9738 37.9434 18.1158 37.9434 17.0522V5.41666H41.0908V17.1799C41.0908 17.506 41.1479 17.7329 41.2621 17.8606C41.3905 17.9882 41.519 18.052 41.6475 18.052C41.7188 18.052 41.7759 18.052 41.8187 18.052C41.8758 18.0378 41.9472 18.0236 42.0328 18.0095L42.4182 20.3281C42.2469 20.399 42.0257 20.4557 41.7545 20.4982C41.4976 20.555 41.1907 20.5833 40.8339 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M48.8228 20.5833C47.8094 20.5833 46.8959 20.3635 46.0823 19.9239C45.2687 19.4843 44.6264 18.8532 44.1553 18.0307C43.6843 17.2082 43.4488 16.2155 43.4488 15.0527C43.4488 13.904 43.6843 12.9184 44.1553 12.0959C44.6406 11.2734 45.2687 10.6424 46.0394 10.2028C46.8102 9.74898 47.6167 9.52208 48.4588 9.52208C49.4723 9.52208 50.3073 9.74898 50.9639 10.2028C51.6347 10.6424 52.1343 11.2451 52.4626 12.0109C52.8052 12.7625 52.9765 13.6204 52.9765 14.5847C52.9765 14.8542 52.9622 15.1236 52.9336 15.393C52.9051 15.6483 52.8765 15.8398 52.848 15.9674H46.4891C46.6318 16.7332 46.953 17.3004 47.4525 17.6691C47.9521 18.0236 48.5516 18.2009 49.251 18.2009C50.0075 18.2009 50.7712 17.9669 51.542 17.4989L52.5911 19.3921C52.0487 19.7608 51.442 20.0515 50.7712 20.2642C50.1003 20.477 49.4509 20.5833 48.8228 20.5833ZM46.4677 13.904H50.3001C50.3001 13.3226 50.1574 12.8475 49.8719 12.4788C49.6007 12.0959 49.1511 11.9045 48.5231 11.9045C48.0378 11.9045 47.6024 12.0747 47.217 12.415C46.8316 12.7412 46.5818 13.2375 46.4677 13.904Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M58.2772 20.5833C57.5778 20.5833 56.857 20.4486 56.1148 20.1792C55.3868 19.9097 54.7516 19.5552 54.2092 19.1156L55.6223 17.1586C56.1076 17.5131 56.5715 17.7897 57.014 17.9882C57.4708 18.1725 57.9204 18.2647 58.3629 18.2647C58.8339 18.2647 59.1765 18.1867 59.3906 18.0307C59.6047 17.8606 59.7117 17.6407 59.7117 17.3713C59.7117 17.1302 59.6047 16.9317 59.3906 16.7757C59.1907 16.6197 58.9267 16.4779 58.5984 16.3503C58.2701 16.2085 57.9204 16.0666 57.5493 15.9248C57.1211 15.7547 56.6929 15.5419 56.2646 15.2867C55.8507 15.0314 55.501 14.7053 55.2155 14.3082C54.9301 13.8969 54.7873 13.4006 54.7873 12.8192C54.7873 11.8407 55.1584 11.0465 55.9007 10.4368C56.6572 9.82697 57.642 9.52208 58.8553 9.52208C59.6689 9.52208 60.3826 9.66389 60.9964 9.94751C61.6244 10.217 62.1597 10.5218 62.6022 10.8622L61.1891 12.7341C60.8179 12.4505 60.4468 12.2307 60.0757 12.0747C59.7046 11.9187 59.3335 11.8407 58.9624 11.8407C58.1488 11.8407 57.742 12.1172 57.742 12.6703C57.742 13.0106 57.9418 13.273 58.3415 13.4573C58.7554 13.6275 59.2336 13.8119 59.776 14.0104C60.2327 14.1664 60.6752 14.372 61.1034 14.6273C61.5459 14.8683 61.9099 15.1945 62.1954 15.6058C62.4951 16.0028 62.645 16.5275 62.645 17.1799C62.645 18.13 62.2739 18.9383 61.5316 19.6048C60.7894 20.2572 59.7046 20.5833 58.2772 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M72.4629 13.3084L72.1203 14.5847H75.0964L74.7752 13.3084C74.5896 12.6136 74.397 11.8761 74.1971 11.0962C74.0116 10.3162 73.826 9.56462 73.6404 8.84139H73.5548C73.3835 9.5788 73.2051 10.3375 73.0195 11.1175C72.8483 11.8832 72.6627 12.6136 72.4629 13.3084ZM67.41 20.3281L71.7777 6.45897H75.5674L79.9351 20.3281H76.5951L75.7387 17.031H71.478L70.6216 20.3281H67.41Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M84.3937 20.5833C83.2375 20.5833 82.3954 20.2075 81.8673 19.4559C81.3534 18.6901 81.0965 17.6478 81.0965 16.329V9.77734H84.2438V15.9248C84.2438 16.6764 84.3509 17.2011 84.565 17.4989C84.7791 17.7826 85.1145 17.9244 85.5713 17.9244C85.9709 17.9244 86.3064 17.8322 86.5776 17.6478C86.8488 17.4635 87.1414 17.1657 87.4554 16.7544V9.77734H90.6028V20.3281H88.0335L87.798 18.8603H87.7338C87.2913 19.385 86.806 19.8034 86.2778 20.1153C85.7497 20.4273 85.1217 20.5833 84.3937 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M97.4618 20.5833C96.1486 20.5833 95.2066 20.2075 94.6356 19.4559C94.079 18.7043 93.8006 17.7187 93.8006 16.4992V12.2236H92.3447V9.90497L93.9719 9.77734L94.3359 6.96948H96.948V9.77734H99.4958V12.2236H96.948V16.4566C96.948 17.0522 97.0693 17.4848 97.3119 17.7542C97.5689 18.0095 97.9043 18.1371 98.3182 18.1371C98.4895 18.1371 98.6608 18.1158 98.8321 18.0733C99.0176 18.0307 99.1818 17.9811 99.3245 17.9244L99.817 20.2004C99.5458 20.2855 99.2103 20.3706 98.8107 20.4557C98.4253 20.5408 97.9757 20.5833 97.4618 20.5833Z", fill: "currentColor" }), /* @__PURE__ */ React.createElement("path", { d: "M105.753 20.5833C104.853 20.5833 104.004 20.3706 103.205 19.9452C102.42 19.5056 101.785 18.8745 101.299 18.052C100.814 17.2153 100.571 16.2155 100.571 15.0527C100.571 13.8757 100.814 12.8759 101.299 12.0534C101.785 11.2309 102.42 10.6069 103.205 10.1815C104.004 9.74189 104.853 9.52208 105.753 9.52208C106.652 9.52208 107.494 9.74189 108.279 10.1815C109.064 10.6069 109.699 11.2309 110.185 12.0534C110.67 12.8759 110.913 13.8757 110.913 15.0527C110.913 16.2155 110.67 17.2153 110.185 18.052C109.699 18.8745 109.064 19.5056 108.279 19.9452C107.494 20.3706 106.652 20.5833 105.753 20.5833ZM105.753 18.052C106.395 18.052 106.88 17.7826 107.209 17.2437C107.537 16.6906 107.701 15.9603 107.701 15.0527C107.701 14.1309 107.537 13.4006 107.209 12.8617C106.88 12.3228 106.395 12.0534 105.753 12.0534C105.096 12.0534 104.604 12.3228 104.275 12.8617C103.961 13.4006 103.804 14.1309 103.804 15.0527C103.804 15.9603 103.961 16.6906 104.275 17.2437C104.604 17.7826 105.096 18.052 105.753 18.052Z", fill: "currentColor" }));
8
- export {
9
- SvgDahlesWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgGumpenSymbol = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M19.9852 13.0453C20.0077 12.5668 20.0077 12.1362 19.9626 11.5674V11.5688H10.5858V14.3637H16.5568C16.1027 15.9771 14.3992 17.0004 12.3557 17.0004C9.26733 17.0004 7.22386 14.8647 7.22386 12.0007C7.22386 9.13665 9.31377 7.04607 12.1061 7.04607C14.2186 7.04607 15.4667 8.13591 16.1027 9.40908H19.5762C18.7357 6.18225 16.0337 4 12.1061 4C7.42834 4 4 7.36241 4 11.9993C4 16.6362 7.38318 20 12.3557 20C16.9193 20 19.8033 16.7493 19.9852 13.0453Z", fill: "black" }));
28
- exports.default = SvgGumpenSymbol;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgGumpenSymbol = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { d: "M19.9852 13.0453C20.0077 12.5668 20.0077 12.1362 19.9626 11.5674V11.5688H10.5858V14.3637H16.5568C16.1027 15.9771 14.3992 17.0004 12.3557 17.0004C9.26733 17.0004 7.22386 14.8647 7.22386 12.0007C7.22386 9.13665 9.31377 7.04607 12.1061 7.04607C14.2186 7.04607 15.4667 8.13591 16.1027 9.40908H19.5762C18.7357 6.18225 16.0337 4 12.1061 4C7.42834 4 4 7.36241 4 11.9993C4 16.6362 7.38318 20 12.3557 20C16.9193 20 19.8033 16.7493 19.9852 13.0453Z", fill: "black" }));
8
- export {
9
- SvgGumpenSymbol as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgGumpenWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 103 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M19.9928 13.0453C20.0154 12.5668 20.0154 12.1362 19.9702 11.5674V11.5688H10.5889V14.3637H16.5628C16.1085 15.9771 14.4042 17.0004 12.3597 17.0004C9.26985 17.0004 7.2254 14.8647 7.2254 12.0007C7.2254 9.13665 9.31631 7.04607 12.11 7.04607C14.2235 7.04607 15.4722 8.13591 16.1085 9.40908H19.5837C18.7428 6.18225 16.0394 4 12.11 4C7.42998 4 4 7.36241 4 11.9993C4 16.6362 7.3848 20 12.3597 20C16.9255 20 19.8108 16.7493 19.9928 13.0453Z", fill: "black" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M22.2404 4.24987V13.1583C22.2404 17.6809 25.0115 19.9987 28.6461 19.9987C32.2806 19.9987 35.0517 17.6809 35.0517 13.1583V4.24987H31.8715V13.0905C31.8715 15.8176 30.5762 16.9991 28.6461 16.9991C26.7159 16.9991 25.4206 15.8176 25.4206 13.0905V4.24987H22.2404Z", fill: "black" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M41.1836 19.7489H38.0047V4.24987H42.2304L45.8649 13.1131L45.9022 13.2048L45.9029 13.2064L45.9038 13.2086C46.2303 14.0133 46.5324 14.7576 46.751 15.5451H46.7961C47.0149 14.7565 47.3176 14.0111 47.6447 13.2055L47.6822 13.1131L51.3167 4.24987H55.5424V19.7489H52.3622V9.954C52.3622 9.68157 52.3622 9.36261 52.4074 8.97717H52.3622C52.3318 9.09961 52.2987 9.2168 52.2621 9.33311C52.1899 9.56277 52.104 9.789 51.9982 10.0457L48.0223 19.5681H45.5235L41.5476 10.0457C41.3881 9.65894 41.2752 9.34133 41.1836 8.97717H41.1384C41.1836 9.36389 41.1836 9.68157 41.1836 9.954V19.7489Z", fill: "black" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M65.0833 14.2494C67.9221 14.2494 70.3983 12.6585 70.3983 9.2496H70.3996C70.3996 5.84072 67.9247 4.24987 65.0846 4.24987H58.6325V19.7489H61.8127V14.2494H65.0833ZM67.1716 9.2496C67.1716 10.6583 66.0357 11.2498 64.6276 11.2498H61.8114V7.24946H64.6276C66.0357 7.24946 67.1716 7.84085 67.1716 9.2496Z", fill: "black" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M82.7329 7.20427H75.4412V10.4763H81.7339V13.3855H75.4412V16.7945H82.7329V19.7489H72.3513V4.24987H82.7329V7.20427Z", fill: "black" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M85.5073 4V19.4976H88.6875V10.8391C88.6875 10.2264 88.6875 9.83971 88.6424 9.40773H88.6649C88.9147 9.8849 89.1644 10.2491 89.3916 10.5215L96.4561 19.499H99V4H95.8198V12.6599C95.8198 13.2726 95.8198 13.6593 95.865 14.0912H95.8424C95.5926 13.6141 95.3429 13.2499 95.1157 12.9775L88.0512 4H85.5073Z", fill: "black" }));
28
- exports.default = SvgGumpenWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgGumpenWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 103 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { d: "M19.9928 13.0453C20.0154 12.5668 20.0154 12.1362 19.9702 11.5674V11.5688H10.5889V14.3637H16.5628C16.1085 15.9771 14.4042 17.0004 12.3597 17.0004C9.26985 17.0004 7.2254 14.8647 7.2254 12.0007C7.2254 9.13665 9.31631 7.04607 12.11 7.04607C14.2235 7.04607 15.4722 8.13591 16.1085 9.40908H19.5837C18.7428 6.18225 16.0394 4 12.11 4C7.42998 4 4 7.36241 4 11.9993C4 16.6362 7.3848 20 12.3597 20C16.9255 20 19.8108 16.7493 19.9928 13.0453Z", fill: "black" }), /* @__PURE__ */ React.createElement("path", { d: "M22.2404 4.24987V13.1583C22.2404 17.6809 25.0115 19.9987 28.6461 19.9987C32.2806 19.9987 35.0517 17.6809 35.0517 13.1583V4.24987H31.8715V13.0905C31.8715 15.8176 30.5762 16.9991 28.6461 16.9991C26.7159 16.9991 25.4206 15.8176 25.4206 13.0905V4.24987H22.2404Z", fill: "black" }), /* @__PURE__ */ React.createElement("path", { d: "M41.1836 19.7489H38.0047V4.24987H42.2304L45.8649 13.1131L45.9022 13.2048L45.9029 13.2064L45.9038 13.2086C46.2303 14.0133 46.5324 14.7576 46.751 15.5451H46.7961C47.0149 14.7565 47.3176 14.0111 47.6447 13.2055L47.6822 13.1131L51.3167 4.24987H55.5424V19.7489H52.3622V9.954C52.3622 9.68157 52.3622 9.36261 52.4074 8.97717H52.3622C52.3318 9.09961 52.2987 9.2168 52.2621 9.33311C52.1899 9.56277 52.104 9.789 51.9982 10.0457L48.0223 19.5681H45.5235L41.5476 10.0457C41.3881 9.65894 41.2752 9.34133 41.1836 8.97717H41.1384C41.1836 9.36389 41.1836 9.68157 41.1836 9.954V19.7489Z", fill: "black" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M65.0833 14.2494C67.9221 14.2494 70.3983 12.6585 70.3983 9.2496H70.3996C70.3996 5.84072 67.9247 4.24987 65.0846 4.24987H58.6325V19.7489H61.8127V14.2494H65.0833ZM67.1716 9.2496C67.1716 10.6583 66.0357 11.2498 64.6276 11.2498H61.8114V7.24946H64.6276C66.0357 7.24946 67.1716 7.84085 67.1716 9.2496Z", fill: "black" }), /* @__PURE__ */ React.createElement("path", { d: "M82.7329 7.20427H75.4412V10.4763H81.7339V13.3855H75.4412V16.7945H82.7329V19.7489H72.3513V4.24987H82.7329V7.20427Z", fill: "black" }), /* @__PURE__ */ React.createElement("path", { d: "M85.5073 4V19.4976H88.6875V10.8391C88.6875 10.2264 88.6875 9.83971 88.6424 9.40773H88.6649C88.9147 9.8849 89.1644 10.2491 89.3916 10.5215L96.4561 19.499H99V4H95.8198V12.6599C95.8198 13.2726 95.8198 13.6593 95.865 14.0912H95.8424C95.5926 13.6141 95.3429 13.2499 95.1157 12.9775L88.0512 4H85.5073Z", fill: "black" }));
8
- export {
9
- SvgGumpenWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgMollerbilSymbol = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M13.0999 4.00593V7.5493C14.8716 8.03222 16.0789 9.66762 16.0789 11.7785C16.0789 13.8895 14.8716 15.4671 13.0999 15.9293V19.4726C17.1721 18.9942 20 15.9011 20 11.7785C19.9985 7.66336 17.0877 4.50366 13.0999 4.00593ZM10.9001 7.53893V4C6.92417 4.48736 4 7.62781 4 11.7785C4 15.9085 6.83826 19.006 10.9001 19.4741V15.9322C9.1373 15.476 7.92112 13.8969 7.92112 11.7785C7.92112 9.63355 9.12101 8.00704 10.9001 7.53893Z", fill: "#0000FF" }));
28
- exports.default = SvgMollerbilSymbol;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgMollerbilSymbol = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { d: "M13.0999 4.00593V7.5493C14.8716 8.03222 16.0789 9.66762 16.0789 11.7785C16.0789 13.8895 14.8716 15.4671 13.0999 15.9293V19.4726C17.1721 18.9942 20 15.9011 20 11.7785C19.9985 7.66336 17.0877 4.50366 13.0999 4.00593ZM10.9001 7.53893V4C6.92417 4.48736 4 7.62781 4 11.7785C4 15.9085 6.83826 19.006 10.9001 19.4741V15.9322C9.1373 15.476 7.92112 13.8969 7.92112 11.7785C7.92112 9.63355 9.12101 8.00704 10.9001 7.53893Z", fill: "#0000FF" }));
8
- export {
9
- SvgMollerbilSymbol as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgMollerbilWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 94 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M77.176 18.7813C79.2677 18.7813 80.7503 17.6346 80.7503 15.5428C80.7503 13.451 79.1289 12.3716 77.1088 12.3716H74.2735V18.7813H77.176ZM77.3103 11.3548C78.999 11.3548 80.2128 10.0738 80.2128 8.4523C80.2128 6.76365 78.999 5.5498 77.3103 5.5498H74.2735V11.3548H77.3103ZM73.194 4.54198H77.176C79.6709 4.54198 81.3595 6.16344 81.3595 8.45678C81.3595 10.0782 80.4144 11.2921 79.3349 11.8296C80.7503 12.2999 81.897 13.7198 81.897 15.5428C81.897 17.9033 80.074 19.7935 77.5119 19.7935H73.194V4.54198Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M84.5308 8.45678H85.6102V19.7935H84.5308V8.45678ZM85.0727 4.54198C85.5431 4.54198 85.9507 4.94511 85.9507 5.4199C85.9507 5.89469 85.5475 6.29782 85.0727 6.29782C84.6024 6.29782 84.1948 5.89469 84.1948 5.4199C84.1948 4.94511 84.5979 4.54198 85.0727 4.54198Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M89.9998 4H88.9203V19.7891H89.9998V4Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M12.3671 14.9337L16.7522 4.54198H20.667V19.7935H17.7645V8.8599L13.7825 18.508H10.9472L6.96521 8.8599V19.7935H4V4.54198H7.9775L12.3671 14.9337Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M39.3227 4H36.2858V19.7891H39.3227V4Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M44.7201 4H41.6832V19.7891H44.7201V4Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M54.5743 12.9091C54.5071 11.4936 53.4948 10.6157 52.1466 10.6157C50.7312 10.6157 49.7861 11.628 49.6517 12.9091H54.5743ZM52.0749 8.11635C55.5821 8.11635 57.6067 10.4769 57.6067 14.1901C57.6067 14.3917 57.6067 14.5932 57.6067 14.8665H49.5755C49.6427 16.4162 50.8566 17.5002 52.5452 17.5002C54.095 17.5002 54.9729 16.5551 55.3133 16.0848L57.2707 17.5674C56.8676 18.3781 55.3133 20.0623 52.478 20.0623C48.8365 20.0623 46.4715 17.5674 46.4715 14.1229C46.4715 10.6784 48.8365 8.11635 52.0749 8.11635Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M65.3691 11.1532C63.1429 11.1532 62.265 12.5686 62.265 14.7948V19.7891H59.2281V8.38958H62.1978V10.0782C62.6681 8.93156 63.8193 8.12083 65.3691 8.12083V11.1532Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M29.3207 8.18802V10.9069C30.6824 11.2786 31.6051 12.5328 31.6051 14.1543C31.6051 15.7757 30.6779 16.9851 29.3207 17.339V20.0578C32.4472 19.6905 34.6151 17.3166 34.6151 14.1543C34.6151 10.9965 32.38 8.56875 29.3207 8.18802ZM27.6321 10.9024V8.18802C24.5773 8.55979 22.3377 10.9696 22.3377 14.1543C22.3377 17.3255 24.5146 19.704 27.6321 20.0623V17.3434C26.2794 16.9941 25.3477 15.7802 25.3477 14.1543C25.3432 12.5059 26.2659 11.2607 27.6321 10.9024Z", fill: "#0000FF" }));
28
- exports.default = SvgMollerbilWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgMollerbilWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 94 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { d: "M77.176 18.7813C79.2677 18.7813 80.7503 17.6346 80.7503 15.5428C80.7503 13.451 79.1289 12.3716 77.1088 12.3716H74.2735V18.7813H77.176ZM77.3103 11.3548C78.999 11.3548 80.2128 10.0738 80.2128 8.4523C80.2128 6.76365 78.999 5.5498 77.3103 5.5498H74.2735V11.3548H77.3103ZM73.194 4.54198H77.176C79.6709 4.54198 81.3595 6.16344 81.3595 8.45678C81.3595 10.0782 80.4144 11.2921 79.3349 11.8296C80.7503 12.2999 81.897 13.7198 81.897 15.5428C81.897 17.9033 80.074 19.7935 77.5119 19.7935H73.194V4.54198Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M84.5308 8.45678H85.6102V19.7935H84.5308V8.45678ZM85.0727 4.54198C85.5431 4.54198 85.9507 4.94511 85.9507 5.4199C85.9507 5.89469 85.5475 6.29782 85.0727 6.29782C84.6024 6.29782 84.1948 5.89469 84.1948 5.4199C84.1948 4.94511 84.5979 4.54198 85.0727 4.54198Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M89.9998 4H88.9203V19.7891H89.9998V4Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M12.3671 14.9337L16.7522 4.54198H20.667V19.7935H17.7645V8.8599L13.7825 18.508H10.9472L6.96521 8.8599V19.7935H4V4.54198H7.9775L12.3671 14.9337Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M39.3227 4H36.2858V19.7891H39.3227V4Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M44.7201 4H41.6832V19.7891H44.7201V4Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M54.5743 12.9091C54.5071 11.4936 53.4948 10.6157 52.1466 10.6157C50.7312 10.6157 49.7861 11.628 49.6517 12.9091H54.5743ZM52.0749 8.11635C55.5821 8.11635 57.6067 10.4769 57.6067 14.1901C57.6067 14.3917 57.6067 14.5932 57.6067 14.8665H49.5755C49.6427 16.4162 50.8566 17.5002 52.5452 17.5002C54.095 17.5002 54.9729 16.5551 55.3133 16.0848L57.2707 17.5674C56.8676 18.3781 55.3133 20.0623 52.478 20.0623C48.8365 20.0623 46.4715 17.5674 46.4715 14.1229C46.4715 10.6784 48.8365 8.11635 52.0749 8.11635Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M65.3691 11.1532C63.1429 11.1532 62.265 12.5686 62.265 14.7948V19.7891H59.2281V8.38958H62.1978V10.0782C62.6681 8.93156 63.8193 8.12083 65.3691 8.12083V11.1532Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M29.3207 8.18802V10.9069C30.6824 11.2786 31.6051 12.5328 31.6051 14.1543C31.6051 15.7757 30.6779 16.9851 29.3207 17.339V20.0578C32.4472 19.6905 34.6151 17.3166 34.6151 14.1543C34.6151 10.9965 32.38 8.56875 29.3207 8.18802ZM27.6321 10.9024V8.18802C24.5773 8.55979 22.3377 10.9696 22.3377 14.1543C22.3377 17.3255 24.5146 19.704 27.6321 20.0623V17.3434C26.2794 16.9941 25.3477 15.7802 25.3477 14.1543C25.3432 12.5059 26.2659 11.2607 27.6321 10.9024Z", fill: "#0000FF" }));
8
- export {
9
- SvgMollerbilWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgAlbjerkWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 125 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("rect", { width: 124.444, height: 24, fill: "url(#pattern0)" }), /* @__PURE__ */ React__namespace.createElement("defs", null, /* @__PURE__ */ React__namespace.createElement("pattern", { id: "pattern0", patternContentUnits: "objectBoundingBox", width: 1, height: 1 }, /* @__PURE__ */ React__namespace.createElement("use", { xlinkHref: "#image0_2208_90", transform: "scale(0.00714286 0.037037)" })), /* @__PURE__ */ React__namespace.createElement("image", { id: "image0_2208_90", width: 140, height: 27, xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAAAbBAMAAABcjXr2AAADImlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3OERBNTlFRUVGRjMxMUU5QTRDRkIxMEU3MEM0OEFFOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3OERBNTlFRkVGRjMxMUU5QTRDRkIxMEU3MEM0OEFFOSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjc4REE1OUVDRUZGMzExRTlBNENGQjEwRTcwQzQ4QUU5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjc4REE1OUVERUZGMzExRTlBNENGQjEwRTcwQzQ4QUU5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+X5mMHAAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAwUExURUdwTB0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dG2GO2kMAAAAPdFJOUwCZIt1md0TuEbuqiDPMVT1sidsAAAI4SURBVDjLrdQ/bhpBFMfx3wJr1lEIewNo0kVaN5HSmRuwSiKlXG5gy1KkdCClSGmK1DFSDmBuYKQotX2D+AZeMLAG7HxTzP6ZtV3Ef1612nn6aGbeeyNJHlxJUhdfLTqSJIHKERDn33sAfJ5IVWaqMpMkFxaPYZiXmAbcPIphYjN7wOQ2cyfuY4aSlDEtWoQPZHzJa6V/DOP1V6fsFMwnvmeHeg3vJYdZxDggVoOknTOqE1uHqjGvssyZD2azINUAQjlswA+IFXEtmzmzmG2uXKY5AzA1zAXAQg7AJCB+CecFUzkmtJiAUYVkkDE3PQd6Ann9pPOqnwwcGEoBcdU0Rn7FK7vgEef6QydjDqRjxgK5zKU9QodkIAXEJ4xLzNhmdhMpYpgxvnTKmUDbxFKTkcNaUsBf1uWCry1mi6l0yMwqeJNYoLpJ3nHYSAq4ZHqrb0YF47CUtllYTN0wTZMbOywkBQA9u29OmBfMN5N8+V/M0GLksC6YbrrBXsqEUpN9c6h9SZLDXFJA8oulzdRYFcxRyvgpM8qvuJE2W8Ysa1zajGsxFbMU8SVlrq2Cb0pMrN104gwTsckZ17TUIfOUSc4daAtUAd/7+dFiurwrVWqZM3Wz8xesrGHYmGGIAAgLppG28d2CX3AmSTVoG6YL+IZxs5nKmC2SgT0Mg5w5JpQkr09omDcn/Mgeit/wtm0xOjLjYJh1p/SI3hskeobwsto+LVxWz6A0SHvmaXEIB8/AfGXafkj+P1AKebmt720QAAAAAElFTkSuQmCC" })));
28
- exports.default = SvgAlbjerkWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgAlbjerkWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 125 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("rect", { width: 124.444, height: 24, fill: "url(#pattern0)" }), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("pattern", { id: "pattern0", patternContentUnits: "objectBoundingBox", width: 1, height: 1 }, /* @__PURE__ */ React.createElement("use", { xlinkHref: "#image0_2208_90", transform: "scale(0.00714286 0.037037)" })), /* @__PURE__ */ React.createElement("image", { id: "image0_2208_90", width: 140, height: 27, xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAAAbBAMAAABcjXr2AAADImlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3OERBNTlFRUVGRjMxMUU5QTRDRkIxMEU3MEM0OEFFOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3OERBNTlFRkVGRjMxMUU5QTRDRkIxMEU3MEM0OEFFOSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjc4REE1OUVDRUZGMzExRTlBNENGQjEwRTcwQzQ4QUU5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjc4REE1OUVERUZGMzExRTlBNENGQjEwRTcwQzQ4QUU5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+X5mMHAAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAwUExURUdwTB0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dG2GO2kMAAAAPdFJOUwCZIt1md0TuEbuqiDPMVT1sidsAAAI4SURBVDjLrdQ/bhpBFMfx3wJr1lEIewNo0kVaN5HSmRuwSiKlXG5gy1KkdCClSGmK1DFSDmBuYKQotX2D+AZeMLAG7HxTzP6ZtV3Ef1612nn6aGbeeyNJHlxJUhdfLTqSJIHKERDn33sAfJ5IVWaqMpMkFxaPYZiXmAbcPIphYjN7wOQ2cyfuY4aSlDEtWoQPZHzJa6V/DOP1V6fsFMwnvmeHeg3vJYdZxDggVoOknTOqE1uHqjGvssyZD2azINUAQjlswA+IFXEtmzmzmG2uXKY5AzA1zAXAQg7AJCB+CecFUzkmtJiAUYVkkDE3PQd6Ann9pPOqnwwcGEoBcdU0Rn7FK7vgEef6QydjDqRjxgK5zKU9QodkIAXEJ4xLzNhmdhMpYpgxvnTKmUDbxFKTkcNaUsBf1uWCry1mi6l0yMwqeJNYoLpJ3nHYSAq4ZHqrb0YF47CUtllYTN0wTZMbOywkBQA9u29OmBfMN5N8+V/M0GLksC6YbrrBXsqEUpN9c6h9SZLDXFJA8oulzdRYFcxRyvgpM8qvuJE2W8Ysa1zajGsxFbMU8SVlrq2Cb0pMrN104gwTsckZ17TUIfOUSc4daAtUAd/7+dFiurwrVWqZM3Wz8xesrGHYmGGIAAgLppG28d2CX3AmSTVoG6YL+IZxs5nKmC2SgT0Mg5w5JpQkr09omDcn/Mgeit/wtm0xOjLjYJh1p/SI3hskeobwsto+LVxWz6A0SHvmaXEIB8/AfGXafkj+P1AKebmt720QAAAAAElFTkSuQmCC" })));
8
- export {
9
- SvgAlbjerkWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgAltaWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 62.2", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", d: "M23.2.5A703.8 703.8 0 0 0 .3 61.2c.5 1.3 10.2 1.3 11.3 0 .5-.6 1.5-3 2.3-5.3 2.8-8 2-7.6 14.6-7.6 12.9 0 12.8 0 15.3 7.5 1 2.7 2 5 2.4 5.3.8.6 11.5.6 12 .1.2-.2-5-14-11.5-30.6L34.7.4 29.1.2c-3-.2-5.7 0-6 .3M62 11c.2 5.6.5 19.4.5 30.5l.1 20.3h10l.2-30.5.2-30.6H61.4l.5 10.3m122.7-9.7c-.6.4-.8 9.5-.8 30.7v30.2h11.4l.2-17 .2-17 7.3 17 7.3 17 4.4-.2 4.3-.2 5.6-13.9c3-7.6 6.3-15.4 7.1-17.2l1.6-3.3-.2 17v17.2h5.4c3 0 5.5-.3 5.6-.6l.5-30.5.3-29.8h-11.4L231.8 5A712.7 712.7 0 0 1 215 46.1c-.3 0-3.3-6.4-6.6-14.1-3.4-7.8-7.8-17.9-10-22.5l-3.7-8.4-4.7-.2c-2.5 0-5 0-5.4.4M83 7c-.3.8-.3 4 0 7 .5 6.1.6 5.9-3.6 6.8-3 .6-3.1 8.4-.2 8.4 4.1 0 4-.1 4 14 0 18.2.6 19 12.7 19 10.1 0 10 0 10-5.7v-4.7l-5.3.5c-7.4.7-7.5.6-7.5-11.8 0-11.4-.3-10.8 6.3-10 6 .8 5.6 1.1 6-5.4l.3-4.6-6-.2-5.8-.2-.1-6c-.1-7.3-.2-7.4-5.9-8-3.9-.4-4.5-.3-5 1m216.5 0c-.3.7-.3 3.8 0 7 .5 6 .7 5.8-3.5 6.7-3 .6-3.2 8.4-.3 8.4 4.2 0 4.1-.1 4.1 14 0 18.2.5 19 12.7 19 10 0 10 0 10-5.7v-4.7l-5.3.5c-7.4.7-7.5.6-7.5-11.8 0-11.4-.4-10.8 6.2-10 6 .8 5.6 1.1 6-5.4l.3-4.6-5.9-.2-5.9-.2v-6c-.2-7.3-.3-7.4-6-8-3.8-.4-4.4-.3-4.9 1M37.3 38c0 .8-7.8 1.4-12.8.8-3.4-.3-4.3-.7-4.2-1.5.3-1.4 7.4-20.5 8-21.5.4-.5 9 20.7 9 22.2M120 21c-6.7 3.3-11 11-11 19.6 0 18 17.4 27.7 31.1 17.5 2.5-1.9 3.2-1.7 3.2.7 0 2.5 1.2 3 5.7 2.6l4.2-.3v-4.4l-.3-14.7c0-5.6.2-12.5.6-15.2 1-6 1.2-5.8-4.2-6.2l-4.3-.3-.5 2.7-.5 2.8-2.4-2.2a19.3 19.3 0 0 0-21.6-2.7m142.1-.2c-7.4 3.5-12 11.1-12 19.9 0 27.7 40.3 29.3 42.2 1.8 1.3-17-15-28.7-30.2-21.7m76 0c-7.3 3.5-12 11.1-12 19.9 0 27.7 40.3 29.3 42.3 1.8 1.2-17-15.1-28.7-30.2-21.7m37-1.2c-3.6.5-4 1-3 4.7.6 2 1.2 10.1 1.4 20.4l.4 17.2h9.5L384 48c.5-16.5.5-16.6 8.8-16.6 5.7 0 5.8 0 5.8-6.6v-4.3h-4.2c-3.2 0-5.2.5-7.7 1.7-3.7 2-4.2 1.9-4.2-1.1 0-2.2-.5-2.4-7.3-1.6M138.6 31.6c7.6 8.2 2.9 21-7.7 21-11.2 0-15.1-16.1-5.4-22.7 3.6-2.5 10-1.6 13.1 1.7m138.6-1.4c9.4 6.4 5.3 22.5-5.8 22.4-11.5 0-15.8-15.8-6-22.4 3.3-2.3 8.5-2.3 11.8 0m76 0c9.5 6.4 5.3 22.5-5.8 22.4-11.5 0-15.7-15.8-6-22.4 3.4-2.3 8.5-2.3 11.8 0" }));
28
- exports.default = SvgAltaWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgAltaWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 62.2", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M23.2.5A703.8 703.8 0 0 0 .3 61.2c.5 1.3 10.2 1.3 11.3 0 .5-.6 1.5-3 2.3-5.3 2.8-8 2-7.6 14.6-7.6 12.9 0 12.8 0 15.3 7.5 1 2.7 2 5 2.4 5.3.8.6 11.5.6 12 .1.2-.2-5-14-11.5-30.6L34.7.4 29.1.2c-3-.2-5.7 0-6 .3M62 11c.2 5.6.5 19.4.5 30.5l.1 20.3h10l.2-30.5.2-30.6H61.4l.5 10.3m122.7-9.7c-.6.4-.8 9.5-.8 30.7v30.2h11.4l.2-17 .2-17 7.3 17 7.3 17 4.4-.2 4.3-.2 5.6-13.9c3-7.6 6.3-15.4 7.1-17.2l1.6-3.3-.2 17v17.2h5.4c3 0 5.5-.3 5.6-.6l.5-30.5.3-29.8h-11.4L231.8 5A712.7 712.7 0 0 1 215 46.1c-.3 0-3.3-6.4-6.6-14.1-3.4-7.8-7.8-17.9-10-22.5l-3.7-8.4-4.7-.2c-2.5 0-5 0-5.4.4M83 7c-.3.8-.3 4 0 7 .5 6.1.6 5.9-3.6 6.8-3 .6-3.1 8.4-.2 8.4 4.1 0 4-.1 4 14 0 18.2.6 19 12.7 19 10.1 0 10 0 10-5.7v-4.7l-5.3.5c-7.4.7-7.5.6-7.5-11.8 0-11.4-.3-10.8 6.3-10 6 .8 5.6 1.1 6-5.4l.3-4.6-6-.2-5.8-.2-.1-6c-.1-7.3-.2-7.4-5.9-8-3.9-.4-4.5-.3-5 1m216.5 0c-.3.7-.3 3.8 0 7 .5 6 .7 5.8-3.5 6.7-3 .6-3.2 8.4-.3 8.4 4.2 0 4.1-.1 4.1 14 0 18.2.5 19 12.7 19 10 0 10 0 10-5.7v-4.7l-5.3.5c-7.4.7-7.5.6-7.5-11.8 0-11.4-.4-10.8 6.2-10 6 .8 5.6 1.1 6-5.4l.3-4.6-5.9-.2-5.9-.2v-6c-.2-7.3-.3-7.4-6-8-3.8-.4-4.4-.3-4.9 1M37.3 38c0 .8-7.8 1.4-12.8.8-3.4-.3-4.3-.7-4.2-1.5.3-1.4 7.4-20.5 8-21.5.4-.5 9 20.7 9 22.2M120 21c-6.7 3.3-11 11-11 19.6 0 18 17.4 27.7 31.1 17.5 2.5-1.9 3.2-1.7 3.2.7 0 2.5 1.2 3 5.7 2.6l4.2-.3v-4.4l-.3-14.7c0-5.6.2-12.5.6-15.2 1-6 1.2-5.8-4.2-6.2l-4.3-.3-.5 2.7-.5 2.8-2.4-2.2a19.3 19.3 0 0 0-21.6-2.7m142.1-.2c-7.4 3.5-12 11.1-12 19.9 0 27.7 40.3 29.3 42.2 1.8 1.3-17-15-28.7-30.2-21.7m76 0c-7.3 3.5-12 11.1-12 19.9 0 27.7 40.3 29.3 42.3 1.8 1.2-17-15.1-28.7-30.2-21.7m37-1.2c-3.6.5-4 1-3 4.7.6 2 1.2 10.1 1.4 20.4l.4 17.2h9.5L384 48c.5-16.5.5-16.6 8.8-16.6 5.7 0 5.8 0 5.8-6.6v-4.3h-4.2c-3.2 0-5.2.5-7.7 1.7-3.7 2-4.2 1.9-4.2-1.1 0-2.2-.5-2.4-7.3-1.6M138.6 31.6c7.6 8.2 2.9 21-7.7 21-11.2 0-15.1-16.1-5.4-22.7 3.6-2.5 10-1.6 13.1 1.7m138.6-1.4c9.4 6.4 5.3 22.5-5.8 22.4-11.5 0-15.8-15.8-6-22.4 3.3-2.3 8.5-2.3 11.8 0m76 0c9.5 6.4 5.3 22.5-5.8 22.4-11.5 0-15.7-15.8-6-22.4 3.4-2.3 8.5-2.3 11.8 0" }));
8
- export {
9
- SvgAltaWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgBergeWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 668.52 142.47", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fill: "#304356", d: "M0 11.27h58.05V36.1H31.74v8.97h23.1v22.52h-23.1v30.36H0V11.27zM67.02 11.27h38c19.53 0 36.1 8.27 36.1 30.11 0 13.11-5.06 18.63-16.79 22.54v.66a21.57 21.57 0 0 1 5.28 5.18l18.87 28.16h-36.29L98.4 70.1h-.58v27.82h-30.8Zm30.8 38.4h2.19c5.17 0 10.35-.82 10.35-7.25 0-6.66-4.72-7.47-10.13-7.47h-2.41ZM173.24 11.27l9.65 22.63h.93c.91-2.75 1.71-5.5 2.86-8.15l6.21-14.48h35.42l-29.67 49.31v37.37h-30.8V60.58l-30.25-49.31ZM232.48 11.27h32.07c29.08 0 51.39 12.76 51.39 44.59 0 25.77-18.15 42.09-43.57 42.09h-39.89Zm31.5 60.7h2c10.45 0 18.5-4.83 18.5-16.22 0-12.18-7-17.35-18.5-17.35h-2ZM324.68 11.27h58.29v23.68H356.4v8.28h24.24v22.54H356.4v8.5h27.48v23.68h-59.2V11.27zM394.22 11.27h30.22l28.3 48h.9c-1.26-7.23-2.62-14.7-2.62-22.06v-26h30.11v86.68h-30.11l-27.71-45.47h-.92a103.24 103.24 0 0 1 1.92 17.37v28.16h-30.09ZM492.5 11.27h36.68c16.78 0 33.91 4 33.91 24 0 7.59-3.81 15.06-11.39 17.46v.7c9.42 3.33 15.4 10.23 15.4 20.57 0 17.82-16.54 23.92-31.72 23.92H492.5Zm32.08 33.31c4.6 0 9.75-.46 9.75-6.45 0-6.43-5.86-6-10.45-6h-2.19v12.45Zm-2.89 32.64h3.62c5.17 0 12.63-.12 12.63-7.23s-8-7.14-13.09-7.14h-3.12ZM589.31 89.78c-11.61-7.23-17.26-21.37-17.26-34.95 0-27.24 21.63-44.95 48-44.95a54.49 54.49 0 0 1 21.84 4L651.2-.03l7.8 5.41-8.89 12.91c12 9.53 17.82 20.79 17.82 36.54 0 27.83-21.5 44.49-47.94 44.49a65.74 65.74 0 0 1-22.43-4.74l-9.25 13.36-8-5.28ZM603.8 55.3c0 9.88 6.65 16.67 16.21 16.67s16.21-6.79 16.21-16.67c0-9.19-6.2-16.9-16.21-16.9s-16.21 7.71-16.21 16.9M232.49 120.29h203.54v22.18H232.49zM0 120.29h198.64v22.18H0zM469.88 120.29h198.64v22.18H469.88z" }));
28
- exports.default = SvgBergeWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgBergeWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 668.52 142.47", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fill: "#304356", d: "M0 11.27h58.05V36.1H31.74v8.97h23.1v22.52h-23.1v30.36H0V11.27zM67.02 11.27h38c19.53 0 36.1 8.27 36.1 30.11 0 13.11-5.06 18.63-16.79 22.54v.66a21.57 21.57 0 0 1 5.28 5.18l18.87 28.16h-36.29L98.4 70.1h-.58v27.82h-30.8Zm30.8 38.4h2.19c5.17 0 10.35-.82 10.35-7.25 0-6.66-4.72-7.47-10.13-7.47h-2.41ZM173.24 11.27l9.65 22.63h.93c.91-2.75 1.71-5.5 2.86-8.15l6.21-14.48h35.42l-29.67 49.31v37.37h-30.8V60.58l-30.25-49.31ZM232.48 11.27h32.07c29.08 0 51.39 12.76 51.39 44.59 0 25.77-18.15 42.09-43.57 42.09h-39.89Zm31.5 60.7h2c10.45 0 18.5-4.83 18.5-16.22 0-12.18-7-17.35-18.5-17.35h-2ZM324.68 11.27h58.29v23.68H356.4v8.28h24.24v22.54H356.4v8.5h27.48v23.68h-59.2V11.27zM394.22 11.27h30.22l28.3 48h.9c-1.26-7.23-2.62-14.7-2.62-22.06v-26h30.11v86.68h-30.11l-27.71-45.47h-.92a103.24 103.24 0 0 1 1.92 17.37v28.16h-30.09ZM492.5 11.27h36.68c16.78 0 33.91 4 33.91 24 0 7.59-3.81 15.06-11.39 17.46v.7c9.42 3.33 15.4 10.23 15.4 20.57 0 17.82-16.54 23.92-31.72 23.92H492.5Zm32.08 33.31c4.6 0 9.75-.46 9.75-6.45 0-6.43-5.86-6-10.45-6h-2.19v12.45Zm-2.89 32.64h3.62c5.17 0 12.63-.12 12.63-7.23s-8-7.14-13.09-7.14h-3.12ZM589.31 89.78c-11.61-7.23-17.26-21.37-17.26-34.95 0-27.24 21.63-44.95 48-44.95a54.49 54.49 0 0 1 21.84 4L651.2-.03l7.8 5.41-8.89 12.91c12 9.53 17.82 20.79 17.82 36.54 0 27.83-21.5 44.49-47.94 44.49a65.74 65.74 0 0 1-22.43-4.74l-9.25 13.36-8-5.28ZM603.8 55.3c0 9.88 6.65 16.67 16.21 16.67s16.21-6.79 16.21-16.67c0-9.19-6.2-16.9-16.21-16.9s-16.21 7.71-16.21 16.9M232.49 120.29h203.54v22.18H232.49zM0 120.29h198.64v22.18H0zM469.88 120.29h198.64v22.18H469.88z" }));
8
- export {
9
- SvgBergeWordmark as default
10
- };