@goodhood-web/ui 0.0.6 → 1.0.0-development.1

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 (293) hide show
  1. package/{src/index.ts → index.d.ts} +1 -24
  2. package/index.js +48 -0
  3. package/index.mjs +2341 -0
  4. package/lib/BaseButton/BaseButton.d.ts +11 -0
  5. package/lib/Card/Card.d.ts +3 -0
  6. package/lib/Card/Card.types.d.ts +10 -0
  7. package/lib/Card/Card.utils.d.ts +3 -0
  8. package/lib/Card/CardBody/CardBody.d.ts +3 -0
  9. package/lib/Card/CardBody/CardBody.types.d.ts +5 -0
  10. package/lib/Card/CardHeader/CardHeader.d.ts +3 -0
  11. package/lib/Card/CardHeader/CardHeader.type.d.ts +12 -0
  12. package/lib/ContentCreatorButton/ContentCreatorButton.d.ts +3 -0
  13. package/{src/lib/ContentCreatorButton/ContentCreatorButton.types.ts → lib/ContentCreatorButton/ContentCreatorButton.types.d.ts} +2 -3
  14. package/lib/Divider/Divider.d.ts +3 -0
  15. package/lib/Divider/Divider.types.d.ts +6 -0
  16. package/lib/Fieldset/Fieldset.d.ts +3 -0
  17. package/lib/Fieldset/Fieldset.types.d.ts +8 -0
  18. package/lib/Form/Form.d.ts +3 -0
  19. package/lib/Form/Form.types.d.ts +10 -0
  20. package/lib/Icon/Icon.d.ts +4 -0
  21. package/lib/Icon/Icon.types.d.ts +18 -0
  22. package/lib/Icon/icons/24x24/index.d.ts +130 -0
  23. package/lib/Icon/icons/32x32/index.d.ts +265 -0
  24. package/lib/Icon/icons/index.d.ts +395 -0
  25. package/lib/IconButton/IconButton.d.ts +3 -0
  26. package/{src/lib/IconButton/IconButton.types.ts → lib/IconButton/IconButton.types.d.ts} +12 -10
  27. package/lib/IconButton/utils.d.ts +3 -0
  28. package/lib/Image/Image.d.ts +3 -0
  29. package/lib/Image/Image.type.d.ts +5 -0
  30. package/lib/LabelPill/LabelPill.d.ts +3 -0
  31. package/lib/LabelPill/LabelPill.types.d.ts +4 -0
  32. package/lib/Legend/Legend.d.ts +3 -0
  33. package/lib/Legend/Legend.types.d.ts +5 -0
  34. package/lib/MenuItem/MenuItem.d.ts +3 -0
  35. package/lib/MenuItem/MenuItem.types.d.ts +9 -0
  36. package/lib/NotificationBubble/NotificationBubble.d.ts +3 -0
  37. package/{src/lib/NotificationBubble/NotificationBubble.types.tsx → lib/NotificationBubble/NotificationBubble.types.d.ts} +2 -3
  38. package/lib/Thumbnail/Thumbnail.d.ts +3 -0
  39. package/{src/lib/Thumbnail/Thumbnail.type.tsx → lib/Thumbnail/Thumbnail.type.d.ts} +6 -9
  40. package/lib/Toggle/Toggle.d.ts +3 -0
  41. package/{src/lib/Toggle/Toggle.types.ts → lib/Toggle/Toggle.types.d.ts} +2 -3
  42. package/lib/ToggleInput/ToggleInput.d.ts +3 -0
  43. package/{src/lib/ToggleInput/ToggleInput.types.ts → lib/ToggleInput/ToggleInput.types.d.ts} +3 -5
  44. package/lib/Typography/Typography.d.ts +3 -0
  45. package/lib/Typography/Typography.types.d.ts +8 -0
  46. package/package.json +3 -2
  47. package/style.css +1 -0
  48. package/.babelrc +0 -12
  49. package/.eslintrc.json +0 -25
  50. package/.storybook/main.ts +0 -31
  51. package/.storybook/manager-head.html +0 -1
  52. package/.storybook/manager.ts +0 -7
  53. package/.storybook/nebenanTheme.ts +0 -17
  54. package/.storybook/preview.ts +0 -9
  55. package/.stylelintrc.json +0 -14
  56. package/README.md +0 -7
  57. package/__mocks__/svg.js +0 -2
  58. package/images/favicon.ico +0 -0
  59. package/images/logo.svg +0 -11
  60. package/jest.config.ts +0 -16
  61. package/project.json +0 -95
  62. package/release.config.js +0 -30
  63. package/src/lib/BaseButton/BaseButton.module.scss +0 -11
  64. package/src/lib/BaseButton/BaseButton.spec.tsx +0 -12
  65. package/src/lib/BaseButton/BaseButton.stories.tsx +0 -26
  66. package/src/lib/BaseButton/BaseButton.tsx +0 -39
  67. package/src/lib/Card/Card.module.scss +0 -15
  68. package/src/lib/Card/Card.spec.tsx +0 -15
  69. package/src/lib/Card/Card.stories.tsx +0 -159
  70. package/src/lib/Card/Card.tsx +0 -31
  71. package/src/lib/Card/Card.types.ts +0 -12
  72. package/src/lib/Card/Card.utils.spec.tsx +0 -51
  73. package/src/lib/Card/Card.utils.ts +0 -23
  74. package/src/lib/Card/CardBody/CardBody.module.scss +0 -4
  75. package/src/lib/Card/CardBody/CardBody.spec.tsx +0 -15
  76. package/src/lib/Card/CardBody/CardBody.stories.tsx +0 -108
  77. package/src/lib/Card/CardBody/CardBody.tsx +0 -9
  78. package/src/lib/Card/CardBody/CardBody.types.ts +0 -4
  79. package/src/lib/Card/CardHeader/CardHeader.module.scss +0 -12
  80. package/src/lib/Card/CardHeader/CardHeader.spec.tsx +0 -72
  81. package/src/lib/Card/CardHeader/CardHeader.stories.tsx +0 -77
  82. package/src/lib/Card/CardHeader/CardHeader.tsx +0 -29
  83. package/src/lib/Card/CardHeader/CardHeader.type.ts +0 -14
  84. package/src/lib/ContentCreatorButton/ContentCreatorButton.module.scss +0 -14
  85. package/src/lib/ContentCreatorButton/ContentCreatorButton.spec.tsx +0 -14
  86. package/src/lib/ContentCreatorButton/ContentCreatorButton.stories.tsx +0 -29
  87. package/src/lib/ContentCreatorButton/ContentCreatorButton.tsx +0 -35
  88. package/src/lib/Divider/Divider.module.scss +0 -10
  89. package/src/lib/Divider/Divider.spec.tsx +0 -46
  90. package/src/lib/Divider/Divider.stories.tsx +0 -35
  91. package/src/lib/Divider/Divider.tsx +0 -17
  92. package/src/lib/Divider/Divider.types.ts +0 -6
  93. package/src/lib/Fieldset/Fieldset.module.scss +0 -3
  94. package/src/lib/Fieldset/Fieldset.spec.tsx +0 -68
  95. package/src/lib/Fieldset/Fieldset.stories.tsx +0 -60
  96. package/src/lib/Fieldset/Fieldset.tsx +0 -28
  97. package/src/lib/Fieldset/Fieldset.types.ts +0 -7
  98. package/src/lib/Form/Form.spec.tsx +0 -15
  99. package/src/lib/Form/Form.stories.tsx +0 -53
  100. package/src/lib/Form/Form.tsx +0 -14
  101. package/src/lib/Form/Form.types.ts +0 -11
  102. package/src/lib/Icon/Icon.module.scss +0 -7
  103. package/src/lib/Icon/Icon.spec.tsx +0 -33
  104. package/src/lib/Icon/Icon.stories.tsx +0 -88
  105. package/src/lib/Icon/Icon.tsx +0 -29
  106. package/src/lib/Icon/Icon.types.ts +0 -23
  107. package/src/lib/Icon/icons/24x24/index.ts +0 -89
  108. package/src/lib/Icon/icons/24x24/svg/arrow_left.svg +0 -1
  109. package/src/lib/Icon/icons/24x24/svg/arrow_right.svg +0 -1
  110. package/src/lib/Icon/icons/24x24/svg/bookmark.svg +0 -1
  111. package/src/lib/Icon/icons/24x24/svg/bookmarked.svg +0 -1
  112. package/src/lib/Icon/icons/24x24/svg/burger_menu.svg +0 -1
  113. package/src/lib/Icon/icons/24x24/svg/camera.svg +0 -1
  114. package/src/lib/Icon/icons/24x24/svg/checkmark.svg +0 -1
  115. package/src/lib/Icon/icons/24x24/svg/checkmark_circle.svg +0 -1
  116. package/src/lib/Icon/icons/24x24/svg/chevron_down.svg +0 -1
  117. package/src/lib/Icon/icons/24x24/svg/chevron_left.svg +0 -1
  118. package/src/lib/Icon/icons/24x24/svg/chevron_right.svg +0 -1
  119. package/src/lib/Icon/icons/24x24/svg/chevron_up.svg +0 -1
  120. package/src/lib/Icon/icons/24x24/svg/comment_bubble.svg +0 -1
  121. package/src/lib/Icon/icons/24x24/svg/cross.svg +0 -1
  122. package/src/lib/Icon/icons/24x24/svg/cross_circle.svg +0 -1
  123. package/src/lib/Icon/icons/24x24/svg/envelope.svg +0 -1
  124. package/src/lib/Icon/icons/24x24/svg/event_calendar.svg +0 -1
  125. package/src/lib/Icon/icons/24x24/svg/external_link.svg +0 -1
  126. package/src/lib/Icon/icons/24x24/svg/eye.svg +0 -1
  127. package/src/lib/Icon/icons/24x24/svg/eye_crossed.svg +0 -1
  128. package/src/lib/Icon/icons/24x24/svg/filter.svg +0 -1
  129. package/src/lib/Icon/icons/24x24/svg/globe.svg +0 -1
  130. package/src/lib/Icon/icons/24x24/svg/heart.svg +0 -1
  131. package/src/lib/Icon/icons/24x24/svg/image.svg +0 -1
  132. package/src/lib/Icon/icons/24x24/svg/loudspeaker.svg +0 -1
  133. package/src/lib/Icon/icons/24x24/svg/marketplace.svg +0 -1
  134. package/src/lib/Icon/icons/24x24/svg/more_dots.svg +0 -1
  135. package/src/lib/Icon/icons/24x24/svg/more_dots_alt.svg +0 -1
  136. package/src/lib/Icon/icons/24x24/svg/mute.svg +0 -1
  137. package/src/lib/Icon/icons/24x24/svg/notification_bell.svg +0 -1
  138. package/src/lib/Icon/icons/24x24/svg/paperclip.svg +0 -1
  139. package/src/lib/Icon/icons/24x24/svg/pencil.svg +0 -1
  140. package/src/lib/Icon/icons/24x24/svg/pin.svg +0 -1
  141. package/src/lib/Icon/icons/24x24/svg/plus.svg +0 -1
  142. package/src/lib/Icon/icons/24x24/svg/plus_circle.svg +0 -1
  143. package/src/lib/Icon/icons/24x24/svg/privacy_lock.svg +0 -1
  144. package/src/lib/Icon/icons/24x24/svg/search.svg +0 -1
  145. package/src/lib/Icon/icons/24x24/svg/share_arrow.svg +0 -1
  146. package/src/lib/Icon/icons/24x24/svg/share_arrow_outline.svg +0 -1
  147. package/src/lib/Icon/icons/24x24/svg/sort.svg +0 -1
  148. package/src/lib/Icon/icons/24x24/svg/thanks.svg +0 -1
  149. package/src/lib/Icon/icons/24x24/svg/trash_can.svg +0 -1
  150. package/src/lib/Icon/icons/32x32/index.ts +0 -179
  151. package/src/lib/Icon/icons/32x32/svg/address_book.svg +0 -1
  152. package/src/lib/Icon/icons/32x32/svg/baby_toy.svg +0 -1
  153. package/src/lib/Icon/icons/32x32/svg/bicycle.svg +0 -1
  154. package/src/lib/Icon/icons/32x32/svg/bookmark.svg +0 -1
  155. package/src/lib/Icon/icons/32x32/svg/books.svg +0 -1
  156. package/src/lib/Icon/icons/32x32/svg/bubble_heart_filled.svg +0 -1
  157. package/src/lib/Icon/icons/32x32/svg/bubble_heart_outline.svg +0 -1
  158. package/src/lib/Icon/icons/32x32/svg/buildings.svg +0 -1
  159. package/src/lib/Icon/icons/32x32/svg/burger_menu.svg +0 -1
  160. package/src/lib/Icon/icons/32x32/svg/business.svg +0 -1
  161. package/src/lib/Icon/icons/32x32/svg/business_profile.svg +0 -1
  162. package/src/lib/Icon/icons/32x32/svg/camera.svg +0 -1
  163. package/src/lib/Icon/icons/32x32/svg/camera_crossed.svg +0 -1
  164. package/src/lib/Icon/icons/32x32/svg/car.svg +0 -1
  165. package/src/lib/Icon/icons/32x32/svg/carrot.svg +0 -1
  166. package/src/lib/Icon/icons/32x32/svg/chat.svg +0 -1
  167. package/src/lib/Icon/icons/32x32/svg/checkmark_circle.svg +0 -1
  168. package/src/lib/Icon/icons/32x32/svg/christmas_tree.svg +0 -1
  169. package/src/lib/Icon/icons/32x32/svg/clipboard.svg +0 -1
  170. package/src/lib/Icon/icons/32x32/svg/clothing.svg +0 -1
  171. package/src/lib/Icon/icons/32x32/svg/cocktail.svg +0 -1
  172. package/src/lib/Icon/icons/32x32/svg/comment_bubble.svg +0 -1
  173. package/src/lib/Icon/icons/32x32/svg/compass.svg +0 -1
  174. package/src/lib/Icon/icons/32x32/svg/computer.svg +0 -1
  175. package/src/lib/Icon/icons/32x32/svg/couch.svg +0 -1
  176. package/src/lib/Icon/icons/32x32/svg/credit_card.svg +0 -1
  177. package/src/lib/Icon/icons/32x32/svg/cross_circle.svg +0 -1
  178. package/src/lib/Icon/icons/32x32/svg/cutlery.svg +0 -1
  179. package/src/lib/Icon/icons/32x32/svg/drill_tool.svg +0 -1
  180. package/src/lib/Icon/icons/32x32/svg/email.svg +0 -1
  181. package/src/lib/Icon/icons/32x32/svg/envelope.svg +0 -1
  182. package/src/lib/Icon/icons/32x32/svg/event_calendar_check.svg +0 -1
  183. package/src/lib/Icon/icons/32x32/svg/event_calendar_date.svg +0 -1
  184. package/src/lib/Icon/icons/32x32/svg/event_calendar_plus.svg +0 -1
  185. package/src/lib/Icon/icons/32x32/svg/exchange.svg +0 -1
  186. package/src/lib/Icon/icons/32x32/svg/eye.svg +0 -1
  187. package/src/lib/Icon/icons/32x32/svg/eye_crossed.svg +0 -1
  188. package/src/lib/Icon/icons/32x32/svg/gift.svg +0 -1
  189. package/src/lib/Icon/icons/32x32/svg/group.svg +0 -1
  190. package/src/lib/Icon/icons/32x32/svg/healthcare.svg +0 -1
  191. package/src/lib/Icon/icons/32x32/svg/heart.svg +0 -1
  192. package/src/lib/Icon/icons/32x32/svg/house.svg +0 -1
  193. package/src/lib/Icon/icons/32x32/svg/image.svg +0 -1
  194. package/src/lib/Icon/icons/32x32/svg/info.svg +0 -1
  195. package/src/lib/Icon/icons/32x32/svg/invite_neighbour.svg +0 -1
  196. package/src/lib/Icon/icons/32x32/svg/key.svg +0 -1
  197. package/src/lib/Icon/icons/32x32/svg/kitchen_pot.svg +0 -1
  198. package/src/lib/Icon/icons/32x32/svg/list.svg +0 -1
  199. package/src/lib/Icon/icons/32x32/svg/log_out.svg +0 -1
  200. package/src/lib/Icon/icons/32x32/svg/loudspeaker.svg +0 -1
  201. package/src/lib/Icon/icons/32x32/svg/map.svg +0 -1
  202. package/src/lib/Icon/icons/32x32/svg/marketplace.svg +0 -1
  203. package/src/lib/Icon/icons/32x32/svg/miscellaneous_other.svg +0 -1
  204. package/src/lib/Icon/icons/32x32/svg/more_dots.svg +0 -1
  205. package/src/lib/Icon/icons/32x32/svg/more_dots_alt.svg +0 -1
  206. package/src/lib/Icon/icons/32x32/svg/music.svg +0 -1
  207. package/src/lib/Icon/icons/32x32/svg/nebenan.de.svg +0 -1
  208. package/src/lib/Icon/icons/32x32/svg/neighbour.svg +0 -1
  209. package/src/lib/Icon/icons/32x32/svg/notification_bell.svg +0 -1
  210. package/src/lib/Icon/icons/32x32/svg/organisation.svg +0 -1
  211. package/src/lib/Icon/icons/32x32/svg/paper_form_empty.svg +0 -1
  212. package/src/lib/Icon/icons/32x32/svg/paper_form_filled.svg +0 -1
  213. package/src/lib/Icon/icons/32x32/svg/paperclip.svg +0 -1
  214. package/src/lib/Icon/icons/32x32/svg/paw.svg +0 -1
  215. package/src/lib/Icon/icons/32x32/svg/pencil.svg +0 -1
  216. package/src/lib/Icon/icons/32x32/svg/pin.svg +0 -1
  217. package/src/lib/Icon/icons/32x32/svg/pins.svg +0 -1
  218. package/src/lib/Icon/icons/32x32/svg/plant.svg +0 -1
  219. package/src/lib/Icon/icons/32x32/svg/plus.svg +0 -1
  220. package/src/lib/Icon/icons/32x32/svg/plus_circle.svg +0 -1
  221. package/src/lib/Icon/icons/32x32/svg/post.svg +0 -1
  222. package/src/lib/Icon/icons/32x32/svg/privacy_lock.svg +0 -1
  223. package/src/lib/Icon/icons/32x32/svg/qr_code.svg +0 -1
  224. package/src/lib/Icon/icons/32x32/svg/search.svg +0 -1
  225. package/src/lib/Icon/icons/32x32/svg/settings_cog.svg +0 -1
  226. package/src/lib/Icon/icons/32x32/svg/shopping_bag.svg +0 -1
  227. package/src/lib/Icon/icons/32x32/svg/shopping_cart.svg +0 -1
  228. package/src/lib/Icon/icons/32x32/svg/special_place.svg +0 -1
  229. package/src/lib/Icon/icons/32x32/svg/suitcase.svg +0 -1
  230. package/src/lib/Icon/icons/32x32/svg/supporter.svg +0 -1
  231. package/src/lib/Icon/icons/32x32/svg/tennis_ball.svg +0 -1
  232. package/src/lib/Icon/icons/32x32/svg/thanks.svg +0 -1
  233. package/src/lib/Icon/icons/32x32/svg/trash_can.svg +0 -1
  234. package/src/lib/Icon/icons/32x32/svg/truck.svg +0 -1
  235. package/src/lib/Icon/icons/32x32/svg/user.svg +0 -1
  236. package/src/lib/Icon/icons/32x32/svg/user_profile.svg +0 -1
  237. package/src/lib/Icon/icons/32x32/svg/wellness.svg +0 -1
  238. package/src/lib/Icon/icons/index.ts +0 -9
  239. package/src/lib/IconButton/IconButton.module.scss +0 -37
  240. package/src/lib/IconButton/IconButton.spec.tsx +0 -56
  241. package/src/lib/IconButton/IconButton.stories.tsx +0 -36
  242. package/src/lib/IconButton/IconButton.tsx +0 -25
  243. package/src/lib/IconButton/utils.ts +0 -6
  244. package/src/lib/Image/Image.spec.tsx +0 -10
  245. package/src/lib/Image/Image.tsx +0 -7
  246. package/src/lib/Image/Image.type.tsx +0 -5
  247. package/src/lib/LabelPill/LabelPill.module.scss +0 -33
  248. package/src/lib/LabelPill/LabelPill.spec.tsx +0 -23
  249. package/src/lib/LabelPill/LabelPill.stories.tsx +0 -31
  250. package/src/lib/LabelPill/LabelPill.tsx +0 -16
  251. package/src/lib/LabelPill/LabelPill.types.ts +0 -4
  252. package/src/lib/Legend/Legend.module.scss +0 -9
  253. package/src/lib/Legend/Legend.spec.tsx +0 -35
  254. package/src/lib/Legend/Legend.stories.ts +0 -39
  255. package/src/lib/Legend/Legend.tsx +0 -19
  256. package/src/lib/Legend/Legend.types.ts +0 -5
  257. package/src/lib/MenuItem/MenuItem.module.scss +0 -73
  258. package/src/lib/MenuItem/MenuItem.spec.tsx +0 -47
  259. package/src/lib/MenuItem/MenuItem.stories.tsx +0 -97
  260. package/src/lib/MenuItem/MenuItem.tsx +0 -34
  261. package/src/lib/MenuItem/MenuItem.types.ts +0 -10
  262. package/src/lib/NotificationBubble/NotificationBubble.module.scss +0 -30
  263. package/src/lib/NotificationBubble/NotificationBubble.spec.tsx +0 -36
  264. package/src/lib/NotificationBubble/NotificationBubble.stories.tsx +0 -56
  265. package/src/lib/NotificationBubble/NotificationBubble.tsx +0 -34
  266. package/src/lib/Thumbnail/Thumbnail.module.scss +0 -68
  267. package/src/lib/Thumbnail/Thumbnail.spec.tsx +0 -51
  268. package/src/lib/Thumbnail/Thumbnail.stories.tsx +0 -242
  269. package/src/lib/Thumbnail/Thumbnail.tsx +0 -28
  270. package/src/lib/Toggle/Toggle.module.scss +0 -53
  271. package/src/lib/Toggle/Toggle.spec.tsx +0 -23
  272. package/src/lib/Toggle/Toggle.stories.tsx +0 -38
  273. package/src/lib/Toggle/Toggle.tsx +0 -32
  274. package/src/lib/ToggleInput/ToggleInput.module.scss +0 -32
  275. package/src/lib/ToggleInput/ToggleInput.spec.tsx +0 -45
  276. package/src/lib/ToggleInput/ToggleInput.stories.tsx +0 -62
  277. package/src/lib/ToggleInput/ToggleInput.tsx +0 -40
  278. package/src/lib/Typography/Typography.module.scss +0 -61
  279. package/src/lib/Typography/Typography.spec.tsx +0 -60
  280. package/src/lib/Typography/Typography.stories.tsx +0 -45
  281. package/src/lib/Typography/Typography.tsx +0 -26
  282. package/src/lib/Typography/Typography.types.ts +0 -28
  283. package/src/styles/_design-tokens.scss +0 -1
  284. package/src/styles/_fonts.scss +0 -0
  285. package/src/styles/_functions.scss +0 -17
  286. package/src/styles/_mixins.scss +0 -33
  287. package/src/styles/index.scss +0 -3
  288. package/src/styles/reset.scss +0 -67
  289. package/tsconfig.json +0 -24
  290. package/tsconfig.lib.json +0 -35
  291. package/tsconfig.spec.json +0 -20
  292. package/tsconfig.storybook.json +0 -31
  293. package/vite.config.ts +0 -57
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ import { ButtonOwnProps } from '@mui/base';
3
+ export interface BaseButtonProps extends ButtonOwnProps {
4
+ ariaLabel?: string;
5
+ ariaLabelledBy?: string;
6
+ className?: string;
7
+ onClick: () => void;
8
+ ref?: React.ForwardedRef<null>;
9
+ }
10
+ declare const BaseButton: (props: BaseButtonProps) => import("react/jsx-runtime").JSX.Element;
11
+ export default BaseButton;
@@ -0,0 +1,3 @@
1
+ import { CardProps } from './Card.types';
2
+ declare const Card: ({ ariaLabel, as: Tag, borderRadius, children, role, }: CardProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default Card;
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ import { CardBodyProps } from './CardBody/CardBody.types';
3
+ import { CardHeaderProps } from './CardHeader/CardHeader.type';
4
+ export interface CardProps {
5
+ ariaLabel?: string;
6
+ as?: Extract<keyof JSX.IntrinsicElements, 'section' | 'div'>;
7
+ borderRadius?: boolean;
8
+ children: React.ReactElement<CardBodyProps | CardHeaderProps> | React.ReactElement<CardBodyProps | CardHeaderProps>[];
9
+ role?: string;
10
+ }
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ export declare const findAllowedElement: (elements: React.ReactNode, type: React.ElementType) => React.ReactNode;
3
+ export declare const filterAllowedElements: (elements: React.ReactNode, allowedElements: React.ElementType[]) => React.ReactNode[];
@@ -0,0 +1,3 @@
1
+ import { CardBodyProps } from './CardBody.types';
2
+ declare const CardBody: ({ children, className }: CardBodyProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default CardBody;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ export interface CardBodyProps {
3
+ children: React.ReactNode;
4
+ className?: string;
5
+ }
@@ -0,0 +1,3 @@
1
+ import { CardHeaderProps } from './CardHeader.type';
2
+ declare const CardHeader: ({ as, headline, leftElement, rightElement, type, }: CardHeaderProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default CardHeader;
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ import { BaseButtonProps } from '../../BaseButton/BaseButton';
3
+ import { IconProps } from '../../Icon/Icon.types';
4
+ import { IconButtonProps } from '../../IconButton/IconButton.types';
5
+ import { TypographyProps } from '../../Typography/Typography.types';
6
+ export type CardHeaderProps = {
7
+ as?: Exclude<TypographyProps['as'], 'h1' | 'p' | 'span'>;
8
+ headline: string;
9
+ leftElement?: React.ReactElement<IconProps | IconButtonProps>;
10
+ rightElement?: React.ReactElement<BaseButtonProps>;
11
+ type?: Exclude<TypographyProps['type'], 'h1'>;
12
+ };
@@ -0,0 +1,3 @@
1
+ import { ContentCreatorButtonProps } from './ContentCreatorButton.types';
2
+ declare const ContentCreatorButton: ({ children, onClick, ...baseButtonProps }: ContentCreatorButtonProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default ContentCreatorButton;
@@ -1,6 +1,5 @@
1
1
  import { BaseButtonProps } from '../BaseButton/BaseButton';
2
-
3
2
  export interface ContentCreatorButtonProps extends BaseButtonProps {
4
- children: string;
5
- onClick: () => void;
3
+ children: string;
4
+ onClick: () => void;
6
5
  }
@@ -0,0 +1,3 @@
1
+ import { DividerProps } from './Divider.types';
2
+ declare const Divider: ({ offsetLeft, offsetRight }: DividerProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default Divider;
@@ -0,0 +1,6 @@
1
+ type OffsetType = 0 | 8 | 16;
2
+ export interface DividerProps {
3
+ offsetLeft?: OffsetType;
4
+ offsetRight?: OffsetType;
5
+ }
6
+ export {};
@@ -0,0 +1,3 @@
1
+ import { FieldsetProps } from './Fieldset.types';
2
+ declare const Fieldset: ({ children, classname, disabled, form, name }: FieldsetProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default Fieldset;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ export interface FieldsetProps {
3
+ children: React.ReactNode;
4
+ classname?: string;
5
+ disabled?: boolean;
6
+ form?: string;
7
+ name?: string;
8
+ }
@@ -0,0 +1,3 @@
1
+ import { FormProps } from './Form.types';
2
+ declare const Form: ({ ariaLabel, ariaLabelledBy, children, className, id }: FormProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default Form;
@@ -0,0 +1,10 @@
1
+ import { HTMLProps } from 'react';
2
+ type NativeFormProps = HTMLProps<HTMLFormElement>;
3
+ export type FormProps = {
4
+ ariaLabel?: NativeFormProps['aria-label'];
5
+ ariaLabelledBy?: NativeFormProps['aria-labelledby'];
6
+ children?: React.ReactNode;
7
+ className?: NativeFormProps['className'];
8
+ id?: NativeFormProps['id'];
9
+ };
10
+ export {};
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { IconProps } from './Icon.types';
3
+ declare const Icon: ({ className, name, role, size, title, }: IconProps) => ReactElement | null;
4
+ export default Icon;
@@ -0,0 +1,18 @@
1
+ import { AriaRole } from 'react';
2
+ import icons24 from './icons/24x24';
3
+ import icons32 from './icons/32x32';
4
+ export type Icon32 = keyof typeof icons32;
5
+ export type Icon24 = keyof typeof icons24;
6
+ type BaseIconProps = {
7
+ className?: string;
8
+ role?: Extract<AriaRole, 'presentation' | 'img'>;
9
+ title?: string;
10
+ };
11
+ export type IconProps = ({
12
+ name: Icon32;
13
+ size?: '32';
14
+ } & BaseIconProps) | ({
15
+ name: Icon24;
16
+ size: '24';
17
+ } & BaseIconProps);
18
+ export {};
@@ -0,0 +1,130 @@
1
+ /// <reference types="react" />
2
+ declare const IconsMap: {
3
+ readonly arrow_left: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
4
+ title?: string | undefined;
5
+ }>;
6
+ readonly arrow_right: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
7
+ title?: string | undefined;
8
+ }>;
9
+ readonly bookmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
10
+ title?: string | undefined;
11
+ }>;
12
+ readonly bookmarked: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
13
+ title?: string | undefined;
14
+ }>;
15
+ readonly burger_menu: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
16
+ title?: string | undefined;
17
+ }>;
18
+ readonly camera: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
19
+ title?: string | undefined;
20
+ }>;
21
+ readonly checkmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
22
+ title?: string | undefined;
23
+ }>;
24
+ readonly checkmark_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
25
+ title?: string | undefined;
26
+ }>;
27
+ readonly chevron_down: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
28
+ title?: string | undefined;
29
+ }>;
30
+ readonly chevron_left: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
31
+ title?: string | undefined;
32
+ }>;
33
+ readonly chevron_right: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
34
+ title?: string | undefined;
35
+ }>;
36
+ readonly chevron_up: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
37
+ title?: string | undefined;
38
+ }>;
39
+ readonly comment_bubble: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
40
+ title?: string | undefined;
41
+ }>;
42
+ readonly cross: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
43
+ title?: string | undefined;
44
+ }>;
45
+ readonly cross_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
46
+ title?: string | undefined;
47
+ }>;
48
+ readonly envelope: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
49
+ title?: string | undefined;
50
+ }>;
51
+ readonly event_calendar: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
52
+ title?: string | undefined;
53
+ }>;
54
+ readonly external_link: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
55
+ title?: string | undefined;
56
+ }>;
57
+ readonly eye: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
58
+ title?: string | undefined;
59
+ }>;
60
+ readonly eye_crossed: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
61
+ title?: string | undefined;
62
+ }>;
63
+ readonly filter: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
64
+ title?: string | undefined;
65
+ }>;
66
+ readonly globe: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
67
+ title?: string | undefined;
68
+ }>;
69
+ readonly heart: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
70
+ title?: string | undefined;
71
+ }>;
72
+ readonly image: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
73
+ title?: string | undefined;
74
+ }>;
75
+ readonly loudspeaker: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
76
+ title?: string | undefined;
77
+ }>;
78
+ readonly marketplace: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
79
+ title?: string | undefined;
80
+ }>;
81
+ readonly more_dots: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
82
+ title?: string | undefined;
83
+ }>;
84
+ readonly more_dots_alt: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
85
+ title?: string | undefined;
86
+ }>;
87
+ readonly mute: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
88
+ title?: string | undefined;
89
+ }>;
90
+ readonly notification_bell: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
91
+ title?: string | undefined;
92
+ }>;
93
+ readonly paperclip: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
94
+ title?: string | undefined;
95
+ }>;
96
+ readonly pencil: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
97
+ title?: string | undefined;
98
+ }>;
99
+ readonly pin: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
100
+ title?: string | undefined;
101
+ }>;
102
+ readonly plus: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
103
+ title?: string | undefined;
104
+ }>;
105
+ readonly plus_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
106
+ title?: string | undefined;
107
+ }>;
108
+ readonly privacy_lock: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
109
+ title?: string | undefined;
110
+ }>;
111
+ readonly search: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
112
+ title?: string | undefined;
113
+ }>;
114
+ readonly share_arrow: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
115
+ title?: string | undefined;
116
+ }>;
117
+ readonly share_arrow_outline: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
118
+ title?: string | undefined;
119
+ }>;
120
+ readonly sort: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
121
+ title?: string | undefined;
122
+ }>;
123
+ readonly thanks: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
124
+ title?: string | undefined;
125
+ }>;
126
+ readonly trash_can: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
127
+ title?: string | undefined;
128
+ }>;
129
+ };
130
+ export default IconsMap;
@@ -0,0 +1,265 @@
1
+ /// <reference types="react" />
2
+ declare const IconsMap: {
3
+ readonly address_book: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
4
+ title?: string | undefined;
5
+ }>;
6
+ readonly baby_toy: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
7
+ title?: string | undefined;
8
+ }>;
9
+ readonly bicycle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
10
+ title?: string | undefined;
11
+ }>;
12
+ readonly bookmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
13
+ title?: string | undefined;
14
+ }>;
15
+ readonly books: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
16
+ title?: string | undefined;
17
+ }>;
18
+ readonly bubble_heart_filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
19
+ title?: string | undefined;
20
+ }>;
21
+ readonly bubble_heart_outline: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
22
+ title?: string | undefined;
23
+ }>;
24
+ readonly buildings: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
25
+ title?: string | undefined;
26
+ }>;
27
+ readonly burger_menu: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
28
+ title?: string | undefined;
29
+ }>;
30
+ readonly business: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
31
+ title?: string | undefined;
32
+ }>;
33
+ readonly business_profile: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
34
+ title?: string | undefined;
35
+ }>;
36
+ readonly camera: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
37
+ title?: string | undefined;
38
+ }>;
39
+ readonly camera_crossed: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
40
+ title?: string | undefined;
41
+ }>;
42
+ readonly car: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
43
+ title?: string | undefined;
44
+ }>;
45
+ readonly carrot: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
46
+ title?: string | undefined;
47
+ }>;
48
+ readonly chat: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
49
+ title?: string | undefined;
50
+ }>;
51
+ readonly checkmark_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
52
+ title?: string | undefined;
53
+ }>;
54
+ readonly christmas_tree: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
55
+ title?: string | undefined;
56
+ }>;
57
+ readonly clipboard: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
58
+ title?: string | undefined;
59
+ }>;
60
+ readonly clothing: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
61
+ title?: string | undefined;
62
+ }>;
63
+ readonly cocktail: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
64
+ title?: string | undefined;
65
+ }>;
66
+ readonly comment_bubble: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
67
+ title?: string | undefined;
68
+ }>;
69
+ readonly compass: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
70
+ title?: string | undefined;
71
+ }>;
72
+ readonly computer: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
73
+ title?: string | undefined;
74
+ }>;
75
+ readonly couch: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
76
+ title?: string | undefined;
77
+ }>;
78
+ readonly credit_card: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
79
+ title?: string | undefined;
80
+ }>;
81
+ readonly cross_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
82
+ title?: string | undefined;
83
+ }>;
84
+ readonly cutlery: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
85
+ title?: string | undefined;
86
+ }>;
87
+ readonly drill_tool: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
88
+ title?: string | undefined;
89
+ }>;
90
+ readonly email: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
91
+ title?: string | undefined;
92
+ }>;
93
+ readonly envelope: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
94
+ title?: string | undefined;
95
+ }>;
96
+ readonly event_calendar_check: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
97
+ title?: string | undefined;
98
+ }>;
99
+ readonly event_calendar_date: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
100
+ title?: string | undefined;
101
+ }>;
102
+ readonly event_calendar_plus: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
103
+ title?: string | undefined;
104
+ }>;
105
+ readonly exchange: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
106
+ title?: string | undefined;
107
+ }>;
108
+ readonly eye: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
109
+ title?: string | undefined;
110
+ }>;
111
+ readonly eye_crossed: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
112
+ title?: string | undefined;
113
+ }>;
114
+ readonly gift: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
115
+ title?: string | undefined;
116
+ }>;
117
+ readonly group: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
118
+ title?: string | undefined;
119
+ }>;
120
+ readonly healthcare: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
121
+ title?: string | undefined;
122
+ }>;
123
+ readonly heart: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
124
+ title?: string | undefined;
125
+ }>;
126
+ readonly house: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
127
+ title?: string | undefined;
128
+ }>;
129
+ readonly image: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
130
+ title?: string | undefined;
131
+ }>;
132
+ readonly info: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
133
+ title?: string | undefined;
134
+ }>;
135
+ readonly invite_neighbour: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
136
+ title?: string | undefined;
137
+ }>;
138
+ readonly key: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
139
+ title?: string | undefined;
140
+ }>;
141
+ readonly kitchen_pot: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
142
+ title?: string | undefined;
143
+ }>;
144
+ readonly list: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
145
+ title?: string | undefined;
146
+ }>;
147
+ readonly log_out: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
148
+ title?: string | undefined;
149
+ }>;
150
+ readonly loudspeaker: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
151
+ title?: string | undefined;
152
+ }>;
153
+ readonly map: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
154
+ title?: string | undefined;
155
+ }>;
156
+ readonly marketplace: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
157
+ title?: string | undefined;
158
+ }>;
159
+ readonly miscellaneous_other: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
160
+ title?: string | undefined;
161
+ }>;
162
+ readonly more_dots: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
163
+ title?: string | undefined;
164
+ }>;
165
+ readonly more_dots_alt: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
166
+ title?: string | undefined;
167
+ }>;
168
+ readonly music: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
169
+ title?: string | undefined;
170
+ }>;
171
+ readonly nebenan_de: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
172
+ title?: string | undefined;
173
+ }>;
174
+ readonly neighbour: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
175
+ title?: string | undefined;
176
+ }>;
177
+ readonly notification_bell: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
178
+ title?: string | undefined;
179
+ }>;
180
+ readonly organisation: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
181
+ title?: string | undefined;
182
+ }>;
183
+ readonly paper_form_empty: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
184
+ title?: string | undefined;
185
+ }>;
186
+ readonly paper_form_filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
187
+ title?: string | undefined;
188
+ }>;
189
+ readonly paperclip: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
190
+ title?: string | undefined;
191
+ }>;
192
+ readonly paw: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
193
+ title?: string | undefined;
194
+ }>;
195
+ readonly pencil: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
196
+ title?: string | undefined;
197
+ }>;
198
+ readonly pin: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
199
+ title?: string | undefined;
200
+ }>;
201
+ readonly pins: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
202
+ title?: string | undefined;
203
+ }>;
204
+ readonly plant: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
205
+ title?: string | undefined;
206
+ }>;
207
+ readonly plus: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
208
+ title?: string | undefined;
209
+ }>;
210
+ readonly plus_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
211
+ title?: string | undefined;
212
+ }>;
213
+ readonly post: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
214
+ title?: string | undefined;
215
+ }>;
216
+ readonly privacy_lock: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
217
+ title?: string | undefined;
218
+ }>;
219
+ readonly qr_code: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
220
+ title?: string | undefined;
221
+ }>;
222
+ readonly search: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
223
+ title?: string | undefined;
224
+ }>;
225
+ readonly settings_cog: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
226
+ title?: string | undefined;
227
+ }>;
228
+ readonly shopping_bag: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
229
+ title?: string | undefined;
230
+ }>;
231
+ readonly shopping_cart: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
232
+ title?: string | undefined;
233
+ }>;
234
+ readonly special_place: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
235
+ title?: string | undefined;
236
+ }>;
237
+ readonly suitcase: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
238
+ title?: string | undefined;
239
+ }>;
240
+ readonly supporter: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
241
+ title?: string | undefined;
242
+ }>;
243
+ readonly tennis_ball: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
244
+ title?: string | undefined;
245
+ }>;
246
+ readonly thanks: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
247
+ title?: string | undefined;
248
+ }>;
249
+ readonly trash_can: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
250
+ title?: string | undefined;
251
+ }>;
252
+ readonly truck: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
253
+ title?: string | undefined;
254
+ }>;
255
+ readonly user: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
256
+ title?: string | undefined;
257
+ }>;
258
+ readonly user_profile: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
259
+ title?: string | undefined;
260
+ }>;
261
+ readonly wellness: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
262
+ title?: string | undefined;
263
+ }>;
264
+ };
265
+ export default IconsMap;