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,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 IconStarFilled = function IconStarFilled(_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: "M10.7878 3.10263C11.283 2.09926 12.7138 2.09925 13.209 3.10263L15.567 7.88036L20.8395 8.6465C21.9468 8.8074 22.3889 10.1682 21.5877 10.9492L17.7724 14.6681L18.6731 19.9193C18.8622 21.0222 17.7047 21.8632 16.7143 21.3425L11.9984 18.8632L7.28252 21.3425C6.29213 21.8632 5.13459 21.0222 5.32374 19.9193L6.2244 14.6681L2.40916 10.9492C1.60791 10.1682 2.05005 8.8074 3.15735 8.6465L8.42988 7.88036L10.7878 3.10263Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconStarFilled, IconStarFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconStatus: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconStatus;
@@ -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 IconStatus = function IconStatus(_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: "M12 2.99993C13.1135 2.99993 14.1797 3.20213 15.164 3.57182L13.9808 4.76427C13.3498 4.59193 12.6856 4.49993 12 4.49993C7.85786 4.49993 4.5 7.85779 4.5 11.9999C4.5 13.4248 4.89727 14.7892 5.63583 15.9703C5.93764 16.453 6.29368 16.9002 6.69639 17.3029C7.09848 17.7051 7.5449 18.0607 8.02668 18.3623C9.20844 19.102 10.5739 19.4999 12 19.4999C16.1421 19.4999 19.5 16.1421 19.5 11.9999C19.5 11.3433 19.4156 10.7064 19.2571 10.0994L20.4505 8.89613C20.8059 9.86364 21 10.9091 21 11.9999C21 16.9705 16.9706 20.9999 12 20.9999C10.2904 20.9999 8.64945 20.5217 7.23081 19.6337C6.65294 19.272 6.1177 18.8456 5.63566 18.3635C5.1529 17.8807 4.72601 17.3445 4.36401 16.7656C3.4774 15.3477 3 13.7081 3 11.9999C3 7.02937 7.02944 2.99993 12 2.99993ZM21.0602 2.67188L21.2062 2.80784C22.2817 3.88398 22.285 5.62708 21.2135 6.7072L14.9096 13.0616C14.7291 13.2436 14.5049 13.3763 14.2585 13.447L10.0461 14.6559C9.78064 14.7321 9.50371 14.5786 9.42754 14.3132C9.40169 14.2231 9.40168 14.1275 9.42752 14.0374L10.6378 9.81782C10.7074 9.57525 10.837 9.35415 11.0147 9.17499L17.3236 2.81508C18.3448 1.78569 19.9803 1.73639 21.0602 2.67188ZM18.3886 3.87146L12.0796 10.2314L11.3669 12.7163L13.8447 12.0052L20.1486 5.65079C20.6057 5.18993 20.6349 4.46505 20.2371 3.97046L20.1415 3.8644C19.6555 3.3823 18.8707 3.38546 18.3886 3.87146Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconStatus, IconStatus as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconStatusFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconStatusFilled;
@@ -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 IconStatusFilled = function IconStatusFilled(_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 2.9999C13.2477 2.9999 14.4361 3.25379 15.5163 3.71272L14.3609 4.87905C13.6186 4.63306 12.8249 4.4999 12 4.4999C7.85786 4.4999 4.5 7.85777 4.5 11.9999C4.5 13.4248 4.89727 14.7892 5.63583 15.9703C5.93764 16.4529 6.29368 16.9001 6.69639 17.3029C7.09848 17.705 7.5449 18.0607 8.02668 18.3622C9.20844 19.102 10.5739 19.4999 12 19.4999C16.1421 19.4999 19.5 16.142 19.5 11.9999C19.5 11.1995 19.3746 10.4283 19.1424 9.70506L20.3069 8.5304C20.7534 9.59813 21 10.7702 21 11.9999C21 16.9705 16.9706 20.9999 12 20.9999C10.2904 20.9999 8.64945 20.5217 7.23081 19.6337C6.65294 19.272 6.1177 18.8456 5.63566 18.3635C5.1529 17.8807 4.72601 17.3445 4.36401 16.7656C3.4774 15.3477 3 13.7081 3 11.9999C3 7.02934 7.02944 2.9999 12 2.9999ZM21.1626 2.5729L21.3013 2.70116C22.2387 3.6385 22.2421 5.15719 21.3089 6.09872L14.554 12.9144C14.4397 13.0297 14.2991 13.1154 14.1443 13.1642L9.79631 14.5345C9.69096 14.5677 9.57864 14.5092 9.54544 14.4038C9.53311 14.3647 9.53311 14.3227 9.54544 14.2836L10.9171 9.93109C10.965 9.77917 11.0485 9.64087 11.1606 9.52773L17.9189 2.70872C18.8045 1.81517 20.2215 1.76839 21.1626 2.5729Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconStatusFilled, IconStatusFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconSubtract: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconSubtract;
@@ -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 IconSubtract = function IconSubtract(_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: "M3.75391 12.4995H20.2458C20.66 12.4995 20.9958 12.1637 20.9958 11.7495C20.9958 11.3353 20.66 10.9995 20.2458 10.9995H3.75391C3.33969 10.9995 3.00391 11.3353 3.00391 11.7495C3.00391 12.1637 3.33969 12.4995 3.75391 12.4995Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconSubtract, IconSubtract as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconSubtractCircle: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconSubtractCircle;
@@ -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 IconSubtractCircle = function IconSubtractCircle(_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: "M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5ZM16.25 11.25C16.6642 11.25 17 11.5858 17 12C17 12.4142 16.6642 12.75 16.25 12.75C11.2529 12.75 13.211 12.75 7.75 12.75C7.33579 12.75 7 12.4142 7 12C7 11.5858 7.33579 11.25 7.75 11.25C13.211 11.25 11.2529 11.25 16.25 11.25Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconSubtractCircle, IconSubtractCircle as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconSubtractCircleFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconSubtractCircleFilled;
@@ -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 IconSubtractCircleFilled = function IconSubtractCircleFilled(_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 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM7.75 11.25C7.33579 11.25 7 11.5858 7 12C7 12.3797 7.28215 12.6935 7.64823 12.7432L7.75 12.75C13.2107 12.75 11.2532 12.75 16.25 12.75C16.6642 12.75 17 12.4142 17 12C17 11.6203 16.7178 11.3065 16.3518 11.2568L16.25 11.25C11.0554 11.25 13.4435 11.25 7.75 11.25Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconSubtractCircleFilled, IconSubtractCircleFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconSubtractFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconSubtractFilled;
@@ -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 IconSubtractFilled = function IconSubtractFilled(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("g", {
25
+ id: "Size=24, Theme=Filled"
26
+ }, /*#__PURE__*/React.createElement("path", {
27
+ id: "Shape",
28
+ d: "M3.99609 13H19.9996C20.5519 13 20.9996 12.5523 20.9996 12C20.9996 11.4477 20.5519 11 19.9996 11H3.99609C3.44381 11 2.99609 11.4477 2.99609 12C2.99609 12.5523 3.44381 13 3.99609 13Z",
29
+ fill: "#222222"
30
+ })));
31
+ };
32
+
33
+ export { IconSubtractFilled, IconSubtractFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTableCellEdit: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTableCellEdit;
@@ -0,0 +1,37 @@
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 IconTableCellEdit = function IconTableCellEdit(_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("g", {
27
+ id: "Shape"
28
+ }, /*#__PURE__*/React.createElement("path", {
29
+ d: "M3 8.75C3 7.50736 4.00736 6.5 5.25 6.5H18.75C19.7311 6.5 20.5656 7.12796 20.8733 8.00388C20.8206 8.00132 20.7679 8.00002 20.7151 8H20.713C20.2473 8.00021 19.7806 8.09923 19.3477 8.29694C19.2108 8.11651 18.994 8 18.75 8H15.5L15.5 11.8531L14 13.3531L14 8H10L10 14H13.3531L12.4883 14.8648C12.2951 15.058 12.1249 15.2712 11.9801 15.5H5.25C4.00736 15.5 3 14.4926 3 13.25V8.75ZM5.25 8C4.83579 8 4.5 8.33579 4.5 8.75V13.25C4.5 13.6642 4.83579 14 5.25 14H8.5L8.5 8H5.25Z",
30
+ fill: "#222222"
31
+ }), /*#__PURE__*/React.createElement("path", {
32
+ d: "M20.7152 9H20.7131C20.1285 9.00027 19.5439 9.22342 19.0979 9.66946L13.1955 15.5719C12.8513 15.916 12.6072 16.3472 12.4892 16.8194L12.0315 18.6501C11.8325 19.4462 12.5536 20.1674 13.3497 19.9683L15.1804 19.5106C15.6526 19.3926 16.0838 19.1485 16.4279 18.8043L22.3303 12.9019C23.223 12.0093 23.223 10.5621 22.3303 9.66946C21.8843 9.22342 21.2998 9.00027 20.7152 9Z",
33
+ fill: "#222222"
34
+ }))));
35
+ };
36
+
37
+ export { IconTableCellEdit, IconTableCellEdit as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTableCellEditFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTableCellEditFilled;
@@ -0,0 +1,43 @@
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 IconTableCellEditFilled = function IconTableCellEditFilled(_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("g", {
27
+ id: "Shape"
28
+ }, /*#__PURE__*/React.createElement("path", {
29
+ d: "M5.25 6.5C4.00736 6.5 3 7.50736 3 8.75V13.25C3 14.4926 4.00736 15.5 5.25 15.5H8L8 6.5H5.25Z",
30
+ fill: "#222222"
31
+ }), /*#__PURE__*/React.createElement("path", {
32
+ d: "M12.4883 14.8648C12.2951 15.058 12.1249 15.2712 11.9801 15.5H9.5L9.5 6.5H14.5L14.5 12.8531L12.4883 14.8648Z",
33
+ fill: "#222222"
34
+ }), /*#__PURE__*/React.createElement("path", {
35
+ d: "M20.7151 8C20.7679 8.00002 20.8206 8.00132 20.8733 8.00388C20.5656 7.12796 19.7311 6.5 18.75 6.5H16L16 11.3531L18.3907 8.96235C19.0317 8.32137 19.8742 8.00038 20.713 8H20.7151Z",
36
+ fill: "#222222"
37
+ }), /*#__PURE__*/React.createElement("path", {
38
+ d: "M20.7152 9H20.7131C20.1285 9.00027 19.5439 9.22342 19.0979 9.66946L13.1955 15.5719C12.8513 15.916 12.6072 16.3472 12.4892 16.8194L12.0315 18.6501C11.8325 19.4462 12.5536 20.1674 13.3497 19.9683L15.1804 19.5106C15.6526 19.3926 16.0838 19.1485 16.4279 18.8043L22.3303 12.9019C23.223 12.0093 23.223 10.5621 22.3303 9.66946C21.8843 9.22342 21.2998 9.00027 20.7152 9Z",
39
+ fill: "#222222"
40
+ }))));
41
+ };
42
+
43
+ export { IconTableCellEditFilled, IconTableCellEditFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTelegram: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTelegram;
@@ -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 IconTelegram = function IconTelegram(_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=Telegram, Style=Gray, Background=None",
26
+ clipPath: "url(#clip0_697_1790)"
27
+ }, /*#__PURE__*/React.createElement("path", {
28
+ id: "Subtract",
29
+ fillRule: "evenodd",
30
+ clipRule: "evenodd",
31
+ d: "M24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12ZM12.4301 8.85893C11.263 9.3444 8.93026 10.3492 5.43201 11.8733C4.86395 12.0992 4.56638 12.3202 4.53929 12.5363C4.49351 12.9015 4.95084 13.0453 5.5736 13.2411C5.65831 13.2678 5.74608 13.2954 5.83606 13.3246C6.44876 13.5238 7.27295 13.7568 7.70141 13.766C8.09007 13.7744 8.52385 13.6142 9.00276 13.2853C12.2713 11.079 13.9585 9.96381 14.0644 9.93977C14.1392 9.92281 14.2427 9.90148 14.3129 9.96385C14.3831 10.0262 14.3762 10.1443 14.3687 10.176C14.3234 10.3691 12.5282 12.0381 11.5992 12.9018C11.3096 13.171 11.1042 13.362 11.0622 13.4056C10.9681 13.5033 10.8722 13.5958 10.7801 13.6846C10.2109 14.2333 9.78403 14.6448 10.8037 15.3168C11.2937 15.6397 11.6859 15.9067 12.077 16.1731C12.5043 16.4641 12.9304 16.7543 13.4817 17.1157C13.6222 17.2077 13.7563 17.3034 13.887 17.3965C14.3842 17.751 14.8309 18.0694 15.3827 18.0186C15.7034 17.9891 16.0346 17.6876 16.2028 16.7884C16.6003 14.6631 17.3818 10.0585 17.5623 8.16097C17.5782 7.99473 17.5583 7.78197 17.5423 7.68857C17.5263 7.59518 17.4929 7.46211 17.3715 7.3636C17.2277 7.24694 17.0058 7.22234 16.9065 7.22408C16.4551 7.23203 15.7627 7.47282 12.4301 8.85893Z",
32
+ fill: "#555555"
33
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
34
+ id: "clip0_697_1790"
35
+ }, /*#__PURE__*/React.createElement("rect", {
36
+ width: "24",
37
+ height: "24",
38
+ fill: "white"
39
+ }))));
40
+ };
41
+
42
+ export { IconTelegram, IconTelegram as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTextBulletListSquarePerson: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTextBulletListSquarePerson;
@@ -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 IconTextBulletListSquarePerson = function IconTextBulletListSquarePerson(_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.1996 10.3957V6.0001C19.1996 5.33736 18.6624 4.8001 17.9996 4.8001H5.99961C5.33687 4.8001 4.79961 5.33736 4.79961 6.0001V18.0001C4.79961 18.6628 5.33687 19.2001 5.99961 19.2001H12.0032C12.0309 19.6132 12.1201 20.0246 12.2364 20.4001H5.99961C4.67413 20.4001 3.59961 19.3256 3.59961 18.0001V6.0001C3.59961 4.67461 4.67413 3.6001 5.99961 3.6001H17.9996C19.3251 3.6001 20.3996 4.67461 20.3996 6.0001V11.1066C20.2158 10.9431 20.0148 10.7997 19.7996 10.6801C19.5996 10.5601 19.3996 10.4668 19.1996 10.3957ZM8.09961 9.6001C8.59667 9.6001 8.99961 9.19715 8.99961 8.7001C8.99961 8.20304 8.59667 7.8001 8.09961 7.8001C7.60255 7.8001 7.19961 8.20304 7.19961 8.7001C7.19961 9.19715 7.60255 9.6001 8.09961 9.6001ZM8.99961 12.3001C8.99961 12.7972 8.59667 13.2001 8.09961 13.2001C7.60255 13.2001 7.19961 12.7972 7.19961 12.3001C7.19961 11.803 7.60255 11.4001 8.09961 11.4001C8.59667 11.4001 8.99961 11.803 8.99961 12.3001ZM8.99961 15.9001C8.99961 16.3972 8.59667 16.8001 8.09961 16.8001C7.60255 16.8001 7.19961 16.3972 7.19961 15.9001C7.19961 15.403 7.60255 15.0001 8.09961 15.0001C8.59667 15.0001 8.99961 15.403 8.99961 15.9001ZM10.7996 9.0001C10.7996 8.66873 11.0682 8.4001 11.3996 8.4001H16.1996C16.531 8.4001 16.7996 8.66873 16.7996 9.0001C16.7996 9.33147 16.531 9.6001 16.1996 9.6001H11.3996C11.0682 9.6001 10.7996 9.33147 10.7996 9.0001ZM10.7996 12.6001C10.7996 12.2687 11.0682 12.0001 11.3996 12.0001H14.8569C14.6549 12.3623 14.5138 12.7664 14.4458 13.2001H11.3996C11.0682 13.2001 10.7996 12.9315 10.7996 12.6001ZM15.3596 16.2001C15.18 16.0205 15.0219 15.8195 14.8886 15.6001H11.3996C11.0682 15.6001 10.7996 15.8687 10.7996 16.2001C10.7996 16.5315 11.0682 16.8001 11.3996 16.8001H12.9875C13.4844 16.4118 14.122 16.2001 14.7596 16.2001H15.3596ZM19.1996 11.7212C18.8466 11.517 18.4368 11.4001 17.9996 11.4001C16.6741 11.4001 15.5996 12.4746 15.5996 13.8001C15.5996 15.1256 16.6741 16.2001 17.9996 16.2001C18.4368 16.2001 18.8466 16.0832 19.1996 15.879C19.917 15.464 20.3996 14.6884 20.3996 13.8001C20.3996 12.9118 19.917 12.1361 19.1996 11.7212ZM13.1996 18.9001C13.1996 18.0717 13.8712 17.4001 14.6996 17.4001H21.2996C22.128 17.4001 22.7996 18.0717 22.7996 18.9001C22.7996 18.9352 22.7999 18.9704 22.8003 19.0056C22.8011 19.091 22.8019 19.1766 22.7979 19.2618C22.7964 19.2936 22.7936 19.3365 22.7884 19.3887C22.778 19.493 22.7577 19.6361 22.7183 19.8052C22.6397 20.1422 22.4824 20.5924 22.1661 21.0442C21.5111 21.98 20.2622 22.8001 17.9996 22.8001C16.0662 22.8001 14.8729 22.2012 14.1579 21.443C14.0362 21.314 13.9284 21.1803 13.8331 21.0442C13.6607 20.7979 13.5355 20.5521 13.4446 20.3248C13.3687 20.1352 13.3167 19.9585 13.2809 19.8052C13.2415 19.6361 13.2212 19.493 13.2108 19.3887C13.2056 19.3365 13.2028 19.2936 13.2013 19.2618C13.1996 19.1041 13.1996 19.0153 13.1996 18.9035V18.9001Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconTextBulletListSquarePerson, IconTextBulletListSquarePerson as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTextBulletListSquarePersonFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTextBulletListSquarePersonFilled;
@@ -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 IconTextBulletListSquarePersonFilled = function IconTextBulletListSquarePersonFilled(_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: "M5.99961 3.6001C4.67413 3.6001 3.59961 4.67461 3.59961 6.0001V18.0001C3.59961 19.3256 4.67413 20.4001 5.99961 20.4001H12.2364C11.9541 19.4884 11.8316 18.3649 12.3596 17.5201C12.5208 17.238 12.7362 16.9965 12.9875 16.8001H11.3996C11.0682 16.8001 10.7996 16.5315 10.7996 16.2001C10.7996 15.8687 11.0682 15.6001 11.3996 15.6001H14.8886C14.5763 15.0865 14.3996 14.4728 14.3996 13.8001C14.3996 13.5949 14.4154 13.3945 14.4458 13.2001H11.3996C11.0682 13.2001 10.7996 12.9315 10.7996 12.6001C10.7996 12.2687 11.0682 12.0001 11.3996 12.0001H14.8569C15.4644 10.9108 16.6227 10.2001 17.9996 10.2001C18.5996 10.2001 19.1996 10.3201 19.7996 10.6801C20.0148 10.7997 20.2158 10.9431 20.3996 11.1066V6.0001C20.3996 4.67461 19.3251 3.6001 17.9996 3.6001H5.99961ZM8.99961 8.7001C8.99961 9.19715 8.59667 9.6001 8.09961 9.6001C7.60255 9.6001 7.19961 9.19715 7.19961 8.7001C7.19961 8.20304 7.60255 7.8001 8.09961 7.8001C8.59667 7.8001 8.99961 8.20304 8.99961 8.7001ZM8.09961 13.2001C7.60255 13.2001 7.19961 12.7972 7.19961 12.3001C7.19961 11.803 7.60255 11.4001 8.09961 11.4001C8.59667 11.4001 8.99961 11.803 8.99961 12.3001C8.99961 12.7972 8.59667 13.2001 8.09961 13.2001ZM8.99961 15.9001C8.99961 16.3972 8.59667 16.8001 8.09961 16.8001C7.60255 16.8001 7.19961 16.3972 7.19961 15.9001C7.19961 15.403 7.60255 15.0001 8.09961 15.0001C8.59667 15.0001 8.99961 15.403 8.99961 15.9001ZM11.3996 8.4001H16.1996C16.531 8.4001 16.7996 8.66873 16.7996 9.0001C16.7996 9.33147 16.531 9.6001 16.1996 9.6001H11.3996C11.0682 9.6001 10.7996 9.33147 10.7996 9.0001C10.7996 8.66873 11.0682 8.4001 11.3996 8.4001ZM19.1996 11.7212C18.8466 11.517 18.4368 11.4001 17.9996 11.4001C16.6741 11.4001 15.5996 12.4746 15.5996 13.8001C15.5996 15.1256 16.6741 16.2001 17.9996 16.2001C18.4368 16.2001 18.8466 16.0832 19.1996 15.879C19.917 15.464 20.3996 14.6884 20.3996 13.8001C20.3996 12.9118 19.917 12.1361 19.1996 11.7212ZM13.1996 18.9001C13.1996 18.0717 13.8712 17.4001 14.6996 17.4001H21.2996C22.128 17.4001 22.7996 18.0717 22.7996 18.9001C22.7996 18.9352 22.7999 18.9704 22.8003 19.0056C22.8011 19.091 22.8019 19.1766 22.7979 19.2618C22.7964 19.2936 22.7936 19.3365 22.7884 19.3887C22.778 19.493 22.7577 19.6361 22.7183 19.8052C22.6397 20.1422 22.4824 20.5924 22.1661 21.0442C21.5111 21.98 20.2622 22.8001 17.9996 22.8001C16.0662 22.8001 14.8729 22.2012 14.1579 21.443C14.0362 21.314 13.9284 21.1803 13.8331 21.0442C13.6607 20.7979 13.5355 20.5521 13.4446 20.3248C13.3687 20.1352 13.3167 19.9585 13.2809 19.8052C13.2415 19.6361 13.2212 19.493 13.2108 19.3887C13.2056 19.3365 13.2028 19.2936 13.2013 19.2618C13.1996 19.1041 13.1996 19.0153 13.1996 18.9035V18.9001Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconTextBulletListSquarePersonFilled, IconTextBulletListSquarePersonFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTextboxSettings: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTextboxSettings;
@@ -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 IconTextboxSettings = function IconTextboxSettings(_ref) {
7
+ var size = _ref.size,
8
+ type = _ref.type,
9
+ _ref$className = _ref.className,
10
+ className = _ref$className === void 0 ? '' : _ref$className,
11
+ onClick = _ref.onClick,
12
+ refHandler = _ref.refHandler,
13
+ id = _ref.id,
14
+ dataId = _ref.dataId;
15
+ return /*#__PURE__*/React.createElement("svg", {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ onClick: onClick,
21
+ ref: refHandler,
22
+ id: id,
23
+ "data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
24
+ }, /*#__PURE__*/React.createElement("path", {
25
+ d: "M18.25 3C19.7688 3 21 4.23122 21 5.75V12.0218C20.5368 11.7253 20.0335 11.4858 19.5 11.3135V5.75C19.5 5.05964 18.9404 4.5 18.25 4.5H5.75C5.05964 4.5 4.5 5.05964 4.5 5.75V18.25C4.5 18.9404 5.05964 19.5 5.75 19.5H11.3135C11.4858 20.0335 11.7253 20.5368 12.0218 21H5.75C4.23122 21 3 19.7688 3 18.25V5.75C3 4.23122 4.23122 3 5.75 3H18.25ZM14.25 11.5C14.4124 11.5 14.5627 11.5516 14.6855 11.6393C13.9801 11.9786 13.3455 12.4416 12.8096 13H6.75C6.33579 13 6 12.6642 6 12.25C6 11.8703 6.28215 11.5565 6.64823 11.5068L6.75 11.5H14.25ZM6.75 15.5H11.3135C11.159 15.9782 11.0585 16.4805 11.0189 17H6.75C6.33579 17 6 16.6642 6 16.25C6 15.8703 6.28215 15.5565 6.64823 15.5068L6.75 15.5ZM17.25 7.5H6.75L6.64823 7.50685C6.28215 7.55651 6 7.8703 6 8.25C6 8.66421 6.33579 9 6.75 9H17.25L17.3518 8.99315C17.7178 8.94349 18 8.6297 18 8.25C18 7.83579 17.6642 7.5 17.25 7.5ZM12.5002 15.6285L12.9474 16.0588C13.7651 16.8456 13.7651 18.1544 12.9474 18.9412L12.5002 19.3715C12.7007 19.945 12.9908 20.4742 13.353 20.9409L13.9549 20.7631C15.0524 20.4388 16.1976 21.0998 16.4659 22.2122L16.6385 22.9281C16.9189 22.9754 17.2067 23 17.5 23C17.7933 23 18.0811 22.9754 18.3614 22.9281L18.5341 22.2122C18.8024 21.0998 19.9476 20.4388 21.0451 20.7631L21.647 20.9409C22.0092 20.4742 22.2993 19.945 22.4998 19.3715L22.0526 18.9412C21.2349 18.1544 21.2349 16.8456 22.0526 16.0588L22.4998 15.6285C22.2993 15.055 22.0092 14.5258 21.647 14.0591L21.0451 14.2369C19.9476 14.5612 18.8024 13.9002 18.5341 12.7878L18.3614 12.0719C18.0811 12.0246 17.7933 12 17.5 12C17.2067 12 16.9189 12.0246 16.6385 12.0719L16.4659 12.7878C16.1976 13.9002 15.0524 14.5612 13.9549 14.2369L13.353 14.0591C12.9908 14.5258 12.7007 15.055 12.5002 15.6285ZM17.5 19C16.6994 19 16.0503 18.3284 16.0503 17.5C16.0503 16.6716 16.6994 16 17.5 16C18.3006 16 18.9497 16.6716 18.9497 17.5C18.9497 18.3284 18.3006 19 17.5 19Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconTextboxSettings, IconTextboxSettings as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTextboxSettingsFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTextboxSettingsFilled;
@@ -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 IconTextboxSettingsFilled = function IconTextboxSettingsFilled(_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: "M21 5.75C21 4.23122 19.7688 3 18.25 3H5.75C4.23122 3 3 4.23122 3 5.75V18.25C3 19.7688 4.23122 21 5.75 21H12.0218C11.375 19.9897 11 18.7886 11 17.5C11 17.3318 11.0064 17.165 11.0189 17H6.75C6.33579 17 6 16.6642 6 16.25C6 15.8703 6.28215 15.5565 6.64823 15.5068L6.75 15.5H11.3135C11.6194 14.5531 12.1366 13.7013 12.8096 13H6.75C6.33579 13 6 12.6642 6 12.25C6 11.8703 6.28215 11.5565 6.64823 11.5068L6.75 11.5H14.25C14.4124 11.5 14.5627 11.5516 14.6855 11.6393C15.5371 11.2296 16.4917 11 17.5 11C18.7886 11 19.9897 11.375 21 12.0218V5.75ZM17.25 7.5C17.6642 7.5 18 7.83579 18 8.25C18 8.6297 17.7178 8.94349 17.3518 8.99315L17.25 9H6.75C6.33579 9 6 8.66421 6 8.25C6 7.8703 6.28215 7.55651 6.64823 7.50685L6.75 7.5H17.25ZM12.5002 15.6285L12.9474 16.0588C13.7651 16.8456 13.7651 18.1544 12.9474 18.9412L12.5002 19.3715C12.7007 19.945 12.9908 20.4742 13.353 20.9409L13.9549 20.7631C15.0524 20.4388 16.1976 21.0998 16.4659 22.2122L16.6385 22.9281C16.9189 22.9754 17.2067 23 17.5 23C17.7933 23 18.0811 22.9754 18.3614 22.9281L18.5341 22.2122C18.8024 21.0998 19.9476 20.4388 21.0451 20.7631L21.647 20.9409C22.0092 20.4742 22.2993 19.945 22.4998 19.3715L22.0526 18.9412C21.2349 18.1544 21.2349 16.8456 22.0526 16.0588L22.4998 15.6285C22.2993 15.055 22.0092 14.5258 21.647 14.0591L21.0451 14.2369C19.9476 14.5612 18.8024 13.9002 18.5341 12.7878L18.3614 12.0719C18.0811 12.0246 17.7933 12 17.5 12C17.2067 12 16.9189 12.0246 16.6385 12.0719L16.4659 12.7878C16.1976 13.9002 15.0524 14.5612 13.9549 14.2369L13.353 14.0591C12.9908 14.5258 12.7007 15.055 12.5002 15.6285ZM17.5 19C16.6994 19 16.0503 18.3284 16.0503 17.5C16.0503 16.6716 16.6994 16 17.5 16C18.3006 16 18.9497 16.6716 18.9497 17.5C18.9497 18.3284 18.3006 19 17.5 19Z",
26
+ fill: "#222222"
27
+ }));
28
+ };
29
+
30
+ export { IconTextboxSettingsFilled, IconTextboxSettingsFilled as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTimer: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTimer;
@@ -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 IconTimer = function IconTimer(_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: "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 6.5C8.13401 6.5 5 9.63401 5 13.5C5 17.366 8.13401 20.5 12 20.5C15.866 20.5 19 17.366 19 13.5C19 9.63401 15.866 6.5 12 6.5ZM12 8C12.3797 8 12.6935 8.28215 12.7432 8.64823L12.75 8.75V13.25C12.75 13.6642 12.4142 14 12 14C11.6203 14 11.3065 13.7178 11.2568 13.3518L11.25 13.25V8.75C11.25 8.33579 11.5858 8 12 8ZM19.1472 5.11371L19.2298 5.17355L20.3882 6.13773C20.7066 6.40272 20.7498 6.87562 20.4849 7.19398C20.2419 7.48581 19.8243 7.54649 19.5112 7.35047L19.4286 7.29063L18.2702 6.32645C17.9518 6.06146 17.9086 5.58856 18.1735 5.2702C18.4165 4.97837 18.8341 4.91769 19.1472 5.11371ZM14.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 { IconTimer, IconTimer as default };
@@ -0,0 +1,4 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { ISVGIconProps } from './types';
3
+ export declare const IconTimerFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTimerFilled;