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 IconArrowRightFilled = function IconArrowRightFilled(_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: "Direction=Right, Size=24, Theme=Filled"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M13.7045 4.28377C13.3111 3.89615 12.678 3.90084 12.2904 4.29424C11.9027 4.68765 11.9074 5.3208 12.3008 5.70842L17.6712 10.9998H4C3.44771 10.9998 3 11.4475 3 11.9998C3 12.5521 3.44772 12.9998 4 12.9998H17.6646L12.3008 18.2847C11.9074 18.6723 11.9027 19.3055 12.2904 19.6989C12.678 20.0923 13.3111 20.097 13.7045 19.7094L20.6287 12.887C21.1256 12.3974 21.1256 11.5958 20.6287 11.1062L13.7045 4.28377Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconArrowRightFilled, IconArrowRightFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconArrowSort: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconArrowSort;
@@ -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 IconArrowSort = function IconArrowSort(_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: "M17.2509 4L17.1491 4.00685C16.783 4.05651 16.5009 4.3703 16.5009 4.75L16.5 17.442L13.2801 14.2244L13.196 14.1518C12.9023 13.9341 12.4856 13.9585 12.2194 14.2248C11.9267 14.5179 11.9269 14.9927 12.2199 15.2855L16.7237 19.7855L16.8078 19.8581C17.1015 20.0758 17.5182 20.0514 17.7843 19.7851L22.2806 15.2851L22.3531 15.2009C22.5709 14.9072 22.5465 14.4905 22.2801 14.2244L22.196 14.1518C21.9023 13.9341 21.4856 13.9585 21.2194 14.2248L18 17.446L18.0009 4.75L17.994 4.64823C17.9444 4.28215 17.6306 4 17.2509 4ZM6.21441 4.21969L1.71965 8.71474L1.64704 8.79886C1.42919 9.09248 1.45341 9.50914 1.71969 9.7754L1.80381 9.84802C2.09743 10.0659 2.51409 10.0416 2.78035 9.77537L5.997 6.55711L5.99766 19.2549L6.00451 19.3567C6.05417 19.7228 6.36797 20.0049 6.74766 20.0049L6.84943 19.9981C7.21551 19.9484 7.49766 19.6346 7.49766 19.2549L7.497 6.55911L10.7199 9.77596L10.8041 9.84849C11.0979 10.066 11.5145 10.0414 11.7805 9.77481C12.0731 9.4816 12.0726 9.00672 11.7794 8.71415L7.27451 4.21909L7.19038 4.14661C6.89676 3.9292 6.48047 3.95361 6.21441 4.21969Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconArrowSort, IconArrowSort as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconArrowSortFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconArrowSortFilled;
@@ -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 IconArrowSortFilled = function IconArrowSortFilled(_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: "M6.28829 4.29327L2.29252 8.29327L2.20938 8.38752C1.90456 8.77997 1.93259 9.34719 2.29327 9.70748L2.38752 9.79062C2.77997 10.0954 3.34719 10.0674 3.70748 9.70673L6.001 7.41L6.00101 19.0007L6.00774 19.1173C6.0655 19.6146 6.48817 20.0007 7.00101 20.0007L7.11763 19.9939C7.61497 19.9362 8.00101 19.5135 8.00101 19.0007L8.001 7.417L10.2944 9.70757L10.3886 9.7907C10.7811 10.0955 11.3483 10.0674 11.7086 9.70664C12.0988 9.31586 12.0984 8.6827 11.7077 8.29243L7.70242 4.29243L7.60816 4.20931C7.21571 3.90456 6.64855 3.93262 6.28829 4.29327ZM17 4.00317L16.8834 4.0099C16.386 4.06767 16 4.49034 16 5.00317L16 16.583L13.7068 14.2925L13.6125 14.2094C13.2201 13.9045 12.6529 13.9325 12.2926 14.2932C11.9022 14.6839 11.9025 15.3171 12.2932 15.7074L16.297 19.7074L16.3912 19.7905C16.7837 20.0954 17.3509 20.0674 17.7112 19.7067L21.7074 15.7067L21.7906 15.6125C22.0954 15.22 22.0674 14.6528 21.7068 14.2925L21.6125 14.2094C21.2201 13.9045 20.6529 13.9325 20.2926 14.2932L18 16.587L18 5.00317L17.9933 4.88655C17.9355 4.38921 17.5128 4.00317 17 4.00317Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconArrowSortFilled, IconArrowSortFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconArrowSync: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconArrowSync;
@@ -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 IconArrowSync = function IconArrowSync(_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: "M16.2506 5.18011C15.9994 5.50947 16.0627 5.9801 16.3921 6.23128C18.1804 7.59515 19.25 9.70821 19.25 12C19.25 15.736 16.4242 18.812 12.7933 19.2071L13.4697 18.5303C13.7626 18.2374 13.7626 17.7626 13.4697 17.4697C13.2034 17.2034 12.7867 17.1792 12.4931 17.3971L12.409 17.4697L10.409 19.4697C10.1427 19.7359 10.1185 20.1526 10.3364 20.4462L10.409 20.5303L12.409 22.5303C12.7019 22.8232 13.1768 22.8232 13.4697 22.5303C13.7359 22.2641 13.7601 21.8474 13.5423 21.5538L13.4697 21.4697L12.7194 20.7208C17.2154 20.355 20.75 16.5903 20.75 12C20.75 9.23526 19.4582 6.68321 17.3017 5.03856C16.9724 4.78738 16.5017 4.85075 16.2506 5.18011ZM10.5303 1.46967C10.2374 1.76256 10.2374 2.23744 10.5303 2.53033L11.2796 3.27923C6.78409 3.6456 3.25 7.41008 3.25 12C3.25 14.6445 4.43126 17.0974 6.43081 18.7491C6.75016 19.0129 7.22289 18.9679 7.48669 18.6485C7.75048 18.3292 7.70545 17.8564 7.3861 17.5926C5.72793 16.2229 4.75 14.1922 4.75 12C4.75 8.26436 7.57532 5.18861 11.2057 4.79301L10.5303 5.46967C10.2374 5.76256 10.2374 6.23744 10.5303 6.53033C10.8232 6.82322 11.2981 6.82322 11.591 6.53033L13.591 4.53033C13.8839 4.23744 13.8839 3.76256 13.591 3.46967L11.591 1.46967C11.2981 1.17678 10.8232 1.17678 10.5303 1.46967Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconArrowSync, IconArrowSync as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconArrowSyncFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconArrowSyncFilled;
@@ -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 IconArrowSyncFilled = function IconArrowSyncFilled(_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: "M16.0518 5.0285C15.7169 5.46765 15.8013 6.09515 16.2405 6.43007C17.9675 7.74714 19 9.78703 19 12C19 15.4973 16.4352 18.3956 13.084 18.9166L13.7929 18.2071C14.1834 17.8166 14.1834 17.1834 13.7929 16.7929C13.4024 16.4024 12.7692 16.4024 12.3787 16.7929L9.87868 19.2929C9.48816 19.6834 9.48816 20.3166 9.87868 20.7071L12.3787 23.2071C12.7692 23.5976 13.4024 23.5976 13.7929 23.2071C14.1834 22.8166 14.1834 22.1834 13.7929 21.7929L12.9497 20.9505C17.4739 20.476 21 16.6498 21 12C21 9.15644 19.6712 6.53122 17.4533 4.83978C17.0142 4.50486 16.3867 4.58936 16.0518 5.0285ZM14.1213 3.29289L11.6213 0.792893C11.2308 0.402369 10.5976 0.402369 10.2071 0.792893C9.84662 1.15338 9.81889 1.72061 10.1239 2.1129L10.2071 2.20711L11.0503 3.04951C6.52615 3.52399 3 7.35021 3 12C3 14.7198 4.21515 17.2432 6.2716 18.9419C6.6974 19.2936 7.32771 19.2335 7.67943 18.8077C8.03116 18.3819 7.97111 17.7516 7.54531 17.3999C5.94404 16.0772 5 14.1168 5 12C5 8.50269 7.56475 5.60441 10.916 5.08343L10.2071 5.79289C9.81658 6.18342 9.81658 6.81658 10.2071 7.20711C10.5676 7.56759 11.1348 7.59532 11.5271 7.2903L11.6213 7.20711L14.1213 4.70711C14.4818 4.34662 14.5095 3.77939 14.2045 3.3871L14.1213 3.29289Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconArrowSyncFilled, IconArrowSyncFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconArrowUp: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconArrowUp;
@@ -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 IconArrowUp = function IconArrowUp(_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: "Direction=Up, Size=24, Theme=Regular"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M4.20938 10.7327C3.92369 11.0326 3.93523 11.5074 4.23516 11.7931C4.53509 12.0787 5.00982 12.0672 5.29551 11.7673L11.25 5.516V20.25C11.25 20.6642 11.5858 21 12 21C12.4142 21 12.75 20.6642 12.75 20.25V5.51565L18.7048 11.7673C18.9905 12.0672 19.4652 12.0787 19.7652 11.7931C20.0651 11.5074 20.0766 11.0326 19.791 10.7327L12.7243 3.31379C12.5632 3.14474 12.3578 3.04477 12.1443 3.01386C12.0976 3.00477 12.0494 3 12 3C11.9503 3 11.9017 3.00483 11.8547 3.01406C11.6417 3.04518 11.4368 3.14509 11.2761 3.31379L4.20938 10.7327Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconArrowUp, IconArrowUp as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconArrowUpFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconArrowUpFilled;
@@ -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 IconArrowUpFilled = function IconArrowUpFilled(_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: "Direction=Up, Size=24, Theme=Filled"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M4.28401 10.2954C3.89639 10.6888 3.90108 11.322 4.29449 11.7096C4.68789 12.0972 5.32104 12.0925 5.70866 11.6991L11 6.32882V19.9999C11 20.5522 11.4477 20.9999 12 20.9999C12.5523 20.9999 13 20.5522 13 19.9999V6.3353L18.2849 11.6991C18.6726 12.0925 19.3057 12.0972 19.6991 11.7096C20.0925 11.322 20.0972 10.6888 19.7096 10.2954L12.8872 3.37122C12.3976 2.87431 11.596 2.87431 11.1064 3.37122L4.28401 10.2954Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconArrowUpFilled, IconArrowUpFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconArrowUpLeft: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconArrowUpLeft;
@@ -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 IconArrowUpLeft = function IconArrowUpLeft(_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: "Direction=Up Left, Size=24, Theme=Regular"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M13.2456 3C13.6598 3 13.9956 3.33579 13.9956 3.75C13.9956 4.16421 13.6598 4.5 13.2456 4.5H5.5765L20.7763 19.6998C21.0748 19.9983 21.0748 20.4824 20.7763 20.781C20.4777 21.0796 19.9936 21.0796 19.695 20.781L4.49561 5.58158V13.25C4.49561 13.6642 4.15982 14 3.74561 14C3.33139 14 2.99561 13.6642 2.99561 13.25V3.75C2.99561 3.33579 3.33139 3 3.74561 3H13.2456Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconArrowUpLeft, IconArrowUpLeft as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconArrowUpLeftFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconArrowUpLeftFilled;
@@ -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 IconArrowUpLeftFilled = function IconArrowUpLeftFilled(_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: "Direction=Up Left, Size=24, Theme=Filled"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M13 3C13.5523 3 14 3.44772 14 4C14 4.55228 13.5523 5 13 5H6.41435L20.7071 19.2928C21.0976 19.6833 21.0976 20.3164 20.7071 20.707C20.3166 21.0975 19.6834 21.0975 19.2929 20.707L5 6.41408V13C5 13.5523 4.55228 14 4 14C3.44772 14 3 13.5523 3 13V4C3 3.44772 3.44772 3 4 3H13Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconArrowUpLeftFilled, IconArrowUpLeftFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconArrowUpRight: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconArrowUpRight;
@@ -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 IconArrowUpRight = function IconArrowUpRight(_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: "Direction=Up Right, Size=24, Theme=Regular"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M10.7502 3C10.336 3 10.0002 3.33579 10.0002 3.75C10.0002 4.16421 10.336 4.5 10.7502 4.5H18.4193L3.21954 19.6998C2.92096 19.9983 2.92096 20.4824 3.21954 20.781C3.51811 21.0796 4.0022 21.0796 4.30077 20.781L19.5002 5.58158V13.25C19.5002 13.6642 19.836 14 20.2502 14C20.6644 14 21.0002 13.6642 21.0002 13.25V3.75C21.0002 3.33579 20.6644 3 20.2502 3H10.7502Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconArrowUpRight, IconArrowUpRight as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconArrowUpRightFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconArrowUpRightFilled;
@@ -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 IconArrowUpRightFilled = function IconArrowUpRightFilled(_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: "Direction=Up Right, Size=24, Theme=Filled"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M11 3C10.4477 3 10 3.44772 10 4C10 4.55228 10.4477 5 11 5H17.5857L3.29289 19.2928C2.90237 19.6833 2.90237 20.3164 3.29289 20.707C3.68342 21.0975 4.31658 21.0975 4.70711 20.707L19 6.41408V13C19 13.5523 19.4477 14 20 14C20.5523 14 21 13.5523 21 13V4C21 3.44772 20.5523 3 20 3H11Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconArrowUpRightFilled, IconArrowUpRightFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconAttach: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconAttach;
@@ -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 IconAttach = function IconAttach(_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: "M11.7712 3.74358C14.1127 1.4 17.9117 1.4 20.2548 3.74314C22.5379 6.02621 22.5964 9.69142 20.4304 12.0454L20.2423 12.2427L11.4422 21.0409L11.4057 21.0712C9.94443 22.3879 7.69043 22.3432 6.28306 20.9358C4.96404 19.6168 4.84193 17.5541 5.91671 16.0974C5.94005 16.0521 5.9683 16.0083 6.00152 15.9672L6.05507 15.9075L6.14198 15.8198L6.28306 15.6719L6.28598 15.6748L13.7217 8.22047C13.9876 7.95385 14.4043 7.92909 14.6982 8.14656L14.7824 8.21906C15.049 8.48497 15.0738 8.9016 14.8563 9.19551L14.7838 9.27972L7.18917 16.8928C6.47153 17.7684 6.52141 19.0627 7.33881 19.8801C8.16787 20.7091 9.48752 20.7486 10.3633 19.9985L19.196 11.1681C20.9515 9.41041 20.9515 6.56116 19.1941 4.8038C17.4917 3.10136 14.7646 3.04816 12.9981 4.6442L12.8302 4.8038L12.8176 4.81812L3.28131 14.3544C2.98841 14.6473 2.51354 14.6473 2.22065 14.3544C1.95438 14.0882 1.93017 13.6715 2.14803 13.3779L2.22065 13.2938L11.7695 3.74314L11.7712 3.74358Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconAttach, IconAttach as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconAttachFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconAttachFilled;
@@ -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 IconAttachFilled = function IconAttachFilled(_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: "M15.9999 2C19.3136 2 21.9999 4.68629 21.9999 8C21.9999 9.5373 21.4178 10.9843 20.396 12.0835L20.2061 12.2784L11.479 21.0053L11.4259 21.0548L11.3702 21.0997C10.7009 21.6759 9.84594 22 8.9429 22C6.88779 22 5.22179 20.334 5.22179 18.2789C5.22179 17.3775 5.54481 16.5248 6.11735 15.8574L6.26564 15.6945L6.28072 15.6826L13.5717 8.37879C13.9619 7.98793 14.5951 7.98737 14.986 8.37755C15.3768 8.76774 15.3774 9.4009 14.9872 9.79177L7.69618 17.0956L7.68524 17.1039C7.38894 17.4208 7.22179 17.8354 7.22179 18.2789C7.22179 19.2294 7.99236 20 8.9429 20C9.32185 20 9.67979 19.8781 9.97412 19.6571L10.0962 19.5564L10.097 19.558L18.7994 10.8571L18.958 10.6927C19.6231 9.96299 19.9999 9.0125 19.9999 8C19.9999 5.79086 18.2091 4 15.9999 4C14.9383 4 13.9453 4.4146 13.2048 5.13858L13.0501 5.29842L13.0316 5.31139L3.70629 14.6403C3.31585 15.0309 2.68269 15.031 2.29207 14.6406C1.90146 14.2501 1.90132 13.617 2.29176 13.2264L11.6007 3.91324L11.6473 3.87021C12.7712 2.68577 14.3316 2 15.9999 2Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconAttachFilled, IconAttachFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconBeach: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconBeach;
@@ -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 IconBeach = function IconBeach(_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: "M9.35048 5.32144C11.2144 2.09296 15.3427 0.986807 18.5712 2.85077C21.7996 4.71473 22.9058 8.84296 21.0418 12.0714L20.7918 12.5045C20.5847 12.8632 20.126 12.9861 19.7673 12.779L15.2086 10.147L12.8357 14.2995C14.7406 14.525 16.4252 15.5093 17.6787 16.9141C17.1534 16.9994 16.6869 17.2909 16.3793 17.7161C15.2141 16.5078 13.6661 15.7503 12 15.7503C10.3339 15.7503 8.78594 16.5078 7.62074 17.7161C7.31271 17.2903 6.84569 16.9992 6.32132 16.914C7.56154 15.5241 9.22374 14.5459 11.1038 14.3069L13.9095 9.39697L9.375 6.77897C9.01628 6.57186 8.89337 6.11317 9.10048 5.75445L9.35048 5.32144ZM10.7796 5.85786L12.7456 6.99293C13.2797 6.17401 13.8198 5.49998 14.4891 4.89141C15.0146 4.41354 15.6067 3.98805 16.3152 3.56564C14.22 3.10815 11.9869 3.97619 10.7796 5.85786ZM16.5896 9.21228C17.1442 8.21522 17.4101 7.42287 17.5058 6.65729C17.5834 6.03611 17.5534 5.40152 17.4418 4.64661C16.6236 5.10695 16.0124 5.53366 15.4982 6.00122C14.9653 6.48581 14.5165 7.03232 14.0468 7.74416L16.5896 9.21228ZM17.8888 9.96236L19.8627 11.102C20.9059 9.08223 20.5111 6.66785 19.0063 5.08258C19.063 5.68104 19.0673 6.25857 18.9942 6.84334C18.868 7.85306 18.518 8.83567 17.8888 9.96236ZM6.71405 18.6587C6.61104 18.3382 6.30703 18.1256 5.97059 18.1388C5.63415 18.152 5.34774 18.3878 5.27018 18.7154C5.05935 19.606 4.66338 20.0789 4.22869 20.3495C3.76977 20.6351 3.1784 20.7502 2.5 20.7502C2.08579 20.7502 1.75 21.086 1.75 21.5002C1.75 21.9145 2.08579 22.2502 2.5 22.2502C3.3216 22.2502 4.23023 22.1154 5.02131 21.623C5.4339 21.3662 5.79237 21.026 6.08332 20.5943C7.63479 22.4601 10.4928 22.4507 12 20.5653C13.5336 22.4838 16.4661 22.4599 17.9973 20.4942C18.8448 21.6033 20.1675 22.2502 21.5 22.2502C21.9142 22.2502 22.25 21.9145 22.25 21.5002C22.25 21.086 21.9142 20.7502 21.5 20.7502C20.3169 20.7502 19.1155 19.9531 18.7163 18.666C18.6194 18.3535 18.331 18.1399 18.0038 18.1382C17.6766 18.1365 17.3861 18.3472 17.286 18.6587C16.502 21.0984 13.4764 21.0578 12.7115 18.7631C12.6094 18.4568 12.3228 18.2502 12 18.2502C11.6772 18.2502 11.3906 18.4568 11.2885 18.7631C10.5236 21.0578 7.49798 21.0984 6.71405 18.6587Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconBeach, IconBeach as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconBeachFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconBeachFilled;
@@ -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 IconBeachFilled = function IconBeachFilled(_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: "M18.5712 2.85077C15.3427 0.986807 11.2144 2.09296 9.35048 5.32144L9.10048 5.75445C8.89337 6.11317 9.01628 6.57186 9.375 6.77897L13.9095 9.39697L11.1038 14.3069C9.22371 14.5459 7.5615 15.5242 6.32127 16.9141C7.05178 17.0327 7.67099 17.5509 7.90411 18.2764C8.13947 19.0089 8.62847 19.232 9.02241 19.2364C9.42476 19.2409 9.88419 19.0232 10.1026 18.3679C10.3749 17.5512 11.1391 17.0003 12 17.0003C12.8609 17.0003 13.6251 17.5512 13.8974 18.3679C14.1158 19.0232 14.5752 19.2409 14.9776 19.2364C15.3715 19.232 15.8605 19.0089 16.0959 18.2764C16.3285 17.5526 16.9464 17.033 17.6788 16.9141C16.4253 15.5093 14.7407 14.525 12.8357 14.2995L15.2086 10.147L19.7673 12.779C20.126 12.9861 20.5847 12.8632 20.7918 12.5045L21.0418 12.0714C22.9058 8.84296 21.7996 4.71473 18.5712 2.85077ZM6.71405 18.6587C6.61104 18.3382 6.30703 18.1256 5.97059 18.1388C5.63415 18.152 5.34774 18.3878 5.27018 18.7154C5.05935 19.606 4.66338 20.0789 4.22869 20.3495C3.76977 20.6351 3.1784 20.7502 2.5 20.7502C2.08579 20.7502 1.75 21.086 1.75 21.5002C1.75 21.9145 2.08579 22.2502 2.5 22.2502C3.3216 22.2502 4.23023 22.1154 5.02131 21.623C5.4339 21.3662 5.79237 21.026 6.08332 20.5943C7.63479 22.4601 10.4928 22.4507 12 20.5653C13.5336 22.4838 16.4661 22.4599 17.9973 20.4942C18.8448 21.6033 20.1675 22.2502 21.5 22.2502C21.9142 22.2502 22.25 21.9145 22.25 21.5002C22.25 21.086 21.9142 20.7502 21.5 20.7502C20.3169 20.7502 19.1155 19.9531 18.7163 18.666C18.6194 18.3535 18.331 18.1399 18.0038 18.1382C17.6766 18.1365 17.3861 18.3472 17.286 18.6587C16.502 21.0984 13.4764 21.0578 12.7115 18.7631C12.6094 18.4568 12.3228 18.2502 12 18.2502C11.6772 18.2502 11.3906 18.4568 11.2885 18.7631C10.5236 21.0578 7.49798 21.0984 6.71405 18.6587Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconBeachFilled, IconBeachFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconBed: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconBed;
@@ -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 IconBed = function IconBed(_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: "M6.75 4H17.25C18.7125 4 19.9084 5.1417 19.995 6.58248L20 6.75L20.0006 10.1037C21.0968 10.414 21.9147 11.3872 21.9937 12.5628L22 12.75V20.25C22 20.6642 21.6642 21 21.25 21C20.8703 21 20.5565 20.7178 20.5068 20.3518L20.5 20.25V18H3.5V20.25C3.5 20.6297 3.21785 20.9435 2.85177 20.9932L2.75 21C2.3703 21 2.05651 20.7178 2.00685 20.3518L2 20.25V12.75C2 11.4911 2.84596 10.4297 4.00044 10.1034L4 6.75C4 5.28747 5.1417 4.0916 6.58248 4.00502L6.75 4ZM19.25 11.5H4.75C4.10279 11.5 3.57047 11.9919 3.50645 12.6222L3.5 12.75V16.5H20.5V12.75C20.5 12.1028 20.0081 11.5705 19.3778 11.5065L19.25 11.5ZM17.25 5.5H6.75C6.10279 5.5 5.57047 5.99187 5.50645 6.62219L5.5 6.75V10H7C7 9.44772 7.44772 9 8 9H10C10.5128 9 10.9355 9.38604 10.9933 9.88338L11 10H13C13 9.44772 13.4477 9 14 9H16C16.5128 9 16.9355 9.38604 16.9933 9.88338L17 10H18.5V6.75C18.5 6.10279 18.0081 5.57047 17.3778 5.50645L17.25 5.5Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconBed, IconBed as default };