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 IconTimerFilled = function IconTimerFilled(_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: "M12 5C16.6944 5 20.5 8.80558 20.5 13.5C20.5 18.1944 16.6944 22 12 22C7.30558 22 3.5 18.1944 3.5 13.5C3.5 8.80558 7.30558 5 12 5ZM12 8C11.6203 8 11.3065 8.28215 11.2568 8.64823L11.25 8.75V13.25L11.2568 13.3518C11.3065 13.7178 11.6203 14 12 14C12.3797 14 12.6935 13.7178 12.7432 13.3518L12.75 13.25V8.75L12.7432 8.64823C12.6935 8.28215 12.3797 8 12 8ZM19.1704 5.1226L19.2517 5.18424L20.4008 6.18424C20.7132 6.45617 20.7461 6.9299 20.4742 7.24236C20.2249 7.52878 19.8061 7.58026 19.4973 7.3774L19.416 7.31576L18.267 6.31576C17.9545 6.04383 17.9217 5.5701 18.1936 5.25764C18.4428 4.97122 18.8617 4.91974 19.1704 5.1226ZM14.25 2.5C14.6642 2.5 15 2.83579 15 3.25C15 3.6297 14.7178 3.94349 14.3518 3.99315L14.25 4H9.75C9.33579 4 9 3.66421 9 3.25C9 2.8703 9.28215 2.55651 9.64823 2.50685L9.75 2.5H14.25Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconTimerFilled, IconTimerFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTin: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTin;
@@ -0,0 +1,39 @@
1
+ import { _ as _defineProperty } from '../../defineProperty-7db32082.js';
2
+ import React from 'react';
3
+ import classNames from 'classnames';
4
+ import '../../typeof-ecd92d7f.js';
5
+
6
+ var IconTin = function IconTin(_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: "M19 20C19 20.275 18.776 20.5 18.5 20.5H18.2418C17.8221 20.5 17.4895 20.8559 17.4962 21.2755C17.5025 21.6758 17.8245 22 18.2248 22H18.5C19.604 22 20.5 21.104 20.5 20V9.828C20.5 9.298 20.289 8.789 19.914 8.414L14.085 2.586C14.07 2.57105 14.0531 2.55808 14.0363 2.5452C14.0238 2.53567 14.0115 2.5262 14 2.516C13.929 2.452 13.859 2.389 13.781 2.336C13.7557 2.31894 13.7281 2.30548 13.7005 2.29207C13.6845 2.28426 13.6685 2.27647 13.653 2.268C13.6363 2.25859 13.6197 2.24897 13.603 2.23933C13.5488 2.20797 13.4944 2.17648 13.437 2.152C13.24 2.07 13.028 2.029 12.813 2.014C12.7933 2.01274 12.7738 2.01008 12.7542 2.00741C12.7271 2.00371 12.6999 2 12.672 2H6.5C5.396 2 4.5 2.896 4.5 4V13.8773C4.5 14.2916 4.83579 14.6273 5.25 14.6273C5.66421 14.6273 6 14.2916 6 13.8773V4C6 3.725 6.224 3.5 6.5 3.5H12.5V8C12.5 9.104 13.396 10 14.5 10H19V20ZM14 4.621L17.878 8.5H14.5C14.224 8.5 14 8.275 14 8V4.621Z",
26
+ fill: "#555555"
27
+ }), /*#__PURE__*/React.createElement("path", {
28
+ d: "M9.91562 16.3351V21.8611C9.91562 22.2841 9.57362 22.6261 9.15962 22.6261C8.73662 22.6261 8.40362 22.2841 8.40362 21.8611V16.3351C8.40362 15.9121 8.73662 15.5791 9.15962 15.5791C9.57362 15.5791 9.91562 15.9121 9.91562 16.3351Z",
29
+ fill: "#555555"
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ d: "M7.43498 16.9651H6.08498V21.8611C6.08498 22.2841 5.75198 22.6171 5.32898 22.6171C4.91498 22.6171 4.57298 22.2841 4.57298 21.8611V16.9651H3.21398C2.86298 16.9651 2.58398 16.6771 2.58398 16.3351C2.58398 15.9841 2.86298 15.7051 3.21398 15.7051H7.43498C7.78598 15.7051 8.06498 15.9841 8.06498 16.3351C8.06498 16.6771 7.78598 16.9651 7.43498 16.9651Z",
32
+ fill: "#555555"
33
+ }), /*#__PURE__*/React.createElement("path", {
34
+ d: "M12.2639 18.1081L14.7839 22.0951C14.9999 22.4191 15.2339 22.6171 15.6299 22.6171C16.1789 22.6171 16.4219 22.2211 16.4219 21.8611V16.3351C16.4219 15.9121 16.1249 15.5791 15.7109 15.5791C15.2879 15.5791 15.0179 15.9121 15.0179 16.3351V18.0001L15.0269 20.0071L12.5069 16.1011C12.2909 15.7771 12.0479 15.5791 11.6519 15.5791C11.0939 15.5791 10.8689 15.9751 10.8689 16.3351V21.8611C10.8689 22.2841 11.1389 22.6171 11.5619 22.6171C11.9849 22.6171 12.2819 22.2841 12.2819 21.8611V20.0431L12.2639 18.1081Z",
35
+ fill: "#555555"
36
+ }));
37
+ };
38
+
39
+ export { IconTin, IconTin as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTinFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTinFilled;
@@ -0,0 +1,42 @@
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 IconTinFilled = function IconTinFilled(_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.93806 16.804H5.42606V21.97C5.42606 22.321 5.14706 22.609 4.78706 22.609C4.43606 22.609 4.14806 22.321 4.14806 21.97V16.804H2.60906C2.30306 16.804 2.06006 16.552 2.06006 16.255C2.06006 15.958 2.30306 15.706 2.60906 15.706H6.93806C7.23506 15.706 7.47806 15.958 7.47806 16.255C7.47806 16.552 7.23506 16.804 6.93806 16.804Z",
26
+ fill: "#222222"
27
+ }), /*#__PURE__*/React.createElement("path", {
28
+ d: "M9.26775 16.219V21.97C9.26775 22.33 8.97975 22.609 8.62875 22.609C8.26875 22.609 7.98975 22.33 7.98975 21.97V16.219C7.98975 15.868 8.26875 15.58 8.62875 15.58C8.97975 15.58 9.26775 15.868 9.26775 16.219Z",
29
+ fill: "#222222"
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ d: "M14.3739 22.141L11.6109 17.776L11.6289 19.927V21.97C11.6289 22.321 11.3679 22.609 11.0169 22.609C10.6569 22.609 10.4319 22.321 10.4319 21.97V16.219C10.4319 15.904 10.6479 15.58 11.0799 15.58C11.4219 15.58 11.6289 15.742 11.8179 16.039L14.5809 20.35L14.5719 18.091V16.219C14.5719 15.868 14.8059 15.58 15.1569 15.58C15.5169 15.58 15.7689 15.868 15.7689 16.219V21.97C15.7689 22.285 15.5439 22.609 15.1029 22.609C14.7609 22.609 14.5719 22.438 14.3739 22.141Z",
32
+ fill: "#222222"
33
+ }), /*#__PURE__*/React.createElement("path", {
34
+ d: "M12 8V2H6C4.89543 2 4 2.89543 4 4V14.7061H6.93806C7.20397 14.7061 7.45111 14.7734 7.66615 14.8904C7.93444 14.6957 8.26577 14.5801 8.62875 14.5801C9.10985 14.5801 9.54342 14.7888 9.84361 15.1204L9.8496 15.1136C10.1558 14.7724 10.5929 14.5801 11.0799 14.5801C11.4227 14.5801 11.7558 14.6655 12.0555 14.8625C12.3367 15.0473 12.5263 15.2899 12.6607 15.5008L12.6616 15.5022L13.5719 16.9226V16.2191C13.5719 15.4358 14.1408 14.5801 15.1569 14.5801C16.1343 14.5801 16.7689 15.3832 16.7689 16.2191V21.9701C16.7689 21.98 16.7688 21.99 16.7687 22H18C19.1046 22 20 21.1046 20 20V10H14C12.8954 10 12 9.10457 12 8Z",
35
+ fill: "#222222"
36
+ }), /*#__PURE__*/React.createElement("path", {
37
+ d: "M13.5 8V2.5L19.5 8.5H14C13.7239 8.5 13.5 8.27614 13.5 8Z",
38
+ fill: "#222222"
39
+ }));
40
+ };
41
+
42
+ export { IconTinFilled, IconTinFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTv: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTv;
@@ -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 IconTv = function IconTv(_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: "M4.75 4C3.23122 4 2 5.23122 2 6.75V15.25C2 16.7688 3.23122 18 4.75 18H19.25C20.7688 18 22 16.7688 22 15.25V6.75C22 5.23122 20.7688 4 19.25 4H4.75ZM3.5 6.75C3.5 6.05964 4.05964 5.5 4.75 5.5H19.25C19.9404 5.5 20.5 6.05964 20.5 6.75V15.25C20.5 15.9404 19.9404 16.5 19.25 16.5H4.75C4.05964 16.5 3.5 15.9404 3.5 15.25V6.75ZM5.75 19.5C5.33579 19.5 5 19.8358 5 20.25C5 20.6642 5.33579 21 5.75 21H18.25C18.6642 21 19 20.6642 19 20.25C19 19.8358 18.6642 19.5 18.25 19.5H5.75Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconTv, IconTv as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTvFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTvFilled;
@@ -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 IconTvFilled = function IconTvFilled(_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: "M4.75 4C3.23122 4 2 5.23122 2 6.75V15.25C2 16.7688 3.23122 18 4.75 18H19.25C20.7688 18 22 16.7688 22 15.25V6.75C22 5.23122 20.7688 4 19.25 4H4.75ZM5 20.25C5 19.8358 5.33579 19.5 5.75 19.5H18.25C18.6642 19.5 19 19.8358 19 20.25C19 20.6642 18.6642 21 18.25 21H5.75C5.33579 21 5 20.6642 5 20.25Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconTvFilled, IconTvFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTwitter: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTwitter;
@@ -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 IconTwitter = function IconTwitter(_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: "Company=Twitter, Style=Gray, Background=None"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Vector",
28
+ d: "M7.55016 21.75C16.6045 21.75 21.5583 14.2467 21.5583 7.74186C21.5583 7.53092 21.5536 7.3153 21.5442 7.10436C22.5079 6.40746 23.3395 5.54425 24 4.5553C23.1025 4.9546 22.1496 5.21538 21.1739 5.32874C22.2013 4.71291 22.9705 3.74547 23.3391 2.60577C22.3726 3.17856 21.3156 3.58261 20.2134 3.80061C19.4708 3.01156 18.489 2.48912 17.4197 2.31405C16.3504 2.13899 15.2532 2.32105 14.2977 2.8321C13.3423 3.34314 12.5818 4.15471 12.1338 5.14131C11.6859 6.12792 11.5754 7.23462 11.8195 8.2903C9.86249 8.19209 7.94794 7.6837 6.19998 6.7981C4.45203 5.91249 2.90969 4.66944 1.67297 3.14952C1.0444 4.23324 0.852057 5.51565 1.13503 6.73609C1.418 7.95654 2.15506 9.02345 3.19641 9.71999C2.41463 9.69517 1.64998 9.48468 0.965625 9.10592V9.16686C0.964925 10.3041 1.3581 11.4066 2.07831 12.2868C2.79852 13.167 3.80132 13.7706 4.91625 13.995C4.19206 14.1931 3.43198 14.222 2.69484 14.0794C3.00945 15.0574 3.62157 15.9129 4.44577 16.5263C5.26997 17.1398 6.26512 17.4806 7.29234 17.5012C5.54842 18.8711 3.39417 19.6141 1.17656 19.6106C0.783287 19.61 0.390399 19.5859 0 19.5384C2.25286 20.9837 4.87353 21.7514 7.55016 21.75Z",
29
+ fill: "#555555"
30
+ })));
31
+ };
32
+
33
+ export { IconTwitter, IconTwitter as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconUndo: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconUndo;
@@ -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 IconUndo = function IconUndo(_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: "M4.75 2C5.1297 2 5.44349 2.28215 5.49315 2.64823L5.5 2.75V8.44L10.0743 3.88014C12.5163 1.43819 16.4385 1.37863 18.9526 3.70146L19.1385 3.88014C21.6415 6.38313 21.6415 10.4413 19.1385 12.9443L10.2933 21.7835C10.0003 22.0762 9.52558 22.0759 9.23269 21.783C8.93979 21.4901 8.94013 21.0151 9.23315 20.7223L18.0778 11.8836C19.995 9.96641 19.995 6.85801 18.0778 4.9408C16.2187 3.08169 13.2395 3.02535 11.3118 4.77248L11.1342 4.94156L6.562 9.5L12.25 9.50018C12.6297 9.50018 12.9435 9.78234 12.9932 10.1484L13 10.2502C13 10.6299 12.7178 10.9437 12.3518 10.9933L12.25 11.0002H4.75C4.3703 11.0002 4.05651 10.718 4.00685 10.352L4 10.2502V2.75C4 2.33579 4.33579 2 4.75 2Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconUndo, IconUndo as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconUndoFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconUndoFilled;
@@ -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 IconUndoFilled = function IconUndoFilled(_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: "M6.90735 6.68009L9.64108 3.9514C12.2423 1.35018 16.4597 1.35018 19.0609 3.9514C21.6621 6.55262 21.6621 10.77 19.0609 13.3713L10.7225 21.7082C10.3319 22.0987 9.69877 22.0985 9.30825 21.708C8.91772 21.3175 8.91789 20.6842 9.30848 20.2938L17.6467 11.957C19.4669 10.1369 19.4669 7.18579 17.6467 5.36562C15.8834 3.60233 13.0588 3.54722 11.2286 5.2009L11.0546 5.36627L7.414 8.99949L12 9.00002C12.5128 9.00002 12.9355 9.38606 12.9933 9.8834L13 10C13 10.5129 12.614 10.9355 12.1166 10.9933L12 11L4.94043 10.9983L4.84501 10.9881L4.73315 10.964L4.60163 10.9175L4.51971 10.8773L4.41781 10.8132C4.37406 10.7819 4.33212 10.7464 4.29267 10.7069L4.20096 10.6015L4.12658 10.4875L4.08093 10.3948L4.0425 10.2891L4.027 10.2318L4.01127 10.1502L4.00394 10.089L4 10V3.00284C4 2.45055 4.44772 2.00284 5 2.00284C5.51284 2.00284 5.93551 2.38888 5.99327 2.88622L6 3.00284V7.58649L9.64108 3.9514L6.90735 6.68009Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconUndoFilled, IconUndoFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconUnitsEmployee: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconUnitsEmployee;
@@ -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 IconUnitsEmployee = function IconUnitsEmployee(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("path", {
25
+ d: "M15.1641 2.10156C15.0273 2.17188 14.918 2.26172 14.832 2.38281C14.707 2.56641 14.707 2.57031 14.6875 3.15234L14.668 3.73828L13.4883 3.75781L12.3047 3.77734L12.1992 3.88672L12.0898 3.99219L12.0781 7.78125L12.0703 11.5703H11.1914H10.3125V11.043C10.3125 10.3398 10.2227 10.1328 9.82422 9.91797L9.66797 9.83203H6.44531C3.85547 9.83203 3.19531 9.84375 3.07422 9.88281C2.85938 9.96094 2.69531 10.1133 2.59375 10.3398C2.5 10.5352 2.5 10.543 2.5 12C2.5 13.457 2.5 13.4648 2.59375 13.6602C2.69531 13.8867 2.85938 14.0391 3.07422 14.1172C3.19531 14.1562 3.85547 14.168 6.44531 14.168H9.66797L9.82422 14.082C10.2227 13.8672 10.3125 13.6602 10.3125 12.957V12.4297H11.1914H12.0703L12.0781 16.2188L12.0898 20.0078L12.1992 20.1133L12.3047 20.2227L13.4883 20.2422L14.668 20.2617L14.6875 20.8477C14.707 21.4297 14.707 21.4336 14.832 21.6172C14.918 21.7383 15.0273 21.8281 15.1641 21.8984L15.3672 22H18.5508C20.7617 22 21.7852 21.9844 21.8945 21.957C22.1094 21.8984 22.3984 21.6016 22.457 21.3867C22.4883 21.2734 22.5 20.7578 22.4922 19.7422L22.4805 18.2617L22.3633 18.0742C22.2773 17.9336 22.1875 17.8516 22.0352 17.7734L21.8242 17.6641L18.5352 17.6719L15.25 17.6836L15.0859 17.793C14.9961 17.8516 14.875 17.9727 14.8164 18.0625C14.7109 18.2188 14.707 18.2461 14.6953 18.8047L14.6836 19.3828H13.8047H12.9297V15.9062V12.4297H13.8086H14.6875V12.957C14.6875 13.6602 14.7773 13.8672 15.1758 14.082L15.332 14.168H18.5547C21.1445 14.168 21.8047 14.1562 21.9258 14.1172C22.1406 14.0391 22.3047 13.8867 22.4062 13.6602C22.5 13.4648 22.5 13.457 22.5 12C22.5 10.543 22.5 10.5352 22.4062 10.3398C22.3047 10.1133 22.1406 9.96094 21.9258 9.88281C21.8047 9.84375 21.1445 9.83203 18.5547 9.83203H15.332L15.1758 9.91797C14.7773 10.1328 14.6875 10.3398 14.6875 11.043V11.5703H13.8086H12.9297V8.09375V4.61719H13.8047H14.6836L14.6953 5.19531C14.707 5.75391 14.7109 5.78125 14.8164 5.9375C14.875 6.02734 14.9961 6.14844 15.0859 6.20703L15.25 6.31641L18.5352 6.32812L21.8242 6.33594L22.0352 6.22656C22.1875 6.14844 22.2773 6.06641 22.3633 5.92578L22.4805 5.73828L22.4922 4.25781C22.5 3.24219 22.4883 2.72656 22.457 2.61328C22.3984 2.39844 22.1094 2.10156 21.8945 2.04297C21.7852 2.01562 20.7617 2 18.5508 2H15.3672L15.1641 2.10156ZM21.6406 4.16797V5.47656H18.5938H15.5469V4.16797V2.85938H18.5938H21.6406V4.16797ZM9.45312 12V13.2891H6.40625H3.35938V12V10.7109H6.40625H9.45312V12ZM21.6406 12V13.2891H18.5938H15.5469V12V10.7109H18.5938H21.6406V12ZM21.6406 19.832V21.1406H18.5938H15.5469V19.832V18.5234H18.5938H21.6406V19.832Z",
26
+ fill: "#555555"
27
+ }));
28
+ };
29
+
30
+ export { IconUnitsEmployee, IconUnitsEmployee as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconUsd: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconUsd;
@@ -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 IconUsd = function IconUsd(_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: "M12.7699 3.13324C12.7699 2.70841 12.4255 2.36401 12.0007 2.36401C11.5758 2.36401 11.2314 2.70841 11.2314 3.13324V5.44116H9.94869C8.92863 5.44116 7.95035 5.84638 7.22905 6.56767C6.50776 7.28897 6.10254 8.26725 6.10254 9.28732C6.10254 10.3074 6.50776 11.2857 7.22905 12.007C7.95035 12.7283 8.92863 13.1335 9.94869 13.1335H14.0513C14.6633 13.1335 15.2503 13.3766 15.683 13.8094C16.1158 14.2422 16.3589 14.8291 16.3589 15.4412C16.3589 16.0532 16.1158 16.6402 15.683 17.0729C15.2503 17.5057 14.6633 17.7489 14.0513 17.7489H12.0195C12.0132 17.7487 12.007 17.7486 12.0007 17.7486C11.9944 17.7486 11.9881 17.7487 11.9819 17.7489H9.96648C9.51179 17.7262 9.07383 17.5695 8.70782 17.2984C8.33768 17.0242 8.05807 16.6455 7.90495 16.2111C7.76374 15.8104 7.32445 15.6001 6.92377 15.7413C6.52309 15.8825 6.31276 16.3218 6.45397 16.7225C6.70916 17.4466 7.17519 18.0777 7.79209 18.5346C8.40898 18.9916 9.14852 19.2535 9.91551 19.2866C9.92656 19.2871 9.93763 19.2873 9.94869 19.2873H11.2314V21.5948C11.2314 22.0196 11.5758 22.364 12.0007 22.364C12.4255 22.364 12.7699 22.0196 12.7699 21.5948V19.2873H14.0513C15.0713 19.2873 16.0496 18.8821 16.7709 18.1608C17.4922 17.4395 17.8974 16.4612 17.8974 15.4412C17.8974 14.4211 17.4922 13.4428 16.7709 12.7215C16.0496 12.0002 15.0713 11.595 14.0513 11.595H9.94869C9.33665 11.595 8.74968 11.3519 8.31691 10.9191C7.88413 10.4863 7.641 9.89935 7.641 9.28732C7.641 8.67528 7.88413 8.08831 8.31691 7.65553C8.74968 7.22275 9.33666 6.97962 9.94869 6.97962H14.0335C14.4882 7.0023 14.9261 7.15897 15.2921 7.43009C15.6623 7.70427 15.9419 8.08294 16.095 8.51737C16.2362 8.91805 16.6755 9.12838 17.0762 8.98717C17.4769 8.84595 17.6872 8.40666 17.546 8.00598C17.2908 7.28193 16.8248 6.65081 16.2079 6.19385C15.591 5.73689 14.8514 5.475 14.0844 5.44188C14.0734 5.4414 14.0623 5.44116 14.0513 5.44116H12.7699V3.13324Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconUsd, IconUsd as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconUsdFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconUsdFilled;
@@ -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 IconUsdFilled = function IconUsdFilled(_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: "M12.7699 3.13324C12.7699 2.70841 12.4255 2.36401 12.0007 2.36401C11.5758 2.36401 11.2314 2.70841 11.2314 3.13324V5.44116H9.94869C8.92863 5.44116 7.95035 5.84638 7.22905 6.56767C6.50776 7.28897 6.10254 8.26725 6.10254 9.28732C6.10254 10.3074 6.50776 11.2857 7.22905 12.007C7.95035 12.7283 8.92863 13.1335 9.94869 13.1335H14.0513C14.6633 13.1335 15.2503 13.3766 15.683 13.8094C16.1158 14.2422 16.3589 14.8291 16.3589 15.4412C16.3589 16.0532 16.1158 16.6402 15.683 17.0729C15.2503 17.5057 14.6633 17.7489 14.0513 17.7489H12.0195C12.0132 17.7487 12.007 17.7486 12.0007 17.7486C11.9944 17.7486 11.9881 17.7487 11.9819 17.7489H9.96648C9.51179 17.7262 9.07383 17.5695 8.70782 17.2984C8.33768 17.0242 8.05807 16.6455 7.90495 16.2111C7.76374 15.8104 7.32445 15.6001 6.92377 15.7413C6.52309 15.8825 6.31276 16.3218 6.45397 16.7225C6.70916 17.4466 7.17519 18.0777 7.79209 18.5346C8.40898 18.9916 9.14852 19.2535 9.91551 19.2866C9.92656 19.2871 9.93763 19.2873 9.94869 19.2873H11.2314V21.5948C11.2314 22.0196 11.5758 22.364 12.0007 22.364C12.4255 22.364 12.7699 22.0196 12.7699 21.5948V19.2873H14.0513C15.0713 19.2873 16.0496 18.8821 16.7709 18.1608C17.4922 17.4395 17.8974 16.4612 17.8974 15.4412C17.8974 14.4211 17.4922 13.4428 16.7709 12.7215C16.0496 12.0002 15.0713 11.595 14.0513 11.595H9.94869C9.33665 11.595 8.74968 11.3519 8.31691 10.9191C7.88413 10.4863 7.641 9.89935 7.641 9.28732C7.641 8.67528 7.88413 8.08831 8.31691 7.65553C8.74968 7.22275 9.33666 6.97962 9.94869 6.97962H14.0335C14.4882 7.0023 14.9261 7.15897 15.2921 7.43009C15.6623 7.70427 15.9419 8.08294 16.095 8.51737C16.2362 8.91805 16.6755 9.12838 17.0762 8.98717C17.4769 8.84595 17.6872 8.40666 17.546 8.00598C17.2908 7.28193 16.8248 6.65081 16.2079 6.19385C15.591 5.73689 14.8514 5.475 14.0844 5.44188C14.0734 5.4414 14.0623 5.44116 14.0513 5.44116H12.7699V3.13324Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconUsdFilled, IconUsdFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconVehicleTruckProfile: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconVehicleTruckProfile;
@@ -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 IconVehicleTruckProfile = function IconVehicleTruckProfile(_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: "M4.25 3C3.00736 3 2 4.00736 2 5.25V17.25C2 18.4218 2.89576 19.3844 4.03987 19.4903C4.27391 20.9139 5.51012 22 7 22C8.4865 22 9.72048 20.9189 9.95852 19.5H12.0415C12.2795 20.9189 13.5135 22 15 22C16.4865 22 17.7205 20.9189 17.9585 19.5H19.75C20.9926 19.5 22 18.4926 22 17.25V11.8373C22 11.5042 21.926 11.1752 21.7834 10.8741L20.0842 7.28681C19.7119 6.501 18.9203 6 18.0508 6H16.5V5.25C16.5 4.00736 15.4926 3 14.25 3H4.25ZM17.8293 18C17.5897 17.3222 17.1136 16.7563 16.5 16.4013V12.5L20.5 12.5V15.5001H19.25C18.8358 15.5001 18.5 15.8358 18.5 16.2501C18.5 16.6643 18.8358 17.0001 19.25 17.0001H20.5V17.25C20.5 17.6642 20.1642 18 19.75 18H17.8293ZM15 16C13.6938 16 12.5825 16.8348 12.1707 18H9.82929C9.41746 16.8348 8.30622 16 7 16C5.69527 16 4.58509 16.8329 4.17212 17.996C3.7945 17.957 3.5 17.6379 3.5 17.25V5.25C3.5 4.83579 3.83579 4.5 4.25 4.5H14.25C14.6642 4.5 15 4.83579 15 5.25V16ZM16.5 7.5H18.0508C18.3406 7.5 18.6045 7.667 18.7286 7.92894L20.1833 11L16.5 11V7.5ZM7 20.5C6.17157 20.5 5.5 19.8284 5.5 19C5.5 18.1716 6.17157 17.5 7 17.5C7.82843 17.5 8.5 18.1716 8.5 19C8.5 19.8284 7.82843 20.5 7 20.5ZM16.5 19C16.5 19.8284 15.8284 20.5 15 20.5C14.1716 20.5 13.5 19.8284 13.5 19C13.5 18.1716 14.1716 17.5 15 17.5C15.8284 17.5 16.5 18.1716 16.5 19Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconVehicleTruckProfile, IconVehicleTruckProfile as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconVehicleTruckProfileFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconVehicleTruckProfileFilled;
@@ -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 IconVehicleTruckProfileFilled = function IconVehicleTruckProfileFilled(_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: "M2 5.25C2 4.00736 3.00736 3 4.25 3H14.25C15.4926 3 16.5 4.00736 16.5 5.25V6H18.0508C18.9203 6 19.7119 6.501 20.0842 7.28681L21.7834 10.8741C21.926 11.1752 22 11.5042 22 11.8373V17.25C22 18.4926 20.9926 19.5 19.75 19.5H17.9585C17.7205 20.9189 16.4865 22 15 22C13.5135 22 12.2795 20.9189 12.0415 19.5H9.95852C9.72048 20.9189 8.4865 22 7 22C5.51012 22 4.27391 20.9139 4.03987 19.4903C2.89576 19.3844 2 18.4218 2 17.25V5.25ZM20.5 15.5001H19.25C18.8358 15.5001 18.5 15.8358 18.5 16.2501C18.5 16.6643 18.8358 17.0001 19.25 17.0001H20.5V15.5001ZM20.1833 11L18.7286 7.92894C18.6045 7.667 18.3406 7.5 18.0508 7.5H16.5V11L20.1833 11ZM7 20.5C7.82843 20.5 8.5 19.8284 8.5 19C8.5 18.1716 7.82843 17.5 7 17.5C6.17157 17.5 5.5 18.1716 5.5 19C5.5 19.8284 6.17157 20.5 7 20.5ZM16.5 19C16.5 18.1716 15.8284 17.5 15 17.5C14.1716 17.5 13.5 18.1716 13.5 19C13.5 19.8284 14.1716 20.5 15 20.5C15.8284 20.5 16.5 19.8284 16.5 19Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconVehicleTruckProfileFilled, IconVehicleTruckProfileFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconVideo: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconVideo;
@@ -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 IconVideo = function IconVideo(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("path", {
25
+ d: "M13.75 4.5C15.5449 4.5 17 5.95507 17 7.75V7.923L20.8639 5.605C21.3638 5.30486 22 5.66493 22 6.248V17.75C22 18.333 21.364 18.6931 20.8641 18.3931L17 16.075V16.25C17 18.0449 15.5449 19.5 13.75 19.5H5.25C3.45507 19.5 2 18.0449 2 16.25V7.75C2 5.95507 3.45507 4.5 5.25 4.5H13.75ZM13.75 6H5.25C4.2835 6 3.5 6.7835 3.5 7.75V16.25C3.5 17.2165 4.2835 18 5.25 18H13.75C14.7165 18 15.5 17.2165 15.5 16.25V7.75C15.5 6.7835 14.7165 6 13.75 6ZM20.5 7.5731L17 9.6745V14.3254L20.5 16.4254V7.5731Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconVideo, IconVideo as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconVideoFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconVideoFilled;
@@ -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 IconVideoFilled = function IconVideoFilled(_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 16.25C16 18.0449 14.5449 19.5 12.75 19.5H5.25C3.45507 19.5 2 18.0449 2 16.25V7.75C2 5.95507 3.45507 4.5 5.25 4.5H12.75C14.5449 4.5 16 5.95507 16 7.75V16.25ZM21.762 5.89334C21.9156 6.07414 22 6.30368 22 6.54096V17.4588C22 18.0111 21.5523 18.4588 21 18.4588C20.7627 18.4588 20.5332 18.3744 20.3524 18.2208L17 15.3709V8.62794L20.3524 5.77899C20.7732 5.42132 21.4043 5.47252 21.762 5.89334Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconVideoFilled, IconVideoFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconWallet: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconWallet;