ab-ui-library 1.0.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 (1257) hide show
  1. package/README.md +76 -0
  2. package/assets/images/ArCa.svg +3 -0
  3. package/assets/images/Avatar.png +0 -0
  4. package/assets/images/Mastercard.svg +5 -0
  5. package/assets/images/Visa.svg +3 -0
  6. package/assets/images/avatar.jpg +0 -0
  7. package/assets/images/cards-img.png +0 -0
  8. package/assets/images/illustrations.svg +15 -0
  9. package/assets/images/image-placeholder.png +0 -0
  10. package/assets/images/logo-closed.svg +8 -0
  11. package/assets/images/logo.svg +14 -0
  12. package/assets/images/no-result.svg +35 -0
  13. package/assets/styles/helpers/_mixin.scss +718 -0
  14. package/assets/styles/styles.css +9841 -0
  15. package/assets/styles/styles.scss +1 -0
  16. package/components/AdvancedTable/AdvancedPagination.d.ts +7 -0
  17. package/components/AdvancedTable/AdvancedPagination.js +221 -0
  18. package/components/AdvancedTable/ColumnHeader.d.ts +7 -0
  19. package/components/AdvancedTable/ColumnHeader.js +61 -0
  20. package/components/AdvancedTable/ColumnSettings.d.ts +6 -0
  21. package/components/AdvancedTable/ColumnSettings.js +93 -0
  22. package/components/AdvancedTable/IndeterminateCheckbox.d.ts +13 -0
  23. package/components/AdvancedTable/IndeterminateCheckbox.js +55 -0
  24. package/components/AdvancedTable/Table.d.ts +2 -0
  25. package/components/AdvancedTable/Table.js +129 -0
  26. package/components/AdvancedTable/index.d.ts +3 -0
  27. package/components/AdvancedTable/index.js +94 -0
  28. package/components/AdvancedTable/types.d.ts +37 -0
  29. package/components/AdvancedTable/types.js +1 -0
  30. package/components/AdvancedTable/useTable.d.ts +18 -0
  31. package/components/AdvancedTable/useTable.js +211 -0
  32. package/components/Alert/Alert.d.ts +3 -0
  33. package/components/Alert/Alert.js +86 -0
  34. package/components/Alert/consts.d.ts +7 -0
  35. package/components/Alert/consts.js +18 -0
  36. package/components/Alert/index.d.ts +1 -0
  37. package/components/Alert/index.js +33 -0
  38. package/components/Alert/types.d.ts +19 -0
  39. package/components/Alert/types.js +1 -0
  40. package/components/Avatar/Avatar.d.ts +3 -0
  41. package/components/Avatar/Avatar.js +100 -0
  42. package/components/Avatar/AvatarGroup.d.ts +3 -0
  43. package/components/Avatar/AvatarGroup.js +102 -0
  44. package/components/Avatar/index.d.ts +2 -0
  45. package/components/Avatar/index.js +46 -0
  46. package/components/Avatar/types.d.ts +25 -0
  47. package/components/Avatar/types.js +1 -0
  48. package/components/Badge/Badge.d.ts +3 -0
  49. package/components/Badge/Badge.js +25 -0
  50. package/components/Badge/consts.d.ts +7 -0
  51. package/components/Badge/consts.js +13 -0
  52. package/components/Badge/index.d.ts +1 -0
  53. package/components/Badge/index.js +7 -0
  54. package/components/Badge/types.d.ts +6 -0
  55. package/components/Badge/types.js +1 -0
  56. package/components/Breadcrumb/Breadcrumb.d.ts +3 -0
  57. package/components/Breadcrumb/Breadcrumb.js +24 -0
  58. package/components/Breadcrumb/index.d.ts +1 -0
  59. package/components/Breadcrumb/index.js +2 -0
  60. package/components/Breadcrumb/types.d.ts +12 -0
  61. package/components/Breadcrumb/types.js +1 -0
  62. package/components/Button/Button.d.ts +3 -0
  63. package/components/Button/Button.js +80 -0
  64. package/components/Button/consts.d.ts +8 -0
  65. package/components/Button/consts.js +15 -0
  66. package/components/Button/index.d.ts +1 -0
  67. package/components/Button/index.js +30 -0
  68. package/components/Button/types.d.ts +22 -0
  69. package/components/Button/types.js +1 -0
  70. package/components/ButtonIcon/ButtonIcon.d.ts +3 -0
  71. package/components/ButtonIcon/ButtonIcon.js +66 -0
  72. package/components/ButtonIcon/consts.d.ts +4 -0
  73. package/components/ButtonIcon/consts.js +7 -0
  74. package/components/ButtonIcon/index.d.ts +1 -0
  75. package/components/ButtonIcon/index.js +30 -0
  76. package/components/ButtonIcon/types.d.ts +16 -0
  77. package/components/ButtonIcon/types.js +1 -0
  78. package/components/CardBody/CardBody.d.ts +3 -0
  79. package/components/CardBody/CardBody.js +61 -0
  80. package/components/CardBody/index.d.ts +1 -0
  81. package/components/CardBody/index.js +32 -0
  82. package/components/CardBody/types.d.ts +11 -0
  83. package/components/CardBody/types.js +1 -0
  84. package/components/CardSelect/CardSelect.d.ts +3 -0
  85. package/components/CardSelect/CardSelect.js +122 -0
  86. package/components/CardSelect/CardSelectGroup.d.ts +3 -0
  87. package/components/CardSelect/CardSelectGroup.js +95 -0
  88. package/components/CardSelect/components/CardAdditionalInfo.d.ts +8 -0
  89. package/components/CardSelect/components/CardAdditionalInfo.js +35 -0
  90. package/components/CardSelect/components/CardChips.d.ts +8 -0
  91. package/components/CardSelect/components/CardChips.js +28 -0
  92. package/components/CardSelect/components/CardDescription.d.ts +7 -0
  93. package/components/CardSelect/components/CardDescription.js +16 -0
  94. package/components/CardSelect/components/CardInput.d.ts +8 -0
  95. package/components/CardSelect/components/CardInput.js +51 -0
  96. package/components/CardSelect/components/index.d.ts +4 -0
  97. package/components/CardSelect/components/index.js +47 -0
  98. package/components/CardSelect/index.d.ts +2 -0
  99. package/components/CardSelect/index.js +52 -0
  100. package/components/CardSelect/types.d.ts +37 -0
  101. package/components/CardSelect/types.js +1 -0
  102. package/components/Cards/CardItem.d.ts +3 -0
  103. package/components/Cards/CardItem.js +41 -0
  104. package/components/Cards/index.d.ts +1 -0
  105. package/components/Cards/index.js +8 -0
  106. package/components/Cards/types.d.ts +15 -0
  107. package/components/Cards/types.js +1 -0
  108. package/components/Checkbox/Checkbox.d.ts +3 -0
  109. package/components/Checkbox/Checkbox.js +137 -0
  110. package/components/Checkbox/index.d.ts +1 -0
  111. package/components/Checkbox/index.js +26 -0
  112. package/components/Checkbox/types.d.ts +19 -0
  113. package/components/Checkbox/types.js +1 -0
  114. package/components/Chips/Chips.d.ts +3 -0
  115. package/components/Chips/Chips.js +55 -0
  116. package/components/Chips/consts.d.ts +7 -0
  117. package/components/Chips/consts.js +14 -0
  118. package/components/Chips/index.d.ts +1 -0
  119. package/components/Chips/index.js +12 -0
  120. package/components/Chips/types.d.ts +20 -0
  121. package/components/Chips/types.js +7 -0
  122. package/components/Collapse/CollapseGroup/CollapseGroup.d.ts +3 -0
  123. package/components/Collapse/CollapseGroup/CollapseGroup.js +77 -0
  124. package/components/Collapse/CollapseItem/CollapseItem.d.ts +3 -0
  125. package/components/Collapse/CollapseItem/CollapseItem.js +87 -0
  126. package/components/Collapse/index.d.ts +2 -0
  127. package/components/Collapse/index.js +17 -0
  128. package/components/Collapse/types.d.ts +38 -0
  129. package/components/Collapse/types.js +1 -0
  130. package/components/Container/Container.d.ts +3 -0
  131. package/components/Container/Container.js +10 -0
  132. package/components/Container/index.d.ts +1 -0
  133. package/components/Container/index.js +2 -0
  134. package/components/Container/types.d.ts +4 -0
  135. package/components/Container/types.js +1 -0
  136. package/components/Copy/Copy.d.ts +3 -0
  137. package/components/Copy/Copy.js +72 -0
  138. package/components/Copy/index.d.ts +1 -0
  139. package/components/Copy/index.js +32 -0
  140. package/components/Copy/types.d.ts +6 -0
  141. package/components/Copy/types.js +1 -0
  142. package/components/Counter/Counter.d.ts +3 -0
  143. package/components/Counter/Counter.js +121 -0
  144. package/components/Counter/index.d.ts +1 -0
  145. package/components/Counter/index.js +43 -0
  146. package/components/Counter/types.d.ts +9 -0
  147. package/components/Counter/types.js +1 -0
  148. package/components/DatePicker/CustomHeader/CustomHeader.d.ts +11 -0
  149. package/components/DatePicker/CustomHeader/CustomHeader.js +154 -0
  150. package/components/DatePicker/RangeDatePicker.d.ts +3 -0
  151. package/components/DatePicker/RangeDatePicker.js +161 -0
  152. package/components/DatePicker/SimpleDatePicker.d.ts +3 -0
  153. package/components/DatePicker/SimpleDatePicker.js +171 -0
  154. package/components/DatePicker/TimePicker.d.ts +3 -0
  155. package/components/DatePicker/TimePicker.js +119 -0
  156. package/components/DatePicker/hooks.d.ts +4 -0
  157. package/components/DatePicker/hooks.js +1954 -0
  158. package/components/DatePicker/index.d.ts +3 -0
  159. package/components/DatePicker/index.js +88 -0
  160. package/components/DatePicker/types.d.ts +44 -0
  161. package/components/DatePicker/types.js +7 -0
  162. package/components/Divider/Divider.d.ts +3 -0
  163. package/components/Divider/Divider.js +19 -0
  164. package/components/Divider/index.d.ts +1 -0
  165. package/components/Divider/index.js +3 -0
  166. package/components/Divider/types.d.ts +6 -0
  167. package/components/Divider/types.js +1 -0
  168. package/components/Empty/Empty.d.ts +3 -0
  169. package/components/Empty/Empty.js +63 -0
  170. package/components/Empty/index.d.ts +1 -0
  171. package/components/Empty/index.js +32 -0
  172. package/components/Empty/types.d.ts +9 -0
  173. package/components/Empty/types.js +1 -0
  174. package/components/FileUpload/FileUpload.d.ts +3 -0
  175. package/components/FileUpload/FileUpload.js +174 -0
  176. package/components/FileUpload/UploadItems.d.ts +3 -0
  177. package/components/FileUpload/UploadItems.js +81 -0
  178. package/components/FileUpload/index.d.ts +2 -0
  179. package/components/FileUpload/index.js +42 -0
  180. package/components/FileUpload/types.d.ts +35 -0
  181. package/components/FileUpload/types.js +7 -0
  182. package/components/FormContainer/FormContainer.d.ts +3 -0
  183. package/components/FormContainer/FormContainer.js +112 -0
  184. package/components/FormContainer/index.d.ts +1 -0
  185. package/components/FormContainer/index.js +33 -0
  186. package/components/FormContainer/types.d.ts +21 -0
  187. package/components/FormContainer/types.js +1 -0
  188. package/components/FormField/FormField.d.ts +3 -0
  189. package/components/FormField/FormField.js +89 -0
  190. package/components/FormField/index.d.ts +1 -0
  191. package/components/FormField/index.js +30 -0
  192. package/components/FormField/types.d.ts +9 -0
  193. package/components/FormField/types.js +1 -0
  194. package/components/FramedIcon/FramedIcon.d.ts +3 -0
  195. package/components/FramedIcon/FramedIcon.js +19 -0
  196. package/components/FramedIcon/consts.d.ts +7 -0
  197. package/components/FramedIcon/consts.js +12 -0
  198. package/components/FramedIcon/index.d.ts +1 -0
  199. package/components/FramedIcon/index.js +4 -0
  200. package/components/FramedIcon/types.d.ts +6 -0
  201. package/components/FramedIcon/types.js +1 -0
  202. package/components/Heading/Heading.d.ts +3 -0
  203. package/components/Heading/Heading.js +29 -0
  204. package/components/Heading/index.d.ts +1 -0
  205. package/components/Heading/index.js +5 -0
  206. package/components/Heading/types.d.ts +11 -0
  207. package/components/Heading/types.js +1 -0
  208. package/components/Image/Image.d.ts +3 -0
  209. package/components/Image/Image.js +33 -0
  210. package/components/Image/index.d.ts +1 -0
  211. package/components/Image/index.js +2 -0
  212. package/components/Image/types.d.ts +10 -0
  213. package/components/Image/types.js +1 -0
  214. package/components/Input/Input.d.ts +3 -0
  215. package/components/Input/Input.js +208 -0
  216. package/components/Input/InputPassword.d.ts +3 -0
  217. package/components/Input/InputPassword.js +215 -0
  218. package/components/Input/index.d.ts +2 -0
  219. package/components/Input/index.js +40 -0
  220. package/components/Input/types.d.ts +56 -0
  221. package/components/Input/types.js +1 -0
  222. package/components/ItemSelect/ItemSelect.d.ts +3 -0
  223. package/components/ItemSelect/ItemSelect.js +82 -0
  224. package/components/ItemSelect/ItemSelectGroup.d.ts +3 -0
  225. package/components/ItemSelect/ItemSelectGroup.js +69 -0
  226. package/components/ItemSelect/index.d.ts +2 -0
  227. package/components/ItemSelect/index.js +32 -0
  228. package/components/ItemSelect/types.d.ts +25 -0
  229. package/components/ItemSelect/types.js +1 -0
  230. package/components/Link/Link.d.ts +3 -0
  231. package/components/Link/Link.js +52 -0
  232. package/components/Link/index.d.ts +1 -0
  233. package/components/Link/index.js +5 -0
  234. package/components/Link/types.d.ts +20 -0
  235. package/components/Link/types.js +1 -0
  236. package/components/Menu/Menu.d.ts +3 -0
  237. package/components/Menu/Menu.js +146 -0
  238. package/components/Menu/NestedMenu.d.ts +3 -0
  239. package/components/Menu/NestedMenu.js +162 -0
  240. package/components/Menu/index.d.ts +2 -0
  241. package/components/Menu/index.js +56 -0
  242. package/components/Menu/types.d.ts +33 -0
  243. package/components/Menu/types.js +1 -0
  244. package/components/Modal/Modal.d.ts +3 -0
  245. package/components/Modal/Modal.js +145 -0
  246. package/components/Modal/ModalConfirmation.d.ts +3 -0
  247. package/components/Modal/ModalConfirmation.js +126 -0
  248. package/components/Modal/index.d.ts +2 -0
  249. package/components/Modal/index.js +41 -0
  250. package/components/Modal/types.d.ts +38 -0
  251. package/components/Modal/types.js +1 -0
  252. package/components/More/More.d.ts +3 -0
  253. package/components/More/More.js +64 -0
  254. package/components/More/index.d.ts +1 -0
  255. package/components/More/index.js +31 -0
  256. package/components/More/types.d.ts +10 -0
  257. package/components/More/types.js +1 -0
  258. package/components/OneTimePassword/OneTimePassword.d.ts +3 -0
  259. package/components/OneTimePassword/OneTimePassword.js +151 -0
  260. package/components/OneTimePassword/index.d.ts +1 -0
  261. package/components/OneTimePassword/index.js +42 -0
  262. package/components/OneTimePassword/types.d.ts +22 -0
  263. package/components/OneTimePassword/types.js +1 -0
  264. package/components/Pagination/Pagination.d.ts +3 -0
  265. package/components/Pagination/Pagination.js +60 -0
  266. package/components/Pagination/consts.d.ts +5 -0
  267. package/components/Pagination/consts.js +8 -0
  268. package/components/Pagination/index.d.ts +1 -0
  269. package/components/Pagination/index.js +11 -0
  270. package/components/Pagination/types.d.ts +15 -0
  271. package/components/Pagination/types.js +1 -0
  272. package/components/Popover/Popover.d.ts +3 -0
  273. package/components/Popover/Popover.js +97 -0
  274. package/components/Popover/index.d.ts +1 -0
  275. package/components/Popover/index.js +20 -0
  276. package/components/Popover/types.d.ts +13 -0
  277. package/components/Popover/types.js +1 -0
  278. package/components/Progress/Progress.d.ts +3 -0
  279. package/components/Progress/Progress.js +71 -0
  280. package/components/Progress/ProgressBarWrapper.d.ts +3 -0
  281. package/components/Progress/ProgressBarWrapper.js +16 -0
  282. package/components/Progress/index.d.ts +2 -0
  283. package/components/Progress/index.js +6 -0
  284. package/components/Progress/types.d.ts +14 -0
  285. package/components/Progress/types.js +1 -0
  286. package/components/ProgressStep/ProgressStep.d.ts +3 -0
  287. package/components/ProgressStep/ProgressStep.js +40 -0
  288. package/components/ProgressStep/Step.d.ts +3 -0
  289. package/components/ProgressStep/Step.js +102 -0
  290. package/components/ProgressStep/consts.d.ts +6 -0
  291. package/components/ProgressStep/consts.js +9 -0
  292. package/components/ProgressStep/index.d.ts +1 -0
  293. package/components/ProgressStep/index.js +13 -0
  294. package/components/ProgressStep/types.d.ts +31 -0
  295. package/components/ProgressStep/types.js +7 -0
  296. package/components/Radio/Radio.d.ts +3 -0
  297. package/components/Radio/Radio.js +59 -0
  298. package/components/Radio/RadioGroup.d.ts +3 -0
  299. package/components/Radio/RadioGroup.js +88 -0
  300. package/components/Radio/index.d.ts +2 -0
  301. package/components/Radio/index.js +29 -0
  302. package/components/Radio/types.d.ts +28 -0
  303. package/components/Radio/types.js +1 -0
  304. package/components/SVGIcons/IconAdd.d.ts +4 -0
  305. package/components/SVGIcons/IconAdd.js +30 -0
  306. package/components/SVGIcons/IconAddCircle.d.ts +4 -0
  307. package/components/SVGIcons/IconAddCircle.js +33 -0
  308. package/components/SVGIcons/IconAddCircleFilled.d.ts +4 -0
  309. package/components/SVGIcons/IconAddCircleFilled.js +33 -0
  310. package/components/SVGIcons/IconAddFilled.d.ts +4 -0
  311. package/components/SVGIcons/IconAddFilled.js +30 -0
  312. package/components/SVGIcons/IconAlert.d.ts +4 -0
  313. package/components/SVGIcons/IconAlert.js +33 -0
  314. package/components/SVGIcons/IconAlertBadge.d.ts +4 -0
  315. package/components/SVGIcons/IconAlertBadge.js +33 -0
  316. package/components/SVGIcons/IconAlertBadgeFilled.d.ts +4 -0
  317. package/components/SVGIcons/IconAlertBadgeFilled.js +33 -0
  318. package/components/SVGIcons/IconAlertFilled.d.ts +4 -0
  319. package/components/SVGIcons/IconAlertFilled.js +33 -0
  320. package/components/SVGIcons/IconAm.d.ts +4 -0
  321. package/components/SVGIcons/IconAm.js +59 -0
  322. package/components/SVGIcons/IconAmd.d.ts +4 -0
  323. package/components/SVGIcons/IconAmd.js +30 -0
  324. package/components/SVGIcons/IconAmdFilled.d.ts +4 -0
  325. package/components/SVGIcons/IconAmdFilled.js +30 -0
  326. package/components/SVGIcons/IconApple.d.ts +4 -0
  327. package/components/SVGIcons/IconApple.js +33 -0
  328. package/components/SVGIcons/IconAppsList.d.ts +4 -0
  329. package/components/SVGIcons/IconAppsList.js +30 -0
  330. package/components/SVGIcons/IconAppsListFilled.d.ts +4 -0
  331. package/components/SVGIcons/IconAppsListFilled.js +30 -0
  332. package/components/SVGIcons/IconArrowDown.d.ts +4 -0
  333. package/components/SVGIcons/IconArrowDown.js +33 -0
  334. package/components/SVGIcons/IconArrowDownFilled.d.ts +4 -0
  335. package/components/SVGIcons/IconArrowDownFilled.js +33 -0
  336. package/components/SVGIcons/IconArrowDownLeft.d.ts +4 -0
  337. package/components/SVGIcons/IconArrowDownLeft.js +33 -0
  338. package/components/SVGIcons/IconArrowDownLeftFilled.d.ts +4 -0
  339. package/components/SVGIcons/IconArrowDownLeftFilled.js +33 -0
  340. package/components/SVGIcons/IconArrowDownload.d.ts +4 -0
  341. package/components/SVGIcons/IconArrowDownload.js +33 -0
  342. package/components/SVGIcons/IconArrowDownloadFilled.d.ts +4 -0
  343. package/components/SVGIcons/IconArrowDownloadFilled.js +33 -0
  344. package/components/SVGIcons/IconArrowEnter.d.ts +4 -0
  345. package/components/SVGIcons/IconArrowEnter.js +30 -0
  346. package/components/SVGIcons/IconArrowEnterFilled.d.ts +4 -0
  347. package/components/SVGIcons/IconArrowEnterFilled.js +30 -0
  348. package/components/SVGIcons/IconArrowExit.d.ts +4 -0
  349. package/components/SVGIcons/IconArrowExit.js +30 -0
  350. package/components/SVGIcons/IconArrowExitFilled.d.ts +4 -0
  351. package/components/SVGIcons/IconArrowExitFilled.js +30 -0
  352. package/components/SVGIcons/IconArrowExportLeftToRight.d.ts +4 -0
  353. package/components/SVGIcons/IconArrowExportLeftToRight.js +33 -0
  354. package/components/SVGIcons/IconArrowExportLeftToRightFilled.d.ts +4 -0
  355. package/components/SVGIcons/IconArrowExportLeftToRightFilled.js +33 -0
  356. package/components/SVGIcons/IconArrowExportRightToLeft.d.ts +4 -0
  357. package/components/SVGIcons/IconArrowExportRightToLeft.js +33 -0
  358. package/components/SVGIcons/IconArrowExportRightToLeftFilled.d.ts +4 -0
  359. package/components/SVGIcons/IconArrowExportRightToLeftFilled.js +33 -0
  360. package/components/SVGIcons/IconArrowExportUp.d.ts +4 -0
  361. package/components/SVGIcons/IconArrowExportUp.js +33 -0
  362. package/components/SVGIcons/IconArrowExportUpFilled.d.ts +4 -0
  363. package/components/SVGIcons/IconArrowExportUpFilled.js +33 -0
  364. package/components/SVGIcons/IconArrowImport.d.ts +4 -0
  365. package/components/SVGIcons/IconArrowImport.js +33 -0
  366. package/components/SVGIcons/IconArrowImportFilled.d.ts +4 -0
  367. package/components/SVGIcons/IconArrowImportFilled.js +33 -0
  368. package/components/SVGIcons/IconArrowLeft.d.ts +4 -0
  369. package/components/SVGIcons/IconArrowLeft.js +33 -0
  370. package/components/SVGIcons/IconArrowLeftFilled.d.ts +4 -0
  371. package/components/SVGIcons/IconArrowLeftFilled.js +33 -0
  372. package/components/SVGIcons/IconArrowRepeatAll.d.ts +4 -0
  373. package/components/SVGIcons/IconArrowRepeatAll.js +33 -0
  374. package/components/SVGIcons/IconArrowRepeatAllFilled.d.ts +4 -0
  375. package/components/SVGIcons/IconArrowRepeatAllFilled.js +33 -0
  376. package/components/SVGIcons/IconArrowReset.d.ts +4 -0
  377. package/components/SVGIcons/IconArrowReset.js +33 -0
  378. package/components/SVGIcons/IconArrowResetFilled.d.ts +4 -0
  379. package/components/SVGIcons/IconArrowResetFilled.js +33 -0
  380. package/components/SVGIcons/IconArrowRight.d.ts +4 -0
  381. package/components/SVGIcons/IconArrowRight.js +33 -0
  382. package/components/SVGIcons/IconArrowRightFilled.d.ts +4 -0
  383. package/components/SVGIcons/IconArrowRightFilled.js +33 -0
  384. package/components/SVGIcons/IconArrowSort.d.ts +4 -0
  385. package/components/SVGIcons/IconArrowSort.js +30 -0
  386. package/components/SVGIcons/IconArrowSortFilled.d.ts +4 -0
  387. package/components/SVGIcons/IconArrowSortFilled.js +30 -0
  388. package/components/SVGIcons/IconArrowSync.d.ts +4 -0
  389. package/components/SVGIcons/IconArrowSync.js +30 -0
  390. package/components/SVGIcons/IconArrowSyncFilled.d.ts +4 -0
  391. package/components/SVGIcons/IconArrowSyncFilled.js +30 -0
  392. package/components/SVGIcons/IconArrowUp.d.ts +4 -0
  393. package/components/SVGIcons/IconArrowUp.js +33 -0
  394. package/components/SVGIcons/IconArrowUpFilled.d.ts +4 -0
  395. package/components/SVGIcons/IconArrowUpFilled.js +33 -0
  396. package/components/SVGIcons/IconArrowUpLeft.d.ts +4 -0
  397. package/components/SVGIcons/IconArrowUpLeft.js +33 -0
  398. package/components/SVGIcons/IconArrowUpLeftFilled.d.ts +4 -0
  399. package/components/SVGIcons/IconArrowUpLeftFilled.js +33 -0
  400. package/components/SVGIcons/IconArrowUpRight.d.ts +4 -0
  401. package/components/SVGIcons/IconArrowUpRight.js +33 -0
  402. package/components/SVGIcons/IconArrowUpRightFilled.d.ts +4 -0
  403. package/components/SVGIcons/IconArrowUpRightFilled.js +33 -0
  404. package/components/SVGIcons/IconAttach.d.ts +4 -0
  405. package/components/SVGIcons/IconAttach.js +33 -0
  406. package/components/SVGIcons/IconAttachFilled.d.ts +4 -0
  407. package/components/SVGIcons/IconAttachFilled.js +33 -0
  408. package/components/SVGIcons/IconBeach.d.ts +4 -0
  409. package/components/SVGIcons/IconBeach.js +30 -0
  410. package/components/SVGIcons/IconBeachFilled.d.ts +4 -0
  411. package/components/SVGIcons/IconBeachFilled.js +30 -0
  412. package/components/SVGIcons/IconBed.d.ts +4 -0
  413. package/components/SVGIcons/IconBed.js +30 -0
  414. package/components/SVGIcons/IconBedFilled.d.ts +4 -0
  415. package/components/SVGIcons/IconBedFilled.js +30 -0
  416. package/components/SVGIcons/IconBook.d.ts +4 -0
  417. package/components/SVGIcons/IconBook.js +33 -0
  418. package/components/SVGIcons/IconBookFilled.d.ts +4 -0
  419. package/components/SVGIcons/IconBookFilled.js +33 -0
  420. package/components/SVGIcons/IconBookmark.d.ts +4 -0
  421. package/components/SVGIcons/IconBookmark.js +33 -0
  422. package/components/SVGIcons/IconBookmarkFilled.d.ts +4 -0
  423. package/components/SVGIcons/IconBookmarkFilled.js +33 -0
  424. package/components/SVGIcons/IconBriefcase.d.ts +4 -0
  425. package/components/SVGIcons/IconBriefcase.js +33 -0
  426. package/components/SVGIcons/IconBriefcaseFilled.d.ts +4 -0
  427. package/components/SVGIcons/IconBriefcaseFilled.js +33 -0
  428. package/components/SVGIcons/IconBroom.d.ts +4 -0
  429. package/components/SVGIcons/IconBroom.js +30 -0
  430. package/components/SVGIcons/IconBroomFilled.d.ts +4 -0
  431. package/components/SVGIcons/IconBroomFilled.js +30 -0
  432. package/components/SVGIcons/IconBuilding.d.ts +4 -0
  433. package/components/SVGIcons/IconBuilding.js +56 -0
  434. package/components/SVGIcons/IconBuildingBank.d.ts +4 -0
  435. package/components/SVGIcons/IconBuildingBank.js +30 -0
  436. package/components/SVGIcons/IconBuildingBankFilled.d.ts +4 -0
  437. package/components/SVGIcons/IconBuildingBankFilled.js +30 -0
  438. package/components/SVGIcons/IconBuildingFilled.d.ts +4 -0
  439. package/components/SVGIcons/IconBuildingFilled.js +33 -0
  440. package/components/SVGIcons/IconBulletListAdd.d.ts +4 -0
  441. package/components/SVGIcons/IconBulletListAdd.js +33 -0
  442. package/components/SVGIcons/IconBulletListAddFilled.d.ts +4 -0
  443. package/components/SVGIcons/IconBulletListAddFilled.js +33 -0
  444. package/components/SVGIcons/IconCalculator.d.ts +4 -0
  445. package/components/SVGIcons/IconCalculator.js +33 -0
  446. package/components/SVGIcons/IconCalculatorFilled.d.ts +4 -0
  447. package/components/SVGIcons/IconCalculatorFilled.js +33 -0
  448. package/components/SVGIcons/IconCalendarClock.d.ts +4 -0
  449. package/components/SVGIcons/IconCalendarClock.js +30 -0
  450. package/components/SVGIcons/IconCalendarClockFilled.d.ts +4 -0
  451. package/components/SVGIcons/IconCalendarClockFilled.js +30 -0
  452. package/components/SVGIcons/IconCalendarDay.d.ts +4 -0
  453. package/components/SVGIcons/IconCalendarDay.js +33 -0
  454. package/components/SVGIcons/IconCalendarDayFilled.d.ts +4 -0
  455. package/components/SVGIcons/IconCalendarDayFilled.js +33 -0
  456. package/components/SVGIcons/IconCalendarLeft.d.ts +4 -0
  457. package/components/SVGIcons/IconCalendarLeft.js +30 -0
  458. package/components/SVGIcons/IconCalendarLeftFilled.d.ts +4 -0
  459. package/components/SVGIcons/IconCalendarLeftFilled.js +30 -0
  460. package/components/SVGIcons/IconCalendarRight.d.ts +4 -0
  461. package/components/SVGIcons/IconCalendarRight.js +30 -0
  462. package/components/SVGIcons/IconCalendarRightFilled.d.ts +4 -0
  463. package/components/SVGIcons/IconCalendarRightFilled.js +30 -0
  464. package/components/SVGIcons/IconCall.d.ts +4 -0
  465. package/components/SVGIcons/IconCall.js +33 -0
  466. package/components/SVGIcons/IconCallFilled.d.ts +4 -0
  467. package/components/SVGIcons/IconCallFilled.js +33 -0
  468. package/components/SVGIcons/IconCameraDome.d.ts +4 -0
  469. package/components/SVGIcons/IconCameraDome.js +30 -0
  470. package/components/SVGIcons/IconCameraDomeFilled.d.ts +4 -0
  471. package/components/SVGIcons/IconCameraDomeFilled.js +30 -0
  472. package/components/SVGIcons/IconCard.d.ts +4 -0
  473. package/components/SVGIcons/IconCard.js +30 -0
  474. package/components/SVGIcons/IconCardFilled.d.ts +4 -0
  475. package/components/SVGIcons/IconCardFilled.js +30 -0
  476. package/components/SVGIcons/IconCaretDown.d.ts +4 -0
  477. package/components/SVGIcons/IconCaretDown.js +30 -0
  478. package/components/SVGIcons/IconCaretDownFilled.d.ts +4 -0
  479. package/components/SVGIcons/IconCaretDownFilled.js +30 -0
  480. package/components/SVGIcons/IconCaretDownRight.d.ts +4 -0
  481. package/components/SVGIcons/IconCaretDownRight.js +30 -0
  482. package/components/SVGIcons/IconCaretDownRightFilled.d.ts +4 -0
  483. package/components/SVGIcons/IconCaretDownRightFilled.js +30 -0
  484. package/components/SVGIcons/IconCaretLeft.d.ts +4 -0
  485. package/components/SVGIcons/IconCaretLeft.js +30 -0
  486. package/components/SVGIcons/IconCaretLeftFilled.d.ts +4 -0
  487. package/components/SVGIcons/IconCaretLeftFilled.js +30 -0
  488. package/components/SVGIcons/IconCaretRight.d.ts +4 -0
  489. package/components/SVGIcons/IconCaretRight.js +30 -0
  490. package/components/SVGIcons/IconCaretRightFilled.d.ts +4 -0
  491. package/components/SVGIcons/IconCaretRightFilled.js +30 -0
  492. package/components/SVGIcons/IconCaretUp.d.ts +4 -0
  493. package/components/SVGIcons/IconCaretUp.js +30 -0
  494. package/components/SVGIcons/IconCaretUpFilled.d.ts +4 -0
  495. package/components/SVGIcons/IconCaretUpFilled.js +30 -0
  496. package/components/SVGIcons/IconChat.d.ts +4 -0
  497. package/components/SVGIcons/IconChat.js +30 -0
  498. package/components/SVGIcons/IconChatFilled.d.ts +4 -0
  499. package/components/SVGIcons/IconChatFilled.js +30 -0
  500. package/components/SVGIcons/IconChatMultiple.d.ts +4 -0
  501. package/components/SVGIcons/IconChatMultiple.js +30 -0
  502. package/components/SVGIcons/IconChatMultipleFilled.d.ts +4 -0
  503. package/components/SVGIcons/IconChatMultipleFilled.js +30 -0
  504. package/components/SVGIcons/IconCheckboxArrowRight.d.ts +4 -0
  505. package/components/SVGIcons/IconCheckboxArrowRight.js +33 -0
  506. package/components/SVGIcons/IconCheckboxArrowRightFilled.d.ts +4 -0
  507. package/components/SVGIcons/IconCheckboxArrowRightFilled.js +33 -0
  508. package/components/SVGIcons/IconCheckmark.d.ts +4 -0
  509. package/components/SVGIcons/IconCheckmark.js +30 -0
  510. package/components/SVGIcons/IconCheckmarkCircle.d.ts +4 -0
  511. package/components/SVGIcons/IconCheckmarkCircle.js +30 -0
  512. package/components/SVGIcons/IconCheckmarkCircleFilled.d.ts +4 -0
  513. package/components/SVGIcons/IconCheckmarkCircleFilled.js +30 -0
  514. package/components/SVGIcons/IconCheckmarkFilled.d.ts +4 -0
  515. package/components/SVGIcons/IconCheckmarkFilled.js +30 -0
  516. package/components/SVGIcons/IconChevronDoubleLeft.d.ts +4 -0
  517. package/components/SVGIcons/IconChevronDoubleLeft.js +30 -0
  518. package/components/SVGIcons/IconChevronDoubleLeftFilled.d.ts +4 -0
  519. package/components/SVGIcons/IconChevronDoubleLeftFilled.js +30 -0
  520. package/components/SVGIcons/IconChevronDoubleRight.d.ts +4 -0
  521. package/components/SVGIcons/IconChevronDoubleRight.js +30 -0
  522. package/components/SVGIcons/IconChevronDoubleRightFilled.d.ts +4 -0
  523. package/components/SVGIcons/IconChevronDoubleRightFilled.js +30 -0
  524. package/components/SVGIcons/IconChevronDown.d.ts +4 -0
  525. package/components/SVGIcons/IconChevronDown.js +30 -0
  526. package/components/SVGIcons/IconChevronDownFilled.d.ts +4 -0
  527. package/components/SVGIcons/IconChevronDownFilled.js +30 -0
  528. package/components/SVGIcons/IconChevronLeft.d.ts +4 -0
  529. package/components/SVGIcons/IconChevronLeft.js +30 -0
  530. package/components/SVGIcons/IconChevronLeftFilled.d.ts +4 -0
  531. package/components/SVGIcons/IconChevronLeftFilled.js +30 -0
  532. package/components/SVGIcons/IconChevronRight.d.ts +4 -0
  533. package/components/SVGIcons/IconChevronRight.js +30 -0
  534. package/components/SVGIcons/IconChevronRightFilled.d.ts +4 -0
  535. package/components/SVGIcons/IconChevronRightFilled.js +30 -0
  536. package/components/SVGIcons/IconChevronUp.d.ts +4 -0
  537. package/components/SVGIcons/IconChevronUp.js +30 -0
  538. package/components/SVGIcons/IconChevronUpDown.d.ts +4 -0
  539. package/components/SVGIcons/IconChevronUpDown.js +33 -0
  540. package/components/SVGIcons/IconChevronUpDownFilled.d.ts +4 -0
  541. package/components/SVGIcons/IconChevronUpDownFilled.js +33 -0
  542. package/components/SVGIcons/IconChevronUpFilled.d.ts +4 -0
  543. package/components/SVGIcons/IconChevronUpFilled.js +30 -0
  544. package/components/SVGIcons/IconClock.d.ts +4 -0
  545. package/components/SVGIcons/IconClock.js +33 -0
  546. package/components/SVGIcons/IconClockDismiss.d.ts +4 -0
  547. package/components/SVGIcons/IconClockDismiss.js +30 -0
  548. package/components/SVGIcons/IconClockDismissFilled.d.ts +4 -0
  549. package/components/SVGIcons/IconClockDismissFilled.js +30 -0
  550. package/components/SVGIcons/IconClockFilled.d.ts +4 -0
  551. package/components/SVGIcons/IconClockFilled.js +33 -0
  552. package/components/SVGIcons/IconComment.d.ts +4 -0
  553. package/components/SVGIcons/IconComment.js +33 -0
  554. package/components/SVGIcons/IconCommentFilled.d.ts +4 -0
  555. package/components/SVGIcons/IconCommentFilled.js +33 -0
  556. package/components/SVGIcons/IconContractCard.d.ts +4 -0
  557. package/components/SVGIcons/IconContractCard.js +30 -0
  558. package/components/SVGIcons/IconContractCardFilled.d.ts +4 -0
  559. package/components/SVGIcons/IconContractCardFilled.js +30 -0
  560. package/components/SVGIcons/IconCopy.d.ts +4 -0
  561. package/components/SVGIcons/IconCopy.js +30 -0
  562. package/components/SVGIcons/IconCopyFilled.d.ts +4 -0
  563. package/components/SVGIcons/IconCopyFilled.js +30 -0
  564. package/components/SVGIcons/IconCubeTree.d.ts +4 -0
  565. package/components/SVGIcons/IconCubeTree.js +30 -0
  566. package/components/SVGIcons/IconCubeTreeFilled.d.ts +4 -0
  567. package/components/SVGIcons/IconCubeTreeFilled.js +33 -0
  568. package/components/SVGIcons/IconDatabase.d.ts +4 -0
  569. package/components/SVGIcons/IconDatabase.js +33 -0
  570. package/components/SVGIcons/IconDatabaseFilled.d.ts +4 -0
  571. package/components/SVGIcons/IconDatabaseFilled.js +33 -0
  572. package/components/SVGIcons/IconDelete.d.ts +4 -0
  573. package/components/SVGIcons/IconDelete.js +30 -0
  574. package/components/SVGIcons/IconDeleteFilled.d.ts +4 -0
  575. package/components/SVGIcons/IconDeleteFilled.js +30 -0
  576. package/components/SVGIcons/IconDesignIdeas.d.ts +4 -0
  577. package/components/SVGIcons/IconDesignIdeas.js +30 -0
  578. package/components/SVGIcons/IconDesignIdeasFilled.d.ts +4 -0
  579. package/components/SVGIcons/IconDesignIdeasFilled.js +30 -0
  580. package/components/SVGIcons/IconDeviceMeetingRoom.d.ts +4 -0
  581. package/components/SVGIcons/IconDeviceMeetingRoom.js +30 -0
  582. package/components/SVGIcons/IconDeviceMeetingRoomFilled.d.ts +4 -0
  583. package/components/SVGIcons/IconDeviceMeetingRoomFilled.js +30 -0
  584. package/components/SVGIcons/IconDismiss.d.ts +4 -0
  585. package/components/SVGIcons/IconDismiss.js +30 -0
  586. package/components/SVGIcons/IconDismissCircle.d.ts +4 -0
  587. package/components/SVGIcons/IconDismissCircle.js +33 -0
  588. package/components/SVGIcons/IconDismissCircleFilled.d.ts +4 -0
  589. package/components/SVGIcons/IconDismissCircleFilled.js +33 -0
  590. package/components/SVGIcons/IconDismissFilled.d.ts +4 -0
  591. package/components/SVGIcons/IconDismissFilled.js +30 -0
  592. package/components/SVGIcons/IconDocument.d.ts +4 -0
  593. package/components/SVGIcons/IconDocument.js +30 -0
  594. package/components/SVGIcons/IconDocumentBulletList.d.ts +4 -0
  595. package/components/SVGIcons/IconDocumentBulletList.js +33 -0
  596. package/components/SVGIcons/IconDocumentBulletListFilled.d.ts +4 -0
  597. package/components/SVGIcons/IconDocumentBulletListFilled.js +33 -0
  598. package/components/SVGIcons/IconDocumentEdit.d.ts +4 -0
  599. package/components/SVGIcons/IconDocumentEdit.js +30 -0
  600. package/components/SVGIcons/IconDocumentEditFilled.d.ts +4 -0
  601. package/components/SVGIcons/IconDocumentEditFilled.js +30 -0
  602. package/components/SVGIcons/IconDocumentFilled.d.ts +4 -0
  603. package/components/SVGIcons/IconDocumentFilled.js +30 -0
  604. package/components/SVGIcons/IconEdit.d.ts +4 -0
  605. package/components/SVGIcons/IconEdit.js +30 -0
  606. package/components/SVGIcons/IconEditFilled.d.ts +4 -0
  607. package/components/SVGIcons/IconEditFilled.js +30 -0
  608. package/components/SVGIcons/IconErrorCircle.d.ts +4 -0
  609. package/components/SVGIcons/IconErrorCircle.js +30 -0
  610. package/components/SVGIcons/IconErrorCircleFilled.d.ts +4 -0
  611. package/components/SVGIcons/IconErrorCircleFilled.js +30 -0
  612. package/components/SVGIcons/IconEur.d.ts +4 -0
  613. package/components/SVGIcons/IconEur.js +30 -0
  614. package/components/SVGIcons/IconEurFilled.d.ts +4 -0
  615. package/components/SVGIcons/IconEurFilled.js +30 -0
  616. package/components/SVGIcons/IconExpandUpLeft.d.ts +4 -0
  617. package/components/SVGIcons/IconExpandUpLeft.js +33 -0
  618. package/components/SVGIcons/IconExpandUpLeftFilled.d.ts +4 -0
  619. package/components/SVGIcons/IconExpandUpLeftFilled.js +33 -0
  620. package/components/SVGIcons/IconExpandUpRight.d.ts +4 -0
  621. package/components/SVGIcons/IconExpandUpRight.js +33 -0
  622. package/components/SVGIcons/IconExpandUpRightFilled.d.ts +4 -0
  623. package/components/SVGIcons/IconExpandUpRightFilled.js +33 -0
  624. package/components/SVGIcons/IconEyeOff.d.ts +4 -0
  625. package/components/SVGIcons/IconEyeOff.js +35 -0
  626. package/components/SVGIcons/IconEyeOffFilled.d.ts +4 -0
  627. package/components/SVGIcons/IconEyeOffFilled.js +33 -0
  628. package/components/SVGIcons/IconEyeOn.d.ts +4 -0
  629. package/components/SVGIcons/IconEyeOn.js +35 -0
  630. package/components/SVGIcons/IconEyeOnFilled.d.ts +4 -0
  631. package/components/SVGIcons/IconEyeOnFilled.js +33 -0
  632. package/components/SVGIcons/IconFacebook.d.ts +4 -0
  633. package/components/SVGIcons/IconFacebook.js +40 -0
  634. package/components/SVGIcons/IconFilter.d.ts +4 -0
  635. package/components/SVGIcons/IconFilter.js +30 -0
  636. package/components/SVGIcons/IconFilterFilled.d.ts +4 -0
  637. package/components/SVGIcons/IconFilterFilled.js +30 -0
  638. package/components/SVGIcons/IconFlag.d.ts +4 -0
  639. package/components/SVGIcons/IconFlag.js +33 -0
  640. package/components/SVGIcons/IconFlagFilled.d.ts +4 -0
  641. package/components/SVGIcons/IconFlagFilled.js +33 -0
  642. package/components/SVGIcons/IconFlash.d.ts +4 -0
  643. package/components/SVGIcons/IconFlash.js +30 -0
  644. package/components/SVGIcons/IconFlashFilled.d.ts +4 -0
  645. package/components/SVGIcons/IconFlashFilled.js +30 -0
  646. package/components/SVGIcons/IconFolderLink.d.ts +4 -0
  647. package/components/SVGIcons/IconFolderLink.js +30 -0
  648. package/components/SVGIcons/IconFolderLinkFilled.d.ts +4 -0
  649. package/components/SVGIcons/IconFolderLinkFilled.js +30 -0
  650. package/components/SVGIcons/IconGas.d.ts +4 -0
  651. package/components/SVGIcons/IconGas.js +33 -0
  652. package/components/SVGIcons/IconGb.d.ts +4 -0
  653. package/components/SVGIcons/IconGb.js +73 -0
  654. package/components/SVGIcons/IconGlobe.d.ts +4 -0
  655. package/components/SVGIcons/IconGlobe.js +30 -0
  656. package/components/SVGIcons/IconGlobeFilled.d.ts +4 -0
  657. package/components/SVGIcons/IconGlobeFilled.js +30 -0
  658. package/components/SVGIcons/IconGoogle.d.ts +4 -0
  659. package/components/SVGIcons/IconGoogle.js +42 -0
  660. package/components/SVGIcons/IconHandOpenHeart.d.ts +4 -0
  661. package/components/SVGIcons/IconHandOpenHeart.js +33 -0
  662. package/components/SVGIcons/IconHandOpenHeartFilled.d.ts +4 -0
  663. package/components/SVGIcons/IconHandOpenHeartFilled.js +33 -0
  664. package/components/SVGIcons/IconHandWave.d.ts +4 -0
  665. package/components/SVGIcons/IconHandWave.js +30 -0
  666. package/components/SVGIcons/IconHandWaveFilled.d.ts +4 -0
  667. package/components/SVGIcons/IconHandWaveFilled.js +30 -0
  668. package/components/SVGIcons/IconHeart.d.ts +4 -0
  669. package/components/SVGIcons/IconHeart.js +33 -0
  670. package/components/SVGIcons/IconHeartFilled.d.ts +4 -0
  671. package/components/SVGIcons/IconHeartFilled.js +33 -0
  672. package/components/SVGIcons/IconHistory.d.ts +4 -0
  673. package/components/SVGIcons/IconHistory.js +33 -0
  674. package/components/SVGIcons/IconHistoryFilled.d.ts +4 -0
  675. package/components/SVGIcons/IconHistoryFilled.js +33 -0
  676. package/components/SVGIcons/IconHome.d.ts +4 -0
  677. package/components/SVGIcons/IconHome.js +33 -0
  678. package/components/SVGIcons/IconHomeAdd.d.ts +4 -0
  679. package/components/SVGIcons/IconHomeAdd.js +30 -0
  680. package/components/SVGIcons/IconHomeAddFilled.d.ts +4 -0
  681. package/components/SVGIcons/IconHomeAddFilled.js +30 -0
  682. package/components/SVGIcons/IconHomeFilled.d.ts +4 -0
  683. package/components/SVGIcons/IconHomeFilled.js +33 -0
  684. package/components/SVGIcons/IconImage.d.ts +4 -0
  685. package/components/SVGIcons/IconImage.js +33 -0
  686. package/components/SVGIcons/IconImageFilled.d.ts +4 -0
  687. package/components/SVGIcons/IconImageFilled.js +33 -0
  688. package/components/SVGIcons/IconInfo.d.ts +4 -0
  689. package/components/SVGIcons/IconInfo.js +30 -0
  690. package/components/SVGIcons/IconInfoFilled.d.ts +4 -0
  691. package/components/SVGIcons/IconInfoFilled.js +30 -0
  692. package/components/SVGIcons/IconInstagram.d.ts +4 -0
  693. package/components/SVGIcons/IconInstagram.js +41 -0
  694. package/components/SVGIcons/IconKey.d.ts +4 -0
  695. package/components/SVGIcons/IconKey.js +30 -0
  696. package/components/SVGIcons/IconKeyFilled.d.ts +4 -0
  697. package/components/SVGIcons/IconKeyFilled.js +30 -0
  698. package/components/SVGIcons/IconKeyReset.d.ts +4 -0
  699. package/components/SVGIcons/IconKeyReset.js +33 -0
  700. package/components/SVGIcons/IconKeyResetFilled.d.ts +4 -0
  701. package/components/SVGIcons/IconKeyResetFilled.js +33 -0
  702. package/components/SVGIcons/IconLaptop.d.ts +4 -0
  703. package/components/SVGIcons/IconLaptop.js +30 -0
  704. package/components/SVGIcons/IconLaptopFilled.d.ts +4 -0
  705. package/components/SVGIcons/IconLaptopFilled.js +30 -0
  706. package/components/SVGIcons/IconLeaf.d.ts +4 -0
  707. package/components/SVGIcons/IconLeaf.js +30 -0
  708. package/components/SVGIcons/IconLeafFilled.d.ts +4 -0
  709. package/components/SVGIcons/IconLeafFilled.js +30 -0
  710. package/components/SVGIcons/IconLightbulb.d.ts +4 -0
  711. package/components/SVGIcons/IconLightbulb.js +30 -0
  712. package/components/SVGIcons/IconLightbulbFilled.d.ts +4 -0
  713. package/components/SVGIcons/IconLightbulbFilled.js +30 -0
  714. package/components/SVGIcons/IconLink.d.ts +4 -0
  715. package/components/SVGIcons/IconLink.js +33 -0
  716. package/components/SVGIcons/IconLinkFilled.d.ts +4 -0
  717. package/components/SVGIcons/IconLinkFilled.js +33 -0
  718. package/components/SVGIcons/IconLinkedin.d.ts +4 -0
  719. package/components/SVGIcons/IconLinkedin.js +33 -0
  720. package/components/SVGIcons/IconList.d.ts +4 -0
  721. package/components/SVGIcons/IconList.js +30 -0
  722. package/components/SVGIcons/IconListFilled.d.ts +4 -0
  723. package/components/SVGIcons/IconListFilled.js +33 -0
  724. package/components/SVGIcons/IconLoan.d.ts +4 -0
  725. package/components/SVGIcons/IconLoan.js +39 -0
  726. package/components/SVGIcons/IconLoanFilled.d.ts +4 -0
  727. package/components/SVGIcons/IconLoanFilled.js +30 -0
  728. package/components/SVGIcons/IconLocation.d.ts +4 -0
  729. package/components/SVGIcons/IconLocation.js +33 -0
  730. package/components/SVGIcons/IconLocationFilled.d.ts +4 -0
  731. package/components/SVGIcons/IconLocationFilled.js +33 -0
  732. package/components/SVGIcons/IconLockClosed.d.ts +4 -0
  733. package/components/SVGIcons/IconLockClosed.js +33 -0
  734. package/components/SVGIcons/IconLockClosedFilled.d.ts +4 -0
  735. package/components/SVGIcons/IconLockClosedFilled.js +33 -0
  736. package/components/SVGIcons/IconLockOpen.d.ts +4 -0
  737. package/components/SVGIcons/IconLockOpen.js +33 -0
  738. package/components/SVGIcons/IconLockOpenFilled.d.ts +4 -0
  739. package/components/SVGIcons/IconLockOpenFilled.js +33 -0
  740. package/components/SVGIcons/IconMail.d.ts +4 -0
  741. package/components/SVGIcons/IconMail.js +33 -0
  742. package/components/SVGIcons/IconMailAdd.d.ts +4 -0
  743. package/components/SVGIcons/IconMailAdd.js +33 -0
  744. package/components/SVGIcons/IconMailAddFilled.d.ts +4 -0
  745. package/components/SVGIcons/IconMailAddFilled.js +33 -0
  746. package/components/SVGIcons/IconMailArrowForward.d.ts +4 -0
  747. package/components/SVGIcons/IconMailArrowForward.js +33 -0
  748. package/components/SVGIcons/IconMailArrowForwardFilled.d.ts +4 -0
  749. package/components/SVGIcons/IconMailArrowForwardFilled.js +33 -0
  750. package/components/SVGIcons/IconMailFilled.d.ts +4 -0
  751. package/components/SVGIcons/IconMailFilled.js +33 -0
  752. package/components/SVGIcons/IconMailLink.d.ts +4 -0
  753. package/components/SVGIcons/IconMailLink.js +33 -0
  754. package/components/SVGIcons/IconMailLinkFilled.d.ts +4 -0
  755. package/components/SVGIcons/IconMailLinkFilled.js +33 -0
  756. package/components/SVGIcons/IconMedium.d.ts +4 -0
  757. package/components/SVGIcons/IconMedium.js +33 -0
  758. package/components/SVGIcons/IconMore.d.ts +4 -0
  759. package/components/SVGIcons/IconMore.js +33 -0
  760. package/components/SVGIcons/IconMoreFilled.d.ts +4 -0
  761. package/components/SVGIcons/IconMoreFilled.js +33 -0
  762. package/components/SVGIcons/IconMoreVertical.d.ts +4 -0
  763. package/components/SVGIcons/IconMoreVertical.js +33 -0
  764. package/components/SVGIcons/IconMoreVerticalFilled.d.ts +4 -0
  765. package/components/SVGIcons/IconMoreVerticalFilled.js +33 -0
  766. package/components/SVGIcons/IconNavigation.d.ts +4 -0
  767. package/components/SVGIcons/IconNavigation.js +33 -0
  768. package/components/SVGIcons/IconNavigationFilled.d.ts +4 -0
  769. package/components/SVGIcons/IconNavigationFilled.js +33 -0
  770. package/components/SVGIcons/IconNotebook.d.ts +4 -0
  771. package/components/SVGIcons/IconNotebook.js +33 -0
  772. package/components/SVGIcons/IconNotebookAdd.d.ts +4 -0
  773. package/components/SVGIcons/IconNotebookAdd.js +49 -0
  774. package/components/SVGIcons/IconNotebookAddFilled.d.ts +4 -0
  775. package/components/SVGIcons/IconNotebookAddFilled.js +46 -0
  776. package/components/SVGIcons/IconNotebookFilled.d.ts +4 -0
  777. package/components/SVGIcons/IconNotebookFilled.js +33 -0
  778. package/components/SVGIcons/IconOnlyEmployee.d.ts +4 -0
  779. package/components/SVGIcons/IconOnlyEmployee.js +30 -0
  780. package/components/SVGIcons/IconOpen.d.ts +4 -0
  781. package/components/SVGIcons/IconOpen.js +33 -0
  782. package/components/SVGIcons/IconOpenFilled.d.ts +4 -0
  783. package/components/SVGIcons/IconOpenFilled.js +33 -0
  784. package/components/SVGIcons/IconPaintBrush.d.ts +4 -0
  785. package/components/SVGIcons/IconPaintBrush.js +30 -0
  786. package/components/SVGIcons/IconPaintBrushFilled.d.ts +4 -0
  787. package/components/SVGIcons/IconPaintBrushFilled.js +30 -0
  788. package/components/SVGIcons/IconPatient.d.ts +4 -0
  789. package/components/SVGIcons/IconPatient.js +30 -0
  790. package/components/SVGIcons/IconPatientFilled.d.ts +4 -0
  791. package/components/SVGIcons/IconPatientFilled.js +30 -0
  792. package/components/SVGIcons/IconPeople.d.ts +4 -0
  793. package/components/SVGIcons/IconPeople.js +30 -0
  794. package/components/SVGIcons/IconPeopleAdd.d.ts +4 -0
  795. package/components/SVGIcons/IconPeopleAdd.js +33 -0
  796. package/components/SVGIcons/IconPeopleAddFilled.d.ts +4 -0
  797. package/components/SVGIcons/IconPeopleAddFilled.js +33 -0
  798. package/components/SVGIcons/IconPeopleFilled.d.ts +4 -0
  799. package/components/SVGIcons/IconPeopleFilled.js +33 -0
  800. package/components/SVGIcons/IconPercent.d.ts +4 -0
  801. package/components/SVGIcons/IconPercent.js +35 -0
  802. package/components/SVGIcons/IconPerson.d.ts +4 -0
  803. package/components/SVGIcons/IconPerson.js +33 -0
  804. package/components/SVGIcons/IconPersonAccount.d.ts +4 -0
  805. package/components/SVGIcons/IconPersonAccount.js +30 -0
  806. package/components/SVGIcons/IconPersonAccountFilled.d.ts +4 -0
  807. package/components/SVGIcons/IconPersonAccountFilled.js +30 -0
  808. package/components/SVGIcons/IconPersonAdd.d.ts +4 -0
  809. package/components/SVGIcons/IconPersonAdd.js +33 -0
  810. package/components/SVGIcons/IconPersonAddFilled.d.ts +4 -0
  811. package/components/SVGIcons/IconPersonAddFilled.js +33 -0
  812. package/components/SVGIcons/IconPersonFilled.d.ts +4 -0
  813. package/components/SVGIcons/IconPersonFilled.js +33 -0
  814. package/components/SVGIcons/IconPersonStar.d.ts +4 -0
  815. package/components/SVGIcons/IconPersonStar.js +33 -0
  816. package/components/SVGIcons/IconPersonStarFilled.d.ts +4 -0
  817. package/components/SVGIcons/IconPersonStarFilled.js +33 -0
  818. package/components/SVGIcons/IconPersonSubtract.d.ts +4 -0
  819. package/components/SVGIcons/IconPersonSubtract.js +33 -0
  820. package/components/SVGIcons/IconPersonSubtractFilled.d.ts +4 -0
  821. package/components/SVGIcons/IconPersonSubtractFilled.js +33 -0
  822. package/components/SVGIcons/IconPhone.d.ts +4 -0
  823. package/components/SVGIcons/IconPhone.js +33 -0
  824. package/components/SVGIcons/IconPhoneFilled.d.ts +4 -0
  825. package/components/SVGIcons/IconPhoneFilled.js +33 -0
  826. package/components/SVGIcons/IconPos.d.ts +4 -0
  827. package/components/SVGIcons/IconPos.js +35 -0
  828. package/components/SVGIcons/IconPosFilled.d.ts +4 -0
  829. package/components/SVGIcons/IconPosFilled.js +35 -0
  830. package/components/SVGIcons/IconProhibited.d.ts +4 -0
  831. package/components/SVGIcons/IconProhibited.js +33 -0
  832. package/components/SVGIcons/IconProhibitedFilled.d.ts +4 -0
  833. package/components/SVGIcons/IconProhibitedFilled.js +33 -0
  834. package/components/SVGIcons/IconProjectProduct.d.ts +4 -0
  835. package/components/SVGIcons/IconProjectProduct.js +30 -0
  836. package/components/SVGIcons/IconQuestion.d.ts +4 -0
  837. package/components/SVGIcons/IconQuestion.js +33 -0
  838. package/components/SVGIcons/IconQuestionFilled.d.ts +4 -0
  839. package/components/SVGIcons/IconQuestionFilled.js +33 -0
  840. package/components/SVGIcons/IconRedo.d.ts +4 -0
  841. package/components/SVGIcons/IconRedo.js +33 -0
  842. package/components/SVGIcons/IconRedoFilled.d.ts +4 -0
  843. package/components/SVGIcons/IconRedoFilled.js +33 -0
  844. package/components/SVGIcons/IconRu.d.ts +4 -0
  845. package/components/SVGIcons/IconRu.js +62 -0
  846. package/components/SVGIcons/IconRub.d.ts +4 -0
  847. package/components/SVGIcons/IconRub.js +30 -0
  848. package/components/SVGIcons/IconRubFilled.d.ts +4 -0
  849. package/components/SVGIcons/IconRubFilled.js +30 -0
  850. package/components/SVGIcons/IconSave.d.ts +4 -0
  851. package/components/SVGIcons/IconSave.js +33 -0
  852. package/components/SVGIcons/IconSaveFilled.d.ts +4 -0
  853. package/components/SVGIcons/IconSaveFilled.js +33 -0
  854. package/components/SVGIcons/IconSavings.d.ts +4 -0
  855. package/components/SVGIcons/IconSavings.js +33 -0
  856. package/components/SVGIcons/IconSavingsFilled.d.ts +4 -0
  857. package/components/SVGIcons/IconSavingsFilled.js +33 -0
  858. package/components/SVGIcons/IconSearch.d.ts +4 -0
  859. package/components/SVGIcons/IconSearch.js +33 -0
  860. package/components/SVGIcons/IconSearchFilled.d.ts +4 -0
  861. package/components/SVGIcons/IconSearchFilled.js +33 -0
  862. package/components/SVGIcons/IconSelectAllOff.d.ts +4 -0
  863. package/components/SVGIcons/IconSelectAllOff.js +33 -0
  864. package/components/SVGIcons/IconSelectAllOffFilled.d.ts +4 -0
  865. package/components/SVGIcons/IconSelectAllOffFilled.js +33 -0
  866. package/components/SVGIcons/IconSelectAllOn.d.ts +4 -0
  867. package/components/SVGIcons/IconSelectAllOn.js +33 -0
  868. package/components/SVGIcons/IconSelectAllOnFilled.d.ts +4 -0
  869. package/components/SVGIcons/IconSelectAllOnFilled.js +33 -0
  870. package/components/SVGIcons/IconSend.d.ts +4 -0
  871. package/components/SVGIcons/IconSend.js +33 -0
  872. package/components/SVGIcons/IconSendFilled.d.ts +4 -0
  873. package/components/SVGIcons/IconSendFilled.js +33 -0
  874. package/components/SVGIcons/IconSettings.d.ts +4 -0
  875. package/components/SVGIcons/IconSettings.js +30 -0
  876. package/components/SVGIcons/IconSettingsFilled.d.ts +4 -0
  877. package/components/SVGIcons/IconSettingsFilled.js +33 -0
  878. package/components/SVGIcons/IconShare.d.ts +4 -0
  879. package/components/SVGIcons/IconShare.js +33 -0
  880. package/components/SVGIcons/IconShareAndroid.d.ts +4 -0
  881. package/components/SVGIcons/IconShareAndroid.js +33 -0
  882. package/components/SVGIcons/IconShareAndroidFilled.d.ts +4 -0
  883. package/components/SVGIcons/IconShareAndroidFilled.js +33 -0
  884. package/components/SVGIcons/IconShareFilled.d.ts +4 -0
  885. package/components/SVGIcons/IconShareFilled.js +33 -0
  886. package/components/SVGIcons/IconShower.d.ts +4 -0
  887. package/components/SVGIcons/IconShower.js +30 -0
  888. package/components/SVGIcons/IconSignOut.d.ts +4 -0
  889. package/components/SVGIcons/IconSignOut.js +33 -0
  890. package/components/SVGIcons/IconSignOutFilled.d.ts +4 -0
  891. package/components/SVGIcons/IconSignOutFilled.js +33 -0
  892. package/components/SVGIcons/IconSpinner.d.ts +4 -0
  893. package/components/SVGIcons/IconSpinner.js +33 -0
  894. package/components/SVGIcons/IconSpinnerFilled.d.ts +4 -0
  895. package/components/SVGIcons/IconSpinnerFilled.js +33 -0
  896. package/components/SVGIcons/IconStar.d.ts +4 -0
  897. package/components/SVGIcons/IconStar.js +30 -0
  898. package/components/SVGIcons/IconStarFilled.d.ts +4 -0
  899. package/components/SVGIcons/IconStarFilled.js +30 -0
  900. package/components/SVGIcons/IconStatus.d.ts +4 -0
  901. package/components/SVGIcons/IconStatus.js +33 -0
  902. package/components/SVGIcons/IconStatusFilled.d.ts +4 -0
  903. package/components/SVGIcons/IconStatusFilled.js +33 -0
  904. package/components/SVGIcons/IconSubtract.d.ts +4 -0
  905. package/components/SVGIcons/IconSubtract.js +33 -0
  906. package/components/SVGIcons/IconSubtractCircle.d.ts +4 -0
  907. package/components/SVGIcons/IconSubtractCircle.js +33 -0
  908. package/components/SVGIcons/IconSubtractCircleFilled.d.ts +4 -0
  909. package/components/SVGIcons/IconSubtractCircleFilled.js +33 -0
  910. package/components/SVGIcons/IconSubtractFilled.d.ts +4 -0
  911. package/components/SVGIcons/IconSubtractFilled.js +33 -0
  912. package/components/SVGIcons/IconTableCellEdit.d.ts +4 -0
  913. package/components/SVGIcons/IconTableCellEdit.js +37 -0
  914. package/components/SVGIcons/IconTableCellEditFilled.d.ts +4 -0
  915. package/components/SVGIcons/IconTableCellEditFilled.js +43 -0
  916. package/components/SVGIcons/IconTelegram.d.ts +4 -0
  917. package/components/SVGIcons/IconTelegram.js +42 -0
  918. package/components/SVGIcons/IconTextBulletListSquarePerson.d.ts +4 -0
  919. package/components/SVGIcons/IconTextBulletListSquarePerson.js +30 -0
  920. package/components/SVGIcons/IconTextBulletListSquarePersonFilled.d.ts +4 -0
  921. package/components/SVGIcons/IconTextBulletListSquarePersonFilled.js +30 -0
  922. package/components/SVGIcons/IconTextboxSettings.d.ts +4 -0
  923. package/components/SVGIcons/IconTextboxSettings.js +30 -0
  924. package/components/SVGIcons/IconTextboxSettingsFilled.d.ts +4 -0
  925. package/components/SVGIcons/IconTextboxSettingsFilled.js +30 -0
  926. package/components/SVGIcons/IconTimer.d.ts +4 -0
  927. package/components/SVGIcons/IconTimer.js +33 -0
  928. package/components/SVGIcons/IconTimerFilled.d.ts +4 -0
  929. package/components/SVGIcons/IconTimerFilled.js +33 -0
  930. package/components/SVGIcons/IconTin.d.ts +4 -0
  931. package/components/SVGIcons/IconTin.js +39 -0
  932. package/components/SVGIcons/IconTinFilled.d.ts +4 -0
  933. package/components/SVGIcons/IconTinFilled.js +42 -0
  934. package/components/SVGIcons/IconTv.d.ts +4 -0
  935. package/components/SVGIcons/IconTv.js +30 -0
  936. package/components/SVGIcons/IconTvFilled.d.ts +4 -0
  937. package/components/SVGIcons/IconTvFilled.js +30 -0
  938. package/components/SVGIcons/IconTwitter.d.ts +4 -0
  939. package/components/SVGIcons/IconTwitter.js +33 -0
  940. package/components/SVGIcons/IconUndo.d.ts +4 -0
  941. package/components/SVGIcons/IconUndo.js +33 -0
  942. package/components/SVGIcons/IconUndoFilled.d.ts +4 -0
  943. package/components/SVGIcons/IconUndoFilled.js +33 -0
  944. package/components/SVGIcons/IconUnitsEmployee.d.ts +4 -0
  945. package/components/SVGIcons/IconUnitsEmployee.js +30 -0
  946. package/components/SVGIcons/IconUsd.d.ts +4 -0
  947. package/components/SVGIcons/IconUsd.js +30 -0
  948. package/components/SVGIcons/IconUsdFilled.d.ts +4 -0
  949. package/components/SVGIcons/IconUsdFilled.js +30 -0
  950. package/components/SVGIcons/IconVehicleTruckProfile.d.ts +4 -0
  951. package/components/SVGIcons/IconVehicleTruckProfile.js +30 -0
  952. package/components/SVGIcons/IconVehicleTruckProfileFilled.d.ts +4 -0
  953. package/components/SVGIcons/IconVehicleTruckProfileFilled.js +30 -0
  954. package/components/SVGIcons/IconVideo.d.ts +4 -0
  955. package/components/SVGIcons/IconVideo.js +30 -0
  956. package/components/SVGIcons/IconVideoFilled.d.ts +4 -0
  957. package/components/SVGIcons/IconVideoFilled.js +30 -0
  958. package/components/SVGIcons/IconWallet.d.ts +4 -0
  959. package/components/SVGIcons/IconWallet.js +33 -0
  960. package/components/SVGIcons/IconWalletFilled.d.ts +4 -0
  961. package/components/SVGIcons/IconWalletFilled.js +33 -0
  962. package/components/SVGIcons/IconWarning.d.ts +4 -0
  963. package/components/SVGIcons/IconWarning.js +30 -0
  964. package/components/SVGIcons/IconWarningFilled.d.ts +4 -0
  965. package/components/SVGIcons/IconWarningFilled.js +30 -0
  966. package/components/SVGIcons/IconWrenchScrewdriver.d.ts +4 -0
  967. package/components/SVGIcons/IconWrenchScrewdriver.js +30 -0
  968. package/components/SVGIcons/IconWrenchScrewdriverFilled.d.ts +4 -0
  969. package/components/SVGIcons/IconWrenchScrewdriverFilled.js +30 -0
  970. package/components/SVGIcons/IconYoutube.d.ts +4 -0
  971. package/components/SVGIcons/IconYoutube.js +33 -0
  972. package/components/SVGIcons/IconZoomIn.d.ts +4 -0
  973. package/components/SVGIcons/IconZoomIn.js +30 -0
  974. package/components/SVGIcons/IconZoomInFilled.d.ts +4 -0
  975. package/components/SVGIcons/IconZoomInFilled.js +30 -0
  976. package/components/SVGIcons/IconZoomOut.d.ts +4 -0
  977. package/components/SVGIcons/IconZoomOut.js +30 -0
  978. package/components/SVGIcons/IconZoomOutFilled.d.ts +4 -0
  979. package/components/SVGIcons/IconZoomOutFilled.js +30 -0
  980. package/components/SVGIcons/index.d.ts +338 -0
  981. package/components/SVGIcons/index.js +342 -0
  982. package/components/SVGIcons/types.d.ts +18 -0
  983. package/components/SVGIcons/types.js +1 -0
  984. package/components/Select/ButtonSelect/ButtonSelect.d.ts +3 -0
  985. package/components/Select/ButtonSelect/ButtonSelect.js +180 -0
  986. package/components/Select/FilterSelect/FilterDropdown.d.ts +3 -0
  987. package/components/Select/FilterSelect/FilterDropdown.js +80 -0
  988. package/components/Select/FilterSelect/FilterGroupDropdown.d.ts +3 -0
  989. package/components/Select/FilterSelect/FilterGroupDropdown.js +65 -0
  990. package/components/Select/FilterSelect/FilterSelect.d.ts +3 -0
  991. package/components/Select/FilterSelect/FilterSelect.js +195 -0
  992. package/components/Select/MultiSelect/MultiBase/MultiBase.d.ts +3 -0
  993. package/components/Select/MultiSelect/MultiBase/MultiBase.js +207 -0
  994. package/components/Select/MultiSelect/MultiSelect.d.ts +3 -0
  995. package/components/Select/MultiSelect/MultiSelect.js +227 -0
  996. package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.d.ts +3 -0
  997. package/components/Select/MultiSelect/MultiSelectGrouped/MultiSelectGrouped.js +256 -0
  998. package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.d.ts +3 -0
  999. package/components/Select/MultiSelect/MultiSelectWithTabs/MultiSelectWithTabs.js +244 -0
  1000. package/components/Select/MultiSelect/OptionsWrapper.d.ts +17 -0
  1001. package/components/Select/MultiSelect/OptionsWrapper.js +176 -0
  1002. package/components/Select/NestedSelect/NestedSelect.d.ts +3 -0
  1003. package/components/Select/NestedSelect/NestedSelect.js +190 -0
  1004. package/components/Select/ProfileDropdown/index.d.ts +4 -0
  1005. package/components/Select/ProfileDropdown/index.js +83 -0
  1006. package/components/Select/Select/Select.d.ts +3 -0
  1007. package/components/Select/Select/Select.js +331 -0
  1008. package/components/Select/SharedComponents/Actions.d.ts +8 -0
  1009. package/components/Select/SharedComponents/Actions.js +100 -0
  1010. package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.d.ts +15 -0
  1011. package/components/Select/SharedComponents/ButtonSelectWrapper/Button/Button.js +45 -0
  1012. package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.d.ts +3 -0
  1013. package/components/Select/SharedComponents/ButtonSelectWrapper/ButtonSelectWrapper.js +102 -0
  1014. package/components/Select/SharedComponents/ContentTop.d.ts +19 -0
  1015. package/components/Select/SharedComponents/ContentTop.js +158 -0
  1016. package/components/Select/SharedComponents/Footer.d.ts +3 -0
  1017. package/components/Select/SharedComponents/Footer.js +67 -0
  1018. package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.d.ts +3 -0
  1019. package/components/Select/SharedComponents/InputSelectWrapper/InputSelectWrapper.js +154 -0
  1020. package/components/Select/SharedComponents/Loading.d.ts +6 -0
  1021. package/components/Select/SharedComponents/Loading.js +17 -0
  1022. package/components/Select/SharedComponents/index.d.ts +6 -0
  1023. package/components/Select/SharedComponents/index.js +79 -0
  1024. package/components/Select/constants.d.ts +7 -0
  1025. package/components/Select/constants.js +9 -0
  1026. package/components/Select/index.d.ts +5 -0
  1027. package/components/Select/index.js +96 -0
  1028. package/components/Select/types.d.ts +240 -0
  1029. package/components/Select/types.js +1 -0
  1030. package/components/SideNavigation/Block.d.ts +3 -0
  1031. package/components/SideNavigation/Block.js +28 -0
  1032. package/components/SideNavigation/NavigationItem/index.d.ts +3 -0
  1033. package/components/SideNavigation/NavigationItem/index.js +73 -0
  1034. package/components/SideNavigation/NavigationItem/types.d.ts +25 -0
  1035. package/components/SideNavigation/NavigationItem/types.js +11 -0
  1036. package/components/SideNavigation/SideNavigation.d.ts +3 -0
  1037. package/components/SideNavigation/SideNavigation.js +57 -0
  1038. package/components/SideNavigation/index.d.ts +2 -0
  1039. package/components/SideNavigation/index.js +37 -0
  1040. package/components/SideNavigation/types.d.ts +18 -0
  1041. package/components/SideNavigation/types.js +1 -0
  1042. package/components/SideSheet/Footer/Footer.d.ts +16 -0
  1043. package/components/SideSheet/Footer/Footer.js +79 -0
  1044. package/components/SideSheet/SideSheet.d.ts +3 -0
  1045. package/components/SideSheet/SideSheet.js +193 -0
  1046. package/components/SideSheet/index.d.ts +1 -0
  1047. package/components/SideSheet/index.js +38 -0
  1048. package/components/SideSheet/types.d.ts +34 -0
  1049. package/components/SideSheet/types.js +1 -0
  1050. package/components/Snackbar/Snackbar.d.ts +5 -0
  1051. package/components/Snackbar/Snackbar.js +105 -0
  1052. package/components/Snackbar/consts.d.ts +8 -0
  1053. package/components/Snackbar/consts.js +15 -0
  1054. package/components/Snackbar/index.d.ts +1 -0
  1055. package/components/Snackbar/index.js +33 -0
  1056. package/components/Snackbar/types.d.ts +15 -0
  1057. package/components/Snackbar/types.js +1 -0
  1058. package/components/Status/Status.d.ts +3 -0
  1059. package/components/Status/Status.js +48 -0
  1060. package/components/Status/index.d.ts +1 -0
  1061. package/components/Status/index.js +9 -0
  1062. package/components/Status/types.d.ts +14 -0
  1063. package/components/Status/types.js +1 -0
  1064. package/components/Stepper/Stepper.d.ts +3 -0
  1065. package/components/Stepper/Stepper.js +45 -0
  1066. package/components/Stepper/index.d.ts +1 -0
  1067. package/components/Stepper/index.js +3 -0
  1068. package/components/Stepper/types.d.ts +16 -0
  1069. package/components/Stepper/types.js +1 -0
  1070. package/components/Switcher/Switcher.d.ts +3 -0
  1071. package/components/Switcher/Switcher.js +91 -0
  1072. package/components/Switcher/index.d.ts +1 -0
  1073. package/components/Switcher/index.js +29 -0
  1074. package/components/Switcher/types.d.ts +12 -0
  1075. package/components/Switcher/types.js +1 -0
  1076. package/components/Tab/Tab.d.ts +3 -0
  1077. package/components/Tab/Tab.js +45 -0
  1078. package/components/Tab/TabItem.d.ts +3 -0
  1079. package/components/Tab/TabItem.js +58 -0
  1080. package/components/Tab/consts.d.ts +7 -0
  1081. package/components/Tab/consts.js +12 -0
  1082. package/components/Tab/index.d.ts +1 -0
  1083. package/components/Tab/index.js +12 -0
  1084. package/components/Tab/types.d.ts +51 -0
  1085. package/components/Tab/types.js +1 -0
  1086. package/components/Table/Header.d.ts +16 -0
  1087. package/components/Table/Header.js +100 -0
  1088. package/components/Table/IndeterminateCheckbox.d.ts +12 -0
  1089. package/components/Table/IndeterminateCheckbox.js +53 -0
  1090. package/components/Table/Row.d.ts +10 -0
  1091. package/components/Table/Row.js +69 -0
  1092. package/components/Table/Table.d.ts +3 -0
  1093. package/components/Table/Table.js +149 -0
  1094. package/components/Table/index.d.ts +1 -0
  1095. package/components/Table/index.js +42 -0
  1096. package/components/Table/types.d.ts +44 -0
  1097. package/components/Table/types.js +1 -0
  1098. package/components/Table/utils.d.ts +5 -0
  1099. package/components/Table/utils.js +53 -0
  1100. package/components/Text/Text.d.ts +3 -0
  1101. package/components/Text/Text.js +36 -0
  1102. package/components/Text/index.d.ts +1 -0
  1103. package/components/Text/index.js +5 -0
  1104. package/components/Text/types.d.ts +19 -0
  1105. package/components/Text/types.js +1 -0
  1106. package/components/Textarea/Textarea.d.ts +3 -0
  1107. package/components/Textarea/Textarea.js +115 -0
  1108. package/components/Textarea/index.d.ts +1 -0
  1109. package/components/Textarea/index.js +31 -0
  1110. package/components/Textarea/types.d.ts +18 -0
  1111. package/components/Textarea/types.js +1 -0
  1112. package/components/Tooltip/Tooltip.d.ts +3 -0
  1113. package/components/Tooltip/Tooltip.js +103 -0
  1114. package/components/Tooltip/index.d.ts +1 -0
  1115. package/components/Tooltip/index.js +16 -0
  1116. package/components/Tooltip/types.d.ts +21 -0
  1117. package/components/Tooltip/types.js +13 -0
  1118. package/consts/index.d.ts +23 -0
  1119. package/consts/index.js +62 -0
  1120. package/context/FormContextProvider.d.ts +5 -0
  1121. package/context/FormContextProvider.js +12 -0
  1122. package/context/index.d.ts +2 -0
  1123. package/context/index.js +5 -0
  1124. package/context/types.d.ts +21 -0
  1125. package/context/types.js +12 -0
  1126. package/defineProperty-7db32082.js +28 -0
  1127. package/extends-e8ef956f.js +11 -0
  1128. package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.d.ts +6 -0
  1129. package/helperComponents/AnimatePresenceWrapper/AnimatePresenceWrapper.js +15 -0
  1130. package/helperComponents/AnimatePresenceWrapper/index.d.ts +1 -0
  1131. package/helperComponents/AnimatePresenceWrapper/index.js +3 -0
  1132. package/helperComponents/CodeBlock/CodeBlock.d.ts +8 -0
  1133. package/helperComponents/CodeBlock/CodeBlock.js +178 -0
  1134. package/helperComponents/CodeBlock/index.d.ts +2 -0
  1135. package/helperComponents/CodeBlock/index.js +3 -0
  1136. package/helperComponents/ErrorMessage/ErrorMessage.d.ts +3 -0
  1137. package/helperComponents/ErrorMessage/ErrorMessage.js +27 -0
  1138. package/helperComponents/ErrorMessage/index.d.ts +1 -0
  1139. package/helperComponents/ErrorMessage/index.js +8 -0
  1140. package/helperComponents/ErrorMessage/types.d.ts +7 -0
  1141. package/helperComponents/ErrorMessage/types.js +1 -0
  1142. package/helperComponents/IconDynamicComponent/IconDynamicComponent.d.ts +9 -0
  1143. package/helperComponents/IconDynamicComponent/IconDynamicComponent.js +26 -0
  1144. package/helperComponents/IconDynamicComponent/constants.d.ts +3 -0
  1145. package/helperComponents/IconDynamicComponent/constants.js +34 -0
  1146. package/helperComponents/IconDynamicComponent/index.d.ts +1 -0
  1147. package/helperComponents/IconDynamicComponent/index.js +3 -0
  1148. package/helperComponents/Label/Label.d.ts +3 -0
  1149. package/helperComponents/Label/Label.js +29 -0
  1150. package/helperComponents/Label/index.d.ts +1 -0
  1151. package/helperComponents/Label/index.js +6 -0
  1152. package/helperComponents/Label/types.d.ts +11 -0
  1153. package/helperComponents/Label/types.js +1 -0
  1154. package/helperComponents/Loader/Loader.d.ts +3 -0
  1155. package/helperComponents/Loader/Loader.js +15 -0
  1156. package/helperComponents/Loader/index.d.ts +1 -0
  1157. package/helperComponents/Loader/index.js +2 -0
  1158. package/helperComponents/Loader/types.d.ts +4 -0
  1159. package/helperComponents/Loader/types.js +1 -0
  1160. package/helperComponents/OptionItem/OptionItem.d.ts +3 -0
  1161. package/helperComponents/OptionItem/OptionItem.js +119 -0
  1162. package/helperComponents/OptionItem/index.d.ts +1 -0
  1163. package/helperComponents/OptionItem/index.js +46 -0
  1164. package/helperComponents/OptionItem/types.d.ts +17 -0
  1165. package/helperComponents/OptionItem/types.js +1 -0
  1166. package/helperComponents/index.d.ts +6 -0
  1167. package/helperComponents/index.js +47 -0
  1168. package/hooks/index.d.ts +12 -0
  1169. package/hooks/index.js +19 -0
  1170. package/hooks/useChangePositionsOnScroll.d.ts +6 -0
  1171. package/hooks/useChangePositionsOnScroll.js +42 -0
  1172. package/hooks/useDispatchEventOnScroll.d.ts +1 -0
  1173. package/hooks/useDispatchEventOnScroll.js +12 -0
  1174. package/hooks/useFieldArray.d.ts +1 -0
  1175. package/hooks/useFieldArray.js +1 -0
  1176. package/hooks/useFormContext.d.ts +9 -0
  1177. package/hooks/useFormContext.js +10 -0
  1178. package/hooks/useFormProps.d.ts +2 -0
  1179. package/hooks/useFormProps.js +10 -0
  1180. package/hooks/useGetElemPositions.d.ts +10 -0
  1181. package/hooks/useGetElemPositions.js +19 -0
  1182. package/hooks/useGetElemSizes.d.ts +13 -0
  1183. package/hooks/useGetElemSizes.js +16 -0
  1184. package/hooks/useGetHasBottomSpace.d.ts +11 -0
  1185. package/hooks/useGetHasBottomSpace.js +26 -0
  1186. package/hooks/useGetTooltipPosition.d.ts +1 -0
  1187. package/hooks/useGetTooltipPosition.js +85 -0
  1188. package/hooks/useGetTooltipStyles.d.ts +14 -0
  1189. package/hooks/useGetTooltipStyles.js +89 -0
  1190. package/hooks/useHideBodyScroll.d.ts +1 -0
  1191. package/hooks/useHideBodyScroll.js +35 -0
  1192. package/hooks/useHideOnScroll.d.ts +1 -0
  1193. package/hooks/useHideOnScroll.js +24 -0
  1194. package/hooks/useOnOutsideClick.d.ts +3 -0
  1195. package/hooks/useOnOutsideClick.js +65 -0
  1196. package/hooks/useScreenSize.d.ts +3 -0
  1197. package/hooks/useScreenSize.js +36 -0
  1198. package/index.d.ts +54 -0
  1199. package/index.js +495 -0
  1200. package/objectWithoutProperties-fcd64cc7.js +23 -0
  1201. package/package.json +39 -0
  1202. package/slicedToArray-0c706912.js +55 -0
  1203. package/stories/AdvancedTable.stories.d.ts +8 -0
  1204. package/stories/Alert.stories.d.ts +22 -0
  1205. package/stories/Avatar.stories.d.ts +29 -0
  1206. package/stories/Badge.stories.d.ts +22 -0
  1207. package/stories/Breadcrumb.stories.d.ts +8 -0
  1208. package/stories/Button.stories.d.ts +22 -0
  1209. package/stories/ButtonIcon.stories.d.ts +16 -0
  1210. package/stories/CardBody.stories.d.ts +8 -0
  1211. package/stories/CardSelect.stories.d.ts +24 -0
  1212. package/stories/Cards.stories.d.ts +8 -0
  1213. package/stories/Checkbox.stories.d.ts +9 -0
  1214. package/stories/Chips.stories.d.ts +28 -0
  1215. package/stories/Collapse.stories.d.ts +12 -0
  1216. package/stories/Container.stories.d.ts +8 -0
  1217. package/stories/Copy.stories.d.ts +9 -0
  1218. package/stories/Counter.stories.d.ts +8 -0
  1219. package/stories/DatePicker.stories.d.ts +17 -0
  1220. package/stories/Divider.stories.d.ts +4 -0
  1221. package/stories/Empty.stories.d.ts +16 -0
  1222. package/stories/FileUpload.stories.d.ts +8 -0
  1223. package/stories/Form.stories.d.ts +7 -0
  1224. package/stories/FramedIcon.stories.d.ts +16 -0
  1225. package/stories/Heading.stories.d.ts +36 -0
  1226. package/stories/Image.stories.d.ts +4 -0
  1227. package/stories/Input.stories.d.ts +18 -0
  1228. package/stories/ItemSelect.stories.d.ts +9 -0
  1229. package/stories/Link.stories.d.ts +22 -0
  1230. package/stories/Menu.stories.d.ts +17 -0
  1231. package/stories/Modal.stories.d.ts +23 -0
  1232. package/stories/More.stories.d.ts +7 -0
  1233. package/stories/NavigationItem.stories.d.ts +13 -0
  1234. package/stories/OneTimePassword.stories.d.ts +34 -0
  1235. package/stories/Pagination.stories.d.ts +16 -0
  1236. package/stories/Popover.stories.d.ts +16 -0
  1237. package/stories/Progress.stories.d.ts +23 -0
  1238. package/stories/ProgressStep.stories.d.ts +28 -0
  1239. package/stories/Radio.stories.d.ts +10 -0
  1240. package/stories/SVGIcons.stories.d.ts +29 -0
  1241. package/stories/Select.stories.d.ts +21 -0
  1242. package/stories/SideNavigation.stories.d.ts +9 -0
  1243. package/stories/SideSheet.stories.d.ts +16 -0
  1244. package/stories/Snackbar.stories.d.ts +17 -0
  1245. package/stories/Status.stories.d.ts +22 -0
  1246. package/stories/Stepper.stories.d.ts +7 -0
  1247. package/stories/Switcher.stories.d.ts +16 -0
  1248. package/stories/Tab.stories.d.ts +28 -0
  1249. package/stories/Table.stories.d.ts +8 -0
  1250. package/stories/Text.stories.d.ts +42 -0
  1251. package/stories/Textarea.stories.d.ts +8 -0
  1252. package/stories/Tooltip.stories.d.ts +22 -0
  1253. package/toConsumableArray-e0031ed3.js +19 -0
  1254. package/typeof-ecd92d7f.js +11 -0
  1255. package/types.d.js +1 -0
  1256. package/utils/helpers.d.ts +15 -0
  1257. package/utils/helpers.js +86 -0
@@ -0,0 +1,33 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconListFilled = function IconListFilled(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "Size=24, Theme=Filled"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M3 17H15C15.5523 17 16 17.4477 16 18C16 18.5128 15.614 18.9355 15.1166 18.9933L15 19H3C2.44772 19 2 18.5523 2 18C2 17.4872 2.38604 17.0645 2.88338 17.0067L3 17H15H3ZM3 11H21C21.5523 11 22 11.4477 22 12C22 12.5128 21.614 12.9355 21.1166 12.9933L21 13H3C2.44772 13 2 12.5523 2 12C2 11.4872 2.38604 11.0645 2.88338 11.0067L3 11H21H3ZM3 5H18C18.5523 5 19 5.44772 19 6C19 6.51284 18.614 6.93551 18.1166 6.99327L18 7H3C2.44772 7 2 6.55228 2 6C2 5.48716 2.38604 5.06449 2.88338 5.00673L3 5H18H3Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconListFilled, IconListFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconLoan: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconLoan;
@@ -0,0 +1,39 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconLoan = function IconLoan(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("path", {
25
+ d: "M15.2638 12.9565C15.545 12.6628 15.5438 12.1879 15.2611 11.8958C14.9783 11.6037 14.5211 11.605 14.2399 11.8986L9.07478 17.2924C8.79355 17.5861 8.79478 18.0609 9.07753 18.353C9.36028 18.6452 9.81747 18.6439 10.0987 18.3502L15.2638 12.9565Z",
26
+ fill: "#555555"
27
+ }), /*#__PURE__*/React.createElement("path", {
28
+ d: "M14.3651 15.9385C13.6795 15.9385 13.1236 16.5158 13.1236 17.228C13.1236 17.9402 13.6795 18.5175 14.3651 18.5175C15.0507 18.5175 15.6066 17.9402 15.6066 17.228C15.6066 16.5159 15.0508 15.9385 14.3651 15.9385Z",
29
+ fill: "#555555"
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ d: "M8.90202 13.0277C8.90202 12.315 9.45833 11.7371 10.1446 11.7371C10.8308 11.7371 11.3871 12.315 11.3871 13.0277C11.3871 13.7405 10.8308 14.3183 10.1446 14.3183C9.45835 14.3183 8.90202 13.7405 8.90202 13.0277Z",
32
+ fill: "#555555"
33
+ }), /*#__PURE__*/React.createElement("path", {
34
+ d: "M16.175 3.91504C16.4512 2.62404 15.1615 1.57811 14.0227 2.16955L13.4506 2.46663C12.6245 2.89567 11.6778 3.00361 10.7818 2.77093C9.38552 2.40837 8.13487 3.7514 8.53025 5.18874L8.6101 5.47903H7.61859C6.5221 5.47903 5.63322 6.40228 5.63322 7.54116C5.63322 8.56709 6.35452 9.41803 7.29912 9.57674L4.92495 13.938C2.9146 17.631 5.65191 22.0005 9.74625 22.0005H14.7537C18.8481 22.0005 21.5854 17.631 19.5751 13.938L17.201 9.57694C18.1462 9.41874 18.8681 8.56752 18.8681 7.54116C18.8681 6.40228 17.9792 5.47903 16.8827 5.47903H15.8404L16.175 3.91504ZM6.18207 14.6763L8.94369 9.6033H15.5563L18.3179 14.6763C19.7242 17.2595 17.8659 20.5005 14.7537 20.5005H9.74625C6.63412 20.5005 4.77583 17.2595 6.18207 14.6763ZM14.361 5.47903L14.7652 3.58964C14.7701 3.56691 14.7669 3.55623 14.7648 3.55048C14.7615 3.54163 14.7541 3.52952 14.7407 3.51869C14.7274 3.50786 14.7143 3.50328 14.7052 3.50213C14.6993 3.50139 14.6886 3.50078 14.6685 3.51119L14.0965 3.80827C12.962 4.39745 11.662 4.54567 10.4315 4.22614C10.1136 4.14359 9.82881 4.44939 9.91884 4.77666L10.112 5.47903H14.361ZM7.07738 7.54116C7.07738 7.23071 7.31969 6.97903 7.61859 6.97903H16.8827C17.1816 6.97903 17.4239 7.23071 17.4239 7.54116C17.4239 7.85162 17.1816 8.1033 16.8827 8.1033H7.61859C7.31969 8.1033 7.07738 7.85162 7.07738 7.54116Z",
35
+ fill: "#555555"
36
+ }));
37
+ };
38
+
39
+ export { IconLoan, IconLoan as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconLoanFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconLoanFilled;
@@ -0,0 +1,30 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconLoanFilled = function IconLoanFilled(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("path", {
25
+ d: "M13.7727 2.16955C14.9115 1.57811 16.2012 2.62404 15.925 3.91504L15.5904 5.47903H16.6327C17.7292 5.47903 18.6181 6.40228 18.6181 7.54116C18.6181 8.56752 17.8962 9.41874 16.951 9.57694L19.3251 13.938C21.3354 17.631 18.5981 22.0005 14.5037 22.0005H9.49625C5.40191 22.0005 2.6646 17.631 4.67495 13.938L7.04912 9.57674C6.10452 9.41803 5.38322 8.56709 5.38322 7.54116C5.38322 6.40228 6.2721 5.47903 7.36859 5.47903H8.3601L8.28025 5.18874C7.88487 3.7514 9.13552 2.40837 10.5318 2.77093C11.4278 3.00361 12.3745 2.89567 13.2006 2.46663L13.7727 2.16955ZM15.0091 12.9589C15.2904 12.6652 15.2891 12.1903 15.0064 11.8982C14.7236 11.6061 14.2664 11.6074 13.9852 11.9011L8.82012 17.2948C8.53889 17.5885 8.54012 18.0634 8.82287 18.3555C9.10561 18.6476 9.56281 18.6463 9.84404 18.3526L15.0091 12.9589ZM14.1104 15.941C13.4248 15.941 12.869 16.5183 12.869 17.2304C12.869 17.9426 13.4248 18.5199 14.1104 18.5199C14.7961 18.5199 15.3519 17.9426 15.3519 17.2304C15.3519 16.5183 14.7961 15.941 14.1104 15.941ZM9.88991 11.7396C9.20367 11.7396 8.64735 12.3174 8.64735 13.0302C8.64735 13.743 9.20368 14.3208 9.88991 14.3208C10.5762 14.3208 11.1325 13.743 11.1325 13.0302C11.1325 12.3174 10.5762 11.7396 9.88991 11.7396Z",
26
+ fill: "#080808"
27
+ }));
28
+ };
29
+
30
+ export { IconLoanFilled, IconLoanFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconLocation: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconLocation;
@@ -0,0 +1,33 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconLocation = function IconLocation(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "Size=24, Theme=Regular"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M5.84303 4.56831C9.24344 1.1679 14.7566 1.1679 18.157 4.56831C21.5574 7.96872 21.5574 13.4819 18.157 16.8823L16.97 18.0562C16.0952 18.9149 14.96 20.0188 13.5642 21.3684C12.6919 22.2117 11.3081 22.2116 10.436 21.3681L6.9449 17.9723C6.50614 17.5414 6.13887 17.1781 5.84303 16.8823C2.44262 13.4819 2.44262 7.96872 5.84303 4.56831ZM17.0963 5.62897C14.2817 2.81435 9.71832 2.81435 6.90369 5.62897C4.08907 8.4436 4.08907 13.007 6.90369 15.8216L8.39077 17.2891C9.20967 18.0905 10.2391 19.0909 11.4788 20.2899C11.7695 20.5711 12.2308 20.5711 12.5215 20.29L15.9164 16.9885C16.3854 16.5282 16.7787 16.1393 17.0963 15.8216C19.911 13.007 19.911 8.4436 17.0963 5.62897ZM12 7.99897C13.6577 7.99897 15.0016 9.34281 15.0016 11.0005C15.0016 12.6582 13.6577 14.0021 12 14.0021C10.3423 14.0021 8.99847 12.6582 8.99847 11.0005C8.99847 9.34281 10.3423 7.99897 12 7.99897ZM12 9.49897C11.1707 9.49897 10.4985 10.1712 10.4985 11.0005C10.4985 11.8298 11.1707 12.5021 12 12.5021C12.8293 12.5021 13.5016 11.8298 13.5016 11.0005C13.5016 10.1712 12.8293 9.49897 12 9.49897Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconLocation, IconLocation as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconLocationFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconLocationFilled;
@@ -0,0 +1,33 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconLocationFilled = function IconLocationFilled(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "Size=24, Theme=Filled"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M18.157 16.8823L16.97 18.0562C16.0952 18.9149 14.96 20.0188 13.5642 21.3684C12.6919 22.2117 11.3081 22.2116 10.436 21.3681L6.9449 17.9723C6.50614 17.5414 6.13887 17.1781 5.84303 16.8823C2.44262 13.4819 2.44262 7.96872 5.84303 4.56831C9.24344 1.1679 14.7566 1.1679 18.157 4.56831C21.5574 7.96872 21.5574 13.4819 18.157 16.8823ZM14.5002 11C14.5002 9.61918 13.3808 8.4998 12 8.4998C10.6192 8.4998 9.49982 9.61918 9.49982 11C9.49982 12.3808 10.6192 13.5002 12 13.5002C13.3808 13.5002 14.5002 12.3808 14.5002 11Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconLocationFilled, IconLocationFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconLockClosed: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconLockClosed;
@@ -0,0 +1,33 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconLockClosed = function IconLockClosed(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "State=Closed, Size=24, Theme=Regular"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M12 2C14.2091 2 16 3.79086 16 6V8H17.75C18.9926 8 20 9.00736 20 10.25V19.75C20 20.9926 18.9926 22 17.75 22H6.25C5.00736 22 4 20.9926 4 19.75V10.25C4 9.00736 5.00736 8 6.25 8H8V6C8 3.79086 9.79086 2 12 2ZM17.75 9.5H6.25C5.83579 9.5 5.5 9.83579 5.5 10.25V19.75C5.5 20.1642 5.83579 20.5 6.25 20.5H17.75C18.1642 20.5 18.5 20.1642 18.5 19.75V10.25C18.5 9.83579 18.1642 9.5 17.75 9.5ZM12.0001 13.5C12.8286 13.5 13.5001 14.1716 13.5001 15C13.5001 15.8284 12.8286 16.5 12.0001 16.5C11.1717 16.5 10.5001 15.8284 10.5001 15C10.5001 14.1716 11.1717 13.5 12.0001 13.5ZM12 3.5C10.6193 3.5 9.5 4.61929 9.5 6V8H14.5V6C14.5 4.61929 13.3807 3.5 12 3.5Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconLockClosed, IconLockClosed as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconLockClosedFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconLockClosedFilled;
@@ -0,0 +1,33 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconLockClosedFilled = function IconLockClosedFilled(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "State=Closed, Size=24, Theme=Filled"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M12 2C14.2091 2 16 3.79086 16 6V8H18.5C19.3284 8 20 8.67157 20 9.5V20.5C20 21.3284 19.3284 22 18.5 22H5.5C4.67157 22 4 21.3284 4 20.5V9.5C4 8.67157 4.67157 8 5.5 8H8V6C8 3.79086 9.79086 2 12 2ZM12.0001 13.5C11.1717 13.5 10.5001 14.1716 10.5001 15C10.5001 15.8284 11.1717 16.5 12.0001 16.5C12.8286 16.5 13.5001 15.8284 13.5001 15C13.5001 14.1716 12.8286 13.5 12.0001 13.5ZM12 4C10.8954 4 10 4.89543 10 6V8H14V6C14 4.89543 13.1046 4 12 4Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconLockClosedFilled, IconLockClosedFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconLockOpen: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconLockOpen;
@@ -0,0 +1,33 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconLockOpen = function IconLockOpen(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "State=Open, Size=24, Theme=Regular"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M12 2.00391C13.8753 2.00391 15.3342 3.2102 15.9276 5.00689C16.0575 5.4002 15.844 5.82436 15.4507 5.95427C15.0574 6.08419 14.6332 5.87066 14.5033 5.47734C14.1018 4.26162 13.1854 3.50391 12 3.50391C10.5927 3.50391 9.57976 4.46178 9.50392 6.05538L9.49935 6.24964L9.499 7.99891L17.75 7.99964C18.9409 7.99964 19.9156 8.9248 19.9948 10.0956L20 10.2496V19.7459C20 20.9368 19.0748 21.9116 17.904 21.9907L17.75 21.9959H6.25C5.05914 21.9959 4.08436 21.0708 4.00519 19.9L4 19.7459V10.2496C4 9.05878 4.92516 8.08399 6.09595 8.00483L6.25 7.99964L7.999 7.99891L7.99935 6.24964C7.99935 3.71117 9.70837 2.00391 12 2.00391ZM17.75 9.49964H6.25C5.8703 9.49964 5.55651 9.78179 5.50685 10.1479L5.5 10.2496V19.7459C5.5 20.1256 5.78215 20.4394 6.14823 20.4891L6.25 20.4959H17.75C18.1297 20.4959 18.4435 20.2138 18.4932 19.8477L18.5 19.7459V10.2496C18.5 9.86994 18.2178 9.55615 17.8518 9.50649L17.75 9.49964ZM12 13.4992C12.8277 13.4992 13.4986 14.1701 13.4986 14.9978C13.4986 15.8254 12.8277 16.4964 12 16.4964C11.1723 16.4964 10.5014 15.8254 10.5014 14.9978C10.5014 14.1701 11.1723 13.4992 12 13.4992Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconLockOpen, IconLockOpen as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconLockOpenFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconLockOpenFilled;
@@ -0,0 +1,33 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconLockOpenFilled = function IconLockOpenFilled(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "State=Open, Size=24, Theme=Filled"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M12 2.00104C13.7084 2.00104 15.2111 3.0822 15.7713 4.66746C15.9553 5.18819 15.6823 5.75949 15.1616 5.94348C14.678 6.11434 14.1509 5.89117 13.9307 5.44149L13.8855 5.33377C13.6057 4.54174 12.8541 4.00104 12 4.00104C10.9462 4.00104 10.0828 4.81649 10.0065 5.85082L10.001 6L10.001 7.99904L17.75 8C18.9409 8 19.9156 8.92516 19.9948 10.096L20 10.25V19.7463C20 20.9371 19.0748 21.9119 17.904 21.9911L17.75 21.9963H6.25C5.05914 21.9963 4.08436 21.0711 4.00519 19.9003L4 19.7463V10.25C4 9.05914 4.92516 8.08436 6.09595 8.00519L6.25 8L8.001 7.99904L8.00104 6C8.00104 3.79143 9.79143 2.00104 12 2.00104ZM12 13.4995C11.1723 13.4995 10.5014 14.1705 10.5014 14.9981C10.5014 15.8258 11.1723 16.4968 12 16.4968C12.8277 16.4968 13.4986 15.8258 13.4986 14.9981C13.4986 14.1705 12.8277 13.4995 12 13.4995Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconLockOpenFilled, IconLockOpenFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconMail: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconMail;
@@ -0,0 +1,33 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconMail = function IconMail(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "Size=24, Theme=Regular"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M5.25 4H18.75C20.483 4 21.8992 5.35645 21.9949 7.06558L22 7.25V16.75C22 18.483 20.6435 19.8992 18.9344 19.9949L18.75 20H5.25C3.51697 20 2.10075 18.6435 2.00514 16.9344L2 16.75V7.25C2 5.51697 3.35645 4.10075 5.06558 4.00514L5.25 4H18.75H5.25ZM20.5 9.373L12.3493 13.6637C12.1619 13.7623 11.9431 13.7764 11.7468 13.706L11.6507 13.6637L3.5 9.374V16.75C3.5 17.6682 4.20711 18.4212 5.10647 18.4942L5.25 18.5H18.75C19.6682 18.5 20.4212 17.7929 20.4942 16.8935L20.5 16.75V9.373ZM18.75 5.5H5.25C4.33183 5.5 3.57881 6.20711 3.5058 7.10647L3.5 7.25V7.679L12 12.1525L20.5 7.678V7.25C20.5 6.33183 19.7929 5.57881 18.8935 5.5058L18.75 5.5Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconMail, IconMail as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconMailAdd: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconMailAdd;
@@ -0,0 +1,33 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconMailAdd = function IconMailAdd(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "Size=24, Theme=Regular"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M23 6.5C23 3.46243 20.5376 1 17.5 1C14.4624 1 12 3.46243 12 6.5C12 9.53757 14.4624 12 17.5 12C20.5376 12 23 9.53757 23 6.5ZM18.0006 7.00001L18.0011 9.50352C18.0011 9.77966 17.7773 10.0035 17.5011 10.0035C17.225 10.0035 17.0011 9.77966 17.0011 9.50352L17.0006 7.00001H14.4956C14.2197 7.00001 13.9961 6.77615 13.9961 6.50001C13.9961 6.22387 14.2197 6.00001 14.4956 6.00001H17.0005L17 3.49927C17 3.22313 17.2239 2.99927 17.5 2.99927C17.7761 2.99927 18 3.22313 18 3.49927L18.0005 6.00001H20.4966C20.7725 6.00001 20.9961 6.22387 20.9961 6.50001C20.9961 6.77615 20.7725 7.00001 20.4966 7.00001H18.0006ZM20.5 16.75V12.2678C21.051 11.9806 21.5557 11.6168 22 11.1904V16.75C22 18.483 20.6435 19.8992 18.9344 19.9949L18.75 20H5.25C3.51697 20 2.10075 18.6435 2.00514 16.9344L2 16.75V7.25C2 5.51697 3.35645 4.10075 5.06558 4.00514L5.25 4H11.4982C11.3004 4.47417 11.1572 4.97679 11.0764 5.5H5.25C4.33183 5.5 3.57881 6.20711 3.5058 7.10647L3.5 7.25V7.679L12 12.1525L13.3052 11.4654C13.7437 11.8363 14.232 12.1501 14.7587 12.3954L12.3493 13.6637C12.1619 13.7623 11.9431 13.7764 11.7468 13.706L11.6507 13.6637L3.5 9.374V16.75C3.5 17.6682 4.20711 18.4212 5.10647 18.4942L5.25 18.5H18.75C19.6682 18.5 20.4212 17.7929 20.4942 16.8935L20.5 16.75Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconMailAdd, IconMailAdd as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconMailAddFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconMailAddFilled;
@@ -0,0 +1,33 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconMailAddFilled = function IconMailAddFilled(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "Size=24, Theme=Filled"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M23 6.5C23 3.46243 20.5376 1 17.5 1C14.4624 1 12 3.46243 12 6.5C12 9.53757 14.4624 12 17.5 12C20.5376 12 23 9.53757 23 6.5ZM18.0006 7.00001L18.0011 9.50352C18.0011 9.77966 17.7773 10.0035 17.5011 10.0035C17.225 10.0035 17.0011 9.77966 17.0011 9.50352L17.0006 7.00001H14.4956C14.2197 7.00001 13.9961 6.77615 13.9961 6.50001C13.9961 6.22387 14.2197 6.00001 14.4956 6.00001H17.0005L17 3.49927C17 3.22313 17.2239 2.99927 17.5 2.99927C17.7761 2.99927 18 3.22313 18 3.49927L18.0005 6.00001H20.4966C20.7725 6.00001 20.9961 6.22387 20.9961 6.50001C20.9961 6.77615 20.7725 7.00001 20.4966 7.00001H18.0006ZM17.5 13C19.2465 13 20.8321 12.3112 22 11.1904V16.75C22 18.483 20.6435 19.8992 18.9344 19.9949L18.75 20H5.25C3.51697 20 2.10075 18.6435 2.00514 16.9344L2 16.75V8.608L11.652 13.6644C11.87 13.7785 12.13 13.7785 12.348 13.6644L14.7649 12.3983C15.5963 12.7844 16.523 13 17.5 13ZM5.25 4H11.4982C11.1772 4.76959 11 5.6141 11 6.5C11 8.49255 11.8966 10.2757 13.3083 11.468L12 12.1533L2.01619 6.92355C2.17386 5.34271 3.46432 4.09545 5.06409 4.00523L5.25 4Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconMailAddFilled, IconMailAddFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconMailArrowForward: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconMailArrowForward;
@@ -0,0 +1,33 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconMailArrowForward = function IconMailArrowForward(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "Size=24, Theme=Regular"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M20.3999 17.4V12.4803C20.8292 12.2609 21.2314 11.9958 21.5999 11.6914V17.4C21.5999 19.0569 20.2568 20.4 18.5999 20.4H5.3999C3.74305 20.4 2.3999 19.0569 2.3999 17.4V7.8C2.3999 6.14314 3.74305 4.8 5.3999 4.8H11.0483C10.939 5.18674 10.8639 5.58791 10.8268 6H5.3999C4.40579 6 3.5999 6.80588 3.5999 7.8V8.1624L11.9999 13.1039L13.7296 12.0861C14.1191 12.3473 14.538 12.568 14.9803 12.7424L12.3041 14.3172C12.1476 14.4092 11.9598 14.4245 11.7929 14.3632L11.6957 14.3172L3.5999 9.5556V17.4C3.5999 18.3941 4.40579 19.2 5.3999 19.2H18.5999C19.594 19.2 20.3999 18.3941 20.3999 17.4ZM11.9999 6.6C11.9999 9.58234 14.4176 12 17.3999 12C20.3822 12 22.7999 9.58234 22.7999 6.6C22.7999 3.61766 20.3822 1.2 17.3999 1.2C14.4176 1.2 11.9999 3.61766 11.9999 6.6ZM18.4756 3.47573C18.71 3.24142 19.0899 3.24142 19.3242 3.47573L21.4242 5.57573C21.4817 5.63326 21.5251 5.69956 21.5544 5.77033C21.5837 5.84107 21.5999 5.91864 21.5999 6C21.5999 6.08135 21.5837 6.15892 21.5544 6.22967C21.5255 6.29939 21.483 6.36478 21.4267 6.42171L19.3242 8.52426C19.0899 8.75858 18.71 8.75858 18.4756 8.52426C18.2413 8.28995 18.2413 7.91005 18.4756 7.67573L19.5514 6.6H17.6999C16.5401 6.6 15.5999 7.5402 15.5999 8.7V9C15.5999 9.33137 15.3313 9.6 14.9999 9.6C14.6685 9.6 14.3999 9.33137 14.3999 9V8.7C14.3999 6.87746 15.8774 5.4 17.6999 5.4H19.5514L18.4756 4.32426C18.2413 4.08995 18.2413 3.71005 18.4756 3.47573Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconMailArrowForward, IconMailArrowForward as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconMailArrowForwardFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconMailArrowForwardFilled;
@@ -0,0 +1,33 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconMailArrowForwardFilled = function IconMailArrowForwardFilled(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "Size=24, Theme=Filled"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M17.3999 13.2C18.9955 13.2 20.4589 12.6338 21.6 11.6913V17.4C21.6 19.0569 20.2569 20.4 18.6 20.4H5.4C3.74314 20.4 2.3999 19.0569 2.3999 17.4V8.8476L11.6958 14.3172C11.8836 14.4276 12.1164 14.4276 12.3042 14.3172L14.9805 12.7425C15.7297 13.0378 16.5458 13.2 17.3999 13.2ZM5.4 4.8H11.0483C10.8865 5.3722 10.7999 5.97598 10.7999 6.6C10.7999 8.88684 11.963 10.902 13.7298 12.0863L12 13.1039L2.41821 7.46751C2.58364 5.96712 3.85552 4.8 5.4 4.8ZM11.9999 6.6C11.9999 9.58234 14.4176 12 17.3999 12C20.3822 12 22.7999 9.58234 22.7999 6.6C22.7999 3.61766 20.3822 1.2 17.3999 1.2C14.4176 1.2 11.9999 3.61766 11.9999 6.6ZM18.4756 3.47573C18.71 3.24142 19.0899 3.24142 19.3242 3.47573L21.4242 5.57573C21.4817 5.63326 21.5251 5.69956 21.5544 5.77033C21.5837 5.84107 21.5999 5.91864 21.5999 6C21.5999 6.08135 21.5837 6.15892 21.5544 6.22967C21.5255 6.29939 21.483 6.36478 21.4267 6.42171L19.3242 8.52426C19.0899 8.75858 18.71 8.75858 18.4756 8.52426C18.2413 8.28995 18.2413 7.91005 18.4756 7.67573L19.5514 6.6H17.6999C16.5401 6.6 15.5999 7.5402 15.5999 8.7V9C15.5999 9.33137 15.3313 9.6 14.9999 9.6C14.6685 9.6 14.3999 9.33137 14.3999 9V8.7C14.3999 6.87746 15.8774 5.4 17.6999 5.4H19.5514L18.4756 4.32426C18.2413 4.08995 18.2413 3.71005 18.4756 3.47573Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconMailArrowForwardFilled, IconMailArrowForwardFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconMailFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconMailFilled;
@@ -0,0 +1,33 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconMailFilled = function IconMailFilled(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "Size=24, Theme=Filled"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M22 8.608V16.75C22 18.483 20.6435 19.8992 18.9344 19.9949L18.75 20H5.25C3.51697 20 2.10075 18.6435 2.00514 16.9344L2 16.75V8.608L11.652 13.6644C11.87 13.7785 12.13 13.7785 12.348 13.6644L22 8.608ZM5.25 4H18.75C20.4347 4 21.8201 5.28191 21.9838 6.92355L12 12.1533L2.01619 6.92355C2.17386 5.34271 3.46432 4.09545 5.06409 4.00523L5.25 4H18.75H5.25Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconMailFilled, IconMailFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconMailLink: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconMailLink;