@gnist/design-system 6.0.0-alpha.3 → 6.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2311) hide show
  1. package/CHANGELOG.md +14 -14
  2. package/README.md +11 -8
  3. package/dist/_virtual/_rolldown/runtime.cjs +34 -0
  4. package/dist/_virtual/_rolldown/runtime.js +14 -0
  5. package/dist/building-blocks/index.cjs +11 -10
  6. package/dist/building-blocks/index.js +3 -7
  7. package/dist/building-blocks/inputs/InputHelperText.cjs +49 -27
  8. package/dist/building-blocks/inputs/InputHelperText.js +47 -27
  9. package/dist/building-blocks/inputs/index.cjs +3 -4
  10. package/dist/building-blocks/inputs/index.js +1 -4
  11. package/dist/building-blocks/inputs/internal/TextBelowInput.cjs +5 -5
  12. package/dist/building-blocks/inputs/internal/TextBelowInput.js +5 -5
  13. package/dist/building-blocks/inputs/internal/ValidationText.cjs +25 -15
  14. package/dist/building-blocks/inputs/internal/ValidationText.js +23 -14
  15. package/dist/building-blocks/inputs/internal/textBelowInput.css.cjs +35 -35
  16. package/dist/building-blocks/inputs/internal/textBelowInput.css.js +35 -35
  17. package/dist/building-blocks/skeletons/CircularSkeleton.cjs +35 -18
  18. package/dist/building-blocks/skeletons/CircularSkeleton.js +31 -14
  19. package/dist/building-blocks/skeletons/RectangularSkeleton.cjs +30 -9
  20. package/dist/building-blocks/skeletons/RectangularSkeleton.js +26 -5
  21. package/dist/building-blocks/skeletons/TextSkeleton.cjs +39 -14
  22. package/dist/building-blocks/skeletons/TextSkeleton.js +35 -10
  23. package/dist/building-blocks/skeletons/index.cjs +6 -7
  24. package/dist/building-blocks/skeletons/index.js +1 -5
  25. package/dist/components/actions/buttons/ButtonBase.cjs +42 -54
  26. package/dist/components/actions/buttons/ButtonBase.js +36 -31
  27. package/dist/components/actions/buttons/DangerButton.cjs +12 -6
  28. package/dist/components/actions/buttons/DangerButton.js +10 -5
  29. package/dist/components/actions/buttons/GhostButton.cjs +14 -6
  30. package/dist/components/actions/buttons/GhostButton.js +12 -5
  31. package/dist/components/actions/buttons/IconButton.cjs +45 -23
  32. package/dist/components/actions/buttons/IconButton.js +42 -20
  33. package/dist/components/actions/buttons/PrimaryButton.cjs +14 -6
  34. package/dist/components/actions/buttons/PrimaryButton.js +12 -5
  35. package/dist/components/actions/buttons/SecondaryButton.cjs +12 -6
  36. package/dist/components/actions/buttons/SecondaryButton.js +10 -5
  37. package/dist/components/actions/buttons/SuccessButton.cjs +14 -6
  38. package/dist/components/actions/buttons/SuccessButton.js +12 -5
  39. package/dist/components/actions/buttons/TextButton.cjs +33 -24
  40. package/dist/components/actions/buttons/TextButton.js +29 -20
  41. package/dist/components/actions/buttons/createButtonVariant.cjs +24 -24
  42. package/dist/components/actions/buttons/createButtonVariant.js +21 -21
  43. package/dist/components/actions/buttons/index.cjs +14 -15
  44. package/dist/components/actions/buttons/index.js +1 -9
  45. package/dist/components/actions/buttons/styles.css.cjs +125 -143
  46. package/dist/components/actions/buttons/styles.css.d.ts.map +1 -1
  47. package/dist/components/actions/buttons/styles.css.js +120 -143
  48. package/dist/components/actions/chips/ActionChip.cjs +51 -29
  49. package/dist/components/actions/chips/ActionChip.js +45 -23
  50. package/dist/components/actions/chips/FilterChip.cjs +46 -29
  51. package/dist/components/actions/chips/FilterChip.js +40 -23
  52. package/dist/components/actions/chips/TagChip.cjs +46 -23
  53. package/dist/components/actions/chips/TagChip.js +40 -17
  54. package/dist/components/actions/chips/index.cjs +6 -7
  55. package/dist/components/actions/chips/index.js +1 -5
  56. package/dist/components/actions/chips/styles.css.cjs +61 -69
  57. package/dist/components/actions/chips/styles.css.d.ts.map +1 -1
  58. package/dist/components/actions/chips/styles.css.js +58 -68
  59. package/dist/components/actions/index.cjs +31 -29
  60. package/dist/components/actions/index.js +5 -17
  61. package/dist/components/actions/selectionControls/Checkbox.cjs +91 -52
  62. package/dist/components/actions/selectionControls/Checkbox.js +87 -49
  63. package/dist/components/actions/selectionControls/RadioButton.cjs +94 -74
  64. package/dist/components/actions/selectionControls/RadioButton.js +88 -68
  65. package/dist/components/actions/selectionControls/RadioGroup.cjs +54 -27
  66. package/dist/components/actions/selectionControls/RadioGroup.js +51 -25
  67. package/dist/components/actions/selectionControls/Switch.cjs +101 -41
  68. package/dist/components/actions/selectionControls/Switch.js +96 -37
  69. package/dist/components/actions/selectionControls/checkbox.css.cjs +70 -114
  70. package/dist/components/actions/selectionControls/checkbox.css.js +68 -114
  71. package/dist/components/actions/selectionControls/index.cjs +8 -9
  72. package/dist/components/actions/selectionControls/index.js +2 -7
  73. package/dist/components/actions/selectionControls/radiobutton.css.cjs +75 -107
  74. package/dist/components/actions/selectionControls/radiobutton.css.js +73 -107
  75. package/dist/components/actions/selectionControls/radiogroup.css.cjs +24 -40
  76. package/dist/components/actions/selectionControls/radiogroup.css.d.ts.map +1 -1
  77. package/dist/components/actions/selectionControls/radiogroup.css.js +24 -42
  78. package/dist/components/actions/selectionControls/shared.cjs +27 -21
  79. package/dist/components/actions/selectionControls/shared.css.cjs +45 -71
  80. package/dist/components/actions/selectionControls/shared.css.d.ts.map +1 -1
  81. package/dist/components/actions/selectionControls/shared.css.js +41 -72
  82. package/dist/components/actions/selectionControls/shared.js +24 -20
  83. package/dist/components/actions/selectionControls/switch.css.cjs +142 -214
  84. package/dist/components/actions/selectionControls/switch.css.d.ts.map +1 -1
  85. package/dist/components/actions/selectionControls/switch.css.js +137 -221
  86. package/dist/components/feedback/alerts/AlertBanner.cjs +64 -28
  87. package/dist/components/feedback/alerts/AlertBanner.css.cjs +47 -60
  88. package/dist/components/feedback/alerts/AlertBanner.css.d.ts.map +1 -1
  89. package/dist/components/feedback/alerts/AlertBanner.css.js +46 -66
  90. package/dist/components/feedback/alerts/AlertBanner.js +59 -23
  91. package/dist/components/feedback/alerts/index.cjs +2 -3
  92. package/dist/components/feedback/alerts/index.js +1 -3
  93. package/dist/components/feedback/index.cjs +16 -13
  94. package/dist/components/feedback/index.js +5 -9
  95. package/dist/components/feedback/loaders/LoadingBar.cjs +34 -17
  96. package/dist/components/feedback/loaders/LoadingBar.js +32 -17
  97. package/dist/components/feedback/loaders/LoadingSpinner.cjs +32 -26
  98. package/dist/components/feedback/loaders/LoadingSpinner.js +31 -25
  99. package/dist/components/feedback/loaders/index.cjs +5 -6
  100. package/dist/components/feedback/loaders/index.js +1 -5
  101. package/dist/components/feedback/loaders/loadingBar.css.cjs +19 -33
  102. package/dist/components/feedback/loaders/loadingBar.css.d.ts.map +1 -1
  103. package/dist/components/feedback/loaders/loadingBar.css.js +17 -33
  104. package/dist/components/feedback/loaders/loadingSpinner.css.cjs +18 -21
  105. package/dist/components/feedback/loaders/loadingSpinner.css.d.ts.map +1 -1
  106. package/dist/components/feedback/loaders/loadingSpinner.css.js +16 -20
  107. package/dist/components/feedback/notifications/Lozenge.cjs +9 -5
  108. package/dist/components/feedback/notifications/Lozenge.js +9 -5
  109. package/dist/components/feedback/notifications/index.cjs +2 -3
  110. package/dist/components/feedback/notifications/index.js +1 -3
  111. package/dist/components/feedback/notifications/lozenge.css.cjs +58 -64
  112. package/dist/components/feedback/notifications/lozenge.css.js +54 -61
  113. package/dist/components/feedback/progress/ProgressBar.cjs +30 -22
  114. package/dist/components/feedback/progress/ProgressBar.css.cjs +20 -22
  115. package/dist/components/feedback/progress/ProgressBar.css.d.ts.map +1 -1
  116. package/dist/components/feedback/progress/ProgressBar.css.js +19 -26
  117. package/dist/components/feedback/progress/ProgressBar.js +27 -21
  118. package/dist/components/feedback/progress/index.cjs +3 -4
  119. package/dist/components/feedback/progress/index.js +1 -4
  120. package/dist/components/index.cjs +73 -69
  121. package/dist/components/index.js +9 -41
  122. package/dist/components/inputs/dropdowns/MultiSelect.cjs +9 -4
  123. package/dist/components/inputs/dropdowns/MultiSelect.js +9 -4
  124. package/dist/components/inputs/dropdowns/SelectBase.cjs +126 -99
  125. package/dist/components/inputs/dropdowns/SelectBase.js +122 -78
  126. package/dist/components/inputs/dropdowns/SingleSelect.cjs +11 -4
  127. package/dist/components/inputs/dropdowns/SingleSelect.js +11 -4
  128. package/dist/components/inputs/dropdowns/index.cjs +4 -5
  129. package/dist/components/inputs/dropdowns/index.js +1 -4
  130. package/dist/components/inputs/dropdowns/select.css.cjs +71 -92
  131. package/dist/components/inputs/dropdowns/select.css.js +69 -96
  132. package/dist/components/inputs/index.cjs +15 -13
  133. package/dist/components/inputs/index.js +4 -9
  134. package/dist/components/inputs/pickers/Calendar.css.cjs +100 -138
  135. package/dist/components/inputs/pickers/Calendar.css.d.ts.map +1 -1
  136. package/dist/components/inputs/pickers/Calendar.css.js +96 -144
  137. package/dist/components/inputs/pickers/calendar.cjs +278 -201
  138. package/dist/components/inputs/pickers/calendar.js +272 -196
  139. package/dist/components/inputs/pickers/index.cjs +2 -3
  140. package/dist/components/inputs/pickers/index.js +1 -3
  141. package/dist/components/inputs/shared-styles/iconButtonOverlay.css.cjs +32 -38
  142. package/dist/components/inputs/shared-styles/iconButtonOverlay.css.js +30 -37
  143. package/dist/components/inputs/shared-styles/inputField.css.cjs +100 -140
  144. package/dist/components/inputs/shared-styles/inputField.css.d.ts.map +1 -1
  145. package/dist/components/inputs/shared-styles/inputField.css.js +97 -141
  146. package/dist/components/inputs/shared-styles/inputFieldConstants.css.cjs +8 -7
  147. package/dist/components/inputs/shared-styles/inputFieldConstants.css.js +7 -10
  148. package/dist/components/inputs/shared-styles/labelStyles.css.cjs +152 -176
  149. package/dist/components/inputs/shared-styles/labelStyles.css.js +149 -174
  150. package/dist/components/inputs/shared-styles/suffixPrefix.css.cjs +13 -10
  151. package/dist/components/inputs/shared-styles/suffixPrefix.css.js +12 -11
  152. package/dist/components/inputs/shared.cjs +92 -93
  153. package/dist/components/inputs/shared.js +87 -92
  154. package/dist/components/inputs/textFields/TextArea.cjs +131 -62
  155. package/dist/components/inputs/textFields/TextArea.js +125 -58
  156. package/dist/components/inputs/textFields/TextField.cjs +140 -74
  157. package/dist/components/inputs/textFields/TextField.js +134 -68
  158. package/dist/components/inputs/textFields/index.cjs +6 -7
  159. package/dist/components/inputs/textFields/index.js +1 -6
  160. package/dist/components/inputs/textFields/textArea.css.cjs +17 -21
  161. package/dist/components/inputs/textFields/textArea.css.js +17 -21
  162. package/dist/components/progress/Spinner.cjs +19 -14
  163. package/dist/components/progress/Spinner.js +16 -12
  164. package/dist/components/progress/index.cjs +2 -3
  165. package/dist/components/progress/index.js +1 -3
  166. package/dist/components/progress/spinner.css.cjs +21 -24
  167. package/dist/components/progress/spinner.css.d.ts.map +1 -1
  168. package/dist/components/progress/spinner.css.js +20 -24
  169. package/dist/components/surfaces/accordion/Accordion.cjs +41 -17
  170. package/dist/components/surfaces/accordion/Accordion.js +38 -15
  171. package/dist/components/surfaces/accordion/accordion.css.cjs +45 -72
  172. package/dist/components/surfaces/accordion/accordion.css.js +41 -73
  173. package/dist/components/surfaces/accordion/index.cjs +2 -3
  174. package/dist/components/surfaces/accordion/index.js +1 -3
  175. package/dist/components/surfaces/cards/ActionCard.cjs +29 -19
  176. package/dist/components/surfaces/cards/ActionCard.js +26 -16
  177. package/dist/components/surfaces/cards/CheckboxCard.cjs +44 -14
  178. package/dist/components/surfaces/cards/CheckboxCard.js +39 -9
  179. package/dist/components/surfaces/cards/InfoCard.cjs +27 -14
  180. package/dist/components/surfaces/cards/InfoCard.js +24 -11
  181. package/dist/components/surfaces/cards/LinkCard.cjs +29 -19
  182. package/dist/components/surfaces/cards/LinkCard.js +26 -16
  183. package/dist/components/surfaces/cards/RadioCard.cjs +45 -14
  184. package/dist/components/surfaces/cards/RadioCard.js +40 -9
  185. package/dist/components/surfaces/cards/SharedComponents.cjs +19 -21
  186. package/dist/components/surfaces/cards/SharedComponents.js +17 -20
  187. package/dist/components/surfaces/cards/cards.css.cjs +83 -80
  188. package/dist/components/surfaces/cards/cards.css.d.ts.map +1 -1
  189. package/dist/components/surfaces/cards/cards.css.js +78 -76
  190. package/dist/components/surfaces/cards/checkboxCard.css.cjs +21 -31
  191. package/dist/components/surfaces/cards/checkboxCard.css.js +19 -30
  192. package/dist/components/surfaces/cards/index.cjs +10 -11
  193. package/dist/components/surfaces/cards/index.js +2 -8
  194. package/dist/components/surfaces/cards/internal/SelectionCard.cjs +36 -31
  195. package/dist/components/surfaces/cards/internal/SelectionCard.css.cjs +28 -39
  196. package/dist/components/surfaces/cards/internal/SelectionCard.css.js +27 -40
  197. package/dist/components/surfaces/cards/internal/SelectionCard.js +34 -31
  198. package/dist/components/surfaces/index.cjs +17 -15
  199. package/dist/components/surfaces/index.js +5 -10
  200. package/dist/components/surfaces/modal/Modal.cjs +128 -101
  201. package/dist/components/surfaces/modal/Modal.js +121 -94
  202. package/dist/components/surfaces/modal/index.cjs +2 -3
  203. package/dist/components/surfaces/modal/index.js +1 -3
  204. package/dist/components/surfaces/modal/modal.css.cjs +210 -253
  205. package/dist/components/surfaces/modal/modal.css.js +206 -256
  206. package/dist/fonts/VW/VWHeadWeb-Bold.woff2.cjs +4 -4
  207. package/dist/fonts/VW/VWHeadWeb-Bold.woff2.js +4 -4
  208. package/dist/fonts/VW/VWHeadWeb-ExtraBold.woff2.cjs +4 -4
  209. package/dist/fonts/VW/VWHeadWeb-ExtraBold.woff2.js +4 -4
  210. package/dist/fonts/VW/VWHeadWeb-Regular.woff2.cjs +4 -4
  211. package/dist/fonts/VW/VWHeadWeb-Regular.woff2.js +4 -4
  212. package/dist/fonts/VW/VWTextWeb-Bold.woff2.cjs +4 -4
  213. package/dist/fonts/VW/VWTextWeb-Bold.woff2.js +4 -4
  214. package/dist/fonts/VW/VWTextWeb-Regular.woff2.cjs +4 -4
  215. package/dist/fonts/VW/VWTextWeb-Regular.woff2.js +4 -4
  216. package/dist/fonts/VW/head-bold.css.cjs +10 -8
  217. package/dist/fonts/VW/head-bold.css.js +7 -5
  218. package/dist/fonts/VW/head-extra-bold.css.cjs +10 -9
  219. package/dist/fonts/VW/head-extra-bold.css.js +7 -6
  220. package/dist/fonts/VW/head-regular.css.cjs +10 -8
  221. package/dist/fonts/VW/head-regular.css.js +7 -5
  222. package/dist/fonts/VW/index.cjs +13 -3
  223. package/dist/fonts/VW/index.js +13 -5
  224. package/dist/fonts/VW/text-bold.css.cjs +10 -8
  225. package/dist/fonts/VW/text-bold.css.js +7 -5
  226. package/dist/fonts/VW/text-regular.css.cjs +10 -8
  227. package/dist/fonts/VW/text-regular.css.js +7 -5
  228. package/dist/fonts/audi/AudiType-Bold_4.03.woff2.cjs +4 -4
  229. package/dist/fonts/audi/AudiType-Bold_4.03.woff2.js +4 -4
  230. package/dist/fonts/audi/AudiType-ExtendedBold_4.03.woff2.cjs +4 -4
  231. package/dist/fonts/audi/AudiType-ExtendedBold_4.03.woff2.js +4 -4
  232. package/dist/fonts/audi/AudiType-ExtendedNormal_4.03.woff2.cjs +4 -4
  233. package/dist/fonts/audi/AudiType-ExtendedNormal_4.03.woff2.js +4 -4
  234. package/dist/fonts/audi/AudiType-Normal_4.03.woff2.cjs +4 -4
  235. package/dist/fonts/audi/AudiType-Normal_4.03.woff2.js +4 -4
  236. package/dist/fonts/audi/bold.css.cjs +10 -8
  237. package/dist/fonts/audi/bold.css.js +7 -5
  238. package/dist/fonts/audi/extended-bold.css.cjs +10 -8
  239. package/dist/fonts/audi/extended-bold.css.js +7 -5
  240. package/dist/fonts/audi/extended-regular.css.cjs +10 -8
  241. package/dist/fonts/audi/extended-regular.css.js +7 -5
  242. package/dist/fonts/audi/index.cjs +13 -3
  243. package/dist/fonts/audi/index.js +13 -5
  244. package/dist/fonts/audi/regular.css.cjs +10 -8
  245. package/dist/fonts/audi/regular.css.js +7 -5
  246. package/dist/fonts/autoria/Texgyreheros-Bold.woff2.cjs +4 -4
  247. package/dist/fonts/autoria/Texgyreheros-Bold.woff2.js +4 -4
  248. package/dist/fonts/autoria/Texgyreheros-Regular.woff2.cjs +4 -4
  249. package/dist/fonts/autoria/Texgyreheros-Regular.woff2.js +4 -4
  250. package/dist/fonts/autoria/bold.css.cjs +10 -8
  251. package/dist/fonts/autoria/bold.css.js +7 -5
  252. package/dist/fonts/autoria/index.cjs +13 -3
  253. package/dist/fonts/autoria/index.js +13 -5
  254. package/dist/fonts/autoria/regular.css.cjs +10 -8
  255. package/dist/fonts/autoria/regular.css.js +7 -5
  256. package/dist/fonts/bilhold/GeistVariableVF.woff2.cjs +5 -0
  257. package/dist/fonts/bilhold/GeistVariableVF.woff2.js +5 -0
  258. package/dist/fonts/bilhold/index.cjs +13 -4
  259. package/dist/fonts/bilhold/index.d.ts +0 -1
  260. package/dist/fonts/bilhold/index.d.ts.map +1 -1
  261. package/dist/fonts/bilhold/index.js +13 -6
  262. package/dist/fonts/bilhold/regular.css.cjs +11 -8
  263. package/dist/fonts/bilhold/regular.css.js +8 -5
  264. package/dist/fonts/cupra/Cupra-Bold.woff2.cjs +4 -4
  265. package/dist/fonts/cupra/Cupra-Bold.woff2.js +4 -4
  266. package/dist/fonts/cupra/Cupra-Book.woff2.cjs +4 -4
  267. package/dist/fonts/cupra/Cupra-Book.woff2.js +4 -4
  268. package/dist/fonts/cupra/Cupra-Medium.woff2.cjs +4 -4
  269. package/dist/fonts/cupra/Cupra-Medium.woff2.js +4 -4
  270. package/dist/fonts/cupra/Cupra-Regular.woff2.cjs +4 -4
  271. package/dist/fonts/cupra/Cupra-Regular.woff2.js +4 -4
  272. package/dist/fonts/cupra/bold.css.cjs +10 -8
  273. package/dist/fonts/cupra/bold.css.js +7 -5
  274. package/dist/fonts/cupra/book.css.cjs +10 -8
  275. package/dist/fonts/cupra/book.css.js +7 -5
  276. package/dist/fonts/cupra/index.cjs +13 -3
  277. package/dist/fonts/cupra/index.js +13 -5
  278. package/dist/fonts/cupra/medium.css.cjs +10 -8
  279. package/dist/fonts/cupra/medium.css.js +7 -5
  280. package/dist/fonts/cupra/regular.css.cjs +10 -8
  281. package/dist/fonts/cupra/regular.css.js +7 -5
  282. package/dist/fonts/dahles/SourceSans3-Bold.woff2.cjs +4 -4
  283. package/dist/fonts/dahles/SourceSans3-Bold.woff2.js +4 -4
  284. package/dist/fonts/dahles/SourceSans3-Medium.woff2.cjs +4 -4
  285. package/dist/fonts/dahles/SourceSans3-Medium.woff2.js +4 -4
  286. package/dist/fonts/dahles/SourceSans3-Regular.woff2.cjs +4 -4
  287. package/dist/fonts/dahles/SourceSans3-Regular.woff2.js +4 -4
  288. package/dist/fonts/dahles/SourceSans3-SemiBold.woff2.cjs +4 -4
  289. package/dist/fonts/dahles/SourceSans3-SemiBold.woff2.js +4 -4
  290. package/dist/fonts/dahles/bold.css.cjs +10 -8
  291. package/dist/fonts/dahles/bold.css.js +7 -5
  292. package/dist/fonts/dahles/index.cjs +13 -3
  293. package/dist/fonts/dahles/index.js +13 -5
  294. package/dist/fonts/dahles/medium.css.cjs +10 -8
  295. package/dist/fonts/dahles/medium.css.js +7 -5
  296. package/dist/fonts/dahles/regular.css.cjs +10 -8
  297. package/dist/fonts/dahles/regular.css.js +7 -5
  298. package/dist/fonts/dahles/semibold.css.cjs +10 -8
  299. package/dist/fonts/dahles/semibold.css.js +7 -5
  300. package/dist/fonts/gumpen/ES-Build-Bold.woff2.cjs +4 -4
  301. package/dist/fonts/gumpen/ES-Build-Bold.woff2.js +4 -4
  302. package/dist/fonts/gumpen/ES-Build-Medium.woff2.cjs +4 -4
  303. package/dist/fonts/gumpen/ES-Build-Medium.woff2.js +4 -4
  304. package/dist/fonts/gumpen/ES-Build-Regular.woff2.cjs +4 -4
  305. package/dist/fonts/gumpen/ES-Build-Regular.woff2.js +4 -4
  306. package/dist/fonts/gumpen/ES-Build-SemiBold.woff2.cjs +4 -4
  307. package/dist/fonts/gumpen/ES-Build-SemiBold.woff2.js +4 -4
  308. package/dist/fonts/gumpen/bold.css.cjs +10 -8
  309. package/dist/fonts/gumpen/bold.css.js +7 -5
  310. package/dist/fonts/gumpen/index.cjs +13 -3
  311. package/dist/fonts/gumpen/index.js +13 -5
  312. package/dist/fonts/gumpen/medium.css.cjs +10 -8
  313. package/dist/fonts/gumpen/medium.css.js +7 -5
  314. package/dist/fonts/gumpen/regular.css.cjs +10 -8
  315. package/dist/fonts/gumpen/regular.css.js +7 -5
  316. package/dist/fonts/gumpen/semibold.css.cjs +10 -8
  317. package/dist/fonts/gumpen/semibold.css.js +7 -5
  318. package/dist/fonts/index.cjs +144 -62
  319. package/dist/fonts/index.js +144 -73
  320. package/dist/fonts/moller/Larken-Bold.woff2.cjs +4 -4
  321. package/dist/fonts/moller/Larken-Bold.woff2.js +4 -4
  322. package/dist/fonts/moller/bold.css.cjs +14 -12
  323. package/dist/fonts/moller/bold.css.js +10 -8
  324. package/dist/fonts/moller/index.cjs +14 -4
  325. package/dist/fonts/moller/index.js +14 -6
  326. package/dist/fonts/moller/medium.css.cjs +10 -10
  327. package/dist/fonts/moller/medium.css.js +7 -7
  328. package/dist/fonts/moller/moller-bold-webfont.woff2.cjs +4 -4
  329. package/dist/fonts/moller/moller-bold-webfont.woff2.js +4 -4
  330. package/dist/fonts/moller/moller-book-webfont.woff2.cjs +4 -4
  331. package/dist/fonts/moller/moller-book-webfont.woff2.js +4 -4
  332. package/dist/fonts/moller/moller-medium-webfont.woff2.cjs +4 -4
  333. package/dist/fonts/moller/moller-medium-webfont.woff2.js +4 -4
  334. package/dist/fonts/moller/moller-regular-webfont.woff2.cjs +4 -4
  335. package/dist/fonts/moller/moller-regular-webfont.woff2.js +4 -4
  336. package/dist/fonts/moller/regular.css.cjs +10 -8
  337. package/dist/fonts/moller/regular.css.js +7 -5
  338. package/dist/fonts/moller/semibold.css.cjs +10 -10
  339. package/dist/fonts/moller/semibold.css.js +7 -7
  340. package/dist/fonts/seat/SEATBCN-Bold.woff2.cjs +4 -4
  341. package/dist/fonts/seat/SEATBCN-Bold.woff2.js +4 -4
  342. package/dist/fonts/seat/SEATBCN-Light.woff2.cjs +4 -4
  343. package/dist/fonts/seat/SEATBCN-Light.woff2.js +4 -4
  344. package/dist/fonts/seat/SEATBCN-Medium.woff2.cjs +4 -4
  345. package/dist/fonts/seat/SEATBCN-Medium.woff2.js +4 -4
  346. package/dist/fonts/seat/SEATBCN-Regular.woff2.cjs +4 -4
  347. package/dist/fonts/seat/SEATBCN-Regular.woff2.js +4 -4
  348. package/dist/fonts/seat/bold.css.cjs +10 -8
  349. package/dist/fonts/seat/bold.css.js +6 -4
  350. package/dist/fonts/seat/index.cjs +13 -3
  351. package/dist/fonts/seat/index.js +13 -5
  352. package/dist/fonts/seat/light.css.cjs +10 -8
  353. package/dist/fonts/seat/light.css.js +6 -4
  354. package/dist/fonts/seat/medium.css.cjs +10 -8
  355. package/dist/fonts/seat/medium.css.js +6 -4
  356. package/dist/fonts/seat/regular.css.cjs +10 -8
  357. package/dist/fonts/seat/regular.css.js +6 -4
  358. package/dist/fonts/skoda/SKODANextW07-Bold.woff2.cjs +4 -4
  359. package/dist/fonts/skoda/SKODANextW07-Bold.woff2.js +4 -4
  360. package/dist/fonts/skoda/SKODANextW07-Thin.woff2.cjs +4 -4
  361. package/dist/fonts/skoda/SKODANextW07-Thin.woff2.js +4 -4
  362. package/dist/fonts/skoda/bold.css.cjs +10 -8
  363. package/dist/fonts/skoda/bold.css.js +7 -5
  364. package/dist/fonts/skoda/index.cjs +13 -3
  365. package/dist/fonts/skoda/index.js +13 -5
  366. package/dist/fonts/skoda/medium.css.cjs +10 -8
  367. package/dist/fonts/skoda/medium.css.js +7 -5
  368. package/dist/fonts/skoda/regular.css.cjs +10 -8
  369. package/dist/fonts/skoda/regular.css.js +7 -5
  370. package/dist/fonts/skoda/semibold.css.cjs +10 -8
  371. package/dist/fonts/skoda/semibold.css.js +7 -5
  372. package/dist/fonts/tools/GeistVariableVF.woff2.cjs +4 -4
  373. package/dist/fonts/tools/GeistVariableVF.woff2.js +4 -4
  374. package/dist/fonts/tools/index.cjs +13 -3
  375. package/dist/fonts/tools/index.js +13 -5
  376. package/dist/fonts/tools/regular.css.cjs +11 -9
  377. package/dist/fonts/tools/regular.css.js +8 -6
  378. package/dist/foundation/iconography/ExtraIconsProvider.cjs +63 -7
  379. package/dist/foundation/iconography/ExtraIconsProvider.js +61 -7
  380. package/dist/foundation/iconography/Icon.cjs +63 -41
  381. package/dist/foundation/iconography/Icon.css.cjs +16 -16
  382. package/dist/foundation/iconography/Icon.css.d.ts.map +1 -1
  383. package/dist/foundation/iconography/Icon.css.js +15 -19
  384. package/dist/foundation/iconography/Icon.js +56 -34
  385. package/dist/foundation/iconography/IconVariantProvider.cjs +36 -7
  386. package/dist/foundation/iconography/IconVariantProvider.js +34 -7
  387. package/dist/foundation/iconography/icons.cjs +76 -63
  388. package/dist/foundation/iconography/icons.d.ts +1 -1
  389. package/dist/foundation/iconography/icons.d.ts.map +1 -1
  390. package/dist/foundation/iconography/icons.js +77 -65
  391. package/dist/foundation/iconography/index.cjs +8 -9
  392. package/dist/foundation/iconography/index.js +1 -6
  393. package/dist/foundation/iconography/svg/action/assignment-filled.svg-react.cjs +19 -0
  394. package/dist/foundation/iconography/svg/action/assignment-filled.svg-react.js +17 -0
  395. package/dist/foundation/iconography/svg/action/assignment-outlined.svg-react.cjs +19 -0
  396. package/dist/foundation/iconography/svg/action/assignment-outlined.svg-react.js +17 -0
  397. package/dist/foundation/iconography/svg/action/assignment-round.svg-react.cjs +19 -0
  398. package/dist/foundation/iconography/svg/action/assignment-round.svg-react.js +17 -0
  399. package/dist/foundation/iconography/svg/action/assignment-sharp.svg-react.cjs +19 -0
  400. package/dist/foundation/iconography/svg/action/assignment-sharp.svg-react.js +17 -0
  401. package/dist/foundation/iconography/svg/action/bolt-filled.svg-react.cjs +19 -0
  402. package/dist/foundation/iconography/svg/action/bolt-filled.svg-react.js +17 -0
  403. package/dist/foundation/iconography/svg/action/bolt-outlined.svg-react.cjs +19 -0
  404. package/dist/foundation/iconography/svg/action/bolt-outlined.svg-react.js +17 -0
  405. package/dist/foundation/iconography/svg/action/bolt-round.svg-react.cjs +19 -0
  406. package/dist/foundation/iconography/svg/action/bolt-round.svg-react.js +17 -0
  407. package/dist/foundation/iconography/svg/action/bolt-sharp.svg-react.cjs +19 -0
  408. package/dist/foundation/iconography/svg/action/bolt-sharp.svg-react.js +17 -0
  409. package/dist/foundation/iconography/svg/action/build-filled.svg-react.cjs +19 -0
  410. package/dist/foundation/iconography/svg/action/build-filled.svg-react.js +17 -0
  411. package/dist/foundation/iconography/svg/action/build-outlined.svg-react.cjs +19 -0
  412. package/dist/foundation/iconography/svg/action/build-outlined.svg-react.js +17 -0
  413. package/dist/foundation/iconography/svg/action/build-round.svg-react.cjs +19 -0
  414. package/dist/foundation/iconography/svg/action/build-round.svg-react.js +17 -0
  415. package/dist/foundation/iconography/svg/action/build-sharp.svg-react.cjs +19 -0
  416. package/dist/foundation/iconography/svg/action/build-sharp.svg-react.js +17 -0
  417. package/dist/foundation/iconography/svg/action/calculate-filled.svg-react.cjs +19 -0
  418. package/dist/foundation/iconography/svg/action/calculate-filled.svg-react.js +17 -0
  419. package/dist/foundation/iconography/svg/action/calculate-outlined.svg-react.cjs +19 -0
  420. package/dist/foundation/iconography/svg/action/calculate-outlined.svg-react.js +17 -0
  421. package/dist/foundation/iconography/svg/action/calculate-round.svg-react.cjs +19 -0
  422. package/dist/foundation/iconography/svg/action/calculate-round.svg-react.js +17 -0
  423. package/dist/foundation/iconography/svg/action/calculate-sharp.svg-react.cjs +19 -0
  424. package/dist/foundation/iconography/svg/action/calculate-sharp.svg-react.js +17 -0
  425. package/dist/foundation/iconography/svg/action/calendar-filled.svg-react.cjs +19 -0
  426. package/dist/foundation/iconography/svg/action/calendar-filled.svg-react.js +17 -0
  427. package/dist/foundation/iconography/svg/action/calendar-outlined.svg-react.cjs +19 -0
  428. package/dist/foundation/iconography/svg/action/calendar-outlined.svg-react.js +17 -0
  429. package/dist/foundation/iconography/svg/action/calendar-round.svg-react.cjs +19 -0
  430. package/dist/foundation/iconography/svg/action/calendar-round.svg-react.js +17 -0
  431. package/dist/foundation/iconography/svg/action/calendar-sharp.svg-react.cjs +19 -0
  432. package/dist/foundation/iconography/svg/action/calendar-sharp.svg-react.js +17 -0
  433. package/dist/foundation/iconography/svg/action/car-filled.svg-react.cjs +19 -0
  434. package/dist/foundation/iconography/svg/action/car-filled.svg-react.js +17 -0
  435. package/dist/foundation/iconography/svg/action/car-outlined.svg-react.cjs +19 -0
  436. package/dist/foundation/iconography/svg/action/car-outlined.svg-react.js +17 -0
  437. package/dist/foundation/iconography/svg/action/car-round.svg-react.cjs +19 -0
  438. package/dist/foundation/iconography/svg/action/car-round.svg-react.js +17 -0
  439. package/dist/foundation/iconography/svg/action/car-sharp.svg-react.cjs +19 -0
  440. package/dist/foundation/iconography/svg/action/car-sharp.svg-react.js +17 -0
  441. package/dist/foundation/iconography/svg/action/car_crash-filled.svg-react.cjs +19 -0
  442. package/dist/foundation/iconography/svg/action/car_crash-filled.svg-react.js +17 -0
  443. package/dist/foundation/iconography/svg/action/car_crash-outlined.svg-react.cjs +19 -0
  444. package/dist/foundation/iconography/svg/action/car_crash-outlined.svg-react.js +17 -0
  445. package/dist/foundation/iconography/svg/action/car_crash-round.svg-react.cjs +19 -0
  446. package/dist/foundation/iconography/svg/action/car_crash-round.svg-react.js +17 -0
  447. package/dist/foundation/iconography/svg/action/car_crash-sharp.svg-react.cjs +19 -0
  448. package/dist/foundation/iconography/svg/action/car_crash-sharp.svg-react.js +17 -0
  449. package/dist/foundation/iconography/svg/action/change-filled.svg-react.cjs +19 -0
  450. package/dist/foundation/iconography/svg/action/change-filled.svg-react.js +17 -0
  451. package/dist/foundation/iconography/svg/action/change-outlined.svg-react.cjs +19 -0
  452. package/dist/foundation/iconography/svg/action/change-outlined.svg-react.js +17 -0
  453. package/dist/foundation/iconography/svg/action/change-round.svg-react.cjs +19 -0
  454. package/dist/foundation/iconography/svg/action/change-round.svg-react.js +17 -0
  455. package/dist/foundation/iconography/svg/action/change-sharp.svg-react.cjs +19 -0
  456. package/dist/foundation/iconography/svg/action/change-sharp.svg-react.js +17 -0
  457. package/dist/foundation/iconography/svg/action/code-filled.svg-react.cjs +19 -0
  458. package/dist/foundation/iconography/svg/action/code-filled.svg-react.js +17 -0
  459. package/dist/foundation/iconography/svg/action/code-outlined.svg-react.cjs +19 -0
  460. package/dist/foundation/iconography/svg/action/code-outlined.svg-react.js +17 -0
  461. package/dist/foundation/iconography/svg/action/code-round.svg-react.cjs +19 -0
  462. package/dist/foundation/iconography/svg/action/code-round.svg-react.js +17 -0
  463. package/dist/foundation/iconography/svg/action/code-sharp.svg-react.cjs +19 -0
  464. package/dist/foundation/iconography/svg/action/code-sharp.svg-react.js +17 -0
  465. package/dist/foundation/iconography/svg/action/contract-filled.svg-react.cjs +19 -0
  466. package/dist/foundation/iconography/svg/action/contract-filled.svg-react.js +17 -0
  467. package/dist/foundation/iconography/svg/action/contract-outlined.svg-react.cjs +19 -0
  468. package/dist/foundation/iconography/svg/action/contract-outlined.svg-react.js +17 -0
  469. package/dist/foundation/iconography/svg/action/contract-round.svg-react.cjs +19 -0
  470. package/dist/foundation/iconography/svg/action/contract-round.svg-react.js +17 -0
  471. package/dist/foundation/iconography/svg/action/contract-sharp.svg-react.cjs +19 -0
  472. package/dist/foundation/iconography/svg/action/contract-sharp.svg-react.js +17 -0
  473. package/dist/foundation/iconography/svg/action/edit-filled.svg-react.cjs +19 -0
  474. package/dist/foundation/iconography/svg/action/edit-filled.svg-react.js +17 -0
  475. package/dist/foundation/iconography/svg/action/edit-outlined.svg-react.cjs +19 -0
  476. package/dist/foundation/iconography/svg/action/edit-outlined.svg-react.js +17 -0
  477. package/dist/foundation/iconography/svg/action/edit-round.svg-react.cjs +19 -0
  478. package/dist/foundation/iconography/svg/action/edit-round.svg-react.js +17 -0
  479. package/dist/foundation/iconography/svg/action/edit-sharp.svg-react.cjs +19 -0
  480. package/dist/foundation/iconography/svg/action/edit-sharp.svg-react.js +17 -0
  481. package/dist/foundation/iconography/svg/action/electric_car-filled.svg-react.cjs +19 -0
  482. package/dist/foundation/iconography/svg/action/electric_car-filled.svg-react.js +17 -0
  483. package/dist/foundation/iconography/svg/action/electric_car-outlined.svg-react.cjs +19 -0
  484. package/dist/foundation/iconography/svg/action/electric_car-outlined.svg-react.js +17 -0
  485. package/dist/foundation/iconography/svg/action/electric_car-round.svg-react.cjs +19 -0
  486. package/dist/foundation/iconography/svg/action/electric_car-round.svg-react.js +17 -0
  487. package/dist/foundation/iconography/svg/action/electric_car-sharp.svg-react.cjs +19 -0
  488. package/dist/foundation/iconography/svg/action/electric_car-sharp.svg-react.js +17 -0
  489. package/dist/foundation/iconography/svg/action/explore-filled.svg-react.cjs +19 -0
  490. package/dist/foundation/iconography/svg/action/explore-filled.svg-react.js +17 -0
  491. package/dist/foundation/iconography/svg/action/explore-outlined.svg-react.cjs +19 -0
  492. package/dist/foundation/iconography/svg/action/explore-outlined.svg-react.js +17 -0
  493. package/dist/foundation/iconography/svg/action/explore-round.svg-react.cjs +19 -0
  494. package/dist/foundation/iconography/svg/action/explore-round.svg-react.js +17 -0
  495. package/dist/foundation/iconography/svg/action/explore-sharp.svg-react.cjs +19 -0
  496. package/dist/foundation/iconography/svg/action/explore-sharp.svg-react.js +17 -0
  497. package/dist/foundation/iconography/svg/action/glass_damage-filled.svg-react.cjs +22 -0
  498. package/dist/foundation/iconography/svg/action/glass_damage-filled.svg-react.js +20 -0
  499. package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg-react.cjs +22 -0
  500. package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg-react.js +20 -0
  501. package/dist/foundation/iconography/svg/action/glass_damage-round.svg-react.cjs +22 -0
  502. package/dist/foundation/iconography/svg/action/glass_damage-round.svg-react.js +20 -0
  503. package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg-react.cjs +22 -0
  504. package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg-react.js +20 -0
  505. package/dist/foundation/iconography/svg/action/home-filled.svg-react.cjs +19 -0
  506. package/dist/foundation/iconography/svg/action/home-filled.svg-react.js +17 -0
  507. package/dist/foundation/iconography/svg/action/home-outlined.svg-react.cjs +19 -0
  508. package/dist/foundation/iconography/svg/action/home-outlined.svg-react.js +17 -0
  509. package/dist/foundation/iconography/svg/action/home-round.svg-react.cjs +19 -0
  510. package/dist/foundation/iconography/svg/action/home-round.svg-react.js +17 -0
  511. package/dist/foundation/iconography/svg/action/home-sharp.svg-react.cjs +19 -0
  512. package/dist/foundation/iconography/svg/action/home-sharp.svg-react.js +17 -0
  513. package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg-react.cjs +19 -0
  514. package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg-react.js +17 -0
  515. package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg-react.cjs +19 -0
  516. package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg-react.js +17 -0
  517. package/dist/foundation/iconography/svg/action/image_not_supported-round.svg-react.cjs +19 -0
  518. package/dist/foundation/iconography/svg/action/image_not_supported-round.svg-react.js +17 -0
  519. package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg-react.cjs +19 -0
  520. package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg-react.js +17 -0
  521. package/dist/foundation/iconography/svg/action/index.cjs +451 -423
  522. package/dist/foundation/iconography/svg/action/index.d.ts +0 -52
  523. package/dist/foundation/iconography/svg/action/index.d.ts.map +1 -1
  524. package/dist/foundation/iconography/svg/action/index.js +446 -464
  525. package/dist/foundation/iconography/svg/action/lightbulb-filled.svg-react.cjs +19 -0
  526. package/dist/foundation/iconography/svg/action/lightbulb-filled.svg-react.js +17 -0
  527. package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg-react.cjs +19 -0
  528. package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg-react.js +17 -0
  529. package/dist/foundation/iconography/svg/action/lightbulb-round.svg-react.cjs +19 -0
  530. package/dist/foundation/iconography/svg/action/lightbulb-round.svg-react.js +17 -0
  531. package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg-react.cjs +19 -0
  532. package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg-react.js +17 -0
  533. package/dist/foundation/iconography/svg/action/login-filled.svg-react.cjs +19 -0
  534. package/dist/foundation/iconography/svg/action/login-filled.svg-react.js +17 -0
  535. package/dist/foundation/iconography/svg/action/login-outlined.svg-react.cjs +19 -0
  536. package/dist/foundation/iconography/svg/action/login-outlined.svg-react.js +17 -0
  537. package/dist/foundation/iconography/svg/action/login-round.svg-react.cjs +19 -0
  538. package/dist/foundation/iconography/svg/action/login-round.svg-react.js +17 -0
  539. package/dist/foundation/iconography/svg/action/login-sharp.svg-react.cjs +19 -0
  540. package/dist/foundation/iconography/svg/action/login-sharp.svg-react.js +17 -0
  541. package/dist/foundation/iconography/svg/action/logout-filled.svg-react.cjs +19 -0
  542. package/dist/foundation/iconography/svg/action/logout-filled.svg-react.js +17 -0
  543. package/dist/foundation/iconography/svg/action/logout-outlined.svg-react.cjs +19 -0
  544. package/dist/foundation/iconography/svg/action/logout-outlined.svg-react.js +17 -0
  545. package/dist/foundation/iconography/svg/action/logout-round.svg-react.cjs +19 -0
  546. package/dist/foundation/iconography/svg/action/logout-round.svg-react.js +17 -0
  547. package/dist/foundation/iconography/svg/action/logout-sharp.svg-react.cjs +19 -0
  548. package/dist/foundation/iconography/svg/action/logout-sharp.svg-react.js +17 -0
  549. package/dist/foundation/iconography/svg/action/manual_gear-filled.svg-react.cjs +19 -0
  550. package/dist/foundation/iconography/svg/action/manual_gear-filled.svg-react.js +17 -0
  551. package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg-react.cjs +19 -0
  552. package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg-react.js +17 -0
  553. package/dist/foundation/iconography/svg/action/manual_gear-round.svg-react.cjs +19 -0
  554. package/dist/foundation/iconography/svg/action/manual_gear-round.svg-react.js +17 -0
  555. package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg-react.cjs +19 -0
  556. package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg-react.js +17 -0
  557. package/dist/foundation/iconography/svg/action/minor_crash-filled.svg-react.cjs +19 -0
  558. package/dist/foundation/iconography/svg/action/minor_crash-filled.svg-react.js +17 -0
  559. package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg-react.cjs +19 -0
  560. package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg-react.js +17 -0
  561. package/dist/foundation/iconography/svg/action/minor_crash-round.svg-react.cjs +19 -0
  562. package/dist/foundation/iconography/svg/action/minor_crash-round.svg-react.js +17 -0
  563. package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg-react.cjs +19 -0
  564. package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg-react.js +17 -0
  565. package/dist/foundation/iconography/svg/action/notifications-filled.svg-react.cjs +19 -0
  566. package/dist/foundation/iconography/svg/action/notifications-filled.svg-react.js +17 -0
  567. package/dist/foundation/iconography/svg/action/notifications-outlined.svg-react.cjs +19 -0
  568. package/dist/foundation/iconography/svg/action/notifications-outlined.svg-react.js +17 -0
  569. package/dist/foundation/iconography/svg/action/notifications-round.svg-react.cjs +19 -0
  570. package/dist/foundation/iconography/svg/action/notifications-round.svg-react.js +17 -0
  571. package/dist/foundation/iconography/svg/action/notifications-sharp.svg-react.cjs +19 -0
  572. package/dist/foundation/iconography/svg/action/notifications-sharp.svg-react.js +17 -0
  573. package/dist/foundation/iconography/svg/action/payment-filled.svg-react.cjs +19 -0
  574. package/dist/foundation/iconography/svg/action/payment-filled.svg-react.js +17 -0
  575. package/dist/foundation/iconography/svg/action/payment-outlined.svg-react.cjs +19 -0
  576. package/dist/foundation/iconography/svg/action/payment-outlined.svg-react.js +17 -0
  577. package/dist/foundation/iconography/svg/action/payment-round.svg-react.cjs +19 -0
  578. package/dist/foundation/iconography/svg/action/payment-round.svg-react.js +17 -0
  579. package/dist/foundation/iconography/svg/action/payment-sharp.svg-react.cjs +19 -0
  580. package/dist/foundation/iconography/svg/action/payment-sharp.svg-react.js +17 -0
  581. package/dist/foundation/iconography/svg/action/pets-filled.svg-react.cjs +19 -0
  582. package/dist/foundation/iconography/svg/action/pets-filled.svg-react.js +17 -0
  583. package/dist/foundation/iconography/svg/action/pets-outlined.svg-react.cjs +19 -0
  584. package/dist/foundation/iconography/svg/action/pets-outlined.svg-react.js +17 -0
  585. package/dist/foundation/iconography/svg/action/pets-round.svg-react.cjs +19 -0
  586. package/dist/foundation/iconography/svg/action/pets-round.svg-react.js +17 -0
  587. package/dist/foundation/iconography/svg/action/pets-sharp.svg-react.cjs +19 -0
  588. package/dist/foundation/iconography/svg/action/pets-sharp.svg-react.js +17 -0
  589. package/dist/foundation/iconography/svg/action/play_circle-filled.svg-react.cjs +19 -0
  590. package/dist/foundation/iconography/svg/action/play_circle-filled.svg-react.js +17 -0
  591. package/dist/foundation/iconography/svg/action/play_circle-outlined.svg-react.cjs +19 -0
  592. package/dist/foundation/iconography/svg/action/play_circle-outlined.svg-react.js +17 -0
  593. package/dist/foundation/iconography/svg/action/play_circle-round.svg-react.cjs +19 -0
  594. package/dist/foundation/iconography/svg/action/play_circle-round.svg-react.js +17 -0
  595. package/dist/foundation/iconography/svg/action/play_circle-sharp.svg-react.cjs +19 -0
  596. package/dist/foundation/iconography/svg/action/play_circle-sharp.svg-react.js +17 -0
  597. package/dist/foundation/iconography/svg/action/print-filled.svg-react.cjs +19 -0
  598. package/dist/foundation/iconography/svg/action/print-filled.svg-react.js +17 -0
  599. package/dist/foundation/iconography/svg/action/print-outlined.svg-react.cjs +19 -0
  600. package/dist/foundation/iconography/svg/action/print-outlined.svg-react.js +17 -0
  601. package/dist/foundation/iconography/svg/action/print-round.svg-react.cjs +19 -0
  602. package/dist/foundation/iconography/svg/action/print-round.svg-react.js +17 -0
  603. package/dist/foundation/iconography/svg/action/print-sharp.svg-react.cjs +19 -0
  604. package/dist/foundation/iconography/svg/action/print-sharp.svg-react.js +17 -0
  605. package/dist/foundation/iconography/svg/action/query_stats-filled.svg-react.cjs +19 -0
  606. package/dist/foundation/iconography/svg/action/query_stats-filled.svg-react.js +17 -0
  607. package/dist/foundation/iconography/svg/action/query_stats-outlined.svg-react.cjs +19 -0
  608. package/dist/foundation/iconography/svg/action/query_stats-outlined.svg-react.js +17 -0
  609. package/dist/foundation/iconography/svg/action/query_stats-round.svg-react.cjs +19 -0
  610. package/dist/foundation/iconography/svg/action/query_stats-round.svg-react.js +17 -0
  611. package/dist/foundation/iconography/svg/action/query_stats-sharp.svg-react.cjs +19 -0
  612. package/dist/foundation/iconography/svg/action/query_stats-sharp.svg-react.js +17 -0
  613. package/dist/foundation/iconography/svg/action/savings-filled.svg-react.cjs +19 -0
  614. package/dist/foundation/iconography/svg/action/savings-filled.svg-react.js +17 -0
  615. package/dist/foundation/iconography/svg/action/savings-outlined.svg-react.cjs +19 -0
  616. package/dist/foundation/iconography/svg/action/savings-outlined.svg-react.js +17 -0
  617. package/dist/foundation/iconography/svg/action/savings-round.svg-react.cjs +19 -0
  618. package/dist/foundation/iconography/svg/action/savings-round.svg-react.js +17 -0
  619. package/dist/foundation/iconography/svg/action/savings-sharp.svg-react.cjs +19 -0
  620. package/dist/foundation/iconography/svg/action/savings-sharp.svg-react.js +17 -0
  621. package/dist/foundation/iconography/svg/action/schedule-filled.svg-react.cjs +19 -0
  622. package/dist/foundation/iconography/svg/action/schedule-filled.svg-react.js +17 -0
  623. package/dist/foundation/iconography/svg/action/schedule-outlined.svg-react.cjs +19 -0
  624. package/dist/foundation/iconography/svg/action/schedule-outlined.svg-react.js +17 -0
  625. package/dist/foundation/iconography/svg/action/schedule-round.svg-react.cjs +19 -0
  626. package/dist/foundation/iconography/svg/action/schedule-round.svg-react.js +17 -0
  627. package/dist/foundation/iconography/svg/action/schedule-sharp.svg-react.cjs +19 -0
  628. package/dist/foundation/iconography/svg/action/schedule-sharp.svg-react.js +17 -0
  629. package/dist/foundation/iconography/svg/action/settings-filled.svg-react.cjs +19 -0
  630. package/dist/foundation/iconography/svg/action/settings-filled.svg-react.js +17 -0
  631. package/dist/foundation/iconography/svg/action/settings-outlined.svg-react.cjs +19 -0
  632. package/dist/foundation/iconography/svg/action/settings-outlined.svg-react.js +17 -0
  633. package/dist/foundation/iconography/svg/action/settings-round.svg-react.cjs +19 -0
  634. package/dist/foundation/iconography/svg/action/settings-round.svg-react.js +17 -0
  635. package/dist/foundation/iconography/svg/action/settings-sharp.svg-react.cjs +19 -0
  636. package/dist/foundation/iconography/svg/action/settings-sharp.svg-react.js +17 -0
  637. package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg-react.cjs +19 -0
  638. package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg-react.js +17 -0
  639. package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg-react.cjs +19 -0
  640. package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg-react.js +17 -0
  641. package/dist/foundation/iconography/svg/action/shopping_cart-round.svg-react.cjs +19 -0
  642. package/dist/foundation/iconography/svg/action/shopping_cart-round.svg-react.js +17 -0
  643. package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg-react.cjs +19 -0
  644. package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg-react.js +17 -0
  645. package/dist/foundation/iconography/svg/action/signature-filled.svg-react.cjs +19 -0
  646. package/dist/foundation/iconography/svg/action/signature-filled.svg-react.js +17 -0
  647. package/dist/foundation/iconography/svg/action/signature-outlined.svg-react.cjs +19 -0
  648. package/dist/foundation/iconography/svg/action/signature-outlined.svg-react.js +17 -0
  649. package/dist/foundation/iconography/svg/action/signature-round.svg-react.cjs +19 -0
  650. package/dist/foundation/iconography/svg/action/signature-round.svg-react.js +17 -0
  651. package/dist/foundation/iconography/svg/action/signature-sharp.svg-react.cjs +19 -0
  652. package/dist/foundation/iconography/svg/action/signature-sharp.svg-react.js +17 -0
  653. package/dist/foundation/iconography/svg/action/sort-filled.svg-react.cjs +19 -0
  654. package/dist/foundation/iconography/svg/action/sort-filled.svg-react.js +17 -0
  655. package/dist/foundation/iconography/svg/action/sort-outlined.svg-react.cjs +19 -0
  656. package/dist/foundation/iconography/svg/action/sort-outlined.svg-react.js +17 -0
  657. package/dist/foundation/iconography/svg/action/sort-round.svg-react.cjs +19 -0
  658. package/dist/foundation/iconography/svg/action/sort-round.svg-react.js +17 -0
  659. package/dist/foundation/iconography/svg/action/sort-sharp.svg-react.cjs +19 -0
  660. package/dist/foundation/iconography/svg/action/sort-sharp.svg-react.js +17 -0
  661. package/dist/foundation/iconography/svg/action/speed-filled.svg-react.cjs +19 -0
  662. package/dist/foundation/iconography/svg/action/speed-filled.svg-react.js +17 -0
  663. package/dist/foundation/iconography/svg/action/speed-outlined.svg-react.cjs +19 -0
  664. package/dist/foundation/iconography/svg/action/speed-outlined.svg-react.js +17 -0
  665. package/dist/foundation/iconography/svg/action/speed-round.svg-react.cjs +19 -0
  666. package/dist/foundation/iconography/svg/action/speed-round.svg-react.js +17 -0
  667. package/dist/foundation/iconography/svg/action/speed-sharp.svg-react.cjs +19 -0
  668. package/dist/foundation/iconography/svg/action/speed-sharp.svg-react.js +17 -0
  669. package/dist/foundation/iconography/svg/action/tire-filled.svg-react.cjs +19 -0
  670. package/dist/foundation/iconography/svg/action/tire-filled.svg-react.js +17 -0
  671. package/dist/foundation/iconography/svg/action/tire-outlined.svg-react.cjs +19 -0
  672. package/dist/foundation/iconography/svg/action/tire-outlined.svg-react.js +17 -0
  673. package/dist/foundation/iconography/svg/action/tire-round.svg-react.cjs +19 -0
  674. package/dist/foundation/iconography/svg/action/tire-round.svg-react.js +17 -0
  675. package/dist/foundation/iconography/svg/action/tire-sharp.svg-react.cjs +19 -0
  676. package/dist/foundation/iconography/svg/action/tire-sharp.svg-react.js +17 -0
  677. package/dist/foundation/iconography/svg/action/trash-filled.svg-react.cjs +19 -0
  678. package/dist/foundation/iconography/svg/action/trash-filled.svg-react.js +17 -0
  679. package/dist/foundation/iconography/svg/action/trash-outlined.svg-react.cjs +19 -0
  680. package/dist/foundation/iconography/svg/action/trash-outlined.svg-react.js +17 -0
  681. package/dist/foundation/iconography/svg/action/trash-round.svg-react.cjs +19 -0
  682. package/dist/foundation/iconography/svg/action/trash-round.svg-react.js +17 -0
  683. package/dist/foundation/iconography/svg/action/trash-sharp.svg-react.cjs +19 -0
  684. package/dist/foundation/iconography/svg/action/trash-sharp.svg-react.js +17 -0
  685. package/dist/foundation/iconography/svg/action/tune-filled.svg-react.cjs +19 -0
  686. package/dist/foundation/iconography/svg/action/tune-filled.svg-react.js +17 -0
  687. package/dist/foundation/iconography/svg/action/tune-outlined.svg-react.cjs +19 -0
  688. package/dist/foundation/iconography/svg/action/tune-outlined.svg-react.js +17 -0
  689. package/dist/foundation/iconography/svg/action/tune-round.svg-react.cjs +19 -0
  690. package/dist/foundation/iconography/svg/action/tune-round.svg-react.js +17 -0
  691. package/dist/foundation/iconography/svg/action/tune-sharp.svg-react.cjs +19 -0
  692. package/dist/foundation/iconography/svg/action/tune-sharp.svg-react.js +17 -0
  693. package/dist/foundation/iconography/svg/action/verified-filled.svg-react.cjs +19 -0
  694. package/dist/foundation/iconography/svg/action/verified-filled.svg-react.js +17 -0
  695. package/dist/foundation/iconography/svg/action/verified-outlined.svg-react.cjs +19 -0
  696. package/dist/foundation/iconography/svg/action/verified-outlined.svg-react.js +17 -0
  697. package/dist/foundation/iconography/svg/action/verified-round.svg-react.cjs +19 -0
  698. package/dist/foundation/iconography/svg/action/verified-round.svg-react.js +17 -0
  699. package/dist/foundation/iconography/svg/action/verified-sharp.svg-react.cjs +19 -0
  700. package/dist/foundation/iconography/svg/action/verified-sharp.svg-react.js +17 -0
  701. package/dist/foundation/iconography/svg/action/visibility_off-filled.svg-react.cjs +19 -0
  702. package/dist/foundation/iconography/svg/action/visibility_off-filled.svg-react.js +17 -0
  703. package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg-react.cjs +19 -0
  704. package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg-react.js +17 -0
  705. package/dist/foundation/iconography/svg/action/visibility_off-round.svg-react.cjs +19 -0
  706. package/dist/foundation/iconography/svg/action/visibility_off-round.svg-react.js +17 -0
  707. package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg-react.cjs +19 -0
  708. package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg-react.js +17 -0
  709. package/dist/foundation/iconography/svg/action/visibility_on-filled.svg-react.cjs +19 -0
  710. package/dist/foundation/iconography/svg/action/visibility_on-filled.svg-react.js +17 -0
  711. package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg-react.cjs +19 -0
  712. package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg-react.js +17 -0
  713. package/dist/foundation/iconography/svg/action/visibility_on-round.svg-react.cjs +19 -0
  714. package/dist/foundation/iconography/svg/action/visibility_on-round.svg-react.js +17 -0
  715. package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg-react.cjs +19 -0
  716. package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg-react.js +17 -0
  717. package/dist/foundation/iconography/svg/communication/call-filled.svg-react.cjs +19 -0
  718. package/dist/foundation/iconography/svg/communication/call-filled.svg-react.js +17 -0
  719. package/dist/foundation/iconography/svg/communication/call-outlined.svg-react.cjs +19 -0
  720. package/dist/foundation/iconography/svg/communication/call-outlined.svg-react.js +17 -0
  721. package/dist/foundation/iconography/svg/communication/call-round.svg-react.cjs +19 -0
  722. package/dist/foundation/iconography/svg/communication/call-round.svg-react.js +17 -0
  723. package/dist/foundation/iconography/svg/communication/call-sharp.svg-react.cjs +19 -0
  724. package/dist/foundation/iconography/svg/communication/call-sharp.svg-react.js +17 -0
  725. package/dist/foundation/iconography/svg/communication/chat-filled.svg-react.cjs +19 -0
  726. package/dist/foundation/iconography/svg/communication/chat-filled.svg-react.js +17 -0
  727. package/dist/foundation/iconography/svg/communication/chat-outlined.svg-react.cjs +19 -0
  728. package/dist/foundation/iconography/svg/communication/chat-outlined.svg-react.js +17 -0
  729. package/dist/foundation/iconography/svg/communication/chat-round.svg-react.cjs +19 -0
  730. package/dist/foundation/iconography/svg/communication/chat-round.svg-react.js +17 -0
  731. package/dist/foundation/iconography/svg/communication/chat-sharp.svg-react.cjs +19 -0
  732. package/dist/foundation/iconography/svg/communication/chat-sharp.svg-react.js +17 -0
  733. package/dist/foundation/iconography/svg/communication/index.cjs +31 -19
  734. package/dist/foundation/iconography/svg/communication/index.js +26 -22
  735. package/dist/foundation/iconography/svg/content/add-filled.svg-react.cjs +19 -0
  736. package/dist/foundation/iconography/svg/content/add-filled.svg-react.js +17 -0
  737. package/dist/foundation/iconography/svg/content/add-outlined.svg-react.cjs +19 -0
  738. package/dist/foundation/iconography/svg/content/add-outlined.svg-react.js +17 -0
  739. package/dist/foundation/iconography/svg/content/add-round.svg-react.cjs +19 -0
  740. package/dist/foundation/iconography/svg/content/add-round.svg-react.js +17 -0
  741. package/dist/foundation/iconography/svg/content/add-sharp.svg-react.cjs +19 -0
  742. package/dist/foundation/iconography/svg/content/add-sharp.svg-react.js +17 -0
  743. package/dist/foundation/iconography/svg/content/add_circle-filled.svg-react.cjs +19 -0
  744. package/dist/foundation/iconography/svg/content/add_circle-filled.svg-react.js +17 -0
  745. package/dist/foundation/iconography/svg/content/add_circle-outlined.svg-react.cjs +19 -0
  746. package/dist/foundation/iconography/svg/content/add_circle-outlined.svg-react.js +17 -0
  747. package/dist/foundation/iconography/svg/content/add_circle-round.svg-react.cjs +19 -0
  748. package/dist/foundation/iconography/svg/content/add_circle-round.svg-react.js +17 -0
  749. package/dist/foundation/iconography/svg/content/add_circle-sharp.svg-react.cjs +19 -0
  750. package/dist/foundation/iconography/svg/content/add_circle-sharp.svg-react.js +17 -0
  751. package/dist/foundation/iconography/svg/content/auto-filled.svg-react.cjs +19 -0
  752. package/dist/foundation/iconography/svg/content/auto-filled.svg-react.js +17 -0
  753. package/dist/foundation/iconography/svg/content/auto-outlined.svg-react.cjs +19 -0
  754. package/dist/foundation/iconography/svg/content/auto-outlined.svg-react.js +17 -0
  755. package/dist/foundation/iconography/svg/content/auto-round.svg-react.cjs +19 -0
  756. package/dist/foundation/iconography/svg/content/auto-round.svg-react.js +17 -0
  757. package/dist/foundation/iconography/svg/content/auto-sharp.svg-react.cjs +19 -0
  758. package/dist/foundation/iconography/svg/content/auto-sharp.svg-react.js +17 -0
  759. package/dist/foundation/iconography/svg/content/backspace-filled.svg-react.cjs +19 -0
  760. package/dist/foundation/iconography/svg/content/backspace-filled.svg-react.js +17 -0
  761. package/dist/foundation/iconography/svg/content/backspace-outlined.svg-react.cjs +19 -0
  762. package/dist/foundation/iconography/svg/content/backspace-outlined.svg-react.js +17 -0
  763. package/dist/foundation/iconography/svg/content/backspace-round.svg-react.cjs +19 -0
  764. package/dist/foundation/iconography/svg/content/backspace-round.svg-react.js +17 -0
  765. package/dist/foundation/iconography/svg/content/backspace-sharp.svg-react.cjs +19 -0
  766. package/dist/foundation/iconography/svg/content/backspace-sharp.svg-react.js +17 -0
  767. package/dist/foundation/iconography/svg/content/clear-filled.svg-react.cjs +19 -0
  768. package/dist/foundation/iconography/svg/content/clear-filled.svg-react.js +17 -0
  769. package/dist/foundation/iconography/svg/content/clear-outlined.svg-react.cjs +19 -0
  770. package/dist/foundation/iconography/svg/content/clear-outlined.svg-react.js +17 -0
  771. package/dist/foundation/iconography/svg/content/clear-round.svg-react.cjs +19 -0
  772. package/dist/foundation/iconography/svg/content/clear-round.svg-react.js +17 -0
  773. package/dist/foundation/iconography/svg/content/clear-sharp.svg-react.cjs +19 -0
  774. package/dist/foundation/iconography/svg/content/clear-sharp.svg-react.js +17 -0
  775. package/dist/foundation/iconography/svg/content/content_copy-filled.svg-react.cjs +19 -0
  776. package/dist/foundation/iconography/svg/content/content_copy-filled.svg-react.js +17 -0
  777. package/dist/foundation/iconography/svg/content/content_copy-outlined.svg-react.cjs +19 -0
  778. package/dist/foundation/iconography/svg/content/content_copy-outlined.svg-react.js +17 -0
  779. package/dist/foundation/iconography/svg/content/content_copy-round.svg-react.cjs +19 -0
  780. package/dist/foundation/iconography/svg/content/content_copy-round.svg-react.js +17 -0
  781. package/dist/foundation/iconography/svg/content/content_copy-sharp.svg-react.cjs +19 -0
  782. package/dist/foundation/iconography/svg/content/content_copy-sharp.svg-react.js +17 -0
  783. package/dist/foundation/iconography/svg/content/index.cjs +135 -91
  784. package/dist/foundation/iconography/svg/content/index.d.ts +52 -0
  785. package/dist/foundation/iconography/svg/content/index.d.ts.map +1 -1
  786. package/dist/foundation/iconography/svg/content/index.js +127 -101
  787. package/dist/foundation/iconography/svg/content/mail-filled.svg-react.cjs +19 -0
  788. package/dist/foundation/iconography/svg/content/mail-filled.svg-react.js +17 -0
  789. package/dist/foundation/iconography/svg/content/mail-outlined.svg-react.cjs +19 -0
  790. package/dist/foundation/iconography/svg/content/mail-outlined.svg-react.js +17 -0
  791. package/dist/foundation/iconography/svg/content/mail-round.svg-react.cjs +19 -0
  792. package/dist/foundation/iconography/svg/content/mail-round.svg-react.js +17 -0
  793. package/dist/foundation/iconography/svg/content/mail-sharp.svg-react.cjs +19 -0
  794. package/dist/foundation/iconography/svg/content/mail-sharp.svg-react.js +17 -0
  795. package/dist/foundation/iconography/svg/content/manage_account-filled.svg-react.cjs +19 -0
  796. package/dist/foundation/iconography/svg/content/manage_account-filled.svg-react.js +17 -0
  797. package/dist/foundation/iconography/svg/content/manage_account-outlined.svg-react.cjs +19 -0
  798. package/dist/foundation/iconography/svg/content/manage_account-outlined.svg-react.js +17 -0
  799. package/dist/foundation/iconography/svg/content/manage_account-round.svg-react.cjs +19 -0
  800. package/dist/foundation/iconography/svg/content/manage_account-round.svg-react.js +17 -0
  801. package/dist/foundation/iconography/svg/content/manage_account-sharp.svg-react.cjs +19 -0
  802. package/dist/foundation/iconography/svg/content/manage_account-sharp.svg-react.js +17 -0
  803. package/dist/foundation/iconography/svg/content/person-filled.svg-react.cjs +19 -0
  804. package/dist/foundation/iconography/svg/content/person-filled.svg-react.js +17 -0
  805. package/dist/foundation/iconography/svg/content/person-outlined.svg-react.cjs +19 -0
  806. package/dist/foundation/iconography/svg/content/person-outlined.svg-react.js +17 -0
  807. package/dist/foundation/iconography/svg/content/person-round.svg-react.cjs +19 -0
  808. package/dist/foundation/iconography/svg/content/person-round.svg-react.js +17 -0
  809. package/dist/foundation/iconography/svg/content/person-sharp.svg-react.cjs +19 -0
  810. package/dist/foundation/iconography/svg/content/person-sharp.svg-react.js +17 -0
  811. package/dist/foundation/iconography/svg/content/remove-filled.svg-react.cjs +19 -0
  812. package/dist/foundation/iconography/svg/content/remove-filled.svg-react.js +17 -0
  813. package/dist/foundation/iconography/svg/content/remove-outlined.svg-react.cjs +19 -0
  814. package/dist/foundation/iconography/svg/content/remove-outlined.svg-react.js +17 -0
  815. package/dist/foundation/iconography/svg/content/remove-round.svg-react.cjs +19 -0
  816. package/dist/foundation/iconography/svg/content/remove-round.svg-react.js +17 -0
  817. package/dist/foundation/iconography/svg/content/remove-sharp.svg-react.cjs +19 -0
  818. package/dist/foundation/iconography/svg/content/remove-sharp.svg-react.js +17 -0
  819. package/dist/foundation/iconography/svg/content/send-filled.svg-react.cjs +19 -0
  820. package/dist/foundation/iconography/svg/content/send-filled.svg-react.js +17 -0
  821. package/dist/foundation/iconography/svg/content/send-outlined.svg-react.cjs +19 -0
  822. package/dist/foundation/iconography/svg/content/send-outlined.svg-react.js +17 -0
  823. package/dist/foundation/iconography/svg/content/send-round.svg-react.cjs +19 -0
  824. package/dist/foundation/iconography/svg/content/send-round.svg-react.js +17 -0
  825. package/dist/foundation/iconography/svg/content/send-sharp.svg-react.cjs +19 -0
  826. package/dist/foundation/iconography/svg/content/send-sharp.svg-react.js +17 -0
  827. package/dist/foundation/iconography/svg/content/work-filled.svg-react.cjs +19 -0
  828. package/dist/foundation/iconography/svg/content/work-filled.svg-react.js +17 -0
  829. package/dist/foundation/iconography/svg/content/work-outlined.svg-react.cjs +19 -0
  830. package/dist/foundation/iconography/svg/content/work-outlined.svg-react.js +17 -0
  831. package/dist/foundation/iconography/svg/content/work-round.svg-react.cjs +19 -0
  832. package/dist/foundation/iconography/svg/content/work-round.svg-react.js +17 -0
  833. package/dist/foundation/iconography/svg/content/work-sharp.svg-react.cjs +19 -0
  834. package/dist/foundation/iconography/svg/content/work-sharp.svg-react.js +17 -0
  835. package/dist/foundation/iconography/svg/device/index.cjs +19 -10
  836. package/dist/foundation/iconography/svg/device/index.js +14 -12
  837. package/dist/foundation/iconography/svg/device/task-filled.svg-react.cjs +19 -0
  838. package/dist/foundation/iconography/svg/device/task-filled.svg-react.js +17 -0
  839. package/dist/foundation/iconography/svg/device/task-outlined.svg-react.cjs +19 -0
  840. package/dist/foundation/iconography/svg/device/task-outlined.svg-react.js +17 -0
  841. package/dist/foundation/iconography/svg/device/task-round.svg-react.cjs +19 -0
  842. package/dist/foundation/iconography/svg/device/task-round.svg-react.js +17 -0
  843. package/dist/foundation/iconography/svg/device/task-sharp.svg-react.cjs +19 -0
  844. package/dist/foundation/iconography/svg/device/task-sharp.svg-react.js +17 -0
  845. package/dist/foundation/iconography/svg/file/archive-filled.svg-react.cjs +19 -0
  846. package/dist/foundation/iconography/svg/file/archive-filled.svg-react.js +17 -0
  847. package/dist/foundation/iconography/svg/file/archive-outlined.svg-react.cjs +19 -0
  848. package/dist/foundation/iconography/svg/file/archive-outlined.svg-react.js +17 -0
  849. package/dist/foundation/iconography/svg/file/archive-round.svg-react.cjs +19 -0
  850. package/dist/foundation/iconography/svg/file/archive-round.svg-react.js +17 -0
  851. package/dist/foundation/iconography/svg/file/archive-sharp.svg-react.cjs +19 -0
  852. package/dist/foundation/iconography/svg/file/archive-sharp.svg-react.js +17 -0
  853. package/dist/foundation/iconography/svg/file/file_copy-filled.svg-react.cjs +19 -0
  854. package/dist/foundation/iconography/svg/file/file_copy-filled.svg-react.js +17 -0
  855. package/dist/foundation/iconography/svg/file/file_copy-outlined.svg-react.cjs +19 -0
  856. package/dist/foundation/iconography/svg/file/file_copy-outlined.svg-react.js +17 -0
  857. package/dist/foundation/iconography/svg/file/file_copy-round.svg-react.cjs +19 -0
  858. package/dist/foundation/iconography/svg/file/file_copy-round.svg-react.js +17 -0
  859. package/dist/foundation/iconography/svg/file/file_copy-sharp.svg-react.cjs +19 -0
  860. package/dist/foundation/iconography/svg/file/file_copy-sharp.svg-react.js +17 -0
  861. package/dist/foundation/iconography/svg/file/file_download-filled.svg-react.cjs +19 -0
  862. package/dist/foundation/iconography/svg/file/file_download-filled.svg-react.js +17 -0
  863. package/dist/foundation/iconography/svg/file/file_download-outlined.svg-react.cjs +19 -0
  864. package/dist/foundation/iconography/svg/file/file_download-outlined.svg-react.js +17 -0
  865. package/dist/foundation/iconography/svg/file/file_download-round.svg-react.cjs +19 -0
  866. package/dist/foundation/iconography/svg/file/file_download-round.svg-react.js +17 -0
  867. package/dist/foundation/iconography/svg/file/file_download-sharp.svg-react.cjs +19 -0
  868. package/dist/foundation/iconography/svg/file/file_download-sharp.svg-react.js +17 -0
  869. package/dist/foundation/iconography/svg/file/file_download_off-filled.svg-react.cjs +19 -0
  870. package/dist/foundation/iconography/svg/file/file_download_off-filled.svg-react.js +17 -0
  871. package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg-react.cjs +19 -0
  872. package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg-react.js +17 -0
  873. package/dist/foundation/iconography/svg/file/file_download_off-round.svg-react.cjs +19 -0
  874. package/dist/foundation/iconography/svg/file/file_download_off-round.svg-react.js +17 -0
  875. package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg-react.cjs +19 -0
  876. package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg-react.js +17 -0
  877. package/dist/foundation/iconography/svg/file/file_open-filled.svg-react.cjs +19 -0
  878. package/dist/foundation/iconography/svg/file/file_open-filled.svg-react.js +17 -0
  879. package/dist/foundation/iconography/svg/file/file_open-outlined.svg-react.cjs +19 -0
  880. package/dist/foundation/iconography/svg/file/file_open-outlined.svg-react.js +17 -0
  881. package/dist/foundation/iconography/svg/file/file_open-round.svg-react.cjs +19 -0
  882. package/dist/foundation/iconography/svg/file/file_open-round.svg-react.js +17 -0
  883. package/dist/foundation/iconography/svg/file/file_open-sharp.svg-react.cjs +19 -0
  884. package/dist/foundation/iconography/svg/file/file_open-sharp.svg-react.js +17 -0
  885. package/dist/foundation/iconography/svg/file/file_upload-filled.svg-react.cjs +19 -0
  886. package/dist/foundation/iconography/svg/file/file_upload-filled.svg-react.js +17 -0
  887. package/dist/foundation/iconography/svg/file/file_upload-outlined.svg-react.cjs +19 -0
  888. package/dist/foundation/iconography/svg/file/file_upload-outlined.svg-react.js +17 -0
  889. package/dist/foundation/iconography/svg/file/file_upload-round.svg-react.cjs +19 -0
  890. package/dist/foundation/iconography/svg/file/file_upload-round.svg-react.js +17 -0
  891. package/dist/foundation/iconography/svg/file/file_upload-sharp.svg-react.cjs +19 -0
  892. package/dist/foundation/iconography/svg/file/file_upload-sharp.svg-react.js +17 -0
  893. package/dist/foundation/iconography/svg/file/index.cjs +81 -64
  894. package/dist/foundation/iconography/svg/file/index.js +76 -72
  895. package/dist/foundation/iconography/svg/file/unarchive-filled.svg-react.cjs +19 -0
  896. package/dist/foundation/iconography/svg/file/unarchive-filled.svg-react.js +17 -0
  897. package/dist/foundation/iconography/svg/file/unarchive-outlined.svg-react.cjs +19 -0
  898. package/dist/foundation/iconography/svg/file/unarchive-outlined.svg-react.js +17 -0
  899. package/dist/foundation/iconography/svg/file/unarchive-round.svg-react.cjs +19 -0
  900. package/dist/foundation/iconography/svg/file/unarchive-round.svg-react.js +17 -0
  901. package/dist/foundation/iconography/svg/file/unarchive-sharp.svg-react.cjs +19 -0
  902. package/dist/foundation/iconography/svg/file/unarchive-sharp.svg-react.js +17 -0
  903. package/dist/foundation/iconography/svg/index.cjs +84 -25
  904. package/dist/foundation/iconography/svg/index.js +13 -26
  905. package/dist/foundation/iconography/svg/map/ev_station-filled.svg-react.cjs +19 -0
  906. package/dist/foundation/iconography/svg/map/ev_station-filled.svg-react.js +17 -0
  907. package/dist/foundation/iconography/svg/map/ev_station-outlined.svg-react.cjs +19 -0
  908. package/dist/foundation/iconography/svg/map/ev_station-outlined.svg-react.js +17 -0
  909. package/dist/foundation/iconography/svg/map/ev_station-round.svg-react.cjs +19 -0
  910. package/dist/foundation/iconography/svg/map/ev_station-round.svg-react.js +17 -0
  911. package/dist/foundation/iconography/svg/map/ev_station-sharp.svg-react.cjs +19 -0
  912. package/dist/foundation/iconography/svg/map/ev_station-sharp.svg-react.js +17 -0
  913. package/dist/foundation/iconography/svg/map/forest-filled.svg-react.cjs +19 -0
  914. package/dist/foundation/iconography/svg/map/forest-filled.svg-react.js +17 -0
  915. package/dist/foundation/iconography/svg/map/forest-outlined.svg-react.cjs +19 -0
  916. package/dist/foundation/iconography/svg/map/forest-outlined.svg-react.js +17 -0
  917. package/dist/foundation/iconography/svg/map/forest-round.svg-react.cjs +19 -0
  918. package/dist/foundation/iconography/svg/map/forest-round.svg-react.js +17 -0
  919. package/dist/foundation/iconography/svg/map/forest-sharp.svg-react.cjs +19 -0
  920. package/dist/foundation/iconography/svg/map/forest-sharp.svg-react.js +17 -0
  921. package/dist/foundation/iconography/svg/map/gas_station-filled.svg-react.cjs +19 -0
  922. package/dist/foundation/iconography/svg/map/gas_station-filled.svg-react.js +17 -0
  923. package/dist/foundation/iconography/svg/map/gas_station-outlined.svg-react.cjs +19 -0
  924. package/dist/foundation/iconography/svg/map/gas_station-outlined.svg-react.js +17 -0
  925. package/dist/foundation/iconography/svg/map/gas_station-round.svg-react.cjs +19 -0
  926. package/dist/foundation/iconography/svg/map/gas_station-round.svg-react.js +17 -0
  927. package/dist/foundation/iconography/svg/map/gas_station-sharp.svg-react.cjs +19 -0
  928. package/dist/foundation/iconography/svg/map/gas_station-sharp.svg-react.js +17 -0
  929. package/dist/foundation/iconography/svg/map/index.cjs +61 -46
  930. package/dist/foundation/iconography/svg/map/index.js +56 -52
  931. package/dist/foundation/iconography/svg/map/location-filled.svg-react.cjs +19 -0
  932. package/dist/foundation/iconography/svg/map/location-filled.svg-react.js +17 -0
  933. package/dist/foundation/iconography/svg/map/location-outlined.svg-react.cjs +19 -0
  934. package/dist/foundation/iconography/svg/map/location-outlined.svg-react.js +17 -0
  935. package/dist/foundation/iconography/svg/map/location-round.svg-react.cjs +19 -0
  936. package/dist/foundation/iconography/svg/map/location-round.svg-react.js +17 -0
  937. package/dist/foundation/iconography/svg/map/location-sharp.svg-react.cjs +19 -0
  938. package/dist/foundation/iconography/svg/map/location-sharp.svg-react.js +17 -0
  939. package/dist/foundation/iconography/svg/map/route-filled.svg-react.cjs +19 -0
  940. package/dist/foundation/iconography/svg/map/route-filled.svg-react.js +17 -0
  941. package/dist/foundation/iconography/svg/map/route-outlined.svg-react.cjs +19 -0
  942. package/dist/foundation/iconography/svg/map/route-outlined.svg-react.js +17 -0
  943. package/dist/foundation/iconography/svg/map/route-round.svg-react.cjs +19 -0
  944. package/dist/foundation/iconography/svg/map/route-round.svg-react.js +17 -0
  945. package/dist/foundation/iconography/svg/map/route-sharp.svg-react.cjs +19 -0
  946. package/dist/foundation/iconography/svg/map/route-sharp.svg-react.js +17 -0
  947. package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg-react.cjs +19 -0
  948. package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg-react.js +17 -0
  949. package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg-react.cjs +19 -0
  950. package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg-react.js +17 -0
  951. package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg-react.cjs +19 -0
  952. package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg-react.js +17 -0
  953. package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg-react.cjs +19 -0
  954. package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg-react.js +17 -0
  955. package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg-react.cjs +19 -0
  956. package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg-react.js +17 -0
  957. package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg-react.cjs +19 -0
  958. package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg-react.js +17 -0
  959. package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg-react.cjs +19 -0
  960. package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg-react.js +17 -0
  961. package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg-react.cjs +19 -0
  962. package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg-react.js +17 -0
  963. package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg-react.cjs +19 -0
  964. package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg-react.js +17 -0
  965. package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg-react.cjs +19 -0
  966. package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg-react.js +17 -0
  967. package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg-react.cjs +19 -0
  968. package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg-react.js +17 -0
  969. package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg-react.cjs +19 -0
  970. package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg-react.js +17 -0
  971. package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg-react.cjs +19 -0
  972. package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg-react.js +17 -0
  973. package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg-react.cjs +19 -0
  974. package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg-react.js +17 -0
  975. package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg-react.cjs +19 -0
  976. package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg-react.js +17 -0
  977. package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg-react.cjs +19 -0
  978. package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg-react.js +17 -0
  979. package/dist/foundation/iconography/svg/navigation/check-filled.svg-react.cjs +19 -0
  980. package/dist/foundation/iconography/svg/navigation/check-filled.svg-react.js +17 -0
  981. package/dist/foundation/iconography/svg/navigation/check-outlined.svg-react.cjs +19 -0
  982. package/dist/foundation/iconography/svg/navigation/check-outlined.svg-react.js +17 -0
  983. package/dist/foundation/iconography/svg/navigation/check-round.svg-react.cjs +19 -0
  984. package/dist/foundation/iconography/svg/navigation/check-round.svg-react.js +17 -0
  985. package/dist/foundation/iconography/svg/navigation/check-sharp.svg-react.cjs +19 -0
  986. package/dist/foundation/iconography/svg/navigation/check-sharp.svg-react.js +17 -0
  987. package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg-react.cjs +19 -0
  988. package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg-react.js +17 -0
  989. package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg-react.cjs +19 -0
  990. package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg-react.js +17 -0
  991. package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg-react.cjs +19 -0
  992. package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg-react.js +17 -0
  993. package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg-react.cjs +19 -0
  994. package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg-react.js +17 -0
  995. package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg-react.cjs +19 -0
  996. package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg-react.js +17 -0
  997. package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg-react.cjs +19 -0
  998. package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg-react.js +17 -0
  999. package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg-react.cjs +19 -0
  1000. package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg-react.js +17 -0
  1001. package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg-react.cjs +19 -0
  1002. package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg-react.js +17 -0
  1003. package/dist/foundation/iconography/svg/navigation/close-filled.svg-react.cjs +19 -0
  1004. package/dist/foundation/iconography/svg/navigation/close-filled.svg-react.js +17 -0
  1005. package/dist/foundation/iconography/svg/navigation/close-outlined.svg-react.cjs +19 -0
  1006. package/dist/foundation/iconography/svg/navigation/close-outlined.svg-react.js +17 -0
  1007. package/dist/foundation/iconography/svg/navigation/close-round.svg-react.cjs +19 -0
  1008. package/dist/foundation/iconography/svg/navigation/close-round.svg-react.js +17 -0
  1009. package/dist/foundation/iconography/svg/navigation/close-sharp.svg-react.cjs +19 -0
  1010. package/dist/foundation/iconography/svg/navigation/close-sharp.svg-react.js +17 -0
  1011. package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg-react.cjs +19 -0
  1012. package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg-react.js +17 -0
  1013. package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg-react.cjs +19 -0
  1014. package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg-react.js +17 -0
  1015. package/dist/foundation/iconography/svg/navigation/expand_less-round.svg-react.cjs +19 -0
  1016. package/dist/foundation/iconography/svg/navigation/expand_less-round.svg-react.js +17 -0
  1017. package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg-react.cjs +19 -0
  1018. package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg-react.js +17 -0
  1019. package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg-react.cjs +19 -0
  1020. package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg-react.js +17 -0
  1021. package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg-react.cjs +19 -0
  1022. package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg-react.js +17 -0
  1023. package/dist/foundation/iconography/svg/navigation/expand_more-round.svg-react.cjs +19 -0
  1024. package/dist/foundation/iconography/svg/navigation/expand_more-round.svg-react.js +17 -0
  1025. package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg-react.cjs +19 -0
  1026. package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg-react.js +17 -0
  1027. package/dist/foundation/iconography/svg/navigation/external-filled.svg-react.cjs +19 -0
  1028. package/dist/foundation/iconography/svg/navigation/external-filled.svg-react.js +17 -0
  1029. package/dist/foundation/iconography/svg/navigation/external-outlined.svg-react.cjs +19 -0
  1030. package/dist/foundation/iconography/svg/navigation/external-outlined.svg-react.js +17 -0
  1031. package/dist/foundation/iconography/svg/navigation/external-round.svg-react.cjs +19 -0
  1032. package/dist/foundation/iconography/svg/navigation/external-round.svg-react.js +17 -0
  1033. package/dist/foundation/iconography/svg/navigation/external-sharp.svg-react.cjs +19 -0
  1034. package/dist/foundation/iconography/svg/navigation/external-sharp.svg-react.js +17 -0
  1035. package/dist/foundation/iconography/svg/navigation/index.cjs +220 -191
  1036. package/dist/foundation/iconography/svg/navigation/index.js +215 -211
  1037. package/dist/foundation/iconography/svg/navigation/menu-filled.svg-react.cjs +19 -0
  1038. package/dist/foundation/iconography/svg/navigation/menu-filled.svg-react.js +17 -0
  1039. package/dist/foundation/iconography/svg/navigation/menu-outlined.svg-react.cjs +19 -0
  1040. package/dist/foundation/iconography/svg/navigation/menu-outlined.svg-react.js +17 -0
  1041. package/dist/foundation/iconography/svg/navigation/menu-round.svg-react.cjs +19 -0
  1042. package/dist/foundation/iconography/svg/navigation/menu-round.svg-react.js +17 -0
  1043. package/dist/foundation/iconography/svg/navigation/menu-sharp.svg-react.cjs +19 -0
  1044. package/dist/foundation/iconography/svg/navigation/menu-sharp.svg-react.js +17 -0
  1045. package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg-react.cjs +19 -0
  1046. package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg-react.js +17 -0
  1047. package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg-react.cjs +19 -0
  1048. package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg-react.js +17 -0
  1049. package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg-react.cjs +19 -0
  1050. package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg-react.js +17 -0
  1051. package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg-react.cjs +19 -0
  1052. package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg-react.js +17 -0
  1053. package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg-react.cjs +19 -0
  1054. package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg-react.js +17 -0
  1055. package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg-react.cjs +19 -0
  1056. package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg-react.js +17 -0
  1057. package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg-react.cjs +19 -0
  1058. package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg-react.js +17 -0
  1059. package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg-react.cjs +19 -0
  1060. package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg-react.js +17 -0
  1061. package/dist/foundation/iconography/svg/navigation/open-filled.svg-react.cjs +19 -0
  1062. package/dist/foundation/iconography/svg/navigation/open-filled.svg-react.js +17 -0
  1063. package/dist/foundation/iconography/svg/navigation/open-outlined.svg-react.cjs +19 -0
  1064. package/dist/foundation/iconography/svg/navigation/open-outlined.svg-react.js +17 -0
  1065. package/dist/foundation/iconography/svg/navigation/open-round.svg-react.cjs +19 -0
  1066. package/dist/foundation/iconography/svg/navigation/open-round.svg-react.js +17 -0
  1067. package/dist/foundation/iconography/svg/navigation/open-sharp.svg-react.cjs +19 -0
  1068. package/dist/foundation/iconography/svg/navigation/open-sharp.svg-react.js +17 -0
  1069. package/dist/foundation/iconography/svg/navigation/refresh-filled.svg-react.cjs +19 -0
  1070. package/dist/foundation/iconography/svg/navigation/refresh-filled.svg-react.js +17 -0
  1071. package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg-react.cjs +19 -0
  1072. package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg-react.js +17 -0
  1073. package/dist/foundation/iconography/svg/navigation/refresh-round.svg-react.cjs +19 -0
  1074. package/dist/foundation/iconography/svg/navigation/refresh-round.svg-react.js +17 -0
  1075. package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg-react.cjs +19 -0
  1076. package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg-react.js +17 -0
  1077. package/dist/foundation/iconography/svg/navigation/spinner-filled.svg-react.cjs +19 -0
  1078. package/dist/foundation/iconography/svg/navigation/spinner-filled.svg-react.js +17 -0
  1079. package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg-react.cjs +19 -0
  1080. package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg-react.js +17 -0
  1081. package/dist/foundation/iconography/svg/navigation/spinner-round.svg-react.cjs +19 -0
  1082. package/dist/foundation/iconography/svg/navigation/spinner-round.svg-react.js +17 -0
  1083. package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg-react.cjs +19 -0
  1084. package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg-react.js +17 -0
  1085. package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg-react.cjs +19 -0
  1086. package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg-react.js +17 -0
  1087. package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg-react.cjs +19 -0
  1088. package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg-react.js +17 -0
  1089. package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg-react.cjs +19 -0
  1090. package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg-react.js +17 -0
  1091. package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg-react.cjs +19 -0
  1092. package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg-react.js +17 -0
  1093. package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg-react.cjs +19 -0
  1094. package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg-react.js +17 -0
  1095. package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg-react.cjs +19 -0
  1096. package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg-react.js +17 -0
  1097. package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg-react.cjs +19 -0
  1098. package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg-react.js +17 -0
  1099. package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg-react.cjs +19 -0
  1100. package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg-react.js +17 -0
  1101. package/dist/foundation/iconography/svg/notifications/event_note-filled.svg-react.cjs +19 -0
  1102. package/dist/foundation/iconography/svg/notifications/event_note-filled.svg-react.js +17 -0
  1103. package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg-react.cjs +19 -0
  1104. package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg-react.js +17 -0
  1105. package/dist/foundation/iconography/svg/notifications/event_note-round.svg-react.cjs +19 -0
  1106. package/dist/foundation/iconography/svg/notifications/event_note-round.svg-react.js +17 -0
  1107. package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg-react.cjs +19 -0
  1108. package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg-react.js +17 -0
  1109. package/dist/foundation/iconography/svg/notifications/index.cjs +41 -28
  1110. package/dist/foundation/iconography/svg/notifications/index.js +36 -32
  1111. package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg-react.cjs +19 -0
  1112. package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg-react.js +17 -0
  1113. package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg-react.cjs +19 -0
  1114. package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg-react.js +17 -0
  1115. package/dist/foundation/iconography/svg/notifications/live_tv-round.svg-react.cjs +19 -0
  1116. package/dist/foundation/iconography/svg/notifications/live_tv-round.svg-react.js +17 -0
  1117. package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg-react.cjs +19 -0
  1118. package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg-react.js +17 -0
  1119. package/dist/foundation/iconography/svg/notifications/wifi-filled.svg-react.cjs +19 -0
  1120. package/dist/foundation/iconography/svg/notifications/wifi-filled.svg-react.js +17 -0
  1121. package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg-react.cjs +19 -0
  1122. package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg-react.js +17 -0
  1123. package/dist/foundation/iconography/svg/notifications/wifi-round.svg-react.cjs +19 -0
  1124. package/dist/foundation/iconography/svg/notifications/wifi-round.svg-react.js +17 -0
  1125. package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg-react.cjs +19 -0
  1126. package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg-react.js +17 -0
  1127. package/dist/foundation/iconography/svg/search/coffee-filled.svg-react.cjs +19 -0
  1128. package/dist/foundation/iconography/svg/search/coffee-filled.svg-react.js +17 -0
  1129. package/dist/foundation/iconography/svg/search/coffee-outlined.svg-react.cjs +19 -0
  1130. package/dist/foundation/iconography/svg/search/coffee-outlined.svg-react.js +17 -0
  1131. package/dist/foundation/iconography/svg/search/coffee-round.svg-react.cjs +19 -0
  1132. package/dist/foundation/iconography/svg/search/coffee-round.svg-react.js +17 -0
  1133. package/dist/foundation/iconography/svg/search/coffee-sharp.svg-react.cjs +19 -0
  1134. package/dist/foundation/iconography/svg/search/coffee-sharp.svg-react.js +17 -0
  1135. package/dist/foundation/iconography/svg/search/index.cjs +31 -19
  1136. package/dist/foundation/iconography/svg/search/index.js +26 -22
  1137. package/dist/foundation/iconography/svg/search/search-filled.svg-react.cjs +19 -0
  1138. package/dist/foundation/iconography/svg/search/search-filled.svg-react.js +17 -0
  1139. package/dist/foundation/iconography/svg/search/search-outlined.svg-react.cjs +19 -0
  1140. package/dist/foundation/iconography/svg/search/search-outlined.svg-react.js +17 -0
  1141. package/dist/foundation/iconography/svg/search/search-round.svg-react.cjs +19 -0
  1142. package/dist/foundation/iconography/svg/search/search-round.svg-react.js +17 -0
  1143. package/dist/foundation/iconography/svg/search/search-sharp.svg-react.cjs +19 -0
  1144. package/dist/foundation/iconography/svg/search/search-sharp.svg-react.js +17 -0
  1145. package/dist/foundation/iconography/svg/social/index.cjs +61 -46
  1146. package/dist/foundation/iconography/svg/social/index.js +56 -52
  1147. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg-react.cjs +19 -0
  1148. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg-react.js +17 -0
  1149. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg-react.cjs +19 -0
  1150. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg-react.js +17 -0
  1151. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg-react.cjs +19 -0
  1152. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg-react.js +17 -0
  1153. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg-react.cjs +19 -0
  1154. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg-react.js +17 -0
  1155. package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg-react.cjs +19 -0
  1156. package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg-react.js +17 -0
  1157. package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg-react.cjs +19 -0
  1158. package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg-react.js +17 -0
  1159. package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg-react.cjs +19 -0
  1160. package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg-react.js +17 -0
  1161. package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg-react.cjs +19 -0
  1162. package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg-react.js +17 -0
  1163. package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg-react.cjs +19 -0
  1164. package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg-react.js +17 -0
  1165. package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg-react.cjs +19 -0
  1166. package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg-react.js +17 -0
  1167. package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg-react.cjs +19 -0
  1168. package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg-react.js +17 -0
  1169. package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg-react.cjs +19 -0
  1170. package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg-react.js +17 -0
  1171. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg-react.cjs +19 -0
  1172. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg-react.js +17 -0
  1173. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg-react.cjs +19 -0
  1174. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg-react.js +17 -0
  1175. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg-react.cjs +19 -0
  1176. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg-react.js +17 -0
  1177. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg-react.cjs +19 -0
  1178. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg-react.js +17 -0
  1179. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg-react.cjs +19 -0
  1180. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg-react.js +17 -0
  1181. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg-react.cjs +19 -0
  1182. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg-react.js +17 -0
  1183. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg-react.cjs +19 -0
  1184. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg-react.js +17 -0
  1185. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg-react.cjs +19 -0
  1186. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg-react.js +17 -0
  1187. package/dist/foundation/iconography/svg/toggle/favorite-filled.svg-react.cjs +19 -0
  1188. package/dist/foundation/iconography/svg/toggle/favorite-filled.svg-react.js +17 -0
  1189. package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg-react.cjs +19 -0
  1190. package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg-react.js +17 -0
  1191. package/dist/foundation/iconography/svg/toggle/favorite-round.svg-react.cjs +19 -0
  1192. package/dist/foundation/iconography/svg/toggle/favorite-round.svg-react.js +17 -0
  1193. package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg-react.cjs +19 -0
  1194. package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg-react.js +17 -0
  1195. package/dist/foundation/iconography/svg/toggle/index.cjs +31 -19
  1196. package/dist/foundation/iconography/svg/toggle/index.js +26 -22
  1197. package/dist/foundation/iconography/svg/toggle/star-filled.svg-react.cjs +19 -0
  1198. package/dist/foundation/iconography/svg/toggle/star-filled.svg-react.js +17 -0
  1199. package/dist/foundation/iconography/svg/toggle/star-outlined.svg-react.cjs +19 -0
  1200. package/dist/foundation/iconography/svg/toggle/star-outlined.svg-react.js +17 -0
  1201. package/dist/foundation/iconography/svg/toggle/star-round.svg-react.cjs +19 -0
  1202. package/dist/foundation/iconography/svg/toggle/star-round.svg-react.js +17 -0
  1203. package/dist/foundation/iconography/svg/toggle/star-sharp.svg-react.cjs +19 -0
  1204. package/dist/foundation/iconography/svg/toggle/star-sharp.svg-react.js +17 -0
  1205. package/dist/foundation/iconography/svg/validation/error-filled.svg-react.cjs +19 -0
  1206. package/dist/foundation/iconography/svg/validation/error-filled.svg-react.js +17 -0
  1207. package/dist/foundation/iconography/svg/validation/error-outlined.svg-react.cjs +19 -0
  1208. package/dist/foundation/iconography/svg/validation/error-outlined.svg-react.js +17 -0
  1209. package/dist/foundation/iconography/svg/validation/error-round.svg-react.cjs +19 -0
  1210. package/dist/foundation/iconography/svg/validation/error-round.svg-react.js +17 -0
  1211. package/dist/foundation/iconography/svg/validation/error-sharp.svg-react.cjs +19 -0
  1212. package/dist/foundation/iconography/svg/validation/error-sharp.svg-react.js +17 -0
  1213. package/dist/foundation/iconography/svg/validation/help-filled.svg-react.cjs +19 -0
  1214. package/dist/foundation/iconography/svg/validation/help-filled.svg-react.js +17 -0
  1215. package/dist/foundation/iconography/svg/validation/help-outlined.svg-react.cjs +19 -0
  1216. package/dist/foundation/iconography/svg/validation/help-outlined.svg-react.js +17 -0
  1217. package/dist/foundation/iconography/svg/validation/help-round.svg-react.cjs +19 -0
  1218. package/dist/foundation/iconography/svg/validation/help-round.svg-react.js +17 -0
  1219. package/dist/foundation/iconography/svg/validation/help-sharp.svg-react.cjs +19 -0
  1220. package/dist/foundation/iconography/svg/validation/help-sharp.svg-react.js +17 -0
  1221. package/dist/foundation/iconography/svg/validation/index.cjs +61 -46
  1222. package/dist/foundation/iconography/svg/validation/index.js +56 -52
  1223. package/dist/foundation/iconography/svg/validation/info-filled.svg-react.cjs +19 -0
  1224. package/dist/foundation/iconography/svg/validation/info-filled.svg-react.js +17 -0
  1225. package/dist/foundation/iconography/svg/validation/info-outlined.svg-react.cjs +19 -0
  1226. package/dist/foundation/iconography/svg/validation/info-outlined.svg-react.js +17 -0
  1227. package/dist/foundation/iconography/svg/validation/info-round.svg-react.cjs +19 -0
  1228. package/dist/foundation/iconography/svg/validation/info-round.svg-react.js +17 -0
  1229. package/dist/foundation/iconography/svg/validation/info-sharp.svg-react.cjs +19 -0
  1230. package/dist/foundation/iconography/svg/validation/info-sharp.svg-react.js +17 -0
  1231. package/dist/foundation/iconography/svg/validation/success-filled.svg-react.cjs +19 -0
  1232. package/dist/foundation/iconography/svg/validation/success-filled.svg-react.js +17 -0
  1233. package/dist/foundation/iconography/svg/validation/success-outlined.svg-react.cjs +19 -0
  1234. package/dist/foundation/iconography/svg/validation/success-outlined.svg-react.js +17 -0
  1235. package/dist/foundation/iconography/svg/validation/success-round.svg-react.cjs +19 -0
  1236. package/dist/foundation/iconography/svg/validation/success-round.svg-react.js +17 -0
  1237. package/dist/foundation/iconography/svg/validation/success-sharp.svg-react.cjs +19 -0
  1238. package/dist/foundation/iconography/svg/validation/success-sharp.svg-react.js +17 -0
  1239. package/dist/foundation/iconography/svg/validation/warning-filled.svg-react.cjs +19 -0
  1240. package/dist/foundation/iconography/svg/validation/warning-filled.svg-react.js +17 -0
  1241. package/dist/foundation/iconography/svg/validation/warning-outlined.svg-react.cjs +19 -0
  1242. package/dist/foundation/iconography/svg/validation/warning-outlined.svg-react.js +17 -0
  1243. package/dist/foundation/iconography/svg/validation/warning-round.svg-react.cjs +19 -0
  1244. package/dist/foundation/iconography/svg/validation/warning-round.svg-react.js +17 -0
  1245. package/dist/foundation/iconography/svg/validation/warning-sharp.svg-react.cjs +19 -0
  1246. package/dist/foundation/iconography/svg/validation/warning-sharp.svg-react.js +17 -0
  1247. package/dist/foundation/index.cjs +23 -22
  1248. package/dist/foundation/index.js +3 -17
  1249. package/dist/foundation/logos/Logo.cjs +47 -35
  1250. package/dist/foundation/logos/Logo.css.cjs +16 -19
  1251. package/dist/foundation/logos/Logo.css.d.ts.map +1 -1
  1252. package/dist/foundation/logos/Logo.css.js +15 -20
  1253. package/dist/foundation/logos/Logo.js +44 -32
  1254. package/dist/foundation/logos/index.cjs +2 -3
  1255. package/dist/foundation/logos/index.js +1 -3
  1256. package/dist/foundation/logos/logos.cjs +33 -32
  1257. package/dist/foundation/logos/logos.js +24 -23
  1258. package/dist/foundation/logos/svg/audi/audi_symbol.svg-react.cjs +51 -0
  1259. package/dist/foundation/logos/svg/audi/audi_symbol.svg-react.js +49 -0
  1260. package/dist/foundation/logos/svg/audi/audi_wordmark.svg-react.cjs +51 -0
  1261. package/dist/foundation/logos/svg/audi/audi_wordmark.svg-react.js +49 -0
  1262. package/dist/foundation/logos/svg/audi/index.cjs +8 -7
  1263. package/dist/foundation/logos/svg/audi/index.js +9 -9
  1264. package/dist/foundation/logos/svg/autoria/autoria_symbol.svg-react.cjs +22 -0
  1265. package/dist/foundation/logos/svg/autoria/autoria_symbol.svg-react.js +20 -0
  1266. package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg-react.cjs +22 -0
  1267. package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg-react.js +20 -0
  1268. package/dist/foundation/logos/svg/autoria/index.cjs +8 -7
  1269. package/dist/foundation/logos/svg/autoria/index.js +9 -9
  1270. package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg-react.cjs +22 -0
  1271. package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg-react.js +20 -0
  1272. package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg-react.cjs +22 -0
  1273. package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg-react.js +20 -0
  1274. package/dist/foundation/logos/svg/bilhold/index.cjs +8 -7
  1275. package/dist/foundation/logos/svg/bilhold/index.js +9 -9
  1276. package/dist/foundation/logos/svg/cupra/cupra_symbol.svg-react.cjs +22 -0
  1277. package/dist/foundation/logos/svg/cupra/cupra_symbol.svg-react.js +20 -0
  1278. package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg-react.cjs +51 -0
  1279. package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg-react.js +49 -0
  1280. package/dist/foundation/logos/svg/cupra/index.cjs +8 -7
  1281. package/dist/foundation/logos/svg/cupra/index.js +9 -9
  1282. package/dist/foundation/logos/svg/dahles/dahles_symbol.svg-react.cjs +61 -0
  1283. package/dist/foundation/logos/svg/dahles/dahles_symbol.svg-react.js +59 -0
  1284. package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg-react.cjs +61 -0
  1285. package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg-react.js +59 -0
  1286. package/dist/foundation/logos/svg/dahles/index.cjs +8 -7
  1287. package/dist/foundation/logos/svg/dahles/index.js +9 -9
  1288. package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg-react.cjs +22 -0
  1289. package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg-react.js +20 -0
  1290. package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg-react.cjs +47 -0
  1291. package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg-react.js +45 -0
  1292. package/dist/foundation/logos/svg/gumpen/index.cjs +8 -7
  1293. package/dist/foundation/logos/svg/gumpen/index.js +9 -9
  1294. package/dist/foundation/logos/svg/index.cjs +29 -30
  1295. package/dist/foundation/logos/svg/index.js +1 -21
  1296. package/dist/foundation/logos/svg/mollerbil/index.cjs +8 -7
  1297. package/dist/foundation/logos/svg/mollerbil/index.js +9 -9
  1298. package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg-react.cjs +22 -0
  1299. package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg-react.js +20 -0
  1300. package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg-react.cjs +57 -0
  1301. package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg-react.js +55 -0
  1302. package/dist/foundation/logos/svg/others/albjerk_wordmark.svg-react.cjs +42 -0
  1303. package/dist/foundation/logos/svg/others/albjerk_wordmark.svg-react.js +40 -0
  1304. package/dist/foundation/logos/svg/others/alta_wordmark.svg-react.cjs +21 -0
  1305. package/dist/foundation/logos/svg/others/alta_wordmark.svg-react.js +19 -0
  1306. package/dist/foundation/logos/svg/others/berge_wordmark.svg-react.cjs +23 -0
  1307. package/dist/foundation/logos/svg/others/berge_wordmark.svg-react.js +21 -0
  1308. package/dist/foundation/logos/svg/others/fremme_wordmark.svg-react.cjs +31 -0
  1309. package/dist/foundation/logos/svg/others/fremme_wordmark.svg-react.js +29 -0
  1310. package/dist/foundation/logos/svg/others/index.cjs +47 -46
  1311. package/dist/foundation/logos/svg/others/index.js +57 -65
  1312. package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg-react.cjs +21 -0
  1313. package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg-react.js +19 -0
  1314. package/dist/foundation/logos/svg/others/mobile_wordmark.svg-react.cjs +30 -0
  1315. package/dist/foundation/logos/svg/others/mobile_wordmark.svg-react.js +28 -0
  1316. package/dist/foundation/logos/svg/others/slatlem_wordmark.svg-react.cjs +24 -0
  1317. package/dist/foundation/logos/svg/others/slatlem_wordmark.svg-react.js +22 -0
  1318. package/dist/foundation/logos/svg/others/sulland_wordmark.svg-react.cjs +63 -0
  1319. package/dist/foundation/logos/svg/others/sulland_wordmark.svg-react.js +61 -0
  1320. package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg-react.cjs +21 -0
  1321. package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg-react.js +19 -0
  1322. package/dist/foundation/logos/svg/skoda/index.cjs +8 -7
  1323. package/dist/foundation/logos/svg/skoda/index.js +9 -9
  1324. package/dist/foundation/logos/svg/skoda/skoda_symbol.svg-react.cjs +22 -0
  1325. package/dist/foundation/logos/svg/skoda/skoda_symbol.svg-react.js +20 -0
  1326. package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg-react.cjs +22 -0
  1327. package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg-react.js +20 -0
  1328. package/dist/foundation/logos/svg/vw/index.cjs +14 -13
  1329. package/dist/foundation/logos/svg/vw/index.js +15 -16
  1330. package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg-react.cjs +29 -0
  1331. package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg-react.js +27 -0
  1332. package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg-react.cjs +29 -0
  1333. package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg-react.js +27 -0
  1334. package/dist/foundation/logos/svg/vw/vw_symbol.svg-react.cjs +22 -0
  1335. package/dist/foundation/logos/svg/vw/vw_symbol.svg-react.js +20 -0
  1336. package/dist/foundation/logos/svg/vw/vw_wordmark.svg-react.cjs +22 -0
  1337. package/dist/foundation/logos/svg/vw/vw_wordmark.svg-react.js +20 -0
  1338. package/dist/foundation/typography/index.cjs +48 -15
  1339. package/dist/foundation/typography/index.js +47 -25
  1340. package/dist/foundation/typography/typography.css.cjs +13 -21
  1341. package/dist/foundation/typography/typography.css.js +12 -28
  1342. package/dist/index.cjs +145 -140
  1343. package/dist/index.js +24 -107
  1344. package/dist/styles/animations.css.cjs +6 -10
  1345. package/dist/styles/animations.css.js +7 -11
  1346. package/dist/styles/states.css.cjs +69 -102
  1347. package/dist/styles/states.css.d.ts.map +1 -1
  1348. package/dist/styles/states.css.js +66 -101
  1349. package/dist/translations/LocalizationProvider.cjs +17 -27
  1350. package/dist/translations/LocalizationProvider.js +14 -10
  1351. package/dist/translations/en.cjs +60 -74
  1352. package/dist/translations/en.js +61 -75
  1353. package/dist/translations/index.cjs +35 -17
  1354. package/dist/translations/index.js +29 -21
  1355. package/dist/translations/no.cjs +60 -74
  1356. package/dist/translations/no.js +61 -75
  1357. package/dist/utilities/accessibility/ScreenReaderOnly.cjs +5 -5
  1358. package/dist/utilities/accessibility/ScreenReaderOnly.js +4 -4
  1359. package/dist/utilities/accessibility/index.cjs +4 -5
  1360. package/dist/utilities/accessibility/index.js +2 -5
  1361. package/dist/utilities/accessibility/visuallyHidden.css.cjs +15 -15
  1362. package/dist/utilities/accessibility/visuallyHidden.css.js +16 -16
  1363. package/dist/utilities/forms/formContext.cjs +61 -41
  1364. package/dist/utilities/forms/formContext.js +58 -23
  1365. package/dist/utilities/forms/formHelpers.cjs +60 -46
  1366. package/dist/utilities/forms/formHelpers.js +58 -47
  1367. package/dist/utilities/forms/formInputs.cjs +16 -17
  1368. package/dist/utilities/forms/formInputs.js +17 -18
  1369. package/dist/utilities/forms/index.cjs +7 -8
  1370. package/dist/utilities/forms/index.js +1 -6
  1371. package/dist/utilities/forms/internal/components.cjs +67 -75
  1372. package/dist/utilities/forms/internal/components.js +61 -75
  1373. package/dist/utilities/forms/useFormProps.cjs +25 -28
  1374. package/dist/utilities/forms/useFormProps.js +24 -27
  1375. package/dist/utilities/forms/useLocalFormState.cjs +77 -72
  1376. package/dist/utilities/forms/useLocalFormState.js +76 -72
  1377. package/dist/utilities/html/index.cjs +3 -2
  1378. package/dist/utilities/html/index.js +4 -4
  1379. package/dist/utilities/index.cjs +18 -18
  1380. package/dist/utilities/index.js +3 -16
  1381. package/dist/utilities/layout/Column.cjs +5 -5
  1382. package/dist/utilities/layout/Column.js +5 -5
  1383. package/dist/utilities/layout/Row.cjs +5 -5
  1384. package/dist/utilities/layout/Row.js +5 -5
  1385. package/dist/utilities/layout/breakpoints.cjs +5 -5
  1386. package/dist/utilities/layout/breakpoints.js +6 -8
  1387. package/dist/utilities/layout/index.cjs +8 -9
  1388. package/dist/utilities/layout/index.js +1 -7
  1389. package/dist/utilities/layout/styles.css.cjs +100 -100
  1390. package/dist/utilities/layout/styles.css.js +99 -100
  1391. package/dist/utilities/time/date.cjs +387 -388
  1392. package/dist/utilities/time/date.js +388 -397
  1393. package/dist/utilities/time/index.cjs +10 -11
  1394. package/dist/utilities/time/index.js +1 -11
  1395. package/dist/utilities/tokens/index.cjs +4 -5
  1396. package/dist/utilities/tokens/index.js +1 -5
  1397. package/dist/utilities/tokens/tokens.cjs +8 -10
  1398. package/dist/utilities/tokens/tokens.js +9 -13
  1399. package/dist/utilities/validation/index.cjs +24 -25
  1400. package/dist/utilities/validation/index.js +2 -24
  1401. package/dist/utilities/validation/regex.cjs +9 -11
  1402. package/dist/utilities/validation/regex.js +10 -18
  1403. package/dist/utilities/validation/validation.cjs +109 -93
  1404. package/dist/utilities/validation/validation.js +109 -101
  1405. package/dist/utilities/validation/validationSteps.cjs +12 -12
  1406. package/dist/utilities/validation/validationSteps.js +12 -14
  1407. package/dist/utilities/validation/validators.cjs +42 -66
  1408. package/dist/utilities/validation/validators.js +42 -74
  1409. package/package.json +7 -7
  1410. package/dist/fonts/bilhold/Figtree-Bold.woff2.cjs +0 -5
  1411. package/dist/fonts/bilhold/Figtree-Bold.woff2.js +0 -5
  1412. package/dist/fonts/bilhold/Figtree-Medium.woff2.cjs +0 -5
  1413. package/dist/fonts/bilhold/Figtree-Medium.woff2.js +0 -5
  1414. package/dist/fonts/bilhold/Figtree-Regular.woff2.cjs +0 -5
  1415. package/dist/fonts/bilhold/Figtree-Regular.woff2.js +0 -5
  1416. package/dist/fonts/bilhold/Figtree-SemiBold.woff2.cjs +0 -5
  1417. package/dist/fonts/bilhold/Figtree-SemiBold.woff2.js +0 -5
  1418. package/dist/fonts/bilhold/bold.css.cjs +0 -10
  1419. package/dist/fonts/bilhold/bold.css.d.ts +0 -2
  1420. package/dist/fonts/bilhold/bold.css.d.ts.map +0 -1
  1421. package/dist/fonts/bilhold/bold.css.js +0 -9
  1422. package/dist/fonts/bilhold/medium.css.cjs +0 -10
  1423. package/dist/fonts/bilhold/medium.css.d.ts +0 -2
  1424. package/dist/fonts/bilhold/medium.css.d.ts.map +0 -1
  1425. package/dist/fonts/bilhold/medium.css.js +0 -9
  1426. package/dist/fonts/bilhold/semibold.css.cjs +0 -10
  1427. package/dist/fonts/bilhold/semibold.css.d.ts +0 -2
  1428. package/dist/fonts/bilhold/semibold.css.d.ts.map +0 -1
  1429. package/dist/fonts/bilhold/semibold.css.js +0 -9
  1430. package/dist/foundation/iconography/svg/action/assignment-filled.svg.cjs +0 -28
  1431. package/dist/foundation/iconography/svg/action/assignment-filled.svg.js +0 -10
  1432. package/dist/foundation/iconography/svg/action/assignment-outlined.svg.cjs +0 -28
  1433. package/dist/foundation/iconography/svg/action/assignment-outlined.svg.js +0 -10
  1434. package/dist/foundation/iconography/svg/action/assignment-round.svg.cjs +0 -28
  1435. package/dist/foundation/iconography/svg/action/assignment-round.svg.js +0 -10
  1436. package/dist/foundation/iconography/svg/action/assignment-sharp.svg.cjs +0 -28
  1437. package/dist/foundation/iconography/svg/action/assignment-sharp.svg.js +0 -10
  1438. package/dist/foundation/iconography/svg/action/automatic_gear-filled.svg.cjs +0 -28
  1439. package/dist/foundation/iconography/svg/action/automatic_gear-filled.svg.js +0 -10
  1440. package/dist/foundation/iconography/svg/action/automatic_gear-outlined.svg.cjs +0 -28
  1441. package/dist/foundation/iconography/svg/action/automatic_gear-outlined.svg.js +0 -10
  1442. package/dist/foundation/iconography/svg/action/automatic_gear-round.svg.cjs +0 -28
  1443. package/dist/foundation/iconography/svg/action/automatic_gear-round.svg.js +0 -10
  1444. package/dist/foundation/iconography/svg/action/automatic_gear-sharp.svg.cjs +0 -28
  1445. package/dist/foundation/iconography/svg/action/automatic_gear-sharp.svg.js +0 -10
  1446. package/dist/foundation/iconography/svg/action/binoculars-filled.svg.cjs +0 -28
  1447. package/dist/foundation/iconography/svg/action/binoculars-filled.svg.js +0 -10
  1448. package/dist/foundation/iconography/svg/action/binoculars-outlined.svg.cjs +0 -28
  1449. package/dist/foundation/iconography/svg/action/binoculars-outlined.svg.js +0 -10
  1450. package/dist/foundation/iconography/svg/action/binoculars-round.svg.cjs +0 -28
  1451. package/dist/foundation/iconography/svg/action/binoculars-round.svg.js +0 -10
  1452. package/dist/foundation/iconography/svg/action/binoculars-sharp.svg.cjs +0 -28
  1453. package/dist/foundation/iconography/svg/action/binoculars-sharp.svg.js +0 -10
  1454. package/dist/foundation/iconography/svg/action/bolt-filled.svg.cjs +0 -28
  1455. package/dist/foundation/iconography/svg/action/bolt-filled.svg.js +0 -10
  1456. package/dist/foundation/iconography/svg/action/bolt-outlined.svg.cjs +0 -28
  1457. package/dist/foundation/iconography/svg/action/bolt-outlined.svg.js +0 -10
  1458. package/dist/foundation/iconography/svg/action/bolt-round.svg.cjs +0 -28
  1459. package/dist/foundation/iconography/svg/action/bolt-round.svg.js +0 -10
  1460. package/dist/foundation/iconography/svg/action/bolt-sharp.svg.cjs +0 -28
  1461. package/dist/foundation/iconography/svg/action/bolt-sharp.svg.js +0 -10
  1462. package/dist/foundation/iconography/svg/action/build-filled.svg.cjs +0 -28
  1463. package/dist/foundation/iconography/svg/action/build-filled.svg.js +0 -10
  1464. package/dist/foundation/iconography/svg/action/build-outlined.svg.cjs +0 -28
  1465. package/dist/foundation/iconography/svg/action/build-outlined.svg.js +0 -10
  1466. package/dist/foundation/iconography/svg/action/build-round.svg.cjs +0 -28
  1467. package/dist/foundation/iconography/svg/action/build-round.svg.js +0 -10
  1468. package/dist/foundation/iconography/svg/action/build-sharp.svg.cjs +0 -28
  1469. package/dist/foundation/iconography/svg/action/build-sharp.svg.js +0 -10
  1470. package/dist/foundation/iconography/svg/action/calculate-filled.svg.cjs +0 -28
  1471. package/dist/foundation/iconography/svg/action/calculate-filled.svg.js +0 -10
  1472. package/dist/foundation/iconography/svg/action/calculate-outlined.svg.cjs +0 -28
  1473. package/dist/foundation/iconography/svg/action/calculate-outlined.svg.js +0 -10
  1474. package/dist/foundation/iconography/svg/action/calculate-round.svg.cjs +0 -28
  1475. package/dist/foundation/iconography/svg/action/calculate-round.svg.js +0 -10
  1476. package/dist/foundation/iconography/svg/action/calculate-sharp.svg.cjs +0 -28
  1477. package/dist/foundation/iconography/svg/action/calculate-sharp.svg.js +0 -10
  1478. package/dist/foundation/iconography/svg/action/calendar-filled.svg.cjs +0 -28
  1479. package/dist/foundation/iconography/svg/action/calendar-filled.svg.js +0 -10
  1480. package/dist/foundation/iconography/svg/action/calendar-outlined.svg.cjs +0 -28
  1481. package/dist/foundation/iconography/svg/action/calendar-outlined.svg.js +0 -10
  1482. package/dist/foundation/iconography/svg/action/calendar-round.svg.cjs +0 -28
  1483. package/dist/foundation/iconography/svg/action/calendar-round.svg.js +0 -10
  1484. package/dist/foundation/iconography/svg/action/calendar-sharp.svg.cjs +0 -28
  1485. package/dist/foundation/iconography/svg/action/calendar-sharp.svg.js +0 -10
  1486. package/dist/foundation/iconography/svg/action/car-filled.svg.cjs +0 -28
  1487. package/dist/foundation/iconography/svg/action/car-filled.svg.js +0 -10
  1488. package/dist/foundation/iconography/svg/action/car-outlined.svg.cjs +0 -28
  1489. package/dist/foundation/iconography/svg/action/car-outlined.svg.js +0 -10
  1490. package/dist/foundation/iconography/svg/action/car-round.svg.cjs +0 -28
  1491. package/dist/foundation/iconography/svg/action/car-round.svg.js +0 -10
  1492. package/dist/foundation/iconography/svg/action/car-sharp.svg.cjs +0 -28
  1493. package/dist/foundation/iconography/svg/action/car-sharp.svg.js +0 -10
  1494. package/dist/foundation/iconography/svg/action/car_crash-filled.svg.cjs +0 -28
  1495. package/dist/foundation/iconography/svg/action/car_crash-filled.svg.js +0 -10
  1496. package/dist/foundation/iconography/svg/action/car_crash-outlined.svg.cjs +0 -28
  1497. package/dist/foundation/iconography/svg/action/car_crash-outlined.svg.js +0 -10
  1498. package/dist/foundation/iconography/svg/action/car_crash-round.svg.cjs +0 -28
  1499. package/dist/foundation/iconography/svg/action/car_crash-round.svg.js +0 -10
  1500. package/dist/foundation/iconography/svg/action/car_crash-sharp.svg.cjs +0 -28
  1501. package/dist/foundation/iconography/svg/action/car_crash-sharp.svg.js +0 -10
  1502. package/dist/foundation/iconography/svg/action/change-filled.svg.cjs +0 -28
  1503. package/dist/foundation/iconography/svg/action/change-filled.svg.js +0 -10
  1504. package/dist/foundation/iconography/svg/action/change-outlined.svg.cjs +0 -28
  1505. package/dist/foundation/iconography/svg/action/change-outlined.svg.js +0 -10
  1506. package/dist/foundation/iconography/svg/action/change-round.svg.cjs +0 -28
  1507. package/dist/foundation/iconography/svg/action/change-round.svg.js +0 -10
  1508. package/dist/foundation/iconography/svg/action/change-sharp.svg.cjs +0 -28
  1509. package/dist/foundation/iconography/svg/action/change-sharp.svg.js +0 -10
  1510. package/dist/foundation/iconography/svg/action/code-filled.svg.cjs +0 -28
  1511. package/dist/foundation/iconography/svg/action/code-filled.svg.js +0 -10
  1512. package/dist/foundation/iconography/svg/action/code-outlined.svg.cjs +0 -28
  1513. package/dist/foundation/iconography/svg/action/code-outlined.svg.js +0 -10
  1514. package/dist/foundation/iconography/svg/action/code-round.svg.cjs +0 -28
  1515. package/dist/foundation/iconography/svg/action/code-round.svg.js +0 -10
  1516. package/dist/foundation/iconography/svg/action/code-sharp.svg.cjs +0 -28
  1517. package/dist/foundation/iconography/svg/action/code-sharp.svg.js +0 -10
  1518. package/dist/foundation/iconography/svg/action/contract-filled.svg.cjs +0 -28
  1519. package/dist/foundation/iconography/svg/action/contract-filled.svg.js +0 -10
  1520. package/dist/foundation/iconography/svg/action/contract-outlined.svg.cjs +0 -28
  1521. package/dist/foundation/iconography/svg/action/contract-outlined.svg.js +0 -10
  1522. package/dist/foundation/iconography/svg/action/contract-round.svg.cjs +0 -28
  1523. package/dist/foundation/iconography/svg/action/contract-round.svg.js +0 -10
  1524. package/dist/foundation/iconography/svg/action/contract-sharp.svg.cjs +0 -28
  1525. package/dist/foundation/iconography/svg/action/contract-sharp.svg.js +0 -10
  1526. package/dist/foundation/iconography/svg/action/edit-filled.svg.cjs +0 -28
  1527. package/dist/foundation/iconography/svg/action/edit-filled.svg.js +0 -10
  1528. package/dist/foundation/iconography/svg/action/edit-outlined.svg.cjs +0 -28
  1529. package/dist/foundation/iconography/svg/action/edit-outlined.svg.js +0 -10
  1530. package/dist/foundation/iconography/svg/action/edit-round.svg.cjs +0 -28
  1531. package/dist/foundation/iconography/svg/action/edit-round.svg.js +0 -10
  1532. package/dist/foundation/iconography/svg/action/edit-sharp.svg.cjs +0 -28
  1533. package/dist/foundation/iconography/svg/action/edit-sharp.svg.js +0 -10
  1534. package/dist/foundation/iconography/svg/action/electric_car-filled.svg.cjs +0 -28
  1535. package/dist/foundation/iconography/svg/action/electric_car-filled.svg.js +0 -10
  1536. package/dist/foundation/iconography/svg/action/electric_car-outlined.svg.cjs +0 -28
  1537. package/dist/foundation/iconography/svg/action/electric_car-outlined.svg.js +0 -10
  1538. package/dist/foundation/iconography/svg/action/electric_car-round.svg.cjs +0 -28
  1539. package/dist/foundation/iconography/svg/action/electric_car-round.svg.js +0 -10
  1540. package/dist/foundation/iconography/svg/action/electric_car-sharp.svg.cjs +0 -28
  1541. package/dist/foundation/iconography/svg/action/electric_car-sharp.svg.js +0 -10
  1542. package/dist/foundation/iconography/svg/action/explore-filled.svg.cjs +0 -28
  1543. package/dist/foundation/iconography/svg/action/explore-filled.svg.js +0 -10
  1544. package/dist/foundation/iconography/svg/action/explore-outlined.svg.cjs +0 -28
  1545. package/dist/foundation/iconography/svg/action/explore-outlined.svg.js +0 -10
  1546. package/dist/foundation/iconography/svg/action/explore-round.svg.cjs +0 -28
  1547. package/dist/foundation/iconography/svg/action/explore-round.svg.js +0 -10
  1548. package/dist/foundation/iconography/svg/action/explore-sharp.svg.cjs +0 -28
  1549. package/dist/foundation/iconography/svg/action/explore-sharp.svg.js +0 -10
  1550. package/dist/foundation/iconography/svg/action/glass_damage-filled.svg.cjs +0 -28
  1551. package/dist/foundation/iconography/svg/action/glass_damage-filled.svg.js +0 -10
  1552. package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg.cjs +0 -28
  1553. package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg.js +0 -10
  1554. package/dist/foundation/iconography/svg/action/glass_damage-round.svg.cjs +0 -28
  1555. package/dist/foundation/iconography/svg/action/glass_damage-round.svg.js +0 -10
  1556. package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg.cjs +0 -28
  1557. package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg.js +0 -10
  1558. package/dist/foundation/iconography/svg/action/home-filled.svg.cjs +0 -28
  1559. package/dist/foundation/iconography/svg/action/home-filled.svg.js +0 -10
  1560. package/dist/foundation/iconography/svg/action/home-outlined.svg.cjs +0 -28
  1561. package/dist/foundation/iconography/svg/action/home-outlined.svg.js +0 -10
  1562. package/dist/foundation/iconography/svg/action/home-round.svg.cjs +0 -28
  1563. package/dist/foundation/iconography/svg/action/home-round.svg.js +0 -10
  1564. package/dist/foundation/iconography/svg/action/home-sharp.svg.cjs +0 -28
  1565. package/dist/foundation/iconography/svg/action/home-sharp.svg.js +0 -10
  1566. package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg.cjs +0 -28
  1567. package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg.js +0 -10
  1568. package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg.cjs +0 -28
  1569. package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg.js +0 -10
  1570. package/dist/foundation/iconography/svg/action/image_not_supported-round.svg.cjs +0 -28
  1571. package/dist/foundation/iconography/svg/action/image_not_supported-round.svg.js +0 -10
  1572. package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg.cjs +0 -28
  1573. package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg.js +0 -10
  1574. package/dist/foundation/iconography/svg/action/lightbulb-filled.svg.cjs +0 -28
  1575. package/dist/foundation/iconography/svg/action/lightbulb-filled.svg.js +0 -10
  1576. package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg.cjs +0 -28
  1577. package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg.js +0 -10
  1578. package/dist/foundation/iconography/svg/action/lightbulb-round.svg.cjs +0 -28
  1579. package/dist/foundation/iconography/svg/action/lightbulb-round.svg.js +0 -10
  1580. package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg.cjs +0 -28
  1581. package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg.js +0 -10
  1582. package/dist/foundation/iconography/svg/action/login-filled.svg.cjs +0 -28
  1583. package/dist/foundation/iconography/svg/action/login-filled.svg.js +0 -10
  1584. package/dist/foundation/iconography/svg/action/login-outlined.svg.cjs +0 -28
  1585. package/dist/foundation/iconography/svg/action/login-outlined.svg.js +0 -10
  1586. package/dist/foundation/iconography/svg/action/login-round.svg.cjs +0 -28
  1587. package/dist/foundation/iconography/svg/action/login-round.svg.js +0 -10
  1588. package/dist/foundation/iconography/svg/action/login-sharp.svg.cjs +0 -28
  1589. package/dist/foundation/iconography/svg/action/login-sharp.svg.js +0 -10
  1590. package/dist/foundation/iconography/svg/action/logout-filled.svg.cjs +0 -28
  1591. package/dist/foundation/iconography/svg/action/logout-filled.svg.js +0 -10
  1592. package/dist/foundation/iconography/svg/action/logout-outlined.svg.cjs +0 -28
  1593. package/dist/foundation/iconography/svg/action/logout-outlined.svg.js +0 -10
  1594. package/dist/foundation/iconography/svg/action/logout-round.svg.cjs +0 -28
  1595. package/dist/foundation/iconography/svg/action/logout-round.svg.js +0 -10
  1596. package/dist/foundation/iconography/svg/action/logout-sharp.svg.cjs +0 -28
  1597. package/dist/foundation/iconography/svg/action/logout-sharp.svg.js +0 -10
  1598. package/dist/foundation/iconography/svg/action/manual_gear-filled.svg.cjs +0 -28
  1599. package/dist/foundation/iconography/svg/action/manual_gear-filled.svg.js +0 -10
  1600. package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg.cjs +0 -28
  1601. package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg.js +0 -10
  1602. package/dist/foundation/iconography/svg/action/manual_gear-round.svg.cjs +0 -28
  1603. package/dist/foundation/iconography/svg/action/manual_gear-round.svg.js +0 -10
  1604. package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg.cjs +0 -28
  1605. package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg.js +0 -10
  1606. package/dist/foundation/iconography/svg/action/minor_crash-filled.svg.cjs +0 -28
  1607. package/dist/foundation/iconography/svg/action/minor_crash-filled.svg.js +0 -10
  1608. package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg.cjs +0 -28
  1609. package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg.js +0 -10
  1610. package/dist/foundation/iconography/svg/action/minor_crash-round.svg.cjs +0 -28
  1611. package/dist/foundation/iconography/svg/action/minor_crash-round.svg.js +0 -10
  1612. package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg.cjs +0 -28
  1613. package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg.js +0 -10
  1614. package/dist/foundation/iconography/svg/action/notifications-filled.svg.cjs +0 -28
  1615. package/dist/foundation/iconography/svg/action/notifications-filled.svg.js +0 -10
  1616. package/dist/foundation/iconography/svg/action/notifications-outlined.svg.cjs +0 -28
  1617. package/dist/foundation/iconography/svg/action/notifications-outlined.svg.js +0 -10
  1618. package/dist/foundation/iconography/svg/action/notifications-round.svg.cjs +0 -28
  1619. package/dist/foundation/iconography/svg/action/notifications-round.svg.js +0 -10
  1620. package/dist/foundation/iconography/svg/action/notifications-sharp.svg.cjs +0 -28
  1621. package/dist/foundation/iconography/svg/action/notifications-sharp.svg.js +0 -10
  1622. package/dist/foundation/iconography/svg/action/payment-filled.svg.cjs +0 -28
  1623. package/dist/foundation/iconography/svg/action/payment-filled.svg.js +0 -10
  1624. package/dist/foundation/iconography/svg/action/payment-outlined.svg.cjs +0 -28
  1625. package/dist/foundation/iconography/svg/action/payment-outlined.svg.js +0 -10
  1626. package/dist/foundation/iconography/svg/action/payment-round.svg.cjs +0 -28
  1627. package/dist/foundation/iconography/svg/action/payment-round.svg.js +0 -10
  1628. package/dist/foundation/iconography/svg/action/payment-sharp.svg.cjs +0 -28
  1629. package/dist/foundation/iconography/svg/action/payment-sharp.svg.js +0 -10
  1630. package/dist/foundation/iconography/svg/action/pets-filled.svg.cjs +0 -28
  1631. package/dist/foundation/iconography/svg/action/pets-filled.svg.js +0 -10
  1632. package/dist/foundation/iconography/svg/action/pets-outlined.svg.cjs +0 -28
  1633. package/dist/foundation/iconography/svg/action/pets-outlined.svg.js +0 -10
  1634. package/dist/foundation/iconography/svg/action/pets-round.svg.cjs +0 -28
  1635. package/dist/foundation/iconography/svg/action/pets-round.svg.js +0 -10
  1636. package/dist/foundation/iconography/svg/action/pets-sharp.svg.cjs +0 -28
  1637. package/dist/foundation/iconography/svg/action/pets-sharp.svg.js +0 -10
  1638. package/dist/foundation/iconography/svg/action/play_circle-filled.svg.cjs +0 -28
  1639. package/dist/foundation/iconography/svg/action/play_circle-filled.svg.js +0 -10
  1640. package/dist/foundation/iconography/svg/action/play_circle-outlined.svg.cjs +0 -28
  1641. package/dist/foundation/iconography/svg/action/play_circle-outlined.svg.js +0 -10
  1642. package/dist/foundation/iconography/svg/action/play_circle-round.svg.cjs +0 -28
  1643. package/dist/foundation/iconography/svg/action/play_circle-round.svg.js +0 -10
  1644. package/dist/foundation/iconography/svg/action/play_circle-sharp.svg.cjs +0 -28
  1645. package/dist/foundation/iconography/svg/action/play_circle-sharp.svg.js +0 -10
  1646. package/dist/foundation/iconography/svg/action/print-filled.svg.cjs +0 -28
  1647. package/dist/foundation/iconography/svg/action/print-filled.svg.js +0 -10
  1648. package/dist/foundation/iconography/svg/action/print-outlined.svg.cjs +0 -28
  1649. package/dist/foundation/iconography/svg/action/print-outlined.svg.js +0 -10
  1650. package/dist/foundation/iconography/svg/action/print-round.svg.cjs +0 -28
  1651. package/dist/foundation/iconography/svg/action/print-round.svg.js +0 -10
  1652. package/dist/foundation/iconography/svg/action/print-sharp.svg.cjs +0 -28
  1653. package/dist/foundation/iconography/svg/action/print-sharp.svg.js +0 -10
  1654. package/dist/foundation/iconography/svg/action/query_stats-filled.svg.cjs +0 -28
  1655. package/dist/foundation/iconography/svg/action/query_stats-filled.svg.js +0 -10
  1656. package/dist/foundation/iconography/svg/action/query_stats-outlined.svg.cjs +0 -28
  1657. package/dist/foundation/iconography/svg/action/query_stats-outlined.svg.js +0 -10
  1658. package/dist/foundation/iconography/svg/action/query_stats-round.svg.cjs +0 -28
  1659. package/dist/foundation/iconography/svg/action/query_stats-round.svg.js +0 -10
  1660. package/dist/foundation/iconography/svg/action/query_stats-sharp.svg.cjs +0 -28
  1661. package/dist/foundation/iconography/svg/action/query_stats-sharp.svg.js +0 -10
  1662. package/dist/foundation/iconography/svg/action/savings-filled.svg.cjs +0 -28
  1663. package/dist/foundation/iconography/svg/action/savings-filled.svg.js +0 -10
  1664. package/dist/foundation/iconography/svg/action/savings-outlined.svg.cjs +0 -28
  1665. package/dist/foundation/iconography/svg/action/savings-outlined.svg.js +0 -10
  1666. package/dist/foundation/iconography/svg/action/savings-round.svg.cjs +0 -28
  1667. package/dist/foundation/iconography/svg/action/savings-round.svg.js +0 -10
  1668. package/dist/foundation/iconography/svg/action/savings-sharp.svg.cjs +0 -28
  1669. package/dist/foundation/iconography/svg/action/savings-sharp.svg.js +0 -10
  1670. package/dist/foundation/iconography/svg/action/schedule-filled.svg.cjs +0 -28
  1671. package/dist/foundation/iconography/svg/action/schedule-filled.svg.js +0 -10
  1672. package/dist/foundation/iconography/svg/action/schedule-outlined.svg.cjs +0 -28
  1673. package/dist/foundation/iconography/svg/action/schedule-outlined.svg.js +0 -10
  1674. package/dist/foundation/iconography/svg/action/schedule-round.svg.cjs +0 -28
  1675. package/dist/foundation/iconography/svg/action/schedule-round.svg.js +0 -10
  1676. package/dist/foundation/iconography/svg/action/schedule-sharp.svg.cjs +0 -28
  1677. package/dist/foundation/iconography/svg/action/schedule-sharp.svg.js +0 -10
  1678. package/dist/foundation/iconography/svg/action/settings-filled.svg.cjs +0 -28
  1679. package/dist/foundation/iconography/svg/action/settings-filled.svg.js +0 -10
  1680. package/dist/foundation/iconography/svg/action/settings-outlined.svg.cjs +0 -28
  1681. package/dist/foundation/iconography/svg/action/settings-outlined.svg.js +0 -10
  1682. package/dist/foundation/iconography/svg/action/settings-round.svg.cjs +0 -28
  1683. package/dist/foundation/iconography/svg/action/settings-round.svg.js +0 -10
  1684. package/dist/foundation/iconography/svg/action/settings-sharp.svg.cjs +0 -28
  1685. package/dist/foundation/iconography/svg/action/settings-sharp.svg.js +0 -10
  1686. package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg.cjs +0 -28
  1687. package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg.js +0 -10
  1688. package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg.cjs +0 -28
  1689. package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg.js +0 -10
  1690. package/dist/foundation/iconography/svg/action/shopping_cart-round.svg.cjs +0 -28
  1691. package/dist/foundation/iconography/svg/action/shopping_cart-round.svg.js +0 -10
  1692. package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg.cjs +0 -28
  1693. package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg.js +0 -10
  1694. package/dist/foundation/iconography/svg/action/signature-filled.svg.cjs +0 -28
  1695. package/dist/foundation/iconography/svg/action/signature-filled.svg.js +0 -10
  1696. package/dist/foundation/iconography/svg/action/signature-outlined.svg.cjs +0 -28
  1697. package/dist/foundation/iconography/svg/action/signature-outlined.svg.js +0 -10
  1698. package/dist/foundation/iconography/svg/action/signature-round.svg.cjs +0 -28
  1699. package/dist/foundation/iconography/svg/action/signature-round.svg.js +0 -10
  1700. package/dist/foundation/iconography/svg/action/signature-sharp.svg.cjs +0 -28
  1701. package/dist/foundation/iconography/svg/action/signature-sharp.svg.js +0 -10
  1702. package/dist/foundation/iconography/svg/action/sort-filled.svg.cjs +0 -28
  1703. package/dist/foundation/iconography/svg/action/sort-filled.svg.js +0 -10
  1704. package/dist/foundation/iconography/svg/action/sort-outlined.svg.cjs +0 -28
  1705. package/dist/foundation/iconography/svg/action/sort-outlined.svg.js +0 -10
  1706. package/dist/foundation/iconography/svg/action/sort-round.svg.cjs +0 -28
  1707. package/dist/foundation/iconography/svg/action/sort-round.svg.js +0 -10
  1708. package/dist/foundation/iconography/svg/action/sort-sharp.svg.cjs +0 -28
  1709. package/dist/foundation/iconography/svg/action/sort-sharp.svg.js +0 -10
  1710. package/dist/foundation/iconography/svg/action/speed-filled.svg.cjs +0 -28
  1711. package/dist/foundation/iconography/svg/action/speed-filled.svg.js +0 -10
  1712. package/dist/foundation/iconography/svg/action/speed-outlined.svg.cjs +0 -28
  1713. package/dist/foundation/iconography/svg/action/speed-outlined.svg.js +0 -10
  1714. package/dist/foundation/iconography/svg/action/speed-round.svg.cjs +0 -28
  1715. package/dist/foundation/iconography/svg/action/speed-round.svg.js +0 -10
  1716. package/dist/foundation/iconography/svg/action/speed-sharp.svg.cjs +0 -28
  1717. package/dist/foundation/iconography/svg/action/speed-sharp.svg.js +0 -10
  1718. package/dist/foundation/iconography/svg/action/tire-filled.svg.cjs +0 -28
  1719. package/dist/foundation/iconography/svg/action/tire-filled.svg.js +0 -10
  1720. package/dist/foundation/iconography/svg/action/tire-outlined.svg.cjs +0 -28
  1721. package/dist/foundation/iconography/svg/action/tire-outlined.svg.js +0 -10
  1722. package/dist/foundation/iconography/svg/action/tire-round.svg.cjs +0 -28
  1723. package/dist/foundation/iconography/svg/action/tire-round.svg.js +0 -10
  1724. package/dist/foundation/iconography/svg/action/tire-sharp.svg.cjs +0 -28
  1725. package/dist/foundation/iconography/svg/action/tire-sharp.svg.js +0 -10
  1726. package/dist/foundation/iconography/svg/action/trash-filled.svg.cjs +0 -28
  1727. package/dist/foundation/iconography/svg/action/trash-filled.svg.js +0 -10
  1728. package/dist/foundation/iconography/svg/action/trash-outlined.svg.cjs +0 -28
  1729. package/dist/foundation/iconography/svg/action/trash-outlined.svg.js +0 -10
  1730. package/dist/foundation/iconography/svg/action/trash-round.svg.cjs +0 -28
  1731. package/dist/foundation/iconography/svg/action/trash-round.svg.js +0 -10
  1732. package/dist/foundation/iconography/svg/action/trash-sharp.svg.cjs +0 -28
  1733. package/dist/foundation/iconography/svg/action/trash-sharp.svg.js +0 -10
  1734. package/dist/foundation/iconography/svg/action/tune-filled.svg.cjs +0 -28
  1735. package/dist/foundation/iconography/svg/action/tune-filled.svg.js +0 -10
  1736. package/dist/foundation/iconography/svg/action/tune-outlined.svg.cjs +0 -28
  1737. package/dist/foundation/iconography/svg/action/tune-outlined.svg.js +0 -10
  1738. package/dist/foundation/iconography/svg/action/tune-round.svg.cjs +0 -28
  1739. package/dist/foundation/iconography/svg/action/tune-round.svg.js +0 -10
  1740. package/dist/foundation/iconography/svg/action/tune-sharp.svg.cjs +0 -28
  1741. package/dist/foundation/iconography/svg/action/tune-sharp.svg.js +0 -10
  1742. package/dist/foundation/iconography/svg/action/verified-filled.svg.cjs +0 -28
  1743. package/dist/foundation/iconography/svg/action/verified-filled.svg.js +0 -10
  1744. package/dist/foundation/iconography/svg/action/verified-outlined.svg.cjs +0 -28
  1745. package/dist/foundation/iconography/svg/action/verified-outlined.svg.js +0 -10
  1746. package/dist/foundation/iconography/svg/action/verified-round.svg.cjs +0 -28
  1747. package/dist/foundation/iconography/svg/action/verified-round.svg.js +0 -10
  1748. package/dist/foundation/iconography/svg/action/verified-sharp.svg.cjs +0 -28
  1749. package/dist/foundation/iconography/svg/action/verified-sharp.svg.js +0 -10
  1750. package/dist/foundation/iconography/svg/action/visibility_off-filled.svg.cjs +0 -28
  1751. package/dist/foundation/iconography/svg/action/visibility_off-filled.svg.js +0 -10
  1752. package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg.cjs +0 -28
  1753. package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg.js +0 -10
  1754. package/dist/foundation/iconography/svg/action/visibility_off-round.svg.cjs +0 -28
  1755. package/dist/foundation/iconography/svg/action/visibility_off-round.svg.js +0 -10
  1756. package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg.cjs +0 -28
  1757. package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg.js +0 -10
  1758. package/dist/foundation/iconography/svg/action/visibility_on-filled.svg.cjs +0 -28
  1759. package/dist/foundation/iconography/svg/action/visibility_on-filled.svg.js +0 -10
  1760. package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg.cjs +0 -28
  1761. package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg.js +0 -10
  1762. package/dist/foundation/iconography/svg/action/visibility_on-round.svg.cjs +0 -28
  1763. package/dist/foundation/iconography/svg/action/visibility_on-round.svg.js +0 -10
  1764. package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg.cjs +0 -28
  1765. package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg.js +0 -10
  1766. package/dist/foundation/iconography/svg/communication/call-filled.svg.cjs +0 -28
  1767. package/dist/foundation/iconography/svg/communication/call-filled.svg.js +0 -10
  1768. package/dist/foundation/iconography/svg/communication/call-outlined.svg.cjs +0 -28
  1769. package/dist/foundation/iconography/svg/communication/call-outlined.svg.js +0 -10
  1770. package/dist/foundation/iconography/svg/communication/call-round.svg.cjs +0 -28
  1771. package/dist/foundation/iconography/svg/communication/call-round.svg.js +0 -10
  1772. package/dist/foundation/iconography/svg/communication/call-sharp.svg.cjs +0 -28
  1773. package/dist/foundation/iconography/svg/communication/call-sharp.svg.js +0 -10
  1774. package/dist/foundation/iconography/svg/communication/chat-filled.svg.cjs +0 -28
  1775. package/dist/foundation/iconography/svg/communication/chat-filled.svg.js +0 -10
  1776. package/dist/foundation/iconography/svg/communication/chat-outlined.svg.cjs +0 -28
  1777. package/dist/foundation/iconography/svg/communication/chat-outlined.svg.js +0 -10
  1778. package/dist/foundation/iconography/svg/communication/chat-round.svg.cjs +0 -28
  1779. package/dist/foundation/iconography/svg/communication/chat-round.svg.js +0 -10
  1780. package/dist/foundation/iconography/svg/communication/chat-sharp.svg.cjs +0 -28
  1781. package/dist/foundation/iconography/svg/communication/chat-sharp.svg.js +0 -10
  1782. package/dist/foundation/iconography/svg/content/add-filled.svg.cjs +0 -28
  1783. package/dist/foundation/iconography/svg/content/add-filled.svg.js +0 -10
  1784. package/dist/foundation/iconography/svg/content/add-outlined.svg.cjs +0 -28
  1785. package/dist/foundation/iconography/svg/content/add-outlined.svg.js +0 -10
  1786. package/dist/foundation/iconography/svg/content/add-round.svg.cjs +0 -28
  1787. package/dist/foundation/iconography/svg/content/add-round.svg.js +0 -10
  1788. package/dist/foundation/iconography/svg/content/add-sharp.svg.cjs +0 -28
  1789. package/dist/foundation/iconography/svg/content/add-sharp.svg.js +0 -10
  1790. package/dist/foundation/iconography/svg/content/auto-filled.svg.cjs +0 -28
  1791. package/dist/foundation/iconography/svg/content/auto-filled.svg.js +0 -10
  1792. package/dist/foundation/iconography/svg/content/auto-outlined.svg.cjs +0 -28
  1793. package/dist/foundation/iconography/svg/content/auto-outlined.svg.js +0 -10
  1794. package/dist/foundation/iconography/svg/content/auto-round.svg.cjs +0 -28
  1795. package/dist/foundation/iconography/svg/content/auto-round.svg.js +0 -10
  1796. package/dist/foundation/iconography/svg/content/auto-sharp.svg.cjs +0 -28
  1797. package/dist/foundation/iconography/svg/content/auto-sharp.svg.js +0 -10
  1798. package/dist/foundation/iconography/svg/content/backspace-filled.svg.cjs +0 -28
  1799. package/dist/foundation/iconography/svg/content/backspace-filled.svg.js +0 -10
  1800. package/dist/foundation/iconography/svg/content/backspace-outlined.svg.cjs +0 -28
  1801. package/dist/foundation/iconography/svg/content/backspace-outlined.svg.js +0 -10
  1802. package/dist/foundation/iconography/svg/content/backspace-round.svg.cjs +0 -28
  1803. package/dist/foundation/iconography/svg/content/backspace-round.svg.js +0 -10
  1804. package/dist/foundation/iconography/svg/content/backspace-sharp.svg.cjs +0 -28
  1805. package/dist/foundation/iconography/svg/content/backspace-sharp.svg.js +0 -10
  1806. package/dist/foundation/iconography/svg/content/clear-filled.svg.cjs +0 -28
  1807. package/dist/foundation/iconography/svg/content/clear-filled.svg.js +0 -10
  1808. package/dist/foundation/iconography/svg/content/clear-outlined.svg.cjs +0 -28
  1809. package/dist/foundation/iconography/svg/content/clear-outlined.svg.js +0 -10
  1810. package/dist/foundation/iconography/svg/content/clear-round.svg.cjs +0 -28
  1811. package/dist/foundation/iconography/svg/content/clear-round.svg.js +0 -10
  1812. package/dist/foundation/iconography/svg/content/clear-sharp.svg.cjs +0 -28
  1813. package/dist/foundation/iconography/svg/content/clear-sharp.svg.js +0 -10
  1814. package/dist/foundation/iconography/svg/content/mail-filled.svg.cjs +0 -28
  1815. package/dist/foundation/iconography/svg/content/mail-filled.svg.js +0 -10
  1816. package/dist/foundation/iconography/svg/content/mail-outlined.svg.cjs +0 -28
  1817. package/dist/foundation/iconography/svg/content/mail-outlined.svg.js +0 -10
  1818. package/dist/foundation/iconography/svg/content/mail-round.svg.cjs +0 -28
  1819. package/dist/foundation/iconography/svg/content/mail-round.svg.js +0 -10
  1820. package/dist/foundation/iconography/svg/content/mail-sharp.svg.cjs +0 -28
  1821. package/dist/foundation/iconography/svg/content/mail-sharp.svg.js +0 -10
  1822. package/dist/foundation/iconography/svg/content/manage_account-filled.svg.cjs +0 -28
  1823. package/dist/foundation/iconography/svg/content/manage_account-filled.svg.js +0 -10
  1824. package/dist/foundation/iconography/svg/content/manage_account-outlined.svg.cjs +0 -28
  1825. package/dist/foundation/iconography/svg/content/manage_account-outlined.svg.js +0 -10
  1826. package/dist/foundation/iconography/svg/content/manage_account-round.svg.cjs +0 -28
  1827. package/dist/foundation/iconography/svg/content/manage_account-round.svg.js +0 -10
  1828. package/dist/foundation/iconography/svg/content/manage_account-sharp.svg.cjs +0 -28
  1829. package/dist/foundation/iconography/svg/content/manage_account-sharp.svg.js +0 -10
  1830. package/dist/foundation/iconography/svg/content/person-filled.svg.cjs +0 -28
  1831. package/dist/foundation/iconography/svg/content/person-filled.svg.js +0 -10
  1832. package/dist/foundation/iconography/svg/content/person-outlined.svg.cjs +0 -28
  1833. package/dist/foundation/iconography/svg/content/person-outlined.svg.js +0 -10
  1834. package/dist/foundation/iconography/svg/content/person-round.svg.cjs +0 -28
  1835. package/dist/foundation/iconography/svg/content/person-round.svg.js +0 -10
  1836. package/dist/foundation/iconography/svg/content/person-sharp.svg.cjs +0 -28
  1837. package/dist/foundation/iconography/svg/content/person-sharp.svg.js +0 -10
  1838. package/dist/foundation/iconography/svg/content/remove-filled.svg.cjs +0 -28
  1839. package/dist/foundation/iconography/svg/content/remove-filled.svg.js +0 -10
  1840. package/dist/foundation/iconography/svg/content/remove-outlined.svg.cjs +0 -28
  1841. package/dist/foundation/iconography/svg/content/remove-outlined.svg.js +0 -10
  1842. package/dist/foundation/iconography/svg/content/remove-round.svg.cjs +0 -28
  1843. package/dist/foundation/iconography/svg/content/remove-round.svg.js +0 -10
  1844. package/dist/foundation/iconography/svg/content/remove-sharp.svg.cjs +0 -28
  1845. package/dist/foundation/iconography/svg/content/remove-sharp.svg.js +0 -10
  1846. package/dist/foundation/iconography/svg/content/send-filled.svg.cjs +0 -28
  1847. package/dist/foundation/iconography/svg/content/send-filled.svg.js +0 -10
  1848. package/dist/foundation/iconography/svg/content/send-outlined.svg.cjs +0 -28
  1849. package/dist/foundation/iconography/svg/content/send-outlined.svg.js +0 -10
  1850. package/dist/foundation/iconography/svg/content/send-round.svg.cjs +0 -28
  1851. package/dist/foundation/iconography/svg/content/send-round.svg.js +0 -10
  1852. package/dist/foundation/iconography/svg/content/send-sharp.svg.cjs +0 -28
  1853. package/dist/foundation/iconography/svg/content/send-sharp.svg.js +0 -10
  1854. package/dist/foundation/iconography/svg/content/work-filled.svg.cjs +0 -28
  1855. package/dist/foundation/iconography/svg/content/work-filled.svg.js +0 -10
  1856. package/dist/foundation/iconography/svg/content/work-outlined.svg.cjs +0 -28
  1857. package/dist/foundation/iconography/svg/content/work-outlined.svg.js +0 -10
  1858. package/dist/foundation/iconography/svg/content/work-round.svg.cjs +0 -28
  1859. package/dist/foundation/iconography/svg/content/work-round.svg.js +0 -10
  1860. package/dist/foundation/iconography/svg/content/work-sharp.svg.cjs +0 -28
  1861. package/dist/foundation/iconography/svg/content/work-sharp.svg.js +0 -10
  1862. package/dist/foundation/iconography/svg/device/task-filled.svg.cjs +0 -28
  1863. package/dist/foundation/iconography/svg/device/task-filled.svg.js +0 -10
  1864. package/dist/foundation/iconography/svg/device/task-outlined.svg.cjs +0 -28
  1865. package/dist/foundation/iconography/svg/device/task-outlined.svg.js +0 -10
  1866. package/dist/foundation/iconography/svg/device/task-round.svg.cjs +0 -28
  1867. package/dist/foundation/iconography/svg/device/task-round.svg.js +0 -10
  1868. package/dist/foundation/iconography/svg/device/task-sharp.svg.cjs +0 -28
  1869. package/dist/foundation/iconography/svg/device/task-sharp.svg.js +0 -10
  1870. package/dist/foundation/iconography/svg/file/archive-filled.svg.cjs +0 -28
  1871. package/dist/foundation/iconography/svg/file/archive-filled.svg.js +0 -10
  1872. package/dist/foundation/iconography/svg/file/archive-outlined.svg.cjs +0 -28
  1873. package/dist/foundation/iconography/svg/file/archive-outlined.svg.js +0 -10
  1874. package/dist/foundation/iconography/svg/file/archive-round.svg.cjs +0 -28
  1875. package/dist/foundation/iconography/svg/file/archive-round.svg.js +0 -10
  1876. package/dist/foundation/iconography/svg/file/archive-sharp.svg.cjs +0 -28
  1877. package/dist/foundation/iconography/svg/file/archive-sharp.svg.js +0 -10
  1878. package/dist/foundation/iconography/svg/file/file_copy-filled.svg.cjs +0 -28
  1879. package/dist/foundation/iconography/svg/file/file_copy-filled.svg.js +0 -10
  1880. package/dist/foundation/iconography/svg/file/file_copy-outlined.svg.cjs +0 -28
  1881. package/dist/foundation/iconography/svg/file/file_copy-outlined.svg.js +0 -10
  1882. package/dist/foundation/iconography/svg/file/file_copy-round.svg.cjs +0 -28
  1883. package/dist/foundation/iconography/svg/file/file_copy-round.svg.js +0 -10
  1884. package/dist/foundation/iconography/svg/file/file_copy-sharp.svg.cjs +0 -28
  1885. package/dist/foundation/iconography/svg/file/file_copy-sharp.svg.js +0 -10
  1886. package/dist/foundation/iconography/svg/file/file_download-filled.svg.cjs +0 -28
  1887. package/dist/foundation/iconography/svg/file/file_download-filled.svg.js +0 -10
  1888. package/dist/foundation/iconography/svg/file/file_download-outlined.svg.cjs +0 -28
  1889. package/dist/foundation/iconography/svg/file/file_download-outlined.svg.js +0 -10
  1890. package/dist/foundation/iconography/svg/file/file_download-round.svg.cjs +0 -28
  1891. package/dist/foundation/iconography/svg/file/file_download-round.svg.js +0 -10
  1892. package/dist/foundation/iconography/svg/file/file_download-sharp.svg.cjs +0 -28
  1893. package/dist/foundation/iconography/svg/file/file_download-sharp.svg.js +0 -10
  1894. package/dist/foundation/iconography/svg/file/file_download_off-filled.svg.cjs +0 -28
  1895. package/dist/foundation/iconography/svg/file/file_download_off-filled.svg.js +0 -10
  1896. package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg.cjs +0 -28
  1897. package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg.js +0 -10
  1898. package/dist/foundation/iconography/svg/file/file_download_off-round.svg.cjs +0 -28
  1899. package/dist/foundation/iconography/svg/file/file_download_off-round.svg.js +0 -10
  1900. package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg.cjs +0 -28
  1901. package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg.js +0 -10
  1902. package/dist/foundation/iconography/svg/file/file_open-filled.svg.cjs +0 -28
  1903. package/dist/foundation/iconography/svg/file/file_open-filled.svg.js +0 -10
  1904. package/dist/foundation/iconography/svg/file/file_open-outlined.svg.cjs +0 -28
  1905. package/dist/foundation/iconography/svg/file/file_open-outlined.svg.js +0 -10
  1906. package/dist/foundation/iconography/svg/file/file_open-round.svg.cjs +0 -28
  1907. package/dist/foundation/iconography/svg/file/file_open-round.svg.js +0 -10
  1908. package/dist/foundation/iconography/svg/file/file_open-sharp.svg.cjs +0 -28
  1909. package/dist/foundation/iconography/svg/file/file_open-sharp.svg.js +0 -10
  1910. package/dist/foundation/iconography/svg/file/file_upload-filled.svg.cjs +0 -28
  1911. package/dist/foundation/iconography/svg/file/file_upload-filled.svg.js +0 -10
  1912. package/dist/foundation/iconography/svg/file/file_upload-outlined.svg.cjs +0 -28
  1913. package/dist/foundation/iconography/svg/file/file_upload-outlined.svg.js +0 -10
  1914. package/dist/foundation/iconography/svg/file/file_upload-round.svg.cjs +0 -28
  1915. package/dist/foundation/iconography/svg/file/file_upload-round.svg.js +0 -10
  1916. package/dist/foundation/iconography/svg/file/file_upload-sharp.svg.cjs +0 -28
  1917. package/dist/foundation/iconography/svg/file/file_upload-sharp.svg.js +0 -10
  1918. package/dist/foundation/iconography/svg/file/unarchive-filled.svg.cjs +0 -28
  1919. package/dist/foundation/iconography/svg/file/unarchive-filled.svg.js +0 -10
  1920. package/dist/foundation/iconography/svg/file/unarchive-outlined.svg.cjs +0 -28
  1921. package/dist/foundation/iconography/svg/file/unarchive-outlined.svg.js +0 -10
  1922. package/dist/foundation/iconography/svg/file/unarchive-round.svg.cjs +0 -28
  1923. package/dist/foundation/iconography/svg/file/unarchive-round.svg.js +0 -10
  1924. package/dist/foundation/iconography/svg/file/unarchive-sharp.svg.cjs +0 -28
  1925. package/dist/foundation/iconography/svg/file/unarchive-sharp.svg.js +0 -10
  1926. package/dist/foundation/iconography/svg/map/ev_station-filled.svg.cjs +0 -28
  1927. package/dist/foundation/iconography/svg/map/ev_station-filled.svg.js +0 -10
  1928. package/dist/foundation/iconography/svg/map/ev_station-outlined.svg.cjs +0 -28
  1929. package/dist/foundation/iconography/svg/map/ev_station-outlined.svg.js +0 -10
  1930. package/dist/foundation/iconography/svg/map/ev_station-round.svg.cjs +0 -28
  1931. package/dist/foundation/iconography/svg/map/ev_station-round.svg.js +0 -10
  1932. package/dist/foundation/iconography/svg/map/ev_station-sharp.svg.cjs +0 -28
  1933. package/dist/foundation/iconography/svg/map/ev_station-sharp.svg.js +0 -10
  1934. package/dist/foundation/iconography/svg/map/forest-filled.svg.cjs +0 -28
  1935. package/dist/foundation/iconography/svg/map/forest-filled.svg.js +0 -10
  1936. package/dist/foundation/iconography/svg/map/forest-outlined.svg.cjs +0 -28
  1937. package/dist/foundation/iconography/svg/map/forest-outlined.svg.js +0 -10
  1938. package/dist/foundation/iconography/svg/map/forest-round.svg.cjs +0 -28
  1939. package/dist/foundation/iconography/svg/map/forest-round.svg.js +0 -10
  1940. package/dist/foundation/iconography/svg/map/forest-sharp.svg.cjs +0 -28
  1941. package/dist/foundation/iconography/svg/map/forest-sharp.svg.js +0 -10
  1942. package/dist/foundation/iconography/svg/map/gas_station-filled.svg.cjs +0 -28
  1943. package/dist/foundation/iconography/svg/map/gas_station-filled.svg.js +0 -10
  1944. package/dist/foundation/iconography/svg/map/gas_station-outlined.svg.cjs +0 -28
  1945. package/dist/foundation/iconography/svg/map/gas_station-outlined.svg.js +0 -10
  1946. package/dist/foundation/iconography/svg/map/gas_station-round.svg.cjs +0 -28
  1947. package/dist/foundation/iconography/svg/map/gas_station-round.svg.js +0 -10
  1948. package/dist/foundation/iconography/svg/map/gas_station-sharp.svg.cjs +0 -28
  1949. package/dist/foundation/iconography/svg/map/gas_station-sharp.svg.js +0 -10
  1950. package/dist/foundation/iconography/svg/map/location-filled.svg.cjs +0 -28
  1951. package/dist/foundation/iconography/svg/map/location-filled.svg.js +0 -10
  1952. package/dist/foundation/iconography/svg/map/location-outlined.svg.cjs +0 -28
  1953. package/dist/foundation/iconography/svg/map/location-outlined.svg.js +0 -10
  1954. package/dist/foundation/iconography/svg/map/location-round.svg.cjs +0 -28
  1955. package/dist/foundation/iconography/svg/map/location-round.svg.js +0 -10
  1956. package/dist/foundation/iconography/svg/map/location-sharp.svg.cjs +0 -28
  1957. package/dist/foundation/iconography/svg/map/location-sharp.svg.js +0 -10
  1958. package/dist/foundation/iconography/svg/map/route-filled.svg.cjs +0 -28
  1959. package/dist/foundation/iconography/svg/map/route-filled.svg.js +0 -10
  1960. package/dist/foundation/iconography/svg/map/route-outlined.svg.cjs +0 -28
  1961. package/dist/foundation/iconography/svg/map/route-outlined.svg.js +0 -10
  1962. package/dist/foundation/iconography/svg/map/route-round.svg.cjs +0 -28
  1963. package/dist/foundation/iconography/svg/map/route-round.svg.js +0 -10
  1964. package/dist/foundation/iconography/svg/map/route-sharp.svg.cjs +0 -28
  1965. package/dist/foundation/iconography/svg/map/route-sharp.svg.js +0 -10
  1966. package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg.cjs +0 -28
  1967. package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg.js +0 -10
  1968. package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg.cjs +0 -28
  1969. package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg.js +0 -10
  1970. package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg.cjs +0 -28
  1971. package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg.js +0 -10
  1972. package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg.cjs +0 -28
  1973. package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg.js +0 -10
  1974. package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg.cjs +0 -28
  1975. package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg.js +0 -10
  1976. package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg.cjs +0 -28
  1977. package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg.js +0 -10
  1978. package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg.cjs +0 -28
  1979. package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg.js +0 -10
  1980. package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg.cjs +0 -28
  1981. package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg.js +0 -10
  1982. package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg.cjs +0 -28
  1983. package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg.js +0 -10
  1984. package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg.cjs +0 -28
  1985. package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg.js +0 -10
  1986. package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg.cjs +0 -28
  1987. package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg.js +0 -10
  1988. package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg.cjs +0 -28
  1989. package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg.js +0 -10
  1990. package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg.cjs +0 -28
  1991. package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg.js +0 -10
  1992. package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg.cjs +0 -28
  1993. package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg.js +0 -10
  1994. package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg.cjs +0 -28
  1995. package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg.js +0 -10
  1996. package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg.cjs +0 -28
  1997. package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg.js +0 -10
  1998. package/dist/foundation/iconography/svg/navigation/check-filled.svg.cjs +0 -28
  1999. package/dist/foundation/iconography/svg/navigation/check-filled.svg.js +0 -10
  2000. package/dist/foundation/iconography/svg/navigation/check-outlined.svg.cjs +0 -28
  2001. package/dist/foundation/iconography/svg/navigation/check-outlined.svg.js +0 -10
  2002. package/dist/foundation/iconography/svg/navigation/check-round.svg.cjs +0 -28
  2003. package/dist/foundation/iconography/svg/navigation/check-round.svg.js +0 -10
  2004. package/dist/foundation/iconography/svg/navigation/check-sharp.svg.cjs +0 -28
  2005. package/dist/foundation/iconography/svg/navigation/check-sharp.svg.js +0 -10
  2006. package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg.cjs +0 -28
  2007. package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg.js +0 -10
  2008. package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg.cjs +0 -28
  2009. package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg.js +0 -10
  2010. package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg.cjs +0 -28
  2011. package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg.js +0 -10
  2012. package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg.cjs +0 -28
  2013. package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg.js +0 -10
  2014. package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg.cjs +0 -28
  2015. package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg.js +0 -10
  2016. package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg.cjs +0 -28
  2017. package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg.js +0 -10
  2018. package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg.cjs +0 -28
  2019. package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg.js +0 -10
  2020. package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg.cjs +0 -28
  2021. package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg.js +0 -10
  2022. package/dist/foundation/iconography/svg/navigation/close-filled.svg.cjs +0 -28
  2023. package/dist/foundation/iconography/svg/navigation/close-filled.svg.js +0 -10
  2024. package/dist/foundation/iconography/svg/navigation/close-outlined.svg.cjs +0 -28
  2025. package/dist/foundation/iconography/svg/navigation/close-outlined.svg.js +0 -10
  2026. package/dist/foundation/iconography/svg/navigation/close-round.svg.cjs +0 -28
  2027. package/dist/foundation/iconography/svg/navigation/close-round.svg.js +0 -10
  2028. package/dist/foundation/iconography/svg/navigation/close-sharp.svg.cjs +0 -28
  2029. package/dist/foundation/iconography/svg/navigation/close-sharp.svg.js +0 -10
  2030. package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg.cjs +0 -28
  2031. package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg.js +0 -10
  2032. package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg.cjs +0 -28
  2033. package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg.js +0 -10
  2034. package/dist/foundation/iconography/svg/navigation/expand_less-round.svg.cjs +0 -28
  2035. package/dist/foundation/iconography/svg/navigation/expand_less-round.svg.js +0 -10
  2036. package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg.cjs +0 -28
  2037. package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg.js +0 -10
  2038. package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg.cjs +0 -28
  2039. package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg.js +0 -10
  2040. package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg.cjs +0 -28
  2041. package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg.js +0 -10
  2042. package/dist/foundation/iconography/svg/navigation/expand_more-round.svg.cjs +0 -28
  2043. package/dist/foundation/iconography/svg/navigation/expand_more-round.svg.js +0 -10
  2044. package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg.cjs +0 -28
  2045. package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg.js +0 -10
  2046. package/dist/foundation/iconography/svg/navigation/external-filled.svg.cjs +0 -28
  2047. package/dist/foundation/iconography/svg/navigation/external-filled.svg.js +0 -10
  2048. package/dist/foundation/iconography/svg/navigation/external-outlined.svg.cjs +0 -28
  2049. package/dist/foundation/iconography/svg/navigation/external-outlined.svg.js +0 -10
  2050. package/dist/foundation/iconography/svg/navigation/external-round.svg.cjs +0 -28
  2051. package/dist/foundation/iconography/svg/navigation/external-round.svg.js +0 -10
  2052. package/dist/foundation/iconography/svg/navigation/external-sharp.svg.cjs +0 -28
  2053. package/dist/foundation/iconography/svg/navigation/external-sharp.svg.js +0 -10
  2054. package/dist/foundation/iconography/svg/navigation/menu-filled.svg.cjs +0 -28
  2055. package/dist/foundation/iconography/svg/navigation/menu-filled.svg.js +0 -10
  2056. package/dist/foundation/iconography/svg/navigation/menu-outlined.svg.cjs +0 -28
  2057. package/dist/foundation/iconography/svg/navigation/menu-outlined.svg.js +0 -10
  2058. package/dist/foundation/iconography/svg/navigation/menu-round.svg.cjs +0 -28
  2059. package/dist/foundation/iconography/svg/navigation/menu-round.svg.js +0 -10
  2060. package/dist/foundation/iconography/svg/navigation/menu-sharp.svg.cjs +0 -28
  2061. package/dist/foundation/iconography/svg/navigation/menu-sharp.svg.js +0 -10
  2062. package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg.cjs +0 -28
  2063. package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg.js +0 -10
  2064. package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg.cjs +0 -28
  2065. package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg.js +0 -10
  2066. package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg.cjs +0 -28
  2067. package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg.js +0 -10
  2068. package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg.cjs +0 -28
  2069. package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg.js +0 -10
  2070. package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg.cjs +0 -28
  2071. package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg.js +0 -10
  2072. package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg.cjs +0 -28
  2073. package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg.js +0 -10
  2074. package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg.cjs +0 -28
  2075. package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg.js +0 -10
  2076. package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg.cjs +0 -28
  2077. package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg.js +0 -10
  2078. package/dist/foundation/iconography/svg/navigation/open-filled.svg.cjs +0 -28
  2079. package/dist/foundation/iconography/svg/navigation/open-filled.svg.js +0 -10
  2080. package/dist/foundation/iconography/svg/navigation/open-outlined.svg.cjs +0 -28
  2081. package/dist/foundation/iconography/svg/navigation/open-outlined.svg.js +0 -10
  2082. package/dist/foundation/iconography/svg/navigation/open-round.svg.cjs +0 -28
  2083. package/dist/foundation/iconography/svg/navigation/open-round.svg.js +0 -10
  2084. package/dist/foundation/iconography/svg/navigation/open-sharp.svg.cjs +0 -28
  2085. package/dist/foundation/iconography/svg/navigation/open-sharp.svg.js +0 -10
  2086. package/dist/foundation/iconography/svg/navigation/refresh-filled.svg.cjs +0 -28
  2087. package/dist/foundation/iconography/svg/navigation/refresh-filled.svg.js +0 -10
  2088. package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg.cjs +0 -28
  2089. package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg.js +0 -10
  2090. package/dist/foundation/iconography/svg/navigation/refresh-round.svg.cjs +0 -28
  2091. package/dist/foundation/iconography/svg/navigation/refresh-round.svg.js +0 -10
  2092. package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg.cjs +0 -28
  2093. package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg.js +0 -10
  2094. package/dist/foundation/iconography/svg/navigation/spinner-filled.svg.cjs +0 -28
  2095. package/dist/foundation/iconography/svg/navigation/spinner-filled.svg.js +0 -10
  2096. package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg.cjs +0 -28
  2097. package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg.js +0 -10
  2098. package/dist/foundation/iconography/svg/navigation/spinner-round.svg.cjs +0 -28
  2099. package/dist/foundation/iconography/svg/navigation/spinner-round.svg.js +0 -10
  2100. package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg.cjs +0 -28
  2101. package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg.js +0 -10
  2102. package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg.cjs +0 -28
  2103. package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg.js +0 -10
  2104. package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg.cjs +0 -28
  2105. package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg.js +0 -10
  2106. package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg.cjs +0 -28
  2107. package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg.js +0 -10
  2108. package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg.cjs +0 -28
  2109. package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg.js +0 -10
  2110. package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg.cjs +0 -28
  2111. package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg.js +0 -10
  2112. package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg.cjs +0 -28
  2113. package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg.js +0 -10
  2114. package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg.cjs +0 -28
  2115. package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg.js +0 -10
  2116. package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg.cjs +0 -28
  2117. package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg.js +0 -10
  2118. package/dist/foundation/iconography/svg/notifications/event_note-filled.svg.cjs +0 -28
  2119. package/dist/foundation/iconography/svg/notifications/event_note-filled.svg.js +0 -10
  2120. package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg.cjs +0 -28
  2121. package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg.js +0 -10
  2122. package/dist/foundation/iconography/svg/notifications/event_note-round.svg.cjs +0 -28
  2123. package/dist/foundation/iconography/svg/notifications/event_note-round.svg.js +0 -10
  2124. package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg.cjs +0 -28
  2125. package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg.js +0 -10
  2126. package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg.cjs +0 -28
  2127. package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg.js +0 -10
  2128. package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg.cjs +0 -28
  2129. package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg.js +0 -10
  2130. package/dist/foundation/iconography/svg/notifications/live_tv-round.svg.cjs +0 -28
  2131. package/dist/foundation/iconography/svg/notifications/live_tv-round.svg.js +0 -10
  2132. package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg.cjs +0 -28
  2133. package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg.js +0 -10
  2134. package/dist/foundation/iconography/svg/notifications/wifi-filled.svg.cjs +0 -28
  2135. package/dist/foundation/iconography/svg/notifications/wifi-filled.svg.js +0 -10
  2136. package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg.cjs +0 -28
  2137. package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg.js +0 -10
  2138. package/dist/foundation/iconography/svg/notifications/wifi-round.svg.cjs +0 -28
  2139. package/dist/foundation/iconography/svg/notifications/wifi-round.svg.js +0 -10
  2140. package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg.cjs +0 -28
  2141. package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg.js +0 -10
  2142. package/dist/foundation/iconography/svg/search/coffee-filled.svg.cjs +0 -28
  2143. package/dist/foundation/iconography/svg/search/coffee-filled.svg.js +0 -10
  2144. package/dist/foundation/iconography/svg/search/coffee-outlined.svg.cjs +0 -28
  2145. package/dist/foundation/iconography/svg/search/coffee-outlined.svg.js +0 -10
  2146. package/dist/foundation/iconography/svg/search/coffee-round.svg.cjs +0 -28
  2147. package/dist/foundation/iconography/svg/search/coffee-round.svg.js +0 -10
  2148. package/dist/foundation/iconography/svg/search/coffee-sharp.svg.cjs +0 -28
  2149. package/dist/foundation/iconography/svg/search/coffee-sharp.svg.js +0 -10
  2150. package/dist/foundation/iconography/svg/search/search-filled.svg.cjs +0 -28
  2151. package/dist/foundation/iconography/svg/search/search-filled.svg.js +0 -10
  2152. package/dist/foundation/iconography/svg/search/search-outlined.svg.cjs +0 -28
  2153. package/dist/foundation/iconography/svg/search/search-outlined.svg.js +0 -10
  2154. package/dist/foundation/iconography/svg/search/search-round.svg.cjs +0 -28
  2155. package/dist/foundation/iconography/svg/search/search-round.svg.js +0 -10
  2156. package/dist/foundation/iconography/svg/search/search-sharp.svg.cjs +0 -28
  2157. package/dist/foundation/iconography/svg/search/search-sharp.svg.js +0 -10
  2158. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg.cjs +0 -28
  2159. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg.js +0 -10
  2160. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg.cjs +0 -28
  2161. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg.js +0 -10
  2162. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg.cjs +0 -28
  2163. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg.js +0 -10
  2164. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg.cjs +0 -28
  2165. package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg.js +0 -10
  2166. package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg.cjs +0 -28
  2167. package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg.js +0 -10
  2168. package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg.cjs +0 -28
  2169. package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg.js +0 -10
  2170. package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg.cjs +0 -28
  2171. package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg.js +0 -10
  2172. package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg.cjs +0 -28
  2173. package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg.js +0 -10
  2174. package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg.cjs +0 -28
  2175. package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg.js +0 -10
  2176. package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg.cjs +0 -28
  2177. package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg.js +0 -10
  2178. package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg.cjs +0 -28
  2179. package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg.js +0 -10
  2180. package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg.cjs +0 -28
  2181. package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg.js +0 -10
  2182. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg.cjs +0 -28
  2183. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg.js +0 -10
  2184. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg.cjs +0 -28
  2185. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg.js +0 -10
  2186. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg.cjs +0 -28
  2187. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg.js +0 -10
  2188. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg.cjs +0 -28
  2189. package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg.js +0 -10
  2190. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg.cjs +0 -28
  2191. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg.js +0 -10
  2192. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg.cjs +0 -28
  2193. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg.js +0 -10
  2194. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg.cjs +0 -28
  2195. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg.js +0 -10
  2196. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg.cjs +0 -28
  2197. package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg.js +0 -10
  2198. package/dist/foundation/iconography/svg/toggle/favorite-filled.svg.cjs +0 -28
  2199. package/dist/foundation/iconography/svg/toggle/favorite-filled.svg.js +0 -10
  2200. package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg.cjs +0 -28
  2201. package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg.js +0 -10
  2202. package/dist/foundation/iconography/svg/toggle/favorite-round.svg.cjs +0 -28
  2203. package/dist/foundation/iconography/svg/toggle/favorite-round.svg.js +0 -10
  2204. package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg.cjs +0 -28
  2205. package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg.js +0 -10
  2206. package/dist/foundation/iconography/svg/toggle/star-filled.svg.cjs +0 -28
  2207. package/dist/foundation/iconography/svg/toggle/star-filled.svg.js +0 -10
  2208. package/dist/foundation/iconography/svg/toggle/star-outlined.svg.cjs +0 -28
  2209. package/dist/foundation/iconography/svg/toggle/star-outlined.svg.js +0 -10
  2210. package/dist/foundation/iconography/svg/toggle/star-round.svg.cjs +0 -28
  2211. package/dist/foundation/iconography/svg/toggle/star-round.svg.js +0 -10
  2212. package/dist/foundation/iconography/svg/toggle/star-sharp.svg.cjs +0 -28
  2213. package/dist/foundation/iconography/svg/toggle/star-sharp.svg.js +0 -10
  2214. package/dist/foundation/iconography/svg/validation/error-filled.svg.cjs +0 -28
  2215. package/dist/foundation/iconography/svg/validation/error-filled.svg.js +0 -10
  2216. package/dist/foundation/iconography/svg/validation/error-outlined.svg.cjs +0 -28
  2217. package/dist/foundation/iconography/svg/validation/error-outlined.svg.js +0 -10
  2218. package/dist/foundation/iconography/svg/validation/error-round.svg.cjs +0 -28
  2219. package/dist/foundation/iconography/svg/validation/error-round.svg.js +0 -10
  2220. package/dist/foundation/iconography/svg/validation/error-sharp.svg.cjs +0 -28
  2221. package/dist/foundation/iconography/svg/validation/error-sharp.svg.js +0 -10
  2222. package/dist/foundation/iconography/svg/validation/help-filled.svg.cjs +0 -28
  2223. package/dist/foundation/iconography/svg/validation/help-filled.svg.js +0 -10
  2224. package/dist/foundation/iconography/svg/validation/help-outlined.svg.cjs +0 -28
  2225. package/dist/foundation/iconography/svg/validation/help-outlined.svg.js +0 -10
  2226. package/dist/foundation/iconography/svg/validation/help-round.svg.cjs +0 -28
  2227. package/dist/foundation/iconography/svg/validation/help-round.svg.js +0 -10
  2228. package/dist/foundation/iconography/svg/validation/help-sharp.svg.cjs +0 -28
  2229. package/dist/foundation/iconography/svg/validation/help-sharp.svg.js +0 -10
  2230. package/dist/foundation/iconography/svg/validation/info-filled.svg.cjs +0 -28
  2231. package/dist/foundation/iconography/svg/validation/info-filled.svg.js +0 -10
  2232. package/dist/foundation/iconography/svg/validation/info-outlined.svg.cjs +0 -28
  2233. package/dist/foundation/iconography/svg/validation/info-outlined.svg.js +0 -10
  2234. package/dist/foundation/iconography/svg/validation/info-round.svg.cjs +0 -28
  2235. package/dist/foundation/iconography/svg/validation/info-round.svg.js +0 -10
  2236. package/dist/foundation/iconography/svg/validation/info-sharp.svg.cjs +0 -28
  2237. package/dist/foundation/iconography/svg/validation/info-sharp.svg.js +0 -10
  2238. package/dist/foundation/iconography/svg/validation/success-filled.svg.cjs +0 -28
  2239. package/dist/foundation/iconography/svg/validation/success-filled.svg.js +0 -10
  2240. package/dist/foundation/iconography/svg/validation/success-outlined.svg.cjs +0 -28
  2241. package/dist/foundation/iconography/svg/validation/success-outlined.svg.js +0 -10
  2242. package/dist/foundation/iconography/svg/validation/success-round.svg.cjs +0 -28
  2243. package/dist/foundation/iconography/svg/validation/success-round.svg.js +0 -10
  2244. package/dist/foundation/iconography/svg/validation/success-sharp.svg.cjs +0 -28
  2245. package/dist/foundation/iconography/svg/validation/success-sharp.svg.js +0 -10
  2246. package/dist/foundation/iconography/svg/validation/warning-filled.svg.cjs +0 -28
  2247. package/dist/foundation/iconography/svg/validation/warning-filled.svg.js +0 -10
  2248. package/dist/foundation/iconography/svg/validation/warning-outlined.svg.cjs +0 -28
  2249. package/dist/foundation/iconography/svg/validation/warning-outlined.svg.js +0 -10
  2250. package/dist/foundation/iconography/svg/validation/warning-round.svg.cjs +0 -28
  2251. package/dist/foundation/iconography/svg/validation/warning-round.svg.js +0 -10
  2252. package/dist/foundation/iconography/svg/validation/warning-sharp.svg.cjs +0 -28
  2253. package/dist/foundation/iconography/svg/validation/warning-sharp.svg.js +0 -10
  2254. package/dist/foundation/logos/svg/audi/audi_symbol.svg.cjs +0 -30
  2255. package/dist/foundation/logos/svg/audi/audi_symbol.svg.js +0 -12
  2256. package/dist/foundation/logos/svg/audi/audi_wordmark.svg.cjs +0 -30
  2257. package/dist/foundation/logos/svg/audi/audi_wordmark.svg.js +0 -12
  2258. package/dist/foundation/logos/svg/autoria/autoria_symbol.svg.cjs +0 -28
  2259. package/dist/foundation/logos/svg/autoria/autoria_symbol.svg.js +0 -10
  2260. package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg.cjs +0 -28
  2261. package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg.js +0 -10
  2262. package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg.cjs +0 -28
  2263. package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg.js +0 -10
  2264. package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg.cjs +0 -28
  2265. package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg.js +0 -10
  2266. package/dist/foundation/logos/svg/cupra/cupra_symbol.svg.cjs +0 -28
  2267. package/dist/foundation/logos/svg/cupra/cupra_symbol.svg.js +0 -10
  2268. package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg.cjs +0 -28
  2269. package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg.js +0 -10
  2270. package/dist/foundation/logos/svg/dahles/dahles_symbol.svg.cjs +0 -28
  2271. package/dist/foundation/logos/svg/dahles/dahles_symbol.svg.js +0 -10
  2272. package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg.cjs +0 -28
  2273. package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg.js +0 -10
  2274. package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg.cjs +0 -28
  2275. package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg.js +0 -10
  2276. package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg.cjs +0 -28
  2277. package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg.js +0 -10
  2278. package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg.cjs +0 -28
  2279. package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg.js +0 -10
  2280. package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg.cjs +0 -28
  2281. package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg.js +0 -10
  2282. package/dist/foundation/logos/svg/others/albjerk_wordmark.svg.cjs +0 -28
  2283. package/dist/foundation/logos/svg/others/albjerk_wordmark.svg.js +0 -10
  2284. package/dist/foundation/logos/svg/others/alta_wordmark.svg.cjs +0 -28
  2285. package/dist/foundation/logos/svg/others/alta_wordmark.svg.js +0 -10
  2286. package/dist/foundation/logos/svg/others/berge_wordmark.svg.cjs +0 -28
  2287. package/dist/foundation/logos/svg/others/berge_wordmark.svg.js +0 -10
  2288. package/dist/foundation/logos/svg/others/fremme_wordmark.svg.cjs +0 -28
  2289. package/dist/foundation/logos/svg/others/fremme_wordmark.svg.js +0 -10
  2290. package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg.cjs +0 -28
  2291. package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg.js +0 -10
  2292. package/dist/foundation/logos/svg/others/mobile_wordmark.svg.cjs +0 -28
  2293. package/dist/foundation/logos/svg/others/mobile_wordmark.svg.js +0 -10
  2294. package/dist/foundation/logos/svg/others/slatlem_wordmark.svg.cjs +0 -28
  2295. package/dist/foundation/logos/svg/others/slatlem_wordmark.svg.js +0 -10
  2296. package/dist/foundation/logos/svg/others/sulland_wordmark.svg.cjs +0 -28
  2297. package/dist/foundation/logos/svg/others/sulland_wordmark.svg.js +0 -10
  2298. package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg.cjs +0 -28
  2299. package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg.js +0 -10
  2300. package/dist/foundation/logos/svg/skoda/skoda_symbol.svg.cjs +0 -28
  2301. package/dist/foundation/logos/svg/skoda/skoda_symbol.svg.js +0 -10
  2302. package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg.cjs +0 -28
  2303. package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg.js +0 -10
  2304. package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg.cjs +0 -28
  2305. package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg.js +0 -10
  2306. package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg.cjs +0 -28
  2307. package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg.js +0 -10
  2308. package/dist/foundation/logos/svg/vw/vw_symbol.svg.cjs +0 -28
  2309. package/dist/foundation/logos/svg/vw/vw_symbol.svg.js +0 -10
  2310. package/dist/foundation/logos/svg/vw/vw_wordmark.svg.cjs +0 -28
  2311. package/dist/foundation/logos/svg/vw/vw_wordmark.svg.js +0 -10
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgMollerbilSymbol = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M13.0999 4.00593V7.5493C14.8716 8.03222 16.0789 9.66762 16.0789 11.7785C16.0789 13.8895 14.8716 15.4671 13.0999 15.9293V19.4726C17.1721 18.9942 20 15.9011 20 11.7785C19.9985 7.66336 17.0877 4.50366 13.0999 4.00593ZM10.9001 7.53893V4C6.92417 4.48736 4 7.62781 4 11.7785C4 15.9085 6.83826 19.006 10.9001 19.4741V15.9322C9.1373 15.476 7.92112 13.8969 7.92112 11.7785C7.92112 9.63355 9.12101 8.00704 10.9001 7.53893Z", fill: "#0000FF" }));
28
- exports.default = SvgMollerbilSymbol;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgMollerbilSymbol = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { d: "M13.0999 4.00593V7.5493C14.8716 8.03222 16.0789 9.66762 16.0789 11.7785C16.0789 13.8895 14.8716 15.4671 13.0999 15.9293V19.4726C17.1721 18.9942 20 15.9011 20 11.7785C19.9985 7.66336 17.0877 4.50366 13.0999 4.00593ZM10.9001 7.53893V4C6.92417 4.48736 4 7.62781 4 11.7785C4 15.9085 6.83826 19.006 10.9001 19.4741V15.9322C9.1373 15.476 7.92112 13.8969 7.92112 11.7785C7.92112 9.63355 9.12101 8.00704 10.9001 7.53893Z", fill: "#0000FF" }));
8
- export {
9
- SvgMollerbilSymbol as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgMollerbilWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 94 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M77.176 18.7813C79.2677 18.7813 80.7503 17.6346 80.7503 15.5428C80.7503 13.451 79.1289 12.3716 77.1088 12.3716H74.2735V18.7813H77.176ZM77.3103 11.3548C78.999 11.3548 80.2128 10.0738 80.2128 8.4523C80.2128 6.76365 78.999 5.5498 77.3103 5.5498H74.2735V11.3548H77.3103ZM73.194 4.54198H77.176C79.6709 4.54198 81.3595 6.16344 81.3595 8.45678C81.3595 10.0782 80.4144 11.2921 79.3349 11.8296C80.7503 12.2999 81.897 13.7198 81.897 15.5428C81.897 17.9033 80.074 19.7935 77.5119 19.7935H73.194V4.54198Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M84.5308 8.45678H85.6102V19.7935H84.5308V8.45678ZM85.0727 4.54198C85.5431 4.54198 85.9507 4.94511 85.9507 5.4199C85.9507 5.89469 85.5475 6.29782 85.0727 6.29782C84.6024 6.29782 84.1948 5.89469 84.1948 5.4199C84.1948 4.94511 84.5979 4.54198 85.0727 4.54198Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M89.9998 4H88.9203V19.7891H89.9998V4Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M12.3671 14.9337L16.7522 4.54198H20.667V19.7935H17.7645V8.8599L13.7825 18.508H10.9472L6.96521 8.8599V19.7935H4V4.54198H7.9775L12.3671 14.9337Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M39.3227 4H36.2858V19.7891H39.3227V4Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M44.7201 4H41.6832V19.7891H44.7201V4Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M54.5743 12.9091C54.5071 11.4936 53.4948 10.6157 52.1466 10.6157C50.7312 10.6157 49.7861 11.628 49.6517 12.9091H54.5743ZM52.0749 8.11635C55.5821 8.11635 57.6067 10.4769 57.6067 14.1901C57.6067 14.3917 57.6067 14.5932 57.6067 14.8665H49.5755C49.6427 16.4162 50.8566 17.5002 52.5452 17.5002C54.095 17.5002 54.9729 16.5551 55.3133 16.0848L57.2707 17.5674C56.8676 18.3781 55.3133 20.0623 52.478 20.0623C48.8365 20.0623 46.4715 17.5674 46.4715 14.1229C46.4715 10.6784 48.8365 8.11635 52.0749 8.11635Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M65.3691 11.1532C63.1429 11.1532 62.265 12.5686 62.265 14.7948V19.7891H59.2281V8.38958H62.1978V10.0782C62.6681 8.93156 63.8193 8.12083 65.3691 8.12083V11.1532Z", fill: "#0000FF" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M29.3207 8.18802V10.9069C30.6824 11.2786 31.6051 12.5328 31.6051 14.1543C31.6051 15.7757 30.6779 16.9851 29.3207 17.339V20.0578C32.4472 19.6905 34.6151 17.3166 34.6151 14.1543C34.6151 10.9965 32.38 8.56875 29.3207 8.18802ZM27.6321 10.9024V8.18802C24.5773 8.55979 22.3377 10.9696 22.3377 14.1543C22.3377 17.3255 24.5146 19.704 27.6321 20.0623V17.3434C26.2794 16.9941 25.3477 15.7802 25.3477 14.1543C25.3432 12.5059 26.2659 11.2607 27.6321 10.9024Z", fill: "#0000FF" }));
28
- exports.default = SvgMollerbilWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgMollerbilWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 94 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { d: "M77.176 18.7813C79.2677 18.7813 80.7503 17.6346 80.7503 15.5428C80.7503 13.451 79.1289 12.3716 77.1088 12.3716H74.2735V18.7813H77.176ZM77.3103 11.3548C78.999 11.3548 80.2128 10.0738 80.2128 8.4523C80.2128 6.76365 78.999 5.5498 77.3103 5.5498H74.2735V11.3548H77.3103ZM73.194 4.54198H77.176C79.6709 4.54198 81.3595 6.16344 81.3595 8.45678C81.3595 10.0782 80.4144 11.2921 79.3349 11.8296C80.7503 12.2999 81.897 13.7198 81.897 15.5428C81.897 17.9033 80.074 19.7935 77.5119 19.7935H73.194V4.54198Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M84.5308 8.45678H85.6102V19.7935H84.5308V8.45678ZM85.0727 4.54198C85.5431 4.54198 85.9507 4.94511 85.9507 5.4199C85.9507 5.89469 85.5475 6.29782 85.0727 6.29782C84.6024 6.29782 84.1948 5.89469 84.1948 5.4199C84.1948 4.94511 84.5979 4.54198 85.0727 4.54198Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M89.9998 4H88.9203V19.7891H89.9998V4Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M12.3671 14.9337L16.7522 4.54198H20.667V19.7935H17.7645V8.8599L13.7825 18.508H10.9472L6.96521 8.8599V19.7935H4V4.54198H7.9775L12.3671 14.9337Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M39.3227 4H36.2858V19.7891H39.3227V4Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M44.7201 4H41.6832V19.7891H44.7201V4Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M54.5743 12.9091C54.5071 11.4936 53.4948 10.6157 52.1466 10.6157C50.7312 10.6157 49.7861 11.628 49.6517 12.9091H54.5743ZM52.0749 8.11635C55.5821 8.11635 57.6067 10.4769 57.6067 14.1901C57.6067 14.3917 57.6067 14.5932 57.6067 14.8665H49.5755C49.6427 16.4162 50.8566 17.5002 52.5452 17.5002C54.095 17.5002 54.9729 16.5551 55.3133 16.0848L57.2707 17.5674C56.8676 18.3781 55.3133 20.0623 52.478 20.0623C48.8365 20.0623 46.4715 17.5674 46.4715 14.1229C46.4715 10.6784 48.8365 8.11635 52.0749 8.11635Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M65.3691 11.1532C63.1429 11.1532 62.265 12.5686 62.265 14.7948V19.7891H59.2281V8.38958H62.1978V10.0782C62.6681 8.93156 63.8193 8.12083 65.3691 8.12083V11.1532Z", fill: "#0000FF" }), /* @__PURE__ */ React.createElement("path", { d: "M29.3207 8.18802V10.9069C30.6824 11.2786 31.6051 12.5328 31.6051 14.1543C31.6051 15.7757 30.6779 16.9851 29.3207 17.339V20.0578C32.4472 19.6905 34.6151 17.3166 34.6151 14.1543C34.6151 10.9965 32.38 8.56875 29.3207 8.18802ZM27.6321 10.9024V8.18802C24.5773 8.55979 22.3377 10.9696 22.3377 14.1543C22.3377 17.3255 24.5146 19.704 27.6321 20.0623V17.3434C26.2794 16.9941 25.3477 15.7802 25.3477 14.1543C25.3432 12.5059 26.2659 11.2607 27.6321 10.9024Z", fill: "#0000FF" }));
8
- export {
9
- SvgMollerbilWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgAlbjerkWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 125 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("rect", { width: 124.444, height: 24, fill: "url(#pattern0)" }), /* @__PURE__ */ React__namespace.createElement("defs", null, /* @__PURE__ */ React__namespace.createElement("pattern", { id: "pattern0", patternContentUnits: "objectBoundingBox", width: 1, height: 1 }, /* @__PURE__ */ React__namespace.createElement("use", { xlinkHref: "#image0_2208_90", transform: "scale(0.00714286 0.037037)" })), /* @__PURE__ */ React__namespace.createElement("image", { id: "image0_2208_90", width: 140, height: 27, xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAAAbBAMAAABcjXr2AAADImlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3OERBNTlFRUVGRjMxMUU5QTRDRkIxMEU3MEM0OEFFOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3OERBNTlFRkVGRjMxMUU5QTRDRkIxMEU3MEM0OEFFOSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjc4REE1OUVDRUZGMzExRTlBNENGQjEwRTcwQzQ4QUU5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjc4REE1OUVERUZGMzExRTlBNENGQjEwRTcwQzQ4QUU5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+X5mMHAAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAwUExURUdwTB0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dG2GO2kMAAAAPdFJOUwCZIt1md0TuEbuqiDPMVT1sidsAAAI4SURBVDjLrdQ/bhpBFMfx3wJr1lEIewNo0kVaN5HSmRuwSiKlXG5gy1KkdCClSGmK1DFSDmBuYKQotX2D+AZeMLAG7HxTzP6ZtV3Ef1612nn6aGbeeyNJHlxJUhdfLTqSJIHKERDn33sAfJ5IVWaqMpMkFxaPYZiXmAbcPIphYjN7wOQ2cyfuY4aSlDEtWoQPZHzJa6V/DOP1V6fsFMwnvmeHeg3vJYdZxDggVoOknTOqE1uHqjGvssyZD2azINUAQjlswA+IFXEtmzmzmG2uXKY5AzA1zAXAQg7AJCB+CecFUzkmtJiAUYVkkDE3PQd6Ann9pPOqnwwcGEoBcdU0Rn7FK7vgEef6QydjDqRjxgK5zKU9QodkIAXEJ4xLzNhmdhMpYpgxvnTKmUDbxFKTkcNaUsBf1uWCry1mi6l0yMwqeJNYoLpJ3nHYSAq4ZHqrb0YF47CUtllYTN0wTZMbOywkBQA9u29OmBfMN5N8+V/M0GLksC6YbrrBXsqEUpN9c6h9SZLDXFJA8oulzdRYFcxRyvgpM8qvuJE2W8Ysa1zajGsxFbMU8SVlrq2Cb0pMrN104gwTsckZ17TUIfOUSc4daAtUAd/7+dFiurwrVWqZM3Wz8xesrGHYmGGIAAgLppG28d2CX3AmSTVoG6YL+IZxs5nKmC2SgT0Mg5w5JpQkr09omDcn/Mgeit/wtm0xOjLjYJh1p/SI3hskeobwsto+LVxWz6A0SHvmaXEIB8/AfGXafkj+P1AKebmt720QAAAAAElFTkSuQmCC" })));
28
- exports.default = SvgAlbjerkWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgAlbjerkWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 125 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("rect", { width: 124.444, height: 24, fill: "url(#pattern0)" }), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("pattern", { id: "pattern0", patternContentUnits: "objectBoundingBox", width: 1, height: 1 }, /* @__PURE__ */ React.createElement("use", { xlinkHref: "#image0_2208_90", transform: "scale(0.00714286 0.037037)" })), /* @__PURE__ */ React.createElement("image", { id: "image0_2208_90", width: 140, height: 27, xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAAAbBAMAAABcjXr2AAADImlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3OERBNTlFRUVGRjMxMUU5QTRDRkIxMEU3MEM0OEFFOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3OERBNTlFRkVGRjMxMUU5QTRDRkIxMEU3MEM0OEFFOSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjc4REE1OUVDRUZGMzExRTlBNENGQjEwRTcwQzQ4QUU5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjc4REE1OUVERUZGMzExRTlBNENGQjEwRTcwQzQ4QUU5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+X5mMHAAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAwUExURUdwTB0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dGx0dG2GO2kMAAAAPdFJOUwCZIt1md0TuEbuqiDPMVT1sidsAAAI4SURBVDjLrdQ/bhpBFMfx3wJr1lEIewNo0kVaN5HSmRuwSiKlXG5gy1KkdCClSGmK1DFSDmBuYKQotX2D+AZeMLAG7HxTzP6ZtV3Ef1612nn6aGbeeyNJHlxJUhdfLTqSJIHKERDn33sAfJ5IVWaqMpMkFxaPYZiXmAbcPIphYjN7wOQ2cyfuY4aSlDEtWoQPZHzJa6V/DOP1V6fsFMwnvmeHeg3vJYdZxDggVoOknTOqE1uHqjGvssyZD2azINUAQjlswA+IFXEtmzmzmG2uXKY5AzA1zAXAQg7AJCB+CecFUzkmtJiAUYVkkDE3PQd6Ann9pPOqnwwcGEoBcdU0Rn7FK7vgEef6QydjDqRjxgK5zKU9QodkIAXEJ4xLzNhmdhMpYpgxvnTKmUDbxFKTkcNaUsBf1uWCry1mi6l0yMwqeJNYoLpJ3nHYSAq4ZHqrb0YF47CUtllYTN0wTZMbOywkBQA9u29OmBfMN5N8+V/M0GLksC6YbrrBXsqEUpN9c6h9SZLDXFJA8oulzdRYFcxRyvgpM8qvuJE2W8Ysa1zajGsxFbMU8SVlrq2Cb0pMrN104gwTsckZ17TUIfOUSc4daAtUAd/7+dFiurwrVWqZM3Wz8xesrGHYmGGIAAgLppG28d2CX3AmSTVoG6YL+IZxs5nKmC2SgT0Mg5w5JpQkr09omDcn/Mgeit/wtm0xOjLjYJh1p/SI3hskeobwsto+LVxWz6A0SHvmaXEIB8/AfGXafkj+P1AKebmt720QAAAAAElFTkSuQmCC" })));
8
- export {
9
- SvgAlbjerkWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgAltaWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 62.2", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", d: "M23.2.5A703.8 703.8 0 0 0 .3 61.2c.5 1.3 10.2 1.3 11.3 0 .5-.6 1.5-3 2.3-5.3 2.8-8 2-7.6 14.6-7.6 12.9 0 12.8 0 15.3 7.5 1 2.7 2 5 2.4 5.3.8.6 11.5.6 12 .1.2-.2-5-14-11.5-30.6L34.7.4 29.1.2c-3-.2-5.7 0-6 .3M62 11c.2 5.6.5 19.4.5 30.5l.1 20.3h10l.2-30.5.2-30.6H61.4l.5 10.3m122.7-9.7c-.6.4-.8 9.5-.8 30.7v30.2h11.4l.2-17 .2-17 7.3 17 7.3 17 4.4-.2 4.3-.2 5.6-13.9c3-7.6 6.3-15.4 7.1-17.2l1.6-3.3-.2 17v17.2h5.4c3 0 5.5-.3 5.6-.6l.5-30.5.3-29.8h-11.4L231.8 5A712.7 712.7 0 0 1 215 46.1c-.3 0-3.3-6.4-6.6-14.1-3.4-7.8-7.8-17.9-10-22.5l-3.7-8.4-4.7-.2c-2.5 0-5 0-5.4.4M83 7c-.3.8-.3 4 0 7 .5 6.1.6 5.9-3.6 6.8-3 .6-3.1 8.4-.2 8.4 4.1 0 4-.1 4 14 0 18.2.6 19 12.7 19 10.1 0 10 0 10-5.7v-4.7l-5.3.5c-7.4.7-7.5.6-7.5-11.8 0-11.4-.3-10.8 6.3-10 6 .8 5.6 1.1 6-5.4l.3-4.6-6-.2-5.8-.2-.1-6c-.1-7.3-.2-7.4-5.9-8-3.9-.4-4.5-.3-5 1m216.5 0c-.3.7-.3 3.8 0 7 .5 6 .7 5.8-3.5 6.7-3 .6-3.2 8.4-.3 8.4 4.2 0 4.1-.1 4.1 14 0 18.2.5 19 12.7 19 10 0 10 0 10-5.7v-4.7l-5.3.5c-7.4.7-7.5.6-7.5-11.8 0-11.4-.4-10.8 6.2-10 6 .8 5.6 1.1 6-5.4l.3-4.6-5.9-.2-5.9-.2v-6c-.2-7.3-.3-7.4-6-8-3.8-.4-4.4-.3-4.9 1M37.3 38c0 .8-7.8 1.4-12.8.8-3.4-.3-4.3-.7-4.2-1.5.3-1.4 7.4-20.5 8-21.5.4-.5 9 20.7 9 22.2M120 21c-6.7 3.3-11 11-11 19.6 0 18 17.4 27.7 31.1 17.5 2.5-1.9 3.2-1.7 3.2.7 0 2.5 1.2 3 5.7 2.6l4.2-.3v-4.4l-.3-14.7c0-5.6.2-12.5.6-15.2 1-6 1.2-5.8-4.2-6.2l-4.3-.3-.5 2.7-.5 2.8-2.4-2.2a19.3 19.3 0 0 0-21.6-2.7m142.1-.2c-7.4 3.5-12 11.1-12 19.9 0 27.7 40.3 29.3 42.2 1.8 1.3-17-15-28.7-30.2-21.7m76 0c-7.3 3.5-12 11.1-12 19.9 0 27.7 40.3 29.3 42.3 1.8 1.2-17-15.1-28.7-30.2-21.7m37-1.2c-3.6.5-4 1-3 4.7.6 2 1.2 10.1 1.4 20.4l.4 17.2h9.5L384 48c.5-16.5.5-16.6 8.8-16.6 5.7 0 5.8 0 5.8-6.6v-4.3h-4.2c-3.2 0-5.2.5-7.7 1.7-3.7 2-4.2 1.9-4.2-1.1 0-2.2-.5-2.4-7.3-1.6M138.6 31.6c7.6 8.2 2.9 21-7.7 21-11.2 0-15.1-16.1-5.4-22.7 3.6-2.5 10-1.6 13.1 1.7m138.6-1.4c9.4 6.4 5.3 22.5-5.8 22.4-11.5 0-15.8-15.8-6-22.4 3.3-2.3 8.5-2.3 11.8 0m76 0c9.5 6.4 5.3 22.5-5.8 22.4-11.5 0-15.7-15.8-6-22.4 3.4-2.3 8.5-2.3 11.8 0" }));
28
- exports.default = SvgAltaWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgAltaWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 62.2", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M23.2.5A703.8 703.8 0 0 0 .3 61.2c.5 1.3 10.2 1.3 11.3 0 .5-.6 1.5-3 2.3-5.3 2.8-8 2-7.6 14.6-7.6 12.9 0 12.8 0 15.3 7.5 1 2.7 2 5 2.4 5.3.8.6 11.5.6 12 .1.2-.2-5-14-11.5-30.6L34.7.4 29.1.2c-3-.2-5.7 0-6 .3M62 11c.2 5.6.5 19.4.5 30.5l.1 20.3h10l.2-30.5.2-30.6H61.4l.5 10.3m122.7-9.7c-.6.4-.8 9.5-.8 30.7v30.2h11.4l.2-17 .2-17 7.3 17 7.3 17 4.4-.2 4.3-.2 5.6-13.9c3-7.6 6.3-15.4 7.1-17.2l1.6-3.3-.2 17v17.2h5.4c3 0 5.5-.3 5.6-.6l.5-30.5.3-29.8h-11.4L231.8 5A712.7 712.7 0 0 1 215 46.1c-.3 0-3.3-6.4-6.6-14.1-3.4-7.8-7.8-17.9-10-22.5l-3.7-8.4-4.7-.2c-2.5 0-5 0-5.4.4M83 7c-.3.8-.3 4 0 7 .5 6.1.6 5.9-3.6 6.8-3 .6-3.1 8.4-.2 8.4 4.1 0 4-.1 4 14 0 18.2.6 19 12.7 19 10.1 0 10 0 10-5.7v-4.7l-5.3.5c-7.4.7-7.5.6-7.5-11.8 0-11.4-.3-10.8 6.3-10 6 .8 5.6 1.1 6-5.4l.3-4.6-6-.2-5.8-.2-.1-6c-.1-7.3-.2-7.4-5.9-8-3.9-.4-4.5-.3-5 1m216.5 0c-.3.7-.3 3.8 0 7 .5 6 .7 5.8-3.5 6.7-3 .6-3.2 8.4-.3 8.4 4.2 0 4.1-.1 4.1 14 0 18.2.5 19 12.7 19 10 0 10 0 10-5.7v-4.7l-5.3.5c-7.4.7-7.5.6-7.5-11.8 0-11.4-.4-10.8 6.2-10 6 .8 5.6 1.1 6-5.4l.3-4.6-5.9-.2-5.9-.2v-6c-.2-7.3-.3-7.4-6-8-3.8-.4-4.4-.3-4.9 1M37.3 38c0 .8-7.8 1.4-12.8.8-3.4-.3-4.3-.7-4.2-1.5.3-1.4 7.4-20.5 8-21.5.4-.5 9 20.7 9 22.2M120 21c-6.7 3.3-11 11-11 19.6 0 18 17.4 27.7 31.1 17.5 2.5-1.9 3.2-1.7 3.2.7 0 2.5 1.2 3 5.7 2.6l4.2-.3v-4.4l-.3-14.7c0-5.6.2-12.5.6-15.2 1-6 1.2-5.8-4.2-6.2l-4.3-.3-.5 2.7-.5 2.8-2.4-2.2a19.3 19.3 0 0 0-21.6-2.7m142.1-.2c-7.4 3.5-12 11.1-12 19.9 0 27.7 40.3 29.3 42.2 1.8 1.3-17-15-28.7-30.2-21.7m76 0c-7.3 3.5-12 11.1-12 19.9 0 27.7 40.3 29.3 42.3 1.8 1.2-17-15.1-28.7-30.2-21.7m37-1.2c-3.6.5-4 1-3 4.7.6 2 1.2 10.1 1.4 20.4l.4 17.2h9.5L384 48c.5-16.5.5-16.6 8.8-16.6 5.7 0 5.8 0 5.8-6.6v-4.3h-4.2c-3.2 0-5.2.5-7.7 1.7-3.7 2-4.2 1.9-4.2-1.1 0-2.2-.5-2.4-7.3-1.6M138.6 31.6c7.6 8.2 2.9 21-7.7 21-11.2 0-15.1-16.1-5.4-22.7 3.6-2.5 10-1.6 13.1 1.7m138.6-1.4c9.4 6.4 5.3 22.5-5.8 22.4-11.5 0-15.8-15.8-6-22.4 3.3-2.3 8.5-2.3 11.8 0m76 0c9.5 6.4 5.3 22.5-5.8 22.4-11.5 0-15.7-15.8-6-22.4 3.4-2.3 8.5-2.3 11.8 0" }));
8
- export {
9
- SvgAltaWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgBergeWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 668.52 142.47", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fill: "#304356", d: "M0 11.27h58.05V36.1H31.74v8.97h23.1v22.52h-23.1v30.36H0V11.27zM67.02 11.27h38c19.53 0 36.1 8.27 36.1 30.11 0 13.11-5.06 18.63-16.79 22.54v.66a21.57 21.57 0 0 1 5.28 5.18l18.87 28.16h-36.29L98.4 70.1h-.58v27.82h-30.8Zm30.8 38.4h2.19c5.17 0 10.35-.82 10.35-7.25 0-6.66-4.72-7.47-10.13-7.47h-2.41ZM173.24 11.27l9.65 22.63h.93c.91-2.75 1.71-5.5 2.86-8.15l6.21-14.48h35.42l-29.67 49.31v37.37h-30.8V60.58l-30.25-49.31ZM232.48 11.27h32.07c29.08 0 51.39 12.76 51.39 44.59 0 25.77-18.15 42.09-43.57 42.09h-39.89Zm31.5 60.7h2c10.45 0 18.5-4.83 18.5-16.22 0-12.18-7-17.35-18.5-17.35h-2ZM324.68 11.27h58.29v23.68H356.4v8.28h24.24v22.54H356.4v8.5h27.48v23.68h-59.2V11.27zM394.22 11.27h30.22l28.3 48h.9c-1.26-7.23-2.62-14.7-2.62-22.06v-26h30.11v86.68h-30.11l-27.71-45.47h-.92a103.24 103.24 0 0 1 1.92 17.37v28.16h-30.09ZM492.5 11.27h36.68c16.78 0 33.91 4 33.91 24 0 7.59-3.81 15.06-11.39 17.46v.7c9.42 3.33 15.4 10.23 15.4 20.57 0 17.82-16.54 23.92-31.72 23.92H492.5Zm32.08 33.31c4.6 0 9.75-.46 9.75-6.45 0-6.43-5.86-6-10.45-6h-2.19v12.45Zm-2.89 32.64h3.62c5.17 0 12.63-.12 12.63-7.23s-8-7.14-13.09-7.14h-3.12ZM589.31 89.78c-11.61-7.23-17.26-21.37-17.26-34.95 0-27.24 21.63-44.95 48-44.95a54.49 54.49 0 0 1 21.84 4L651.2-.03l7.8 5.41-8.89 12.91c12 9.53 17.82 20.79 17.82 36.54 0 27.83-21.5 44.49-47.94 44.49a65.74 65.74 0 0 1-22.43-4.74l-9.25 13.36-8-5.28ZM603.8 55.3c0 9.88 6.65 16.67 16.21 16.67s16.21-6.79 16.21-16.67c0-9.19-6.2-16.9-16.21-16.9s-16.21 7.71-16.21 16.9M232.49 120.29h203.54v22.18H232.49zM0 120.29h198.64v22.18H0zM469.88 120.29h198.64v22.18H469.88z" }));
28
- exports.default = SvgBergeWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgBergeWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 668.52 142.47", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fill: "#304356", d: "M0 11.27h58.05V36.1H31.74v8.97h23.1v22.52h-23.1v30.36H0V11.27zM67.02 11.27h38c19.53 0 36.1 8.27 36.1 30.11 0 13.11-5.06 18.63-16.79 22.54v.66a21.57 21.57 0 0 1 5.28 5.18l18.87 28.16h-36.29L98.4 70.1h-.58v27.82h-30.8Zm30.8 38.4h2.19c5.17 0 10.35-.82 10.35-7.25 0-6.66-4.72-7.47-10.13-7.47h-2.41ZM173.24 11.27l9.65 22.63h.93c.91-2.75 1.71-5.5 2.86-8.15l6.21-14.48h35.42l-29.67 49.31v37.37h-30.8V60.58l-30.25-49.31ZM232.48 11.27h32.07c29.08 0 51.39 12.76 51.39 44.59 0 25.77-18.15 42.09-43.57 42.09h-39.89Zm31.5 60.7h2c10.45 0 18.5-4.83 18.5-16.22 0-12.18-7-17.35-18.5-17.35h-2ZM324.68 11.27h58.29v23.68H356.4v8.28h24.24v22.54H356.4v8.5h27.48v23.68h-59.2V11.27zM394.22 11.27h30.22l28.3 48h.9c-1.26-7.23-2.62-14.7-2.62-22.06v-26h30.11v86.68h-30.11l-27.71-45.47h-.92a103.24 103.24 0 0 1 1.92 17.37v28.16h-30.09ZM492.5 11.27h36.68c16.78 0 33.91 4 33.91 24 0 7.59-3.81 15.06-11.39 17.46v.7c9.42 3.33 15.4 10.23 15.4 20.57 0 17.82-16.54 23.92-31.72 23.92H492.5Zm32.08 33.31c4.6 0 9.75-.46 9.75-6.45 0-6.43-5.86-6-10.45-6h-2.19v12.45Zm-2.89 32.64h3.62c5.17 0 12.63-.12 12.63-7.23s-8-7.14-13.09-7.14h-3.12ZM589.31 89.78c-11.61-7.23-17.26-21.37-17.26-34.95 0-27.24 21.63-44.95 48-44.95a54.49 54.49 0 0 1 21.84 4L651.2-.03l7.8 5.41-8.89 12.91c12 9.53 17.82 20.79 17.82 36.54 0 27.83-21.5 44.49-47.94 44.49a65.74 65.74 0 0 1-22.43-4.74l-9.25 13.36-8-5.28ZM603.8 55.3c0 9.88 6.65 16.67 16.21 16.67s16.21-6.79 16.21-16.67c0-9.19-6.2-16.9-16.21-16.9s-16.21 7.71-16.21 16.9M232.49 120.29h203.54v22.18H232.49zM0 120.29h198.64v22.18H0zM469.88 120.29h198.64v22.18H469.88z" }));
8
- export {
9
- SvgBergeWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgFremmeWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { preserveAspectRatio: "xMidYMid meet", "data-bbox": "139.4 246.5 919 120.2", viewBox: "139.4 246.5 919 120.2", xmlns: "http://www.w3.org/2000/svg", "data-type": "shape", role: "presentation", "aria-hidden": "true", "aria-label": "", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("g", null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M166.6 272.7v21.9c0 1.5 1.2 2.8 2.8 2.8h72.8c1.5 0 2.8 1.2 2.8 2.8V318c0 1.5-1.2 2.8-2.8 2.8h-72.8c-1.5 0-2.8 1.2-2.8 2.8v38.9c0 1.5-1.2 2.8-2.8 2.8h-21.6c-1.5 0-2.8-1.2-2.8-2.8V249.3c0-1.5 1.2-2.8 2.8-2.8h114.5c1.5 0 2.8 1.2 2.8 2.8v17.8c0 1.5-1.2 2.8-2.8 2.8h-87.4c-1.4.1-2.7 1.3-2.7 2.8z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M288 362.5v-89.9c0-1.6 1.3-2.8 2.8-2.8H312c1.6 0 2.8 1.3 2.8 2.8v8c0 3 3.2 3.8 5 1.9 8.2-9.2 20.9-14.2 34.8-14.8 1.6-.1 2.9 1.3 2.9 2.8v17.4c0 1.6-1.2 2.8-2.8 2.8-19.3.7-34.1 8.7-39.7 24.5-.1.3-.2.7-.2 1v46.3c0 1.6-1.3 2.8-2.8 2.8h-21.2c-1.5 0-2.8-1.2-2.8-2.8z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M437.4 347.4c14.4 0 23.8-3.5 32.6-10 1.1-.8 2.7-.7 3.6.3l10 10.9c1.1 1.2.9 2.9-.3 3.9-12.2 9.8-27.6 14.1-47.1 14.1-36.9 0-58.3-18.6-58.3-48.3 0-29.9 21.2-48.5 56.5-48.5 32.6 0 54.4 16.6 54.4 48.3 0 1.5 0 2.6-.2 3.5-.2 1.3-1.3 2.3-2.6 2.3h-80.6c-1.7 0-3 1.6-2.6 3.3 3.3 13.9 15.2 20.2 34.6 20.2zM407 307.9l53.7-.3c2 0 3.2-2.1 2.4-3.9-4.7-10.2-14.4-14.7-28.7-14.7-14.7 0-25.2 4.9-29.8 15-.8 1.8.4 3.9 2.4 3.9z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M947.3 347.5c14.4 0 23.8-3.5 32.6-10 1.1-.8 2.7-.7 3.6.3l10 10.9c1.1 1.2.9 2.9-.3 3.9-12.2 9.8-27.6 14.1-47.1 14.1-37 0-58.3-18.6-58.3-48.4 0-30 21.2-48.5 56.5-48.5 32.6 0 54.4 16.6 54.4 48.4 0 1.5 0 2.6-.2 3.5-.2 1.3-1.3 2.3-2.6 2.3h-80.6c-1.7 0-3 1.6-2.6 3.3 3.3 13.8 15.3 20.2 34.6 20.2zM917 307.9l53.7-.3c2 0 3.2-2.1 2.4-3.9-4.7-10.2-14.4-14.7-28.7-14.7-14.7 0-25.2 4.9-29.8 15-.9 1.8.4 3.9 2.4 3.9z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M1058.4 353.4c0 7.29-5.91 13.2-13.2 13.2-7.29 0-13.2-5.91-13.2-13.2 0-7.29 5.91-13.2 13.2-13.2 7.29 0 13.2 5.91 13.2 13.2z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M816.4 269.9c-17.1 0-30.7 7.8-38 19.6-1.1 1.8-3.8 1.7-4.7-.2-5.8-11.8-17.2-19.3-34.6-19.3-16.8 0-30.5 7.3-37.7 19.6 0 .1-.1.1-.1.2-1.2 1.6-3.7 1.5-4.6-.3-5.8-11.8-17.2-19.5-34.7-19.5-17.1 0-30.7 7.8-38 19.6-1.1 1.8-3.8 1.7-4.7-.2-5.8-11.8-17.2-19.3-34.6-19.3-13.7 0-25.3 4.8-33 13.3-1.7 1.8-4.7.6-4.7-1.9v-8.9c0-1.5-1.2-2.7-2.7-2.7h-20.4c-1.5 0-2.7 1.2-2.7 2.7v90.2c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.7-1.2 2.7-2.7v-52.5c0-.5.1-.9.3-1.4 6.5-11.8 15.9-18.2 28.9-18.2 15 0 22.2 8.4 22.2 22.7v49.4c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.8-1.2 2.7-2.8l-.1-15.5v-37.3c6.4-12.4 16.2-19.4 29.4-19.4 13.5 0 20.6 6.7 22 18.5v53.7c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.8-1.2 2.7-2.8l-.1-15.5.2-35.3c0-.7 0-1.3-.1-2v-.5c6.5-12.2 16-18.9 29.3-18.9 15 0 22.2 8.4 22.2 22.7v49.4c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.8-1.2 2.7-2.8l-.1-15.5v-37.3c6.4-12.4 16.2-19.4 29.4-19.4 15 0 22.2 8.4 22.2 22.7v49.4c0 1.5 1.2 2.7 2.7 2.7h20.3c1.5 0 2.7-1.2 2.7-2.7v-50.7c0-23.5-12.3-41.7-39.4-41.7z" })));
28
- exports.default = SvgFremmeWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgFremmeWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { preserveAspectRatio: "xMidYMid meet", "data-bbox": "139.4 246.5 919 120.2", viewBox: "139.4 246.5 919 120.2", xmlns: "http://www.w3.org/2000/svg", "data-type": "shape", role: "presentation", "aria-hidden": "true", "aria-label": "", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("g", null, /* @__PURE__ */ React.createElement("path", { d: "M166.6 272.7v21.9c0 1.5 1.2 2.8 2.8 2.8h72.8c1.5 0 2.8 1.2 2.8 2.8V318c0 1.5-1.2 2.8-2.8 2.8h-72.8c-1.5 0-2.8 1.2-2.8 2.8v38.9c0 1.5-1.2 2.8-2.8 2.8h-21.6c-1.5 0-2.8-1.2-2.8-2.8V249.3c0-1.5 1.2-2.8 2.8-2.8h114.5c1.5 0 2.8 1.2 2.8 2.8v17.8c0 1.5-1.2 2.8-2.8 2.8h-87.4c-1.4.1-2.7 1.3-2.7 2.8z" }), /* @__PURE__ */ React.createElement("path", { d: "M288 362.5v-89.9c0-1.6 1.3-2.8 2.8-2.8H312c1.6 0 2.8 1.3 2.8 2.8v8c0 3 3.2 3.8 5 1.9 8.2-9.2 20.9-14.2 34.8-14.8 1.6-.1 2.9 1.3 2.9 2.8v17.4c0 1.6-1.2 2.8-2.8 2.8-19.3.7-34.1 8.7-39.7 24.5-.1.3-.2.7-.2 1v46.3c0 1.6-1.3 2.8-2.8 2.8h-21.2c-1.5 0-2.8-1.2-2.8-2.8z" }), /* @__PURE__ */ React.createElement("path", { d: "M437.4 347.4c14.4 0 23.8-3.5 32.6-10 1.1-.8 2.7-.7 3.6.3l10 10.9c1.1 1.2.9 2.9-.3 3.9-12.2 9.8-27.6 14.1-47.1 14.1-36.9 0-58.3-18.6-58.3-48.3 0-29.9 21.2-48.5 56.5-48.5 32.6 0 54.4 16.6 54.4 48.3 0 1.5 0 2.6-.2 3.5-.2 1.3-1.3 2.3-2.6 2.3h-80.6c-1.7 0-3 1.6-2.6 3.3 3.3 13.9 15.2 20.2 34.6 20.2zM407 307.9l53.7-.3c2 0 3.2-2.1 2.4-3.9-4.7-10.2-14.4-14.7-28.7-14.7-14.7 0-25.2 4.9-29.8 15-.8 1.8.4 3.9 2.4 3.9z" }), /* @__PURE__ */ React.createElement("path", { d: "M947.3 347.5c14.4 0 23.8-3.5 32.6-10 1.1-.8 2.7-.7 3.6.3l10 10.9c1.1 1.2.9 2.9-.3 3.9-12.2 9.8-27.6 14.1-47.1 14.1-37 0-58.3-18.6-58.3-48.4 0-30 21.2-48.5 56.5-48.5 32.6 0 54.4 16.6 54.4 48.4 0 1.5 0 2.6-.2 3.5-.2 1.3-1.3 2.3-2.6 2.3h-80.6c-1.7 0-3 1.6-2.6 3.3 3.3 13.8 15.3 20.2 34.6 20.2zM917 307.9l53.7-.3c2 0 3.2-2.1 2.4-3.9-4.7-10.2-14.4-14.7-28.7-14.7-14.7 0-25.2 4.9-29.8 15-.9 1.8.4 3.9 2.4 3.9z" }), /* @__PURE__ */ React.createElement("path", { d: "M1058.4 353.4c0 7.29-5.91 13.2-13.2 13.2-7.29 0-13.2-5.91-13.2-13.2 0-7.29 5.91-13.2 13.2-13.2 7.29 0 13.2 5.91 13.2 13.2z" }), /* @__PURE__ */ React.createElement("path", { d: "M816.4 269.9c-17.1 0-30.7 7.8-38 19.6-1.1 1.8-3.8 1.7-4.7-.2-5.8-11.8-17.2-19.3-34.6-19.3-16.8 0-30.5 7.3-37.7 19.6 0 .1-.1.1-.1.2-1.2 1.6-3.7 1.5-4.6-.3-5.8-11.8-17.2-19.5-34.7-19.5-17.1 0-30.7 7.8-38 19.6-1.1 1.8-3.8 1.7-4.7-.2-5.8-11.8-17.2-19.3-34.6-19.3-13.7 0-25.3 4.8-33 13.3-1.7 1.8-4.7.6-4.7-1.9v-8.9c0-1.5-1.2-2.7-2.7-2.7h-20.4c-1.5 0-2.7 1.2-2.7 2.7v90.2c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.7-1.2 2.7-2.7v-52.5c0-.5.1-.9.3-1.4 6.5-11.8 15.9-18.2 28.9-18.2 15 0 22.2 8.4 22.2 22.7v49.4c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.8-1.2 2.7-2.8l-.1-15.5v-37.3c6.4-12.4 16.2-19.4 29.4-19.4 13.5 0 20.6 6.7 22 18.5v53.7c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.8-1.2 2.7-2.8l-.1-15.5.2-35.3c0-.7 0-1.3-.1-2v-.5c6.5-12.2 16-18.9 29.3-18.9 15 0 22.2 8.4 22.2 22.7v49.4c0 1.5 1.2 2.7 2.7 2.7h20.4c1.5 0 2.8-1.2 2.7-2.8l-.1-15.5v-37.3c6.4-12.4 16.2-19.4 29.4-19.4 15 0 22.2 8.4 22.2 22.7v49.4c0 1.5 1.2 2.7 2.7 2.7h20.3c1.5 0 2.7-1.2 2.7-2.7v-50.7c0-23.5-12.3-41.7-39.4-41.7z" })));
8
- export {
9
- SvgFremmeWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgKirkenesWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 55.5", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", d: "M49.3.8c-3.6 2.2-3.3 8.2.4 10 6 2.7 11.7-2.8 8.7-8.4C57.2.1 52-.8 49.3.8M366 1c-3.4 2.2-3 8 .6 9.7 5.9 2.8 11.6-2.7 8.7-8.3C374 0 368.8-.9 366 1M96 27.8v26.9h10.7v-8.4l.2-8.3 6.3 8.3 6.4 8.3h6c5.2 0 6 0 6-.6 0-.4-3.2-4.7-7.1-9.6-4.9-6-7.1-9-6.8-9.4a165.5 165.5 0 0 0 13.1-16.9c0-.7-.5-.7-5.7-.7h-5.7l-6.2 8-6.3 8.2-.1-16.4-.1-16.4H96.2v27m288.1-3.5c0 31 0 30.8 10.4 30.8 5.5 0 5.3.1 5.3-4v-3.6l-2.4-.1-2.5-.2V24L394.8.8h-10.6v23.5M0 28.6v26h10.6V43.3l.2-11.4 9.5 11.4L30 54.7H36c5.7 0 6.3-.1 6.3-.8 0-.4-4.1-5.6-9.2-11.5L23 30.2 22 29l9.8-12.6A216 216 0 0 0 41.5 3c0-.4-1.4-.6-6.1-.6h-6.2L20 14.8l-9.2 12.3-.1-12.3-.1-12.3H0v26.1m316.1 0v26h12.4c13.3 0 17-.3 21-2 9.2-4 10-19.4 1.2-24l-2.3-1.2 1.1-.7c7.5-4.6 6.7-17.8-1.3-21.9-3.9-2-6.4-2.2-19.7-2.3h-12.4v26.1m23.8-16.2c2.4 1 3.1 2.2 3.1 5 0 4.8-1.8 5.8-10.3 5.9h-5.6v-12l5.7.3c3.4.1 6.2.4 7 .8M85 16.4c-2 .4-5.4 2.4-6.4 3.7-.9 1.5-1.2 1.4-1.8-.8l-.5-2h-8.8v37.4H78V28.8l1.7-1.2a12 12 0 0 1 8-2l2 .3.3-2 .5-4.7.3-2.7h-1.5l-2-.1h-2.4m63.8.2c-17.4 2.1-21.5 29.2-5.6 37.1a32.7 32.7 0 0 0 23-.5c1.5-.8 1.5-.4.2-4.7-1.3-4-1-4-4.9-2.7-8 2.7-14.8.8-16.7-4.5l-.6-1.7h12.3l12.2-.2.3-1.5c2.6-14-6-23-20.2-21.3m46.5 0c-2.5.3-5.8 1.8-7.8 3.4l-1.1.8-.7-1.7-.6-1.7h-8.7v37.3h10.6V28.4l2-1.3c3.7-2.4 8-2.5 10.3-.1 1.8 1.7 2 4.3 2 16.7v11H212V42.2c0-7-.2-13.5-.5-14.9-1.4-7.9-7.6-12-16.2-10.7m38.7 0c-17.4 2.1-21.3 29.8-5.2 37.3a32.8 32.8 0 0 0 21.2-.2c3-1 3-1 1.7-5.3-1.3-3.9-1-3.7-4.6-2.6-9.5 2.6-16 .7-17.2-5l-.2-1.4h12c8 0 12.3-.1 12.4-.4.7-1.1.4-10.4-.4-12.5-2.7-7.5-9.9-11.1-19.7-10m38.2 0c-7.6 1-12 5.4-12 12.2.1 6.2 3.5 9.1 13.5 11.5 5.3 1.3 6.9 2.7 6 5-1 2.7-7 3-13.5.6-4.1-1.5-3.7-1.7-5.5 2.8-1.7 4.1-2 3.8 3.4 5.5a35.3 35.3 0 0 0 19.3 0c4.7-2.2 6.6-5 6.8-10 .4-7.2-2.6-9.9-14.7-13-4.5-1-6-2.9-4-5 1.7-2.2 6.3-2 14.4.4.9.3 4-6.5 3.4-7.4a33.2 33.2 0 0 0-17-2.5M47.4 36v18.7H58V17.4H47.5V36m317 0v18.7h10.9V17.4h-11V36m-208-10.7c1.5.9 3 3.6 3 5.6v1.3H144l.2-1.2c1.4-5.8 7.3-8.6 12-5.7m85.3 0c1.6.9 2.8 3 3 5.2l.1 1.5-7.6.1-7.6.1.3-1.5c.9-5.3 7-8.1 11.8-5.4m99.7 7.7c2.7 1 3.7 2.3 4 5.4.3 5.4-1.8 6.6-11.3 6.9l-6.9.1V32.2h6c4.6 0 6.6.2 8.2.8" }));
28
- exports.default = SvgKirkenesWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgKirkenesWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 55.5", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M49.3.8c-3.6 2.2-3.3 8.2.4 10 6 2.7 11.7-2.8 8.7-8.4C57.2.1 52-.8 49.3.8M366 1c-3.4 2.2-3 8 .6 9.7 5.9 2.8 11.6-2.7 8.7-8.3C374 0 368.8-.9 366 1M96 27.8v26.9h10.7v-8.4l.2-8.3 6.3 8.3 6.4 8.3h6c5.2 0 6 0 6-.6 0-.4-3.2-4.7-7.1-9.6-4.9-6-7.1-9-6.8-9.4a165.5 165.5 0 0 0 13.1-16.9c0-.7-.5-.7-5.7-.7h-5.7l-6.2 8-6.3 8.2-.1-16.4-.1-16.4H96.2v27m288.1-3.5c0 31 0 30.8 10.4 30.8 5.5 0 5.3.1 5.3-4v-3.6l-2.4-.1-2.5-.2V24L394.8.8h-10.6v23.5M0 28.6v26h10.6V43.3l.2-11.4 9.5 11.4L30 54.7H36c5.7 0 6.3-.1 6.3-.8 0-.4-4.1-5.6-9.2-11.5L23 30.2 22 29l9.8-12.6A216 216 0 0 0 41.5 3c0-.4-1.4-.6-6.1-.6h-6.2L20 14.8l-9.2 12.3-.1-12.3-.1-12.3H0v26.1m316.1 0v26h12.4c13.3 0 17-.3 21-2 9.2-4 10-19.4 1.2-24l-2.3-1.2 1.1-.7c7.5-4.6 6.7-17.8-1.3-21.9-3.9-2-6.4-2.2-19.7-2.3h-12.4v26.1m23.8-16.2c2.4 1 3.1 2.2 3.1 5 0 4.8-1.8 5.8-10.3 5.9h-5.6v-12l5.7.3c3.4.1 6.2.4 7 .8M85 16.4c-2 .4-5.4 2.4-6.4 3.7-.9 1.5-1.2 1.4-1.8-.8l-.5-2h-8.8v37.4H78V28.8l1.7-1.2a12 12 0 0 1 8-2l2 .3.3-2 .5-4.7.3-2.7h-1.5l-2-.1h-2.4m63.8.2c-17.4 2.1-21.5 29.2-5.6 37.1a32.7 32.7 0 0 0 23-.5c1.5-.8 1.5-.4.2-4.7-1.3-4-1-4-4.9-2.7-8 2.7-14.8.8-16.7-4.5l-.6-1.7h12.3l12.2-.2.3-1.5c2.6-14-6-23-20.2-21.3m46.5 0c-2.5.3-5.8 1.8-7.8 3.4l-1.1.8-.7-1.7-.6-1.7h-8.7v37.3h10.6V28.4l2-1.3c3.7-2.4 8-2.5 10.3-.1 1.8 1.7 2 4.3 2 16.7v11H212V42.2c0-7-.2-13.5-.5-14.9-1.4-7.9-7.6-12-16.2-10.7m38.7 0c-17.4 2.1-21.3 29.8-5.2 37.3a32.8 32.8 0 0 0 21.2-.2c3-1 3-1 1.7-5.3-1.3-3.9-1-3.7-4.6-2.6-9.5 2.6-16 .7-17.2-5l-.2-1.4h12c8 0 12.3-.1 12.4-.4.7-1.1.4-10.4-.4-12.5-2.7-7.5-9.9-11.1-19.7-10m38.2 0c-7.6 1-12 5.4-12 12.2.1 6.2 3.5 9.1 13.5 11.5 5.3 1.3 6.9 2.7 6 5-1 2.7-7 3-13.5.6-4.1-1.5-3.7-1.7-5.5 2.8-1.7 4.1-2 3.8 3.4 5.5a35.3 35.3 0 0 0 19.3 0c4.7-2.2 6.6-5 6.8-10 .4-7.2-2.6-9.9-14.7-13-4.5-1-6-2.9-4-5 1.7-2.2 6.3-2 14.4.4.9.3 4-6.5 3.4-7.4a33.2 33.2 0 0 0-17-2.5M47.4 36v18.7H58V17.4H47.5V36m317 0v18.7h10.9V17.4h-11V36m-208-10.7c1.5.9 3 3.6 3 5.6v1.3H144l.2-1.2c1.4-5.8 7.3-8.6 12-5.7m85.3 0c1.6.9 2.8 3 3 5.2l.1 1.5-7.6.1-7.6.1.3-1.5c.9-5.3 7-8.1 11.8-5.4m99.7 7.7c2.7 1 3.7 2.3 4 5.4.3 5.4-1.8 6.6-11.3 6.9l-6.9.1V32.2h6c4.6 0 6.6.2 8.2.8" }));
8
- export {
9
- SvgKirkenesWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgMobileWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 650 170", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fill: "#e45404", fillRule: "evenodd", d: "M518.7 49.1c-1 .6-2.5 2.6-3.3 4.4-1 2.5-1.1 4-.3 6.3.7 2.1 5.6 6.8 15.5 14.9l14.5 11.8h21.7c17.3.1 22.9.5 27.6 1.8 3.3 1 8.6 3.2 11.8 4.9 3.3 1.7 6.8 4.3 7.9 5.6 1.2 1.5 1.9 4 1.9 6.6 0 2.3-.5 4.7-1.2 5.4-.7.7-2.5 1.2-4 1.2-2.2 0-3.2-.8-4.7-3.9a30 30 0 0 0-6.2-7.4c-2.3-2-6.2-4.3-8.7-5.1-2.5-.9-6.4-1.6-8.8-1.6-2.3 0-6 .7-8.5 1.5a34 34 0 0 0-7.7 4.2 33.4 33.4 0 0 0-6.5 7.5l-3 4.8H527l-9.8 8a100 100 0 0 0-10 9c-.2.6 9.4 1 24.6 1h25l2.7 4.5c1.4 2.5 4.5 6 6.8 7.6a37 37 0 0 0 9.4 4.5c3.6 1 7 1.4 10.3.9a28.2 28.2 0 0 0 18.8-12c3.3-4.8 3.6-5 9.4-5.8a36 36 0 0 0 9.2-2.4c1.7-.8 4.2-2.5 5.4-3.7 1.3-1.1 3-3.4 4-5 .8-1.8 1.5-5.6 1.5-9.2 0-3.4-.8-8.5-1.8-11.5A25 25 0 0 0 626 88a64.1 64.1 0 0 0-30.4-15.2c-6.4-1.3-14.2-2-25.5-2.3l-16.2-.4-13.2-11c-11.4-9.7-13.6-11.1-16.7-11-2 0-4.4.4-5.4 1m60.8 56c-1.6.3-4 1-5.1 1.7a21 21 0 0 0-4.7 4.2c-1.5 1.7-2.9 5-3.3 7.5-.5 3.6-.2 5.4 1.7 9.2a22 22 0 0 0 5 6.6c1.5 1.1 5 2.2 7.6 2.4 3 .3 6.2 0 8.4-1 2-.8 5-3.2 6.5-5.3 2.4-3.1 2.9-4.7 2.9-9.5 0-4.3-.5-6.5-2-8.5a27.4 27.4 0 0 0-4.6-4.7c-1.4-1-4.1-2.2-6-2.6-1.9-.4-4.8-.4-6.4 0" }), /* @__PURE__ */ React__namespace.createElement("path", { fill: "#8c8c8c", fillRule: "evenodd", d: "M266.4 23.4c-1.7.8-3.9 2.4-4.8 3.7-1.4 2-1.6 7-1.6 42.2 0 31.9.3 40.4 1.4 43.1a34 34 0 0 0 14 14.4c5 2.6 5.5 2.7 26.4 3 17.6.3 22.2 0 26.5-1.3 2.9-.9 7.2-3 9.7-4.9 2.7-2 5.7-5.5 7.5-8.7 3-5.4 3-5.4 3-24.4 0-17.9-.1-19.3-2.3-23.7a34.2 34.2 0 0 0-6.9-8.7 35.2 35.2 0 0 0-9.6-5.8c-4.4-1.5-8.5-1.8-26.4-1.8h-21.1l-.4-10.7c-.3-10.5-.4-10.9-3.3-13.7a14.5 14.5 0 0 0-6-3.5c-1.6-.3-4.4 0-6.1.8m131.7-.2c-1.3.7-3.4 2.6-4.5 4.1-2 2.8-2.1 3.9-2.4 52.8l-.3 50 11.3-.3 11.3-.3.3-47.5c.2-30.5 0-48.8-.7-51a15 15 0 0 0-3.4-5.8 12.5 12.5 0 0 0-5.8-2.8c-1.9-.2-4.5.1-5.8.8m-34 27.2c-1.3.7-3 2.4-3.7 3.7-1 1.9-1.3 10.6-1.4 39.1V130h22l-.2-37.6c-.3-37.6-.3-37.6-3.6-40.5-2.4-2.1-4.2-2.9-7-2.9-2 0-4.8.7-6 1.4m-320 1.1c-2.8.8-7 2.4-9.3 3.5a40.7 40.7 0 0 0-15.1 14.7A44 44 0 0 0 16 81c-.6 3.8-1 15.2-.8 27.5l.3 21 11.2.3 11.2.3.3-25.5c.3-23.9.4-25.6 2.4-28.2a28 28 0 0 1 4.7-4.8c1.5-1.1 4.8-2.1 8-2.4 3.6-.3 6.3 0 8.3 1.1a20.8 20.8 0 0 1 9.3 10.6c.7 2.1 1.1 11.9 1.1 26.2V130h22v-24c0-22 .2-24.4 2-28 1-2 3.4-4.9 5.2-6.1 2.1-1.6 5-2.4 8.7-2.6 4.4-.3 6.4.1 9.6 2 2.6 1.4 4.8 3.8 6.3 6.7 2 4.2 2.2 5.5 2.2 28.2V130h22.1l-.3-26.8c-.3-26.7-.3-26.7-3.1-32-1.6-3-4.8-7.4-7.3-9.7a45.3 45.3 0 0 0-9.7-7c-2.9-1.3-7.9-3-11.2-3.6-3.3-.6-8.6-.8-12-.4-3.2.3-8 1.4-10.5 2.4-2.6 1-6.7 3.2-9.2 5-4 2.7-4.7 2.9-5.9 1.5-.7-.9-3.8-2.8-6.8-4.4-3.1-1.5-8-3.3-10.9-3.9-3-.6-7.2-1-9.5-1s-6.6.7-9.4 1.4M184 51c-2.4.5-6.3 1.9-8.7 3A31.6 31.6 0 0 0 162.2 68c-1.4 3-1.7 7-1.7 22.6 0 19 0 19 3 24.4a28.2 28.2 0 0 0 16.3 13.3c3.8 1.4 8.4 1.7 25 1.8 18.2 0 20.7-.2 25.8-2.1 3.2-1.2 7.7-4 10-6.1 2.4-2.2 5.2-5.9 6.3-8.2 1.9-3.8 2.1-6.1 2.1-23.2 0-18.4 0-19.2-2.6-24.2-1.4-2.8-4-6.4-5.7-7.8A47.5 47.5 0 0 0 232 53c-5.2-2.4-6.4-2.6-24.5-2.8-10.4 0-21 .2-23.4.7m263.1 0a32.7 32.7 0 0 0-16.9 9.3c-2 2.2-4.2 5.6-5.1 7.6-1.4 3-1.7 7-1.7 22.1 0 16.7.2 19 2.1 23 1.2 2.6 3.7 6.2 5.6 8.2 2 1.9 5.7 4.5 8.4 5.9 4.7 2.3 5.9 2.4 28.1 2.7l23.2.3 10.6-8.8 10.5-8.8-30.2-.5c-21.2-.3-31-.9-32.4-1.7a7 7 0 0 1-2.8-2.9 14 14 0 0 1-.6-4c0-1.4.4-3.4 1-4.4.5-1 2.4-2.3 4.1-2.9 2-.7 11.7-1.1 25.1-1.1 18.2 0 22.4-.3 25.1-1.6a30 30 0 0 0 5.5-3.8 21 21 0 0 0 3.8-4.8c.8-1.5 1.4-5.1 1.4-8 0-3.8-.8-7-2.6-10.6-1.4-2.8-4-6.4-5.7-7.8A47.5 47.5 0 0 0 495 53c-5.2-2.4-6.4-2.6-24.5-2.8-10.4 0-21 .2-23.3.7M185.6 71c-2.6 2.1-2.6 2.1-2.6 19 0 15.5.2 17.2 2 19 1 1 3.5 2.2 5.4 2.5 1.9.4 9.8.5 17.6.3 14.1-.3 14.2-.3 16.6-3.1 2.3-2.7 2.4-3.3 2.4-18.8 0-15.6 0-16-2.5-18.4-2.4-2.5-2.7-2.5-19.3-2.5-15.6 0-17.1.2-19.6 2m98.9.5c-2.4 2.4-2.5 2.8-2.5 18.4 0 15.5 0 16 2.4 18.8 2.4 2.8 2.5 2.8 16.7 3.1 7.8.2 15.8 0 17.6-.3a12 12 0 0 0 5.4-2.6c1.7-1.7 1.9-3.4 1.9-18.8 0-17 0-17-2.6-19-2.5-2-4-2.1-19.6-2.1-16.6 0-17 0-19.3 2.5m163.9 0c-2 2-2.5 3.4-2.2 6.3l.3 3.7h43l.3-3.7c.3-3-.2-4.3-2.2-6.3C485.1 69 485 69 468 69c-17 0-17.1 0-19.6 2.5" }));
28
- exports.default = SvgMobileWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgMobileWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 650 170", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fill: "#e45404", fillRule: "evenodd", d: "M518.7 49.1c-1 .6-2.5 2.6-3.3 4.4-1 2.5-1.1 4-.3 6.3.7 2.1 5.6 6.8 15.5 14.9l14.5 11.8h21.7c17.3.1 22.9.5 27.6 1.8 3.3 1 8.6 3.2 11.8 4.9 3.3 1.7 6.8 4.3 7.9 5.6 1.2 1.5 1.9 4 1.9 6.6 0 2.3-.5 4.7-1.2 5.4-.7.7-2.5 1.2-4 1.2-2.2 0-3.2-.8-4.7-3.9a30 30 0 0 0-6.2-7.4c-2.3-2-6.2-4.3-8.7-5.1-2.5-.9-6.4-1.6-8.8-1.6-2.3 0-6 .7-8.5 1.5a34 34 0 0 0-7.7 4.2 33.4 33.4 0 0 0-6.5 7.5l-3 4.8H527l-9.8 8a100 100 0 0 0-10 9c-.2.6 9.4 1 24.6 1h25l2.7 4.5c1.4 2.5 4.5 6 6.8 7.6a37 37 0 0 0 9.4 4.5c3.6 1 7 1.4 10.3.9a28.2 28.2 0 0 0 18.8-12c3.3-4.8 3.6-5 9.4-5.8a36 36 0 0 0 9.2-2.4c1.7-.8 4.2-2.5 5.4-3.7 1.3-1.1 3-3.4 4-5 .8-1.8 1.5-5.6 1.5-9.2 0-3.4-.8-8.5-1.8-11.5A25 25 0 0 0 626 88a64.1 64.1 0 0 0-30.4-15.2c-6.4-1.3-14.2-2-25.5-2.3l-16.2-.4-13.2-11c-11.4-9.7-13.6-11.1-16.7-11-2 0-4.4.4-5.4 1m60.8 56c-1.6.3-4 1-5.1 1.7a21 21 0 0 0-4.7 4.2c-1.5 1.7-2.9 5-3.3 7.5-.5 3.6-.2 5.4 1.7 9.2a22 22 0 0 0 5 6.6c1.5 1.1 5 2.2 7.6 2.4 3 .3 6.2 0 8.4-1 2-.8 5-3.2 6.5-5.3 2.4-3.1 2.9-4.7 2.9-9.5 0-4.3-.5-6.5-2-8.5a27.4 27.4 0 0 0-4.6-4.7c-1.4-1-4.1-2.2-6-2.6-1.9-.4-4.8-.4-6.4 0" }), /* @__PURE__ */ React.createElement("path", { fill: "#8c8c8c", fillRule: "evenodd", d: "M266.4 23.4c-1.7.8-3.9 2.4-4.8 3.7-1.4 2-1.6 7-1.6 42.2 0 31.9.3 40.4 1.4 43.1a34 34 0 0 0 14 14.4c5 2.6 5.5 2.7 26.4 3 17.6.3 22.2 0 26.5-1.3 2.9-.9 7.2-3 9.7-4.9 2.7-2 5.7-5.5 7.5-8.7 3-5.4 3-5.4 3-24.4 0-17.9-.1-19.3-2.3-23.7a34.2 34.2 0 0 0-6.9-8.7 35.2 35.2 0 0 0-9.6-5.8c-4.4-1.5-8.5-1.8-26.4-1.8h-21.1l-.4-10.7c-.3-10.5-.4-10.9-3.3-13.7a14.5 14.5 0 0 0-6-3.5c-1.6-.3-4.4 0-6.1.8m131.7-.2c-1.3.7-3.4 2.6-4.5 4.1-2 2.8-2.1 3.9-2.4 52.8l-.3 50 11.3-.3 11.3-.3.3-47.5c.2-30.5 0-48.8-.7-51a15 15 0 0 0-3.4-5.8 12.5 12.5 0 0 0-5.8-2.8c-1.9-.2-4.5.1-5.8.8m-34 27.2c-1.3.7-3 2.4-3.7 3.7-1 1.9-1.3 10.6-1.4 39.1V130h22l-.2-37.6c-.3-37.6-.3-37.6-3.6-40.5-2.4-2.1-4.2-2.9-7-2.9-2 0-4.8.7-6 1.4m-320 1.1c-2.8.8-7 2.4-9.3 3.5a40.7 40.7 0 0 0-15.1 14.7A44 44 0 0 0 16 81c-.6 3.8-1 15.2-.8 27.5l.3 21 11.2.3 11.2.3.3-25.5c.3-23.9.4-25.6 2.4-28.2a28 28 0 0 1 4.7-4.8c1.5-1.1 4.8-2.1 8-2.4 3.6-.3 6.3 0 8.3 1.1a20.8 20.8 0 0 1 9.3 10.6c.7 2.1 1.1 11.9 1.1 26.2V130h22v-24c0-22 .2-24.4 2-28 1-2 3.4-4.9 5.2-6.1 2.1-1.6 5-2.4 8.7-2.6 4.4-.3 6.4.1 9.6 2 2.6 1.4 4.8 3.8 6.3 6.7 2 4.2 2.2 5.5 2.2 28.2V130h22.1l-.3-26.8c-.3-26.7-.3-26.7-3.1-32-1.6-3-4.8-7.4-7.3-9.7a45.3 45.3 0 0 0-9.7-7c-2.9-1.3-7.9-3-11.2-3.6-3.3-.6-8.6-.8-12-.4-3.2.3-8 1.4-10.5 2.4-2.6 1-6.7 3.2-9.2 5-4 2.7-4.7 2.9-5.9 1.5-.7-.9-3.8-2.8-6.8-4.4-3.1-1.5-8-3.3-10.9-3.9-3-.6-7.2-1-9.5-1s-6.6.7-9.4 1.4M184 51c-2.4.5-6.3 1.9-8.7 3A31.6 31.6 0 0 0 162.2 68c-1.4 3-1.7 7-1.7 22.6 0 19 0 19 3 24.4a28.2 28.2 0 0 0 16.3 13.3c3.8 1.4 8.4 1.7 25 1.8 18.2 0 20.7-.2 25.8-2.1 3.2-1.2 7.7-4 10-6.1 2.4-2.2 5.2-5.9 6.3-8.2 1.9-3.8 2.1-6.1 2.1-23.2 0-18.4 0-19.2-2.6-24.2-1.4-2.8-4-6.4-5.7-7.8A47.5 47.5 0 0 0 232 53c-5.2-2.4-6.4-2.6-24.5-2.8-10.4 0-21 .2-23.4.7m263.1 0a32.7 32.7 0 0 0-16.9 9.3c-2 2.2-4.2 5.6-5.1 7.6-1.4 3-1.7 7-1.7 22.1 0 16.7.2 19 2.1 23 1.2 2.6 3.7 6.2 5.6 8.2 2 1.9 5.7 4.5 8.4 5.9 4.7 2.3 5.9 2.4 28.1 2.7l23.2.3 10.6-8.8 10.5-8.8-30.2-.5c-21.2-.3-31-.9-32.4-1.7a7 7 0 0 1-2.8-2.9 14 14 0 0 1-.6-4c0-1.4.4-3.4 1-4.4.5-1 2.4-2.3 4.1-2.9 2-.7 11.7-1.1 25.1-1.1 18.2 0 22.4-.3 25.1-1.6a30 30 0 0 0 5.5-3.8 21 21 0 0 0 3.8-4.8c.8-1.5 1.4-5.1 1.4-8 0-3.8-.8-7-2.6-10.6-1.4-2.8-4-6.4-5.7-7.8A47.5 47.5 0 0 0 495 53c-5.2-2.4-6.4-2.6-24.5-2.8-10.4 0-21 .2-23.3.7M185.6 71c-2.6 2.1-2.6 2.1-2.6 19 0 15.5.2 17.2 2 19 1 1 3.5 2.2 5.4 2.5 1.9.4 9.8.5 17.6.3 14.1-.3 14.2-.3 16.6-3.1 2.3-2.7 2.4-3.3 2.4-18.8 0-15.6 0-16-2.5-18.4-2.4-2.5-2.7-2.5-19.3-2.5-15.6 0-17.1.2-19.6 2m98.9.5c-2.4 2.4-2.5 2.8-2.5 18.4 0 15.5 0 16 2.4 18.8 2.4 2.8 2.5 2.8 16.7 3.1 7.8.2 15.8 0 17.6-.3a12 12 0 0 0 5.4-2.6c1.7-1.7 1.9-3.4 1.9-18.8 0-17 0-17-2.6-19-2.5-2-4-2.1-19.6-2.1-16.6 0-17 0-19.3 2.5m163.9 0c-2 2-2.5 3.4-2.2 6.3l.3 3.7h43l.3-3.7c.3-3-.2-4.3-2.2-6.3C485.1 69 485 69 468 69c-17 0-17.1 0-19.6 2.5" }));
8
- export {
9
- SvgMobileWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgSlatlemWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 96 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M38.5934 -4.56667e-05H39.0093H39.6699L35.0216 24H28.5139L30.1531 20.3058H26.5567L24.1592 24H17.6271L20.8809 20.3058H17.5048C15.7678 20.3058 14.5934 20.0122 14.0308 19.3761C13.4436 18.74 13.4925 17.8348 14.1286 16.685L20.4895 5.25989H25.0399L18.7769 16.5871C18.3121 17.4189 18.2387 17.9571 18.5323 18.2263C18.8259 18.4954 19.3641 18.6177 20.1714 18.6177H22.4222L22.8136 18.1773L38.5934 -4.56667e-05ZM29.1011 16.3669H31.9145L33.8717 11.9633H31.939L29.1011 16.3669ZM33.4069 9.68803H34.8748L36.0246 7.11922H35.0705L33.4069 9.68803ZM35.9023 5.79812H36.6118L37.2968 4.2813H36.9054L35.9023 5.79812ZM9.67601 19.1559C11.1439 18.4464 12.2693 17.37 13.0522 15.9755C13.4681 15.266 13.6393 14.6299 13.5415 14.0183C13.517 13.4556 13.2723 12.8684 12.783 12.3058C12.4895 11.9877 11.9757 11.4984 11.2418 10.8868C10.9044 10.6056 10.6394 10.3814 10.4444 10.2163C10.2151 10.0223 10.0826 9.91017 10.043 9.88373C9.60261 9.4923 9.35796 9.17425 9.2601 8.90514C9.16224 8.66049 9.21117 8.36691 9.35796 8.0978C9.55368 7.75529 9.8228 7.46171 10.1898 7.266C10.5567 7.07028 10.9726 6.97242 11.4375 6.97242C12.0002 6.97242 12.3182 7.09474 12.4405 7.36386C12.5629 7.6085 12.465 7.99994 12.1959 8.48924H16.4528C17.0889 7.33939 17.1133 6.43419 16.4772 5.77364C15.8656 5.11309 14.6913 4.79505 12.9543 4.79505C11.2418 4.79505 9.65154 5.13756 8.18365 5.82257C6.74023 6.50759 5.68824 7.41279 5.05215 8.53817C4.68518 9.19872 4.53839 9.81034 4.61179 10.373C4.68518 10.9357 4.97876 11.4984 5.49252 12.0366C5.56668 12.0861 5.70327 12.2104 5.91176 12.4003L5.91178 12.4003C6.11599 12.5862 6.38918 12.8349 6.74023 13.1376C7.44971 13.7736 7.89007 14.1895 8.06133 14.3853C8.40383 14.7522 8.59955 15.1192 8.67295 15.4862C8.74634 15.8287 8.64848 16.2446 8.40383 16.685C8.15919 17.1253 7.79221 17.4434 7.32738 17.688C6.83809 17.9327 6.29986 18.055 5.68824 18.055C5.07662 18.055 4.68518 17.9327 4.53839 17.6636C4.3916 17.3944 4.465 17.003 4.73411 16.5137H0.501692C-0.183323 17.7125 -0.158857 18.6421 0.526159 19.2782C1.23564 19.9143 2.50781 20.2324 4.36714 20.2324C6.44665 20.2324 8.20812 19.8654 9.67601 19.1559ZM52.465 6.94796L53.3947 5.25989H40.3304L39.4008 6.94796H43.6332L36.2204 20.3058H40.7708L48.1837 6.94796H52.465ZM58.043 18.5932L58.0295 18.6177H54.0552C53.2724 18.6177 52.7097 18.4954 52.4161 18.2262C52.1225 17.9571 52.1959 17.4189 52.6607 16.5871L58.9482 5.25989H54.3977L48.0369 16.685C47.4008 17.8348 47.3763 18.7155 47.939 19.3516C48.5017 19.9633 49.676 20.2813 51.413 20.2813H57.1133L58.0295 18.6177H58.043V18.5932ZM68.832 18.5933L67.9023 20.2813H62.6913C60.783 20.2813 59.5109 19.9633 58.8992 19.3272C58.2876 18.6911 58.3366 17.737 59.046 16.4403L63.1072 9.12536C63.9635 7.58408 64.9665 6.55656 66.0919 6.01833C67.2173 5.50457 68.9298 5.23546 71.2051 5.23546H75.6821L74.7525 6.92353H71.4986C70.4956 6.92353 69.7372 7.07032 69.1989 7.3639C68.6607 7.65747 68.1959 8.17124 67.8044 8.88072L67.0705 10.1774H72.4772L71.3518 12.1835H65.9451L63.7922 16.0489C63.3029 16.9541 63.1561 17.5902 63.4008 17.9816C63.6454 18.3731 64.3304 18.5688 65.4558 18.5688H68.832V18.5933ZM87.9146 20.2813L94.6424 8.17118C95.1561 7.24152 95.1561 6.53204 94.5934 5.96935C94.0552 5.45558 93.0766 5.21093 91.6821 5.21093C91.0705 5.21093 90.41 5.28433 89.7249 5.40665C89.0399 5.52898 88.4283 5.7247 87.8656 5.96935C87.7188 5.7247 87.4008 5.52898 86.9115 5.40665C86.4222 5.28433 85.7861 5.21093 84.9788 5.21093C84.2938 5.21093 83.5843 5.28433 82.7769 5.40665C81.9696 5.52898 81.3824 5.70023 80.991 5.89595L80.8931 5.2354H77.2723L68.9054 20.2813H73.4314L80.8442 6.92347H82.3121C82.728 6.92347 82.9971 6.99687 83.1194 7.16812C83.2418 7.33938 83.2418 7.55956 83.095 7.82867L76.1714 20.2813H80.6485L88.0613 6.92347H89.5292C89.9451 6.92347 90.2142 6.99687 90.3366 7.16812C90.4589 7.33938 90.4589 7.55956 90.3121 7.82867L83.3886 20.2813H87.9146Z", fill: "black" }));
28
- exports.default = SvgSlatlemWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgSlatlemWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 96 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M38.5934 -4.56667e-05H39.0093H39.6699L35.0216 24H28.5139L30.1531 20.3058H26.5567L24.1592 24H17.6271L20.8809 20.3058H17.5048C15.7678 20.3058 14.5934 20.0122 14.0308 19.3761C13.4436 18.74 13.4925 17.8348 14.1286 16.685L20.4895 5.25989H25.0399L18.7769 16.5871C18.3121 17.4189 18.2387 17.9571 18.5323 18.2263C18.8259 18.4954 19.3641 18.6177 20.1714 18.6177H22.4222L22.8136 18.1773L38.5934 -4.56667e-05ZM29.1011 16.3669H31.9145L33.8717 11.9633H31.939L29.1011 16.3669ZM33.4069 9.68803H34.8748L36.0246 7.11922H35.0705L33.4069 9.68803ZM35.9023 5.79812H36.6118L37.2968 4.2813H36.9054L35.9023 5.79812ZM9.67601 19.1559C11.1439 18.4464 12.2693 17.37 13.0522 15.9755C13.4681 15.266 13.6393 14.6299 13.5415 14.0183C13.517 13.4556 13.2723 12.8684 12.783 12.3058C12.4895 11.9877 11.9757 11.4984 11.2418 10.8868C10.9044 10.6056 10.6394 10.3814 10.4444 10.2163C10.2151 10.0223 10.0826 9.91017 10.043 9.88373C9.60261 9.4923 9.35796 9.17425 9.2601 8.90514C9.16224 8.66049 9.21117 8.36691 9.35796 8.0978C9.55368 7.75529 9.8228 7.46171 10.1898 7.266C10.5567 7.07028 10.9726 6.97242 11.4375 6.97242C12.0002 6.97242 12.3182 7.09474 12.4405 7.36386C12.5629 7.6085 12.465 7.99994 12.1959 8.48924H16.4528C17.0889 7.33939 17.1133 6.43419 16.4772 5.77364C15.8656 5.11309 14.6913 4.79505 12.9543 4.79505C11.2418 4.79505 9.65154 5.13756 8.18365 5.82257C6.74023 6.50759 5.68824 7.41279 5.05215 8.53817C4.68518 9.19872 4.53839 9.81034 4.61179 10.373C4.68518 10.9357 4.97876 11.4984 5.49252 12.0366C5.56668 12.0861 5.70327 12.2104 5.91176 12.4003L5.91178 12.4003C6.11599 12.5862 6.38918 12.8349 6.74023 13.1376C7.44971 13.7736 7.89007 14.1895 8.06133 14.3853C8.40383 14.7522 8.59955 15.1192 8.67295 15.4862C8.74634 15.8287 8.64848 16.2446 8.40383 16.685C8.15919 17.1253 7.79221 17.4434 7.32738 17.688C6.83809 17.9327 6.29986 18.055 5.68824 18.055C5.07662 18.055 4.68518 17.9327 4.53839 17.6636C4.3916 17.3944 4.465 17.003 4.73411 16.5137H0.501692C-0.183323 17.7125 -0.158857 18.6421 0.526159 19.2782C1.23564 19.9143 2.50781 20.2324 4.36714 20.2324C6.44665 20.2324 8.20812 19.8654 9.67601 19.1559ZM52.465 6.94796L53.3947 5.25989H40.3304L39.4008 6.94796H43.6332L36.2204 20.3058H40.7708L48.1837 6.94796H52.465ZM58.043 18.5932L58.0295 18.6177H54.0552C53.2724 18.6177 52.7097 18.4954 52.4161 18.2262C52.1225 17.9571 52.1959 17.4189 52.6607 16.5871L58.9482 5.25989H54.3977L48.0369 16.685C47.4008 17.8348 47.3763 18.7155 47.939 19.3516C48.5017 19.9633 49.676 20.2813 51.413 20.2813H57.1133L58.0295 18.6177H58.043V18.5932ZM68.832 18.5933L67.9023 20.2813H62.6913C60.783 20.2813 59.5109 19.9633 58.8992 19.3272C58.2876 18.6911 58.3366 17.737 59.046 16.4403L63.1072 9.12536C63.9635 7.58408 64.9665 6.55656 66.0919 6.01833C67.2173 5.50457 68.9298 5.23546 71.2051 5.23546H75.6821L74.7525 6.92353H71.4986C70.4956 6.92353 69.7372 7.07032 69.1989 7.3639C68.6607 7.65747 68.1959 8.17124 67.8044 8.88072L67.0705 10.1774H72.4772L71.3518 12.1835H65.9451L63.7922 16.0489C63.3029 16.9541 63.1561 17.5902 63.4008 17.9816C63.6454 18.3731 64.3304 18.5688 65.4558 18.5688H68.832V18.5933ZM87.9146 20.2813L94.6424 8.17118C95.1561 7.24152 95.1561 6.53204 94.5934 5.96935C94.0552 5.45558 93.0766 5.21093 91.6821 5.21093C91.0705 5.21093 90.41 5.28433 89.7249 5.40665C89.0399 5.52898 88.4283 5.7247 87.8656 5.96935C87.7188 5.7247 87.4008 5.52898 86.9115 5.40665C86.4222 5.28433 85.7861 5.21093 84.9788 5.21093C84.2938 5.21093 83.5843 5.28433 82.7769 5.40665C81.9696 5.52898 81.3824 5.70023 80.991 5.89595L80.8931 5.2354H77.2723L68.9054 20.2813H73.4314L80.8442 6.92347H82.3121C82.728 6.92347 82.9971 6.99687 83.1194 7.16812C83.2418 7.33938 83.2418 7.55956 83.095 7.82867L76.1714 20.2813H80.6485L88.0613 6.92347H89.5292C89.9451 6.92347 90.2142 6.99687 90.3366 7.16812C90.4589 7.33938 90.4589 7.55956 90.3121 7.82867L83.3886 20.2813H87.9146Z", fill: "black" }));
8
- export {
9
- SvgSlatlemWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgSullandWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 127 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14.3421 17.8303C14.3421 19.7253 13.7067 21.2275 12.4365 22.3364C11.1653 23.4456 9.43226 23.9997 7.23569 23.9997C6.0513 23.9997 4.82369 23.8223 3.55319 23.467C2.28238 23.1117 1.09829 22.6108 0 21.9648L1.71224 18.4439C2.81022 19.047 3.81182 19.4939 4.71613 19.7845C5.62074 20.0752 6.48155 20.2205 7.30035 20.2205C8.0968 20.2205 8.69987 20.0429 9.10927 19.6872C9.51807 19.3322 9.72292 18.8104 9.72292 18.1209C9.72292 17.5611 9.5075 17.0607 9.07664 16.619C8.64579 16.1776 7.69857 15.6125 6.23439 14.9228C5.11435 14.3852 4.29072 13.949 3.76318 13.6148C3.23533 13.2809 2.78877 12.9316 2.42288 12.5648C1.8627 12.0267 1.44243 11.4182 1.16294 10.7399C0.882858 10.0616 0.742967 9.31379 0.742967 8.49499C0.742967 6.68607 1.36175 5.22189 2.60053 4.10185C3.83871 2.98241 5.46967 2.42224 7.49402 2.42224C8.69987 2.42224 9.85224 2.57845 10.9502 2.89086C12.0488 3.20298 13.125 3.68187 14.1807 4.32815L12.5658 7.88134C11.5965 7.32147 10.6922 6.90723 9.85224 6.63772C9.01259 6.36852 8.23699 6.23406 7.52635 6.23406C6.85862 6.23406 6.33108 6.41142 5.94373 6.76704C5.55609 7.12236 5.36211 7.59068 5.36211 8.1717C5.36211 8.68866 5.5721 9.16272 5.99208 9.59328C6.41205 10.0241 7.34326 10.5946 8.78628 11.3052C9.90572 11.8439 10.7351 12.2854 11.2735 12.6295C11.8113 12.9742 12.2636 13.3296 12.6301 13.6955C13.2115 14.2771 13.642 14.9067 13.9221 15.585C14.2019 16.2634 14.3421 17.0121 14.3421 17.8303Z", fill: "#0B1E26" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M28.4928 20.1238C29.5267 20.1238 30.3504 19.7957 30.964 19.1385C31.5777 18.482 31.8846 17.5937 31.8846 16.4737V2.74524H36.2131V16.4737C36.2131 18.7137 35.4967 20.5275 34.0652 21.9167C32.6327 23.3054 30.7752 24 28.4928 24C26.1884 24 24.2939 23.3054 22.8077 21.9167C21.3218 20.5275 20.5788 18.7137 20.5788 16.4737V2.74524H25.1013V16.4737C25.1013 17.5937 25.4079 18.482 26.0219 19.1385C26.6358 19.7957 27.4592 20.1238 28.4928 20.1238Z", fill: "#0B1E26" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M43.206 23.6773H47.7283V0H43.206V23.6773Z", fill: "#0B1E26" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M54.1033 23.6773H58.6256V0H54.1033V23.6773Z", fill: "#0B1E26" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M72.7476 5.94323L70.357 15.3432H75.1055L72.7476 5.94323ZM81.8242 23.6771H77.2374L76.1068 19.187H69.3557L68.2251 23.6771H63.8969L69.6787 2.74536H76.0748L81.8242 23.6771Z", fill: "#0B1E26" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M103.267 23.6773H97.7116L91.1539 8.72166V23.6773H87.0521V2.74536H92.5112L99.1973 17.9271V2.74536H103.267V23.6773Z", fill: "#0B1E26" }), /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M121.678 13.2435C121.678 11.004 121.328 9.32438 120.628 8.20434C119.928 7.0852 118.888 6.52473 117.511 6.52473H114.539V19.9299H117.511C118.888 19.9299 119.928 19.3703 120.628 18.2503C121.328 17.1311 121.678 15.4618 121.678 13.2435ZM117.414 23.677H110.017V2.74524H117.414C120.364 2.74524 122.598 3.6287 124.116 5.39412C125.635 7.16014 126.394 9.77668 126.394 13.2435C126.394 16.5815 125.613 19.1546 124.052 20.9635C122.49 22.7724 120.278 23.677 117.414 23.677Z", fill: "#0B1E26" }));
28
- exports.default = SvgSullandWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgSullandWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 127 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14.3421 17.8303C14.3421 19.7253 13.7067 21.2275 12.4365 22.3364C11.1653 23.4456 9.43226 23.9997 7.23569 23.9997C6.0513 23.9997 4.82369 23.8223 3.55319 23.467C2.28238 23.1117 1.09829 22.6108 0 21.9648L1.71224 18.4439C2.81022 19.047 3.81182 19.4939 4.71613 19.7845C5.62074 20.0752 6.48155 20.2205 7.30035 20.2205C8.0968 20.2205 8.69987 20.0429 9.10927 19.6872C9.51807 19.3322 9.72292 18.8104 9.72292 18.1209C9.72292 17.5611 9.5075 17.0607 9.07664 16.619C8.64579 16.1776 7.69857 15.6125 6.23439 14.9228C5.11435 14.3852 4.29072 13.949 3.76318 13.6148C3.23533 13.2809 2.78877 12.9316 2.42288 12.5648C1.8627 12.0267 1.44243 11.4182 1.16294 10.7399C0.882858 10.0616 0.742967 9.31379 0.742967 8.49499C0.742967 6.68607 1.36175 5.22189 2.60053 4.10185C3.83871 2.98241 5.46967 2.42224 7.49402 2.42224C8.69987 2.42224 9.85224 2.57845 10.9502 2.89086C12.0488 3.20298 13.125 3.68187 14.1807 4.32815L12.5658 7.88134C11.5965 7.32147 10.6922 6.90723 9.85224 6.63772C9.01259 6.36852 8.23699 6.23406 7.52635 6.23406C6.85862 6.23406 6.33108 6.41142 5.94373 6.76704C5.55609 7.12236 5.36211 7.59068 5.36211 8.1717C5.36211 8.68866 5.5721 9.16272 5.99208 9.59328C6.41205 10.0241 7.34326 10.5946 8.78628 11.3052C9.90572 11.8439 10.7351 12.2854 11.2735 12.6295C11.8113 12.9742 12.2636 13.3296 12.6301 13.6955C13.2115 14.2771 13.642 14.9067 13.9221 15.585C14.2019 16.2634 14.3421 17.0121 14.3421 17.8303Z", fill: "#0B1E26" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M28.4928 20.1238C29.5267 20.1238 30.3504 19.7957 30.964 19.1385C31.5777 18.482 31.8846 17.5937 31.8846 16.4737V2.74524H36.2131V16.4737C36.2131 18.7137 35.4967 20.5275 34.0652 21.9167C32.6327 23.3054 30.7752 24 28.4928 24C26.1884 24 24.2939 23.3054 22.8077 21.9167C21.3218 20.5275 20.5788 18.7137 20.5788 16.4737V2.74524H25.1013V16.4737C25.1013 17.5937 25.4079 18.482 26.0219 19.1385C26.6358 19.7957 27.4592 20.1238 28.4928 20.1238Z", fill: "#0B1E26" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M43.206 23.6773H47.7283V0H43.206V23.6773Z", fill: "#0B1E26" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M54.1033 23.6773H58.6256V0H54.1033V23.6773Z", fill: "#0B1E26" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M72.7476 5.94323L70.357 15.3432H75.1055L72.7476 5.94323ZM81.8242 23.6771H77.2374L76.1068 19.187H69.3557L68.2251 23.6771H63.8969L69.6787 2.74536H76.0748L81.8242 23.6771Z", fill: "#0B1E26" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M103.267 23.6773H97.7116L91.1539 8.72166V23.6773H87.0521V2.74536H92.5112L99.1973 17.9271V2.74536H103.267V23.6773Z", fill: "#0B1E26" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M121.678 13.2435C121.678 11.004 121.328 9.32438 120.628 8.20434C119.928 7.0852 118.888 6.52473 117.511 6.52473H114.539V19.9299H117.511C118.888 19.9299 119.928 19.3703 120.628 18.2503C121.328 17.1311 121.678 15.4618 121.678 13.2435ZM117.414 23.677H110.017V2.74524H117.414C120.364 2.74524 122.598 3.6287 124.116 5.39412C125.635 7.16014 126.394 9.77668 126.394 13.2435C126.394 16.5815 125.613 19.1546 124.052 20.9635C122.49 22.7724 120.278 23.677 117.414 23.677Z", fill: "#0B1E26" }));
8
- export {
9
- SvgSullandWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgSvebjornWordmark = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 57", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { fillRule: "evenodd", d: "M143.15 2.96c-3.63 1.67-4.25 6.29-1.19 8.68 3.02 2.36 8.46 1.1 9.72-2.23 1.73-4.57-3.71-8.69-8.53-6.45m-38.67 22v19.27h9.5v-2.45l1.39.96c3.85 2.65 10.1 2.55 14.46-.24 8.26-5.3 8.23-19.54-.05-24.81-4.2-2.68-10.43-2.8-14.09-.29-.62.43-1.2.78-1.29.78-.08 0-.15-2.8-.15-6.24V5.7h-9.77v19.27M14.84 7.49C7.24 8.86 2.64 14.3 3.76 20.62c.91 5.2 3.66 7.12 13.6 9.5 4.78 1.15 6.38 1.89 6.8 3.13 1.36 4.15-7.74 4.96-15.37 1.36L6.3 33.45l-1.5 3.42c-1.94 4.41-1.92 4.08-.33 4.97 11.13 6.2 27.03 3.05 29.59-5.86 2.03-7.06-1.57-11.02-12.46-13.73-6.8-1.68-7.77-2.19-7.77-4 0-3.53 7.62-4.18 14.18-1.2l1.78.8 1.52-3.63C33.17 9.8 33.2 10.27 31 9.3c-4.55-2.02-11-2.75-16.16-1.81m255.78 18.35c-4.37 9.9-7.94 18.08-7.94 18.2 0 .11 2.34.17 5.2.13l5.2-.07 1.38-3.46 1.39-3.45h15.47l1.4 3.45 1.39 3.46 5.32.07c2.93.04 5.31-.02 5.3-.13 0-.12-3.58-8.27-7.95-18.12L288.84 8l-5.15-.07-5.14-.07-7.93 17.98m73.75-12.4v3.66h-4.07v7.32h4.07v4.68c.02 8.2.79 11.04 3.57 13.24 3.26 2.58 10.55 3.1 14.4 1.05.6-.32-1.59-6.92-2.26-6.85-.2.03-.93.16-1.6.3-3.5.7-4.07-.31-4.07-7.2v-5.22h6.51V17.1h-6.51V9.77h-10.04v3.66m-165.1 1.22c-.69 1.05-1.3 1.9-1.37 1.9-.06 0-.88-.2-1.83-.45-15.53-4.1-27.19 12.83-16.45 23.9 2.09 2.16 2.12 1.66-.38 5.39l-1.59 2.37h4.6l1.27-2.06c1.17-1.87 1.35-2.04 2-1.9 5.91 1.39 9.8 1.12 14.05-.94 8.64-4.2 10.52-16.44 3.53-22.95l-1.72-1.6 1.71-2.64a40.95 40.95 0 0 0 1.71-2.79 9 9 0 0 0-2.13-.13h-2.13l-1.26 1.9m-97.35 1.09c-16.17 2.56-17.07 24.5-1.16 28.4 5.6 1.37 12.45.1 15.97-2.97l1.08-.94-2.23-2.44c-3-3.27-2.84-3.17-3.68-2.5-4.05 3.18-11.32 1.96-12.52-2.11l-.18-.6 10.26-.08 10.26-.07-.02-2.71c-.06-9.27-8.02-15.52-17.78-13.98m126.3.03a11.6 11.6 0 0 0-5.62 2.44l-1.25 1.1v-3.3h-9.5v28.22h10l.1-7.8c.1-10.49.75-11.71 6.32-11.96l2.57-.11V19.9c0-5.06.28-4.63-2.61-4.14m22.29.1c-2.16.48-3.34 1-4.85 2.16l-1.26.96V16h-9.49v28.22h10.04v-7.77c0-10.06.45-11.44 4.02-12.3 5.14-1.23 6 .45 6.01 11.73v8.34h10.05v-8.75c0-9.92-.17-11.49-1.51-14.23-2.14-4.4-7.5-6.6-13.01-5.38m147.36-.12c-16.4 2.57-17.73 24.18-1.75 28.39 9.2 2.42 18.43-2.61 20.22-11.04 2.23-10.48-7-19.14-18.47-17.35m-342.84.49 5.8 14.11 5.69 13.88 5.15-.07 5.16-.06 5.77-13.96c3.17-7.69 5.77-14 5.77-14.05 0-.04-2.11-.08-4.69-.08h-4.68l-3.52 8.53c-1.94 4.7-3.58 8.48-3.65 8.4-.07-.06-1.6-3.87-3.4-8.45l-3.28-8.34-5.1-.08c-2.86-.04-5.07.03-5.02.17m106.06 13.95c0 13.35-.04 14.25-.53 15.32-.7 1.54-1.99 1.97-4.1 1.35-.8-.24-1.47-.4-1.5-.38-.4.6-2.3 6.8-2.12 6.97 2.52 2.38 11.44 1.5 14.71-1.47 3.22-2.9 3.31-3.52 3.31-21.24V16.01h-9.77V30.2m166.08-5.56c0 11.52.38 13.58 3.03 16.47 3.98 4.37 12.38 4.82 16.44.9l.88-.86v3.09h9.5V16.01H327v7.83c0 8.25-.08 8.96-1.27 10.56-2 2.68-6.42 2.42-7.89-.48-.6-1.17-.6-1.43-.6-9.55V16h-10.05v8.62m-21.3-.99 2.26 5.7c.05.13-1.96.24-4.57.24-2.6 0-4.62-.1-4.57-.24a255.51 255.51 0 0 1 4.57-11.15c.08 0 1.12 2.45 2.3 5.45m-199.12-.7c1.12.33 3.33 2.08 3.33 2.64 0 .04.12.46.26.95l.25.88H79.02l.31-1.02c.88-2.88 4.18-4.42 7.43-3.46m34.95.7c5.9 1.5 5.77 11.59-.18 13.02-4.16 1-7.15-1.73-7.15-6.53 0-4.92 3-7.57 7.33-6.48m51.06-.07c.54.16.34.55-2.72 5.26-3.48 5.37-3.65 5.52-4.15 3.85-1.6-5.32 2.3-10.5 6.87-9.11m210.67.44c4.86 2.51 4.1 11.23-1.1 12.63-5.07 1.37-9.06-4.09-6.96-9.52a5.94 5.94 0 0 1 8.06-3.1m-206.22 4.4c.94 4.56-1.56 8.27-5.62 8.33-2.34.03-2.38.22 1.31-5.5 3.7-5.7 3.71-5.71 4.3-2.82" }));
28
- exports.default = SvgSvebjornWordmark;
@@ -1,10 +0,0 @@
1
- "use client";
2
- import * as React from "react";
3
- const SvgSvebjornWordmark = ({
4
- title,
5
- titleId,
6
- ...props
7
- }) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 400 57", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M143.15 2.96c-3.63 1.67-4.25 6.29-1.19 8.68 3.02 2.36 8.46 1.1 9.72-2.23 1.73-4.57-3.71-8.69-8.53-6.45m-38.67 22v19.27h9.5v-2.45l1.39.96c3.85 2.65 10.1 2.55 14.46-.24 8.26-5.3 8.23-19.54-.05-24.81-4.2-2.68-10.43-2.8-14.09-.29-.62.43-1.2.78-1.29.78-.08 0-.15-2.8-.15-6.24V5.7h-9.77v19.27M14.84 7.49C7.24 8.86 2.64 14.3 3.76 20.62c.91 5.2 3.66 7.12 13.6 9.5 4.78 1.15 6.38 1.89 6.8 3.13 1.36 4.15-7.74 4.96-15.37 1.36L6.3 33.45l-1.5 3.42c-1.94 4.41-1.92 4.08-.33 4.97 11.13 6.2 27.03 3.05 29.59-5.86 2.03-7.06-1.57-11.02-12.46-13.73-6.8-1.68-7.77-2.19-7.77-4 0-3.53 7.62-4.18 14.18-1.2l1.78.8 1.52-3.63C33.17 9.8 33.2 10.27 31 9.3c-4.55-2.02-11-2.75-16.16-1.81m255.78 18.35c-4.37 9.9-7.94 18.08-7.94 18.2 0 .11 2.34.17 5.2.13l5.2-.07 1.38-3.46 1.39-3.45h15.47l1.4 3.45 1.39 3.46 5.32.07c2.93.04 5.31-.02 5.3-.13 0-.12-3.58-8.27-7.95-18.12L288.84 8l-5.15-.07-5.14-.07-7.93 17.98m73.75-12.4v3.66h-4.07v7.32h4.07v4.68c.02 8.2.79 11.04 3.57 13.24 3.26 2.58 10.55 3.1 14.4 1.05.6-.32-1.59-6.92-2.26-6.85-.2.03-.93.16-1.6.3-3.5.7-4.07-.31-4.07-7.2v-5.22h6.51V17.1h-6.51V9.77h-10.04v3.66m-165.1 1.22c-.69 1.05-1.3 1.9-1.37 1.9-.06 0-.88-.2-1.83-.45-15.53-4.1-27.19 12.83-16.45 23.9 2.09 2.16 2.12 1.66-.38 5.39l-1.59 2.37h4.6l1.27-2.06c1.17-1.87 1.35-2.04 2-1.9 5.91 1.39 9.8 1.12 14.05-.94 8.64-4.2 10.52-16.44 3.53-22.95l-1.72-1.6 1.71-2.64a40.95 40.95 0 0 0 1.71-2.79 9 9 0 0 0-2.13-.13h-2.13l-1.26 1.9m-97.35 1.09c-16.17 2.56-17.07 24.5-1.16 28.4 5.6 1.37 12.45.1 15.97-2.97l1.08-.94-2.23-2.44c-3-3.27-2.84-3.17-3.68-2.5-4.05 3.18-11.32 1.96-12.52-2.11l-.18-.6 10.26-.08 10.26-.07-.02-2.71c-.06-9.27-8.02-15.52-17.78-13.98m126.3.03a11.6 11.6 0 0 0-5.62 2.44l-1.25 1.1v-3.3h-9.5v28.22h10l.1-7.8c.1-10.49.75-11.71 6.32-11.96l2.57-.11V19.9c0-5.06.28-4.63-2.61-4.14m22.29.1c-2.16.48-3.34 1-4.85 2.16l-1.26.96V16h-9.49v28.22h10.04v-7.77c0-10.06.45-11.44 4.02-12.3 5.14-1.23 6 .45 6.01 11.73v8.34h10.05v-8.75c0-9.92-.17-11.49-1.51-14.23-2.14-4.4-7.5-6.6-13.01-5.38m147.36-.12c-16.4 2.57-17.73 24.18-1.75 28.39 9.2 2.42 18.43-2.61 20.22-11.04 2.23-10.48-7-19.14-18.47-17.35m-342.84.49 5.8 14.11 5.69 13.88 5.15-.07 5.16-.06 5.77-13.96c3.17-7.69 5.77-14 5.77-14.05 0-.04-2.11-.08-4.69-.08h-4.68l-3.52 8.53c-1.94 4.7-3.58 8.48-3.65 8.4-.07-.06-1.6-3.87-3.4-8.45l-3.28-8.34-5.1-.08c-2.86-.04-5.07.03-5.02.17m106.06 13.95c0 13.35-.04 14.25-.53 15.32-.7 1.54-1.99 1.97-4.1 1.35-.8-.24-1.47-.4-1.5-.38-.4.6-2.3 6.8-2.12 6.97 2.52 2.38 11.44 1.5 14.71-1.47 3.22-2.9 3.31-3.52 3.31-21.24V16.01h-9.77V30.2m166.08-5.56c0 11.52.38 13.58 3.03 16.47 3.98 4.37 12.38 4.82 16.44.9l.88-.86v3.09h9.5V16.01H327v7.83c0 8.25-.08 8.96-1.27 10.56-2 2.68-6.42 2.42-7.89-.48-.6-1.17-.6-1.43-.6-9.55V16h-10.05v8.62m-21.3-.99 2.26 5.7c.05.13-1.96.24-4.57.24-2.6 0-4.62-.1-4.57-.24a255.51 255.51 0 0 1 4.57-11.15c.08 0 1.12 2.45 2.3 5.45m-199.12-.7c1.12.33 3.33 2.08 3.33 2.64 0 .04.12.46.26.95l.25.88H79.02l.31-1.02c.88-2.88 4.18-4.42 7.43-3.46m34.95.7c5.9 1.5 5.77 11.59-.18 13.02-4.16 1-7.15-1.73-7.15-6.53 0-4.92 3-7.57 7.33-6.48m51.06-.07c.54.16.34.55-2.72 5.26-3.48 5.37-3.65 5.52-4.15 3.85-1.6-5.32 2.3-10.5 6.87-9.11m210.67.44c4.86 2.51 4.1 11.23-1.1 12.63-5.07 1.37-9.06-4.09-6.96-9.52a5.94 5.94 0 0 1 8.06-3.1m-206.22 4.4c.94 4.56-1.56 8.27-5.62 8.33-2.34.03-2.38.22 1.31-5.5 3.7-5.7 3.71-5.71 4.3-2.82" }));
8
- export {
9
- SvgSvebjornWordmark as default
10
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
4
- const React = require("react");
5
- function _interopNamespaceCompat(e) {
6
- if (e && typeof e === "object" && "default" in e) return e;
7
- const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
8
- if (e) {
9
- for (const k in e) {
10
- if (k !== "default") {
11
- const d = Object.getOwnPropertyDescriptor(e, k);
12
- Object.defineProperty(n, k, d.get ? d : {
13
- enumerable: true,
14
- get: () => e[k]
15
- });
16
- }
17
- }
18
- }
19
- n.default = e;
20
- return Object.freeze(n);
21
- }
22
- const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
23
- const SvgSkodaSymbol = ({
24
- title,
25
- titleId,
26
- ...props
27
- }) => /* @__PURE__ */ React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId, ...props }, title ? /* @__PURE__ */ React__namespace.createElement("title", { id: titleId }, title) : null, /* @__PURE__ */ React__namespace.createElement("path", { d: "M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM12 19.3091C7.96332 19.3091 4.69094 16.0367 4.69094 12C4.69094 7.96332 7.96332 4.69094 12 4.69094C16.0367 4.69094 19.3091 7.96332 19.3091 12C19.3091 16.0367 16.0367 19.3091 12 19.3091ZM15.4593 14.4874L15.2799 14.9716H14.6241C14.7994 14.499 17.0096 9.22644 12.6665 5.65034C11.7548 5.55374 10.833 5.6557 9.96445 5.94922C10.1093 6.0659 11.6138 7.30092 12.3227 8.82583L12.1147 8.88183C11.7239 8.45606 10.3043 6.893 8.95146 6.38995C8.22355 6.78678 7.57949 7.321 7.05496 7.96304C7.6903 8.28806 9.3504 9.27958 9.98133 10.0498C9.94519 10.0661 9.80333 10.1425 9.80333 10.1425C8.64603 9.26288 6.59009 8.80633 6.485 8.78366C6.0528 9.52244 5.77461 10.3411 5.66721 11.1902C8.85112 11.8311 9.70842 13.3045 9.85505 14.9716H9.252L8.21568 14.5199C8.16169 14.4997 8.10495 14.4877 8.04738 14.4845H6.11781C6.42327 15.2056 6.85865 15.8644 7.40226 16.4282H8.22454C8.29539 16.4282 8.3574 16.4193 8.4194 16.3839L9.252 15.9587H15.2799L15.4593 16.443C16.2082 16.3566 16.9033 16.0106 17.4237 15.4652C16.9033 14.9197 16.2082 14.5738 15.4593 14.4874ZM13.1382 14.2348C12.982 14.2348 12.8292 14.1885 12.6994 14.1017C12.5695 14.0149 12.4682 13.8915 12.4085 13.7472C12.3487 13.6029 12.333 13.4441 12.3635 13.2909C12.394 13.1376 12.4692 12.9969 12.5797 12.8865C12.6901 12.776 12.8309 12.7008 12.9841 12.6703C13.1373 12.6398 13.2961 12.6555 13.4404 12.7152C13.5847 12.775 13.7081 12.8763 13.7949 13.0061C13.8817 13.136 13.928 13.2887 13.928 13.4449C13.928 13.6544 13.8448 13.8553 13.6967 14.0034C13.5485 14.1516 13.3476 14.2348 13.1382 14.2348Z", fill: "#0E3A2F" }));
28
- exports.default = SvgSkodaSymbol;