@goodhood-web/ui 0.0.3 → 0.0.4

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