@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,80 +1,97 @@
1
1
  "use client";
2
- "use strict";
3
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
4
- const archiveFilled = require("./archive-filled.svg.cjs");
5
- const archiveOutlined = require("./archive-outlined.svg.cjs");
6
- const archiveRound = require("./archive-round.svg.cjs");
7
- const archiveSharp = require("./archive-sharp.svg.cjs");
8
- const file_copyFilled = require("./file_copy-filled.svg.cjs");
9
- const file_copyOutlined = require("./file_copy-outlined.svg.cjs");
10
- const file_copyRound = require("./file_copy-round.svg.cjs");
11
- const file_copySharp = require("./file_copy-sharp.svg.cjs");
12
- const file_downloadFilled = require("./file_download-filled.svg.cjs");
13
- const file_downloadOutlined = require("./file_download-outlined.svg.cjs");
14
- const file_downloadRound = require("./file_download-round.svg.cjs");
15
- const file_downloadSharp = require("./file_download-sharp.svg.cjs");
16
- const file_download_offFilled = require("./file_download_off-filled.svg.cjs");
17
- const file_download_offOutlined = require("./file_download_off-outlined.svg.cjs");
18
- const file_download_offRound = require("./file_download_off-round.svg.cjs");
19
- const file_download_offSharp = require("./file_download_off-sharp.svg.cjs");
20
- const file_openFilled = require("./file_open-filled.svg.cjs");
21
- const file_openOutlined = require("./file_open-outlined.svg.cjs");
22
- const file_openRound = require("./file_open-round.svg.cjs");
23
- const file_openSharp = require("./file_open-sharp.svg.cjs");
24
- const file_uploadFilled = require("./file_upload-filled.svg.cjs");
25
- const file_uploadOutlined = require("./file_upload-outlined.svg.cjs");
26
- const file_uploadRound = require("./file_upload-round.svg.cjs");
27
- const file_uploadSharp = require("./file_upload-sharp.svg.cjs");
28
- const unarchiveFilled = require("./unarchive-filled.svg.cjs");
29
- const unarchiveOutlined = require("./unarchive-outlined.svg.cjs");
30
- const unarchiveRound = require("./unarchive-round.svg.cjs");
31
- const unarchiveSharp = require("./unarchive-sharp.svg.cjs");
32
- const archive = {
33
- filled: archiveFilled.default,
34
- outlined: archiveOutlined.default,
35
- round: archiveRound.default,
36
- sharp: archiveSharp.default
3
+ const require_runtime = require("../../../../_virtual/_rolldown/runtime.cjs");
4
+ const require_archive_filled = require("./archive-filled.svg-react.cjs");
5
+ const require_archive_outlined = require("./archive-outlined.svg-react.cjs");
6
+ const require_archive_round = require("./archive-round.svg-react.cjs");
7
+ const require_archive_sharp = require("./archive-sharp.svg-react.cjs");
8
+ const require_file_copy_filled = require("./file_copy-filled.svg-react.cjs");
9
+ const require_file_copy_outlined = require("./file_copy-outlined.svg-react.cjs");
10
+ const require_file_copy_round = require("./file_copy-round.svg-react.cjs");
11
+ const require_file_copy_sharp = require("./file_copy-sharp.svg-react.cjs");
12
+ const require_file_download_filled = require("./file_download-filled.svg-react.cjs");
13
+ const require_file_download_outlined = require("./file_download-outlined.svg-react.cjs");
14
+ const require_file_download_round = require("./file_download-round.svg-react.cjs");
15
+ const require_file_download_sharp = require("./file_download-sharp.svg-react.cjs");
16
+ const require_file_download_off_filled = require("./file_download_off-filled.svg-react.cjs");
17
+ const require_file_download_off_outlined = require("./file_download_off-outlined.svg-react.cjs");
18
+ const require_file_download_off_round = require("./file_download_off-round.svg-react.cjs");
19
+ const require_file_download_off_sharp = require("./file_download_off-sharp.svg-react.cjs");
20
+ const require_file_open_filled = require("./file_open-filled.svg-react.cjs");
21
+ const require_file_open_outlined = require("./file_open-outlined.svg-react.cjs");
22
+ const require_file_open_round = require("./file_open-round.svg-react.cjs");
23
+ const require_file_open_sharp = require("./file_open-sharp.svg-react.cjs");
24
+ const require_file_upload_filled = require("./file_upload-filled.svg-react.cjs");
25
+ const require_file_upload_outlined = require("./file_upload-outlined.svg-react.cjs");
26
+ const require_file_upload_round = require("./file_upload-round.svg-react.cjs");
27
+ const require_file_upload_sharp = require("./file_upload-sharp.svg-react.cjs");
28
+ const require_unarchive_filled = require("./unarchive-filled.svg-react.cjs");
29
+ const require_unarchive_outlined = require("./unarchive-outlined.svg-react.cjs");
30
+ const require_unarchive_round = require("./unarchive-round.svg-react.cjs");
31
+ const require_unarchive_sharp = require("./unarchive-sharp.svg-react.cjs");
32
+ //#region src/foundation/iconography/svg/file/index.ts
33
+ var file_exports = /* @__PURE__ */ require_runtime.__exportAll({
34
+ archive: () => archive,
35
+ file_copy: () => file_copy,
36
+ file_download: () => file_download,
37
+ file_download_off: () => file_download_off,
38
+ file_open: () => file_open,
39
+ file_upload: () => file_upload,
40
+ unarchive: () => unarchive
41
+ });
42
+ var archive = {
43
+ filled: require_archive_filled.default,
44
+ outlined: require_archive_outlined.default,
45
+ round: require_archive_round.default,
46
+ sharp: require_archive_sharp.default
37
47
  };
38
- const file_copy = {
39
- filled: file_copyFilled.default,
40
- outlined: file_copyOutlined.default,
41
- round: file_copyRound.default,
42
- sharp: file_copySharp.default
48
+ var file_copy = {
49
+ filled: require_file_copy_filled.default,
50
+ outlined: require_file_copy_outlined.default,
51
+ round: require_file_copy_round.default,
52
+ sharp: require_file_copy_sharp.default
43
53
  };
44
- const file_download = {
45
- filled: file_downloadFilled.default,
46
- outlined: file_downloadOutlined.default,
47
- round: file_downloadRound.default,
48
- sharp: file_downloadSharp.default
54
+ var file_download = {
55
+ filled: require_file_download_filled.default,
56
+ outlined: require_file_download_outlined.default,
57
+ round: require_file_download_round.default,
58
+ sharp: require_file_download_sharp.default
49
59
  };
50
- const file_download_off = {
51
- filled: file_download_offFilled.default,
52
- outlined: file_download_offOutlined.default,
53
- round: file_download_offRound.default,
54
- sharp: file_download_offSharp.default
60
+ var file_download_off = {
61
+ filled: require_file_download_off_filled.default,
62
+ outlined: require_file_download_off_outlined.default,
63
+ round: require_file_download_off_round.default,
64
+ sharp: require_file_download_off_sharp.default
55
65
  };
56
- const file_open = {
57
- filled: file_openFilled.default,
58
- outlined: file_openOutlined.default,
59
- round: file_openRound.default,
60
- sharp: file_openSharp.default
66
+ var file_open = {
67
+ filled: require_file_open_filled.default,
68
+ outlined: require_file_open_outlined.default,
69
+ round: require_file_open_round.default,
70
+ sharp: require_file_open_sharp.default
61
71
  };
62
- const file_upload = {
63
- filled: file_uploadFilled.default,
64
- outlined: file_uploadOutlined.default,
65
- round: file_uploadRound.default,
66
- sharp: file_uploadSharp.default
72
+ var file_upload = {
73
+ filled: require_file_upload_filled.default,
74
+ outlined: require_file_upload_outlined.default,
75
+ round: require_file_upload_round.default,
76
+ sharp: require_file_upload_sharp.default
67
77
  };
68
- const unarchive = {
69
- filled: unarchiveFilled.default,
70
- outlined: unarchiveOutlined.default,
71
- round: unarchiveRound.default,
72
- sharp: unarchiveSharp.default
78
+ var unarchive = {
79
+ filled: require_unarchive_filled.default,
80
+ outlined: require_unarchive_outlined.default,
81
+ round: require_unarchive_round.default,
82
+ sharp: require_unarchive_sharp.default
73
83
  };
84
+ //#endregion
74
85
  exports.archive = archive;
75
86
  exports.file_copy = file_copy;
76
87
  exports.file_download = file_download;
77
88
  exports.file_download_off = file_download_off;
89
+ Object.defineProperty(exports, "file_exports", {
90
+ enumerable: true,
91
+ get: function() {
92
+ return file_exports;
93
+ }
94
+ });
78
95
  exports.file_open = file_open;
79
96
  exports.file_upload = file_upload;
80
97
  exports.unarchive = unarchive;
@@ -1,80 +1,84 @@
1
1
  "use client";
2
- import SvgArchiveFilled from "./archive-filled.svg.js";
3
- import SvgArchiveOutlined from "./archive-outlined.svg.js";
4
- import SvgArchiveRound from "./archive-round.svg.js";
5
- import SvgArchiveSharp from "./archive-sharp.svg.js";
6
- import SvgFileCopyFilled from "./file_copy-filled.svg.js";
7
- import SvgFileCopyOutlined from "./file_copy-outlined.svg.js";
8
- import SvgFileCopyRound from "./file_copy-round.svg.js";
9
- import SvgFileCopySharp from "./file_copy-sharp.svg.js";
10
- import SvgFileDownloadFilled from "./file_download-filled.svg.js";
11
- import SvgFileDownloadOutlined from "./file_download-outlined.svg.js";
12
- import SvgFileDownloadRound from "./file_download-round.svg.js";
13
- import SvgFileDownloadSharp from "./file_download-sharp.svg.js";
14
- import SvgFileDownloadOffFilled from "./file_download_off-filled.svg.js";
15
- import SvgFileDownloadOffOutlined from "./file_download_off-outlined.svg.js";
16
- import SvgFileDownloadOffRound from "./file_download_off-round.svg.js";
17
- import SvgFileDownloadOffSharp from "./file_download_off-sharp.svg.js";
18
- import SvgFileOpenFilled from "./file_open-filled.svg.js";
19
- import SvgFileOpenOutlined from "./file_open-outlined.svg.js";
20
- import SvgFileOpenRound from "./file_open-round.svg.js";
21
- import SvgFileOpenSharp from "./file_open-sharp.svg.js";
22
- import SvgFileUploadFilled from "./file_upload-filled.svg.js";
23
- import SvgFileUploadOutlined from "./file_upload-outlined.svg.js";
24
- import SvgFileUploadRound from "./file_upload-round.svg.js";
25
- import SvgFileUploadSharp from "./file_upload-sharp.svg.js";
26
- import SvgUnarchiveFilled from "./unarchive-filled.svg.js";
27
- import SvgUnarchiveOutlined from "./unarchive-outlined.svg.js";
28
- import SvgUnarchiveRound from "./unarchive-round.svg.js";
29
- import SvgUnarchiveSharp from "./unarchive-sharp.svg.js";
30
- const archive = {
31
- filled: SvgArchiveFilled,
32
- outlined: SvgArchiveOutlined,
33
- round: SvgArchiveRound,
34
- sharp: SvgArchiveSharp
2
+ import { __exportAll } from "../../../../_virtual/_rolldown/runtime.js";
3
+ import SvgArchiveFilled from "./archive-filled.svg-react.js";
4
+ import SvgArchiveOutlined from "./archive-outlined.svg-react.js";
5
+ import SvgArchiveRound from "./archive-round.svg-react.js";
6
+ import SvgArchiveSharp from "./archive-sharp.svg-react.js";
7
+ import SvgFileCopyFilled from "./file_copy-filled.svg-react.js";
8
+ import SvgFileCopyOutlined from "./file_copy-outlined.svg-react.js";
9
+ import SvgFileCopyRound from "./file_copy-round.svg-react.js";
10
+ import SvgFileCopySharp from "./file_copy-sharp.svg-react.js";
11
+ import SvgFileDownloadFilled from "./file_download-filled.svg-react.js";
12
+ import SvgFileDownloadOutlined from "./file_download-outlined.svg-react.js";
13
+ import SvgFileDownloadRound from "./file_download-round.svg-react.js";
14
+ import SvgFileDownloadSharp from "./file_download-sharp.svg-react.js";
15
+ import SvgFileDownloadOffFilled from "./file_download_off-filled.svg-react.js";
16
+ import SvgFileDownloadOffOutlined from "./file_download_off-outlined.svg-react.js";
17
+ import SvgFileDownloadOffRound from "./file_download_off-round.svg-react.js";
18
+ import SvgFileDownloadOffSharp from "./file_download_off-sharp.svg-react.js";
19
+ import SvgFileOpenFilled from "./file_open-filled.svg-react.js";
20
+ import SvgFileOpenOutlined from "./file_open-outlined.svg-react.js";
21
+ import SvgFileOpenRound from "./file_open-round.svg-react.js";
22
+ import SvgFileOpenSharp from "./file_open-sharp.svg-react.js";
23
+ import SvgFileUploadFilled from "./file_upload-filled.svg-react.js";
24
+ import SvgFileUploadOutlined from "./file_upload-outlined.svg-react.js";
25
+ import SvgFileUploadRound from "./file_upload-round.svg-react.js";
26
+ import SvgFileUploadSharp from "./file_upload-sharp.svg-react.js";
27
+ import SvgUnarchiveFilled from "./unarchive-filled.svg-react.js";
28
+ import SvgUnarchiveOutlined from "./unarchive-outlined.svg-react.js";
29
+ import SvgUnarchiveRound from "./unarchive-round.svg-react.js";
30
+ import SvgUnarchiveSharp from "./unarchive-sharp.svg-react.js";
31
+ //#region src/foundation/iconography/svg/file/index.ts
32
+ var file_exports = /* @__PURE__ */ __exportAll({
33
+ archive: () => archive,
34
+ file_copy: () => file_copy,
35
+ file_download: () => file_download,
36
+ file_download_off: () => file_download_off,
37
+ file_open: () => file_open,
38
+ file_upload: () => file_upload,
39
+ unarchive: () => unarchive
40
+ });
41
+ var archive = {
42
+ filled: SvgArchiveFilled,
43
+ outlined: SvgArchiveOutlined,
44
+ round: SvgArchiveRound,
45
+ sharp: SvgArchiveSharp
35
46
  };
36
- const file_copy = {
37
- filled: SvgFileCopyFilled,
38
- outlined: SvgFileCopyOutlined,
39
- round: SvgFileCopyRound,
40
- sharp: SvgFileCopySharp
47
+ var file_copy = {
48
+ filled: SvgFileCopyFilled,
49
+ outlined: SvgFileCopyOutlined,
50
+ round: SvgFileCopyRound,
51
+ sharp: SvgFileCopySharp
41
52
  };
42
- const file_download = {
43
- filled: SvgFileDownloadFilled,
44
- outlined: SvgFileDownloadOutlined,
45
- round: SvgFileDownloadRound,
46
- sharp: SvgFileDownloadSharp
53
+ var file_download = {
54
+ filled: SvgFileDownloadFilled,
55
+ outlined: SvgFileDownloadOutlined,
56
+ round: SvgFileDownloadRound,
57
+ sharp: SvgFileDownloadSharp
47
58
  };
48
- const file_download_off = {
49
- filled: SvgFileDownloadOffFilled,
50
- outlined: SvgFileDownloadOffOutlined,
51
- round: SvgFileDownloadOffRound,
52
- sharp: SvgFileDownloadOffSharp
59
+ var file_download_off = {
60
+ filled: SvgFileDownloadOffFilled,
61
+ outlined: SvgFileDownloadOffOutlined,
62
+ round: SvgFileDownloadOffRound,
63
+ sharp: SvgFileDownloadOffSharp
53
64
  };
54
- const file_open = {
55
- filled: SvgFileOpenFilled,
56
- outlined: SvgFileOpenOutlined,
57
- round: SvgFileOpenRound,
58
- sharp: SvgFileOpenSharp
65
+ var file_open = {
66
+ filled: SvgFileOpenFilled,
67
+ outlined: SvgFileOpenOutlined,
68
+ round: SvgFileOpenRound,
69
+ sharp: SvgFileOpenSharp
59
70
  };
60
- const file_upload = {
61
- filled: SvgFileUploadFilled,
62
- outlined: SvgFileUploadOutlined,
63
- round: SvgFileUploadRound,
64
- sharp: SvgFileUploadSharp
71
+ var file_upload = {
72
+ filled: SvgFileUploadFilled,
73
+ outlined: SvgFileUploadOutlined,
74
+ round: SvgFileUploadRound,
75
+ sharp: SvgFileUploadSharp
65
76
  };
66
- const unarchive = {
67
- filled: SvgUnarchiveFilled,
68
- outlined: SvgUnarchiveOutlined,
69
- round: SvgUnarchiveRound,
70
- sharp: SvgUnarchiveSharp
71
- };
72
- export {
73
- archive,
74
- file_copy,
75
- file_download,
76
- file_download_off,
77
- file_open,
78
- file_upload,
79
- unarchive
77
+ var unarchive = {
78
+ filled: SvgUnarchiveFilled,
79
+ outlined: SvgUnarchiveOutlined,
80
+ round: SvgUnarchiveRound,
81
+ sharp: SvgUnarchiveSharp
80
82
  };
83
+ //#endregion
84
+ export { archive, file_copy, file_download, file_download_off, file_exports, file_open, file_upload, unarchive };
@@ -0,0 +1,19 @@
1
+ "use client";
2
+ const require_runtime = require("../../../../_virtual/_rolldown/runtime.cjs");
3
+ let react_jsx_runtime = require("react/jsx-runtime");
4
+ let react = require("react");
5
+ react = require_runtime.__toESM(react);
6
+ //#region src/foundation/iconography/svg/file/unarchive-filled.svg-react
7
+ var SvgUnarchiveFilled = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ fill: "currentColor",
10
+ viewBox: "0 0 18 18",
11
+ "aria-labelledby": titleId,
12
+ ...props,
13
+ children: [title ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("title", {
14
+ id: titleId,
15
+ children: title
16
+ }) : null, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m9 6.475-3.9 3.9 1 1 2.15-2.15v5.025h1.5V9.225l2.15 2.15 1-1zM1.5 18q-.6187 0-1.0592-.4407Q0 17.1188 0 16.5V3.275q0-.247.075-.4765T.3 2.375L1.6.6q.2-.275.5235-.4375T2.8 0h12.375q.353 0 .6765.1625T16.375.6L17.7 2.375q.15.194.225.4235T18 3.275V16.5q0 .6188-.4405 1.0593Q17.1188 18 16.5 18zm.425-15.35H16.05l-.9102-1.15H2.825z" })]
17
+ });
18
+ //#endregion
19
+ exports.default = SvgUnarchiveFilled;
@@ -0,0 +1,17 @@
1
+ "use client";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import "react";
4
+ //#region src/foundation/iconography/svg/file/unarchive-filled.svg-react
5
+ var SvgUnarchiveFilled = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ fill: "currentColor",
8
+ viewBox: "0 0 18 18",
9
+ "aria-labelledby": titleId,
10
+ ...props,
11
+ children: [title ? /* @__PURE__ */ jsx("title", {
12
+ id: titleId,
13
+ children: title
14
+ }) : null, /* @__PURE__ */ jsx("path", { d: "m9 6.475-3.9 3.9 1 1 2.15-2.15v5.025h1.5V9.225l2.15 2.15 1-1zM1.5 18q-.6187 0-1.0592-.4407Q0 17.1188 0 16.5V3.275q0-.247.075-.4765T.3 2.375L1.6.6q.2-.275.5235-.4375T2.8 0h12.375q.353 0 .6765.1625T16.375.6L17.7 2.375q.15.194.225.4235T18 3.275V16.5q0 .6188-.4405 1.0593Q17.1188 18 16.5 18zm.425-15.35H16.05l-.9102-1.15H2.825z" })]
15
+ });
16
+ //#endregion
17
+ export { SvgUnarchiveFilled as default };
@@ -0,0 +1,19 @@
1
+ "use client";
2
+ const require_runtime = require("../../../../_virtual/_rolldown/runtime.cjs");
3
+ let react_jsx_runtime = require("react/jsx-runtime");
4
+ let react = require("react");
5
+ react = require_runtime.__toESM(react);
6
+ //#region src/foundation/iconography/svg/file/unarchive-outlined.svg-react
7
+ var SvgUnarchiveOutlined = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ fill: "currentColor",
10
+ viewBox: "0 0 18 18",
11
+ "aria-labelledby": titleId,
12
+ ...props,
13
+ children: [title ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("title", {
14
+ id: titleId,
15
+ children: title
16
+ }) : null, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m9 6.475-3.9 3.9 1 1 2.15-2.15v5.025h1.5V9.225l2.15 2.15 1-1zM1.5 4.15V16.5h15V4.15zM1.5 18q-.6187 0-1.0592-.4407Q0 17.1188 0 16.5V3.275q0-.247.075-.4765T.3 2.375L1.6.6q.2-.275.5235-.4375T2.8 0h12.375q.353 0 .6765.1625T16.375.6L17.7 2.375q.15.194.225.4235T18 3.275V16.5q0 .6188-.4405 1.0593Q17.1188 18 16.5 18zm.425-15.35H16.05l-.9102-1.15H2.825zM9 10.325" })]
17
+ });
18
+ //#endregion
19
+ exports.default = SvgUnarchiveOutlined;
@@ -0,0 +1,17 @@
1
+ "use client";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import "react";
4
+ //#region src/foundation/iconography/svg/file/unarchive-outlined.svg-react
5
+ var SvgUnarchiveOutlined = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ fill: "currentColor",
8
+ viewBox: "0 0 18 18",
9
+ "aria-labelledby": titleId,
10
+ ...props,
11
+ children: [title ? /* @__PURE__ */ jsx("title", {
12
+ id: titleId,
13
+ children: title
14
+ }) : null, /* @__PURE__ */ jsx("path", { d: "m9 6.475-3.9 3.9 1 1 2.15-2.15v5.025h1.5V9.225l2.15 2.15 1-1zM1.5 4.15V16.5h15V4.15zM1.5 18q-.6187 0-1.0592-.4407Q0 17.1188 0 16.5V3.275q0-.247.075-.4765T.3 2.375L1.6.6q.2-.275.5235-.4375T2.8 0h12.375q.353 0 .6765.1625T16.375.6L17.7 2.375q.15.194.225.4235T18 3.275V16.5q0 .6188-.4405 1.0593Q17.1188 18 16.5 18zm.425-15.35H16.05l-.9102-1.15H2.825zM9 10.325" })]
15
+ });
16
+ //#endregion
17
+ export { SvgUnarchiveOutlined as default };
@@ -0,0 +1,19 @@
1
+ "use client";
2
+ const require_runtime = require("../../../../_virtual/_rolldown/runtime.cjs");
3
+ let react_jsx_runtime = require("react/jsx-runtime");
4
+ let react = require("react");
5
+ react = require_runtime.__toESM(react);
6
+ //#region src/foundation/iconography/svg/file/unarchive-round.svg-react
7
+ var SvgUnarchiveRound = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ fill: "currentColor",
10
+ viewBox: "0 0 18 18",
11
+ "aria-labelledby": titleId,
12
+ ...props,
13
+ children: [title ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("title", {
14
+ id: titleId,
15
+ children: title
16
+ }) : null, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.5375 13.8093q.2125-.2156.2125-.5343V9l1.65 1.65q.1955.2.4978.2t.5022-.1965q.2-.1962.2-.5 0-.3035-.2-.5035L9.525 6.775Q9.3 6.55 9 6.55t-.525.225L5.6 9.65q-.2.1955-.2.4977t.1965.5023q.1963.2.5.2.3035 0 .5035-.2L8.25 9v4.275q0 .3187.217.5342.2168.2158.5375.2158.3205 0 .533-.2158M1.5 4.15V16.5h15V4.15zM1.5 18q-.6187 0-1.0592-.4407Q0 17.1188 0 16.5V3.275q0-.247.075-.4765T.3 2.375L1.6.6q.2-.275.5235-.4375T2.8 0h12.375q.353 0 .6765.1625T16.375.6L17.7 2.375q.15.194.225.4235T18 3.275V16.5q0 .6188-.4405 1.0593Q17.1188 18 16.5 18zm.425-15.35H16.05l-.9102-1.15H2.825zM9 10.325" })]
17
+ });
18
+ //#endregion
19
+ exports.default = SvgUnarchiveRound;
@@ -0,0 +1,17 @@
1
+ "use client";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import "react";
4
+ //#region src/foundation/iconography/svg/file/unarchive-round.svg-react
5
+ var SvgUnarchiveRound = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ fill: "currentColor",
8
+ viewBox: "0 0 18 18",
9
+ "aria-labelledby": titleId,
10
+ ...props,
11
+ children: [title ? /* @__PURE__ */ jsx("title", {
12
+ id: titleId,
13
+ children: title
14
+ }) : null, /* @__PURE__ */ jsx("path", { d: "M9.5375 13.8093q.2125-.2156.2125-.5343V9l1.65 1.65q.1955.2.4978.2t.5022-.1965q.2-.1962.2-.5 0-.3035-.2-.5035L9.525 6.775Q9.3 6.55 9 6.55t-.525.225L5.6 9.65q-.2.1955-.2.4977t.1965.5023q.1963.2.5.2.3035 0 .5035-.2L8.25 9v4.275q0 .3187.217.5342.2168.2158.5375.2158.3205 0 .533-.2158M1.5 4.15V16.5h15V4.15zM1.5 18q-.6187 0-1.0592-.4407Q0 17.1188 0 16.5V3.275q0-.247.075-.4765T.3 2.375L1.6.6q.2-.275.5235-.4375T2.8 0h12.375q.353 0 .6765.1625T16.375.6L17.7 2.375q.15.194.225.4235T18 3.275V16.5q0 .6188-.4405 1.0593Q17.1188 18 16.5 18zm.425-15.35H16.05l-.9102-1.15H2.825zM9 10.325" })]
15
+ });
16
+ //#endregion
17
+ export { SvgUnarchiveRound as default };
@@ -0,0 +1,19 @@
1
+ "use client";
2
+ const require_runtime = require("../../../../_virtual/_rolldown/runtime.cjs");
3
+ let react_jsx_runtime = require("react/jsx-runtime");
4
+ let react = require("react");
5
+ react = require_runtime.__toESM(react);
6
+ //#region src/foundation/iconography/svg/file/unarchive-sharp.svg-react
7
+ var SvgUnarchiveSharp = ({ title, titleId, ...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ fill: "currentColor",
10
+ viewBox: "0 0 18 18",
11
+ "aria-labelledby": titleId,
12
+ ...props,
13
+ children: [title ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("title", {
14
+ id: titleId,
15
+ children: title
16
+ }) : null, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "m9 6.475-3.9 3.9 1 1 2.15-2.15v5.025h1.5V9.225l2.15 2.15 1-1zM1.5 4.15V16.5h15V4.15zM0 18V2.775L2.05 0h13.875L18 2.775V18zM1.925 2.65H16.05l-.9-1.15H2.825zM9 10.325" })]
17
+ });
18
+ //#endregion
19
+ exports.default = SvgUnarchiveSharp;
@@ -0,0 +1,17 @@
1
+ "use client";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import "react";
4
+ //#region src/foundation/iconography/svg/file/unarchive-sharp.svg-react
5
+ var SvgUnarchiveSharp = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ fill: "currentColor",
8
+ viewBox: "0 0 18 18",
9
+ "aria-labelledby": titleId,
10
+ ...props,
11
+ children: [title ? /* @__PURE__ */ jsx("title", {
12
+ id: titleId,
13
+ children: title
14
+ }) : null, /* @__PURE__ */ jsx("path", { d: "m9 6.475-3.9 3.9 1 1 2.15-2.15v5.025h1.5V9.225l2.15 2.15 1-1zM1.5 4.15V16.5h15V4.15zM0 18V2.775L2.05 0h13.875L18 2.775V18zM1.925 2.65H16.05l-.9-1.15H2.825zM9 10.325" })]
15
+ });
16
+ //#endregion
17
+ export { SvgUnarchiveSharp as default };
@@ -1,27 +1,86 @@
1
1
  "use client";
2
- "use strict";
3
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
4
- const index = require("./action/index.cjs");
5
- const index$1 = require("./communication/index.cjs");
6
- const index$2 = require("./content/index.cjs");
7
- const index$3 = require("./device/index.cjs");
8
- const index$4 = require("./file/index.cjs");
9
- const index$5 = require("./map/index.cjs");
10
- const index$6 = require("./navigation/index.cjs");
11
- const index$7 = require("./notifications/index.cjs");
12
- const index$8 = require("./search/index.cjs");
13
- const index$9 = require("./social/index.cjs");
14
- const index$a = require("./toggle/index.cjs");
15
- const index$b = require("./validation/index.cjs");
16
- exports.action = index;
17
- exports.communication = index$1;
18
- exports.content = index$2;
19
- exports.device = index$3;
20
- exports.file = index$4;
21
- exports.map = index$5;
22
- exports.navigation = index$6;
23
- exports.notifications = index$7;
24
- exports.search = index$8;
25
- exports.social = index$9;
26
- exports.toggle = index$a;
27
- exports.validation = index$b;
3
+ const require_index = require("./action/index.cjs");
4
+ const require_index$1 = require("./communication/index.cjs");
5
+ const require_index$2 = require("./content/index.cjs");
6
+ const require_index$3 = require("./device/index.cjs");
7
+ const require_index$4 = require("./file/index.cjs");
8
+ const require_index$5 = require("./map/index.cjs");
9
+ const require_index$6 = require("./navigation/index.cjs");
10
+ const require_index$7 = require("./notifications/index.cjs");
11
+ const require_index$8 = require("./search/index.cjs");
12
+ const require_index$9 = require("./social/index.cjs");
13
+ const require_index$10 = require("./toggle/index.cjs");
14
+ const require_index$11 = require("./validation/index.cjs");
15
+ Object.defineProperty(exports, "action", {
16
+ enumerable: true,
17
+ get: function() {
18
+ return require_index.action_exports;
19
+ }
20
+ });
21
+ Object.defineProperty(exports, "communication", {
22
+ enumerable: true,
23
+ get: function() {
24
+ return require_index$1.communication_exports;
25
+ }
26
+ });
27
+ Object.defineProperty(exports, "content", {
28
+ enumerable: true,
29
+ get: function() {
30
+ return require_index$2.content_exports;
31
+ }
32
+ });
33
+ Object.defineProperty(exports, "device", {
34
+ enumerable: true,
35
+ get: function() {
36
+ return require_index$3.device_exports;
37
+ }
38
+ });
39
+ Object.defineProperty(exports, "file", {
40
+ enumerable: true,
41
+ get: function() {
42
+ return require_index$4.file_exports;
43
+ }
44
+ });
45
+ Object.defineProperty(exports, "map", {
46
+ enumerable: true,
47
+ get: function() {
48
+ return require_index$5.map_exports;
49
+ }
50
+ });
51
+ Object.defineProperty(exports, "navigation", {
52
+ enumerable: true,
53
+ get: function() {
54
+ return require_index$6.navigation_exports;
55
+ }
56
+ });
57
+ Object.defineProperty(exports, "notifications", {
58
+ enumerable: true,
59
+ get: function() {
60
+ return require_index$7.notifications_exports;
61
+ }
62
+ });
63
+ Object.defineProperty(exports, "search", {
64
+ enumerable: true,
65
+ get: function() {
66
+ return require_index$8.search_exports;
67
+ }
68
+ });
69
+ Object.defineProperty(exports, "social", {
70
+ enumerable: true,
71
+ get: function() {
72
+ return require_index$9.social_exports;
73
+ }
74
+ });
75
+ Object.defineProperty(exports, "toggle", {
76
+ enumerable: true,
77
+ get: function() {
78
+ return require_index$10.toggle_exports;
79
+ }
80
+ });
81
+ Object.defineProperty(exports, "validation", {
82
+ enumerable: true,
83
+ get: function() {
84
+ return require_index$11.validation_exports;
85
+ }
86
+ });
@@ -1,27 +1,14 @@
1
1
  "use client";
2
- import * as index from "./action/index.js";
3
- import * as index$1 from "./communication/index.js";
4
- import * as index$2 from "./content/index.js";
5
- import * as index$3 from "./device/index.js";
6
- import * as index$4 from "./file/index.js";
7
- import * as index$5 from "./map/index.js";
8
- import * as index$6 from "./navigation/index.js";
9
- import * as index$7 from "./notifications/index.js";
10
- import * as index$8 from "./search/index.js";
11
- import * as index$9 from "./social/index.js";
12
- import * as index$a from "./toggle/index.js";
13
- import * as index$b from "./validation/index.js";
14
- export {
15
- index as action,
16
- index$1 as communication,
17
- index$2 as content,
18
- index$3 as device,
19
- index$4 as file,
20
- index$5 as map,
21
- index$6 as navigation,
22
- index$7 as notifications,
23
- index$8 as search,
24
- index$9 as social,
25
- index$a as toggle,
26
- index$b as validation
27
- };
2
+ import { action_exports } from "./action/index.js";
3
+ import { communication_exports } from "./communication/index.js";
4
+ import { content_exports } from "./content/index.js";
5
+ import { device_exports } from "./device/index.js";
6
+ import { file_exports } from "./file/index.js";
7
+ import { map_exports } from "./map/index.js";
8
+ import { navigation_exports } from "./navigation/index.js";
9
+ import { notifications_exports } from "./notifications/index.js";
10
+ import { search_exports } from "./search/index.js";
11
+ import { social_exports } from "./social/index.js";
12
+ import { toggle_exports } from "./toggle/index.js";
13
+ import { validation_exports } from "./validation/index.js";
14
+ export { action_exports as action, communication_exports as communication, content_exports as content, device_exports as device, file_exports as file, map_exports as map, navigation_exports as navigation, notifications_exports as notifications, search_exports as search, social_exports as social, toggle_exports as toggle, validation_exports as validation };