@cleen/ui 0.1.0

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 (416) hide show
  1. package/package.json +54 -0
  2. package/src/charts/chart/Chart.tsx +82 -0
  3. package/src/charts/chart/constant.ts +50 -0
  4. package/src/charts/chart/index.ts +2 -0
  5. package/src/charts/chart/types/apexcharts.ts +9 -0
  6. package/src/charts/chart/variants/BellCurve/BellCurve.tsx +215 -0
  7. package/src/charts/chart/variants/BellCurve/constant.ts +112 -0
  8. package/src/charts/chart/variants/BellCurve/helper.ts +116 -0
  9. package/src/charts/chart/variants/BellCurve/index.ts +2 -0
  10. package/src/charts/chart/variants/BellCurve/types/bellCurve.ts +47 -0
  11. package/src/charts/chart/variants/BellCurve/types/props.ts +21 -0
  12. package/src/charts/chart/variants/RadarChart/RadarChart.tsx +22 -0
  13. package/src/charts/chart/variants/RadarChart/constant.ts +28 -0
  14. package/src/charts/chart/variants/RadarChart/index.ts +1 -0
  15. package/src/charts/chart/variants/ScatterChart/ScatterChart.tsx +23 -0
  16. package/src/charts/chart/variants/ScatterChart/constant.ts +54 -0
  17. package/src/charts/chart/variants/ScatterChart/index.ts +1 -0
  18. package/src/charts/chart/variants/index.ts +3 -0
  19. package/src/charts/index.ts +2 -0
  20. package/src/charts/simpleChart/SimpleChart.tsx +54 -0
  21. package/src/charts/simpleChart/index.ts +1 -0
  22. package/src/components/advancedProgressBar/AdvancedProgressBar.tsx +156 -0
  23. package/src/components/advancedProgressBar/blocks/Bar.tsx +118 -0
  24. package/src/components/advancedProgressBar/blocks/BlockLabel.tsx +49 -0
  25. package/src/components/advancedProgressBar/blocks/Clamp.tsx +85 -0
  26. package/src/components/advancedProgressBar/constants.ts +6 -0
  27. package/src/components/advancedProgressBar/index.ts +2 -0
  28. package/src/components/advancedProgressBar/types/props.ts +69 -0
  29. package/src/components/advancedProgressBar/utils.ts +17 -0
  30. package/src/components/audioPlayback/AudioPlayback.tsx +141 -0
  31. package/src/components/audioPlayback/index.ts +2 -0
  32. package/src/components/audioRecorder/AudioRecorder.tsx +391 -0
  33. package/src/components/audioRecorder/constant/default.ts +19 -0
  34. package/src/components/audioRecorder/constant/labels.ts +9 -0
  35. package/src/components/audioRecorder/index.ts +2 -0
  36. package/src/components/audioRecorder/types/props.ts +56 -0
  37. package/src/components/avatar/Avatar.tsx +132 -0
  38. package/src/components/avatar/index.ts +1 -0
  39. package/src/components/avatar/variants.ts +9 -0
  40. package/src/components/avatarRow/AvatarRow.tsx +127 -0
  41. package/src/components/avatarRow/index.ts +1 -0
  42. package/src/components/breadcrumb/Breadcrumb.tsx +158 -0
  43. package/src/components/breadcrumb/index.ts +1 -0
  44. package/src/components/button/Button.tsx +114 -0
  45. package/src/components/button/index.ts +2 -0
  46. package/src/components/button/variants.ts +41 -0
  47. package/src/components/card/Card.tsx +197 -0
  48. package/src/components/card/index.ts +3 -0
  49. package/src/components/card/variants/CardIcon/CardIcon.tsx +158 -0
  50. package/src/components/card/variants/CardMedia/CardMedia.tsx +127 -0
  51. package/src/components/checkbox/Checkbox.tsx +246 -0
  52. package/src/components/checkbox/index.ts +1 -0
  53. package/src/components/checkbox/variants.ts +13 -0
  54. package/src/components/checkboxGroup/CheckboxGroup.tsx +163 -0
  55. package/src/components/checkboxGroup/index.ts +1 -0
  56. package/src/components/cleenIcon/CleenIcon.tsx +674 -0
  57. package/src/components/cleenIcon/icons/IconAlertCircle.tsx +22 -0
  58. package/src/components/cleenIcon/icons/IconAlertFeatured.tsx +30 -0
  59. package/src/components/cleenIcon/icons/IconAlertOctagon.tsx +21 -0
  60. package/src/components/cleenIcon/icons/IconAlertTriangle.tsx +25 -0
  61. package/src/components/cleenIcon/icons/IconAlignRight.tsx +25 -0
  62. package/src/components/cleenIcon/icons/IconArrowDown.tsx +25 -0
  63. package/src/components/cleenIcon/icons/IconArrowLeft.tsx +25 -0
  64. package/src/components/cleenIcon/icons/IconArrowLeft2.tsx +22 -0
  65. package/src/components/cleenIcon/icons/IconArrowRight.tsx +25 -0
  66. package/src/components/cleenIcon/icons/IconArrowToTop.tsx +20 -0
  67. package/src/components/cleenIcon/icons/IconArrowUp.tsx +22 -0
  68. package/src/components/cleenIcon/icons/IconArrowUpRight.tsx +22 -0
  69. package/src/components/cleenIcon/icons/IconArrowUpRightNarrow.tsx +22 -0
  70. package/src/components/cleenIcon/icons/IconArrowUpRightSquare.tsx +22 -0
  71. package/src/components/cleenIcon/icons/IconAttachment.tsx +22 -0
  72. package/src/components/cleenIcon/icons/IconBarChartSquare.tsx +22 -0
  73. package/src/components/cleenIcon/icons/IconBold.tsx +16 -0
  74. package/src/components/cleenIcon/icons/IconBookmarkCheck.tsx +22 -0
  75. package/src/components/cleenIcon/icons/IconBookmarkCheckFill.tsx +37 -0
  76. package/src/components/cleenIcon/icons/IconBookmarkPlus.tsx +22 -0
  77. package/src/components/cleenIcon/icons/IconBookmarkX.tsx +22 -0
  78. package/src/components/cleenIcon/icons/IconBoxLines.tsx +16 -0
  79. package/src/components/cleenIcon/icons/IconBoxText.tsx +24 -0
  80. package/src/components/cleenIcon/icons/IconBracketsCheck.tsx +25 -0
  81. package/src/components/cleenIcon/icons/IconBracketsEllipses.tsx +22 -0
  82. package/src/components/cleenIcon/icons/IconBuilding.tsx +22 -0
  83. package/src/components/cleenIcon/icons/IconCalendar.tsx +25 -0
  84. package/src/components/cleenIcon/icons/IconCertificateHeart.tsx +25 -0
  85. package/src/components/cleenIcon/icons/IconCheck.tsx +22 -0
  86. package/src/components/cleenIcon/icons/IconCheckCircle.tsx +22 -0
  87. package/src/components/cleenIcon/icons/IconCheckCircleBroken.tsx +25 -0
  88. package/src/components/cleenIcon/icons/IconCheckFill.tsx +45 -0
  89. package/src/components/cleenIcon/icons/IconCheckVerified.tsx +22 -0
  90. package/src/components/cleenIcon/icons/IconChevronDown.tsx +22 -0
  91. package/src/components/cleenIcon/icons/IconChevronLeft.tsx +25 -0
  92. package/src/components/cleenIcon/icons/IconChevronLeftDouble.tsx +22 -0
  93. package/src/components/cleenIcon/icons/IconChevronRight.tsx +25 -0
  94. package/src/components/cleenIcon/icons/IconChevronRightDouble.tsx +22 -0
  95. package/src/components/cleenIcon/icons/IconChevronSelectorVertical.tsx +22 -0
  96. package/src/components/cleenIcon/icons/IconChevronUp.tsx +25 -0
  97. package/src/components/cleenIcon/icons/IconCircleSwap.tsx +22 -0
  98. package/src/components/cleenIcon/icons/IconClockFastForward.tsx +25 -0
  99. package/src/components/cleenIcon/icons/IconClockRewind.tsx +25 -0
  100. package/src/components/cleenIcon/icons/IconClockRewind2.tsx +21 -0
  101. package/src/components/cleenIcon/icons/IconCodeBrowser.tsx +25 -0
  102. package/src/components/cleenIcon/icons/IconCodeCircle.tsx +22 -0
  103. package/src/components/cleenIcon/icons/IconColors.tsx +25 -0
  104. package/src/components/cleenIcon/icons/IconColumnEdit.tsx +19 -0
  105. package/src/components/cleenIcon/icons/IconCopy.tsx +25 -0
  106. package/src/components/cleenIcon/icons/IconCopy2.tsx +22 -0
  107. package/src/components/cleenIcon/icons/IconCopy3.tsx +25 -0
  108. package/src/components/cleenIcon/icons/IconCopy4.tsx +25 -0
  109. package/src/components/cleenIcon/icons/IconCopy5.tsx +25 -0
  110. package/src/components/cleenIcon/icons/IconCopyCheck.tsx +22 -0
  111. package/src/components/cleenIcon/icons/IconCube.tsx +25 -0
  112. package/src/components/cleenIcon/icons/IconCubeOutline.tsx +22 -0
  113. package/src/components/cleenIcon/icons/IconCursorBox.tsx +25 -0
  114. package/src/components/cleenIcon/icons/IconDataflow.tsx +22 -0
  115. package/src/components/cleenIcon/icons/IconDataflow2.tsx +22 -0
  116. package/src/components/cleenIcon/icons/IconDataflow3.tsx +29 -0
  117. package/src/components/cleenIcon/icons/IconDelete.tsx +25 -0
  118. package/src/components/cleenIcon/icons/IconDollarCircle.tsx +25 -0
  119. package/src/components/cleenIcon/icons/IconDotsGrid.tsx +74 -0
  120. package/src/components/cleenIcon/icons/IconDotsHorizontal.tsx +34 -0
  121. package/src/components/cleenIcon/icons/IconDotsVertical.tsx +38 -0
  122. package/src/components/cleenIcon/icons/IconEdit.tsx +25 -0
  123. package/src/components/cleenIcon/icons/IconEditable.tsx +25 -0
  124. package/src/components/cleenIcon/icons/IconExpand.tsx +22 -0
  125. package/src/components/cleenIcon/icons/IconEye.tsx +28 -0
  126. package/src/components/cleenIcon/icons/IconEyeHidden.tsx +25 -0
  127. package/src/components/cleenIcon/icons/IconEyeHidden2.tsx +24 -0
  128. package/src/components/cleenIcon/icons/IconFaceSmile.tsx +24 -0
  129. package/src/components/cleenIcon/icons/IconFilter.tsx +22 -0
  130. package/src/components/cleenIcon/icons/IconFilter2.tsx +22 -0
  131. package/src/components/cleenIcon/icons/IconFlag.tsx +22 -0
  132. package/src/components/cleenIcon/icons/IconFlag2.tsx +25 -0
  133. package/src/components/cleenIcon/icons/IconFlag3.tsx +16 -0
  134. package/src/components/cleenIcon/icons/IconHandShield.tsx +22 -0
  135. package/src/components/cleenIcon/icons/IconHash.tsx +22 -0
  136. package/src/components/cleenIcon/icons/IconHeadsetMic.tsx +21 -0
  137. package/src/components/cleenIcon/icons/IconHeart.tsx +24 -0
  138. package/src/components/cleenIcon/icons/IconHouseLine.tsx +22 -0
  139. package/src/components/cleenIcon/icons/IconImage.tsx +22 -0
  140. package/src/components/cleenIcon/icons/IconImage2.tsx +22 -0
  141. package/src/components/cleenIcon/icons/IconImage3.tsx +17 -0
  142. package/src/components/cleenIcon/icons/IconImage4.tsx +25 -0
  143. package/src/components/cleenIcon/icons/IconImageCheck.tsx +22 -0
  144. package/src/components/cleenIcon/icons/IconInfoCircle.tsx +22 -0
  145. package/src/components/cleenIcon/icons/IconInfoHexagon.tsx +25 -0
  146. package/src/components/cleenIcon/icons/IconItalic.tsx +16 -0
  147. package/src/components/cleenIcon/icons/IconLayersMultiple.tsx +22 -0
  148. package/src/components/cleenIcon/icons/IconLayersSingle.tsx +22 -0
  149. package/src/components/cleenIcon/icons/IconLayout.tsx +22 -0
  150. package/src/components/cleenIcon/icons/IconLayout2.tsx +22 -0
  151. package/src/components/cleenIcon/icons/IconLayoutColumns.tsx +20 -0
  152. package/src/components/cleenIcon/icons/IconLayoutCustom.tsx +16 -0
  153. package/src/components/cleenIcon/icons/IconLayoutSequential.tsx +16 -0
  154. package/src/components/cleenIcon/icons/IconLayoutStuffed.tsx +20 -0
  155. package/src/components/cleenIcon/icons/IconLayoutTile.tsx +16 -0
  156. package/src/components/cleenIcon/icons/IconLifeBuoy.tsx +29 -0
  157. package/src/components/cleenIcon/icons/IconLightbulb.tsx +22 -0
  158. package/src/components/cleenIcon/icons/IconLightning.tsx +22 -0
  159. package/src/components/cleenIcon/icons/IconLightning2.tsx +25 -0
  160. package/src/components/cleenIcon/icons/IconLightningFast.tsx +22 -0
  161. package/src/components/cleenIcon/icons/IconLineChartBar.tsx +22 -0
  162. package/src/components/cleenIcon/icons/IconLineChartBreakoutSquare.tsx +22 -0
  163. package/src/components/cleenIcon/icons/IconLineChartUp.tsx +25 -0
  164. package/src/components/cleenIcon/icons/IconLineChartUp2.tsx +34 -0
  165. package/src/components/cleenIcon/icons/IconLines.tsx +22 -0
  166. package/src/components/cleenIcon/icons/IconLinesCheck.tsx +16 -0
  167. package/src/components/cleenIcon/icons/IconLinesPlay.tsx +23 -0
  168. package/src/components/cleenIcon/icons/IconLink.tsx +25 -0
  169. package/src/components/cleenIcon/icons/IconLink2.tsx +24 -0
  170. package/src/components/cleenIcon/icons/IconLink3.tsx +21 -0
  171. package/src/components/cleenIcon/icons/IconLink4.tsx +17 -0
  172. package/src/components/cleenIcon/icons/IconLink5.tsx +22 -0
  173. package/src/components/cleenIcon/icons/IconListBullet.tsx +18 -0
  174. package/src/components/cleenIcon/icons/IconListOrder.tsx +20 -0
  175. package/src/components/cleenIcon/icons/IconListOrder2.tsx +16 -0
  176. package/src/components/cleenIcon/icons/IconLock.tsx +22 -0
  177. package/src/components/cleenIcon/icons/IconLock2.tsx +22 -0
  178. package/src/components/cleenIcon/icons/IconLogIn.tsx +25 -0
  179. package/src/components/cleenIcon/icons/IconLogOut.tsx +25 -0
  180. package/src/components/cleenIcon/icons/IconLogOut2.tsx +22 -0
  181. package/src/components/cleenIcon/icons/IconMagicWand.tsx +25 -0
  182. package/src/components/cleenIcon/icons/IconMagicWand2.tsx +22 -0
  183. package/src/components/cleenIcon/icons/IconMail.tsx +25 -0
  184. package/src/components/cleenIcon/icons/IconMessageSquare.tsx +25 -0
  185. package/src/components/cleenIcon/icons/IconMessageSquare2.tsx +22 -0
  186. package/src/components/cleenIcon/icons/IconMessageXSquare.tsx +25 -0
  187. package/src/components/cleenIcon/icons/IconMinusCircle.tsx +22 -0
  188. package/src/components/cleenIcon/icons/IconMobile.tsx +25 -0
  189. package/src/components/cleenIcon/icons/IconMonitor.tsx +22 -0
  190. package/src/components/cleenIcon/icons/IconMonitor2.tsx +25 -0
  191. package/src/components/cleenIcon/icons/IconMonitor3.tsx +25 -0
  192. package/src/components/cleenIcon/icons/IconMoonCircle.tsx +28 -0
  193. package/src/components/cleenIcon/icons/IconNavigationPointer.tsx +22 -0
  194. package/src/components/cleenIcon/icons/IconNotificationBox.tsx +22 -0
  195. package/src/components/cleenIcon/icons/IconPCSetup.tsx +22 -0
  196. package/src/components/cleenIcon/icons/IconPalette.tsx +40 -0
  197. package/src/components/cleenIcon/icons/IconPasscodeLock.tsx +25 -0
  198. package/src/components/cleenIcon/icons/IconPencil.tsx +25 -0
  199. package/src/components/cleenIcon/icons/IconPercentageCircle.tsx +29 -0
  200. package/src/components/cleenIcon/icons/IconPerspective.tsx +22 -0
  201. package/src/components/cleenIcon/icons/IconPhoneCall.tsx +25 -0
  202. package/src/components/cleenIcon/icons/IconPin.tsx +22 -0
  203. package/src/components/cleenIcon/icons/IconPlayCircle.tsx +28 -0
  204. package/src/components/cleenIcon/icons/IconPlus.tsx +22 -0
  205. package/src/components/cleenIcon/icons/IconPlusCircle.tsx +25 -0
  206. package/src/components/cleenIcon/icons/IconPulse.tsx +25 -0
  207. package/src/components/cleenIcon/icons/IconQuestionCircle.tsx +24 -0
  208. package/src/components/cleenIcon/icons/IconRadioButton.tsx +27 -0
  209. package/src/components/cleenIcon/icons/IconRadioButtonActive.tsx +39 -0
  210. package/src/components/cleenIcon/icons/IconReceiptCheck.tsx +25 -0
  211. package/src/components/cleenIcon/icons/IconRedo.tsx +16 -0
  212. package/src/components/cleenIcon/icons/IconRefresh.tsx +22 -0
  213. package/src/components/cleenIcon/icons/IconRefresh2.tsx +22 -0
  214. package/src/components/cleenIcon/icons/IconRefresh3.tsx +20 -0
  215. package/src/components/cleenIcon/icons/IconRepeat.tsx +22 -0
  216. package/src/components/cleenIcon/icons/IconRepeat2.tsx +22 -0
  217. package/src/components/cleenIcon/icons/IconRetweet.tsx +33 -0
  218. package/src/components/cleenIcon/icons/IconRoundChart.tsx +25 -0
  219. package/src/components/cleenIcon/icons/IconRoundChart2.tsx +29 -0
  220. package/src/components/cleenIcon/icons/IconRoute.tsx +22 -0
  221. package/src/components/cleenIcon/icons/IconSave.tsx +25 -0
  222. package/src/components/cleenIcon/icons/IconSave2.tsx +22 -0
  223. package/src/components/cleenIcon/icons/IconScanDots.tsx +22 -0
  224. package/src/components/cleenIcon/icons/IconSearch.tsx +22 -0
  225. package/src/components/cleenIcon/icons/IconSend.tsx +25 -0
  226. package/src/components/cleenIcon/icons/IconSettings.tsx +32 -0
  227. package/src/components/cleenIcon/icons/IconSettings2.tsx +25 -0
  228. package/src/components/cleenIcon/icons/IconSettings3.tsx +22 -0
  229. package/src/components/cleenIcon/icons/IconShieldLightning.tsx +22 -0
  230. package/src/components/cleenIcon/icons/IconShieldPlus.tsx +22 -0
  231. package/src/components/cleenIcon/icons/IconShieldRemove.tsx +16 -0
  232. package/src/components/cleenIcon/icons/IconShuffle.tsx +25 -0
  233. package/src/components/cleenIcon/icons/IconSlashCircle.tsx +22 -0
  234. package/src/components/cleenIcon/icons/IconSlashOctagon.tsx +22 -0
  235. package/src/components/cleenIcon/icons/IconSocialGlobe.tsx +23 -0
  236. package/src/components/cleenIcon/icons/IconSocialLinkedin.tsx +21 -0
  237. package/src/components/cleenIcon/icons/IconSocialX.tsx +28 -0
  238. package/src/components/cleenIcon/icons/IconSpeedometer.tsx +22 -0
  239. package/src/components/cleenIcon/icons/IconStairsRound.tsx +21 -0
  240. package/src/components/cleenIcon/icons/IconStar.tsx +22 -0
  241. package/src/components/cleenIcon/icons/IconStarHalf.tsx +39 -0
  242. package/src/components/cleenIcon/icons/IconStars.tsx +28 -0
  243. package/src/components/cleenIcon/icons/IconStars2.tsx +29 -0
  244. package/src/components/cleenIcon/icons/IconStrikethrough.tsx +16 -0
  245. package/src/components/cleenIcon/icons/IconSuccessFeatured.tsx +30 -0
  246. package/src/components/cleenIcon/icons/IconSun.tsx +22 -0
  247. package/src/components/cleenIcon/icons/IconSwitchHorizontal.tsx +22 -0
  248. package/src/components/cleenIcon/icons/IconTag.tsx +22 -0
  249. package/src/components/cleenIcon/icons/IconTarget.tsx +21 -0
  250. package/src/components/cleenIcon/icons/IconTarget2.tsx +34 -0
  251. package/src/components/cleenIcon/icons/IconTextFormat.tsx +17 -0
  252. package/src/components/cleenIcon/icons/IconTextFormat2.tsx +22 -0
  253. package/src/components/cleenIcon/icons/IconTextHighlight.tsx +16 -0
  254. package/src/components/cleenIcon/icons/IconTranslate.tsx +25 -0
  255. package/src/components/cleenIcon/icons/IconTrash.tsx +25 -0
  256. package/src/components/cleenIcon/icons/IconTrending.tsx +22 -0
  257. package/src/components/cleenIcon/icons/IconUnderline.tsx +16 -0
  258. package/src/components/cleenIcon/icons/IconUndo.tsx +22 -0
  259. package/src/components/cleenIcon/icons/IconUndo2.tsx +16 -0
  260. package/src/components/cleenIcon/icons/IconUploadCloud.tsx +22 -0
  261. package/src/components/cleenIcon/icons/IconUser.tsx +22 -0
  262. package/src/components/cleenIcon/icons/IconUserEdit.tsx +25 -0
  263. package/src/components/cleenIcon/icons/IconUserRight.tsx +22 -0
  264. package/src/components/cleenIcon/icons/IconUserSquare.tsx +25 -0
  265. package/src/components/cleenIcon/icons/IconUsers.tsx +25 -0
  266. package/src/components/cleenIcon/icons/IconUsersUp.tsx +25 -0
  267. package/src/components/cleenIcon/icons/IconVolume.tsx +25 -0
  268. package/src/components/cleenIcon/icons/IconWrench.tsx +22 -0
  269. package/src/components/cleenIcon/icons/IconX.tsx +25 -0
  270. package/src/components/cleenIcon/icons/IconXCircle.tsx +22 -0
  271. package/src/components/cleenIcon/icons/IconXCircle2.tsx +42 -0
  272. package/src/components/cleenIcon/icons/IconXClose.tsx +25 -0
  273. package/src/components/cleenIcon/icons/IconXSquare.tsx +22 -0
  274. package/src/components/cleenIcon/icons/index.ts +215 -0
  275. package/src/components/cleenIcon/index.ts +4 -0
  276. package/src/components/cleenIcon/types/icon.ts +226 -0
  277. package/src/components/collapsible/Collapsible.tsx +148 -0
  278. package/src/components/collapsible/index.ts +5 -0
  279. package/src/components/creditCardInput/CreditCardInput.tsx +236 -0
  280. package/src/components/creditCardInput/index.ts +2 -0
  281. package/src/components/creditCardInput/types/card.ts +13 -0
  282. package/src/components/creditCardInput/types/props.ts +44 -0
  283. package/src/components/creditCardInput/util/format.ts +102 -0
  284. package/src/components/datePicker/DatePicker.tsx +235 -0
  285. package/src/components/datePicker/index.ts +2 -0
  286. package/src/components/datePicker/types/props.ts +47 -0
  287. package/src/components/datePicker/utils/date.ts +40 -0
  288. package/src/components/divider/Divider.tsx +43 -0
  289. package/src/components/divider/index.ts +1 -0
  290. package/src/components/drawer/Drawer.tsx +222 -0
  291. package/src/components/drawer/index.ts +1 -0
  292. package/src/components/dropdown/Dropdown.tsx +224 -0
  293. package/src/components/dropdown/index.ts +1 -0
  294. package/src/components/filterDrawer/FilterDrawer.tsx +147 -0
  295. package/src/components/filterDrawer/blocks/FilterDrawerFooter.tsx +119 -0
  296. package/src/components/filterDrawer/blocks/SaveFilterStep.tsx +56 -0
  297. package/src/components/filterDrawer/blocks/SavedFilterRow.tsx +166 -0
  298. package/src/components/filterDrawer/blocks/SavedFiltersDropdown.tsx +142 -0
  299. package/src/components/filterDrawer/constants/filter.ts +4 -0
  300. package/src/components/filterDrawer/constants/labels.ts +52 -0
  301. package/src/components/filterDrawer/constants/tab.ts +7 -0
  302. package/src/components/filterDrawer/context/context.ts +28 -0
  303. package/src/components/filterDrawer/context/provider.tsx +50 -0
  304. package/src/components/filterDrawer/index.ts +7 -0
  305. package/src/components/filterDrawer/types/filters.ts +28 -0
  306. package/src/components/filterDrawer/types/props.ts +107 -0
  307. package/src/components/filterDrawer/types/validation.ts +6 -0
  308. package/src/components/formGroup/FormGroup.tsx +165 -0
  309. package/src/components/formGroup/index.ts +1 -0
  310. package/src/components/groupSelector/GroupSelector.tsx +729 -0
  311. package/src/components/groupSelector/index.ts +6 -0
  312. package/src/components/index.ts +44 -0
  313. package/src/components/infoLabels/InfoLabels.tsx +88 -0
  314. package/src/components/infoLabels/index.ts +1 -0
  315. package/src/components/input/Input.tsx +269 -0
  316. package/src/components/input/index.ts +1 -0
  317. package/src/components/loader/Loader.tsx +91 -0
  318. package/src/components/loader/index.ts +1 -0
  319. package/src/components/lookup/Lookup.tsx +433 -0
  320. package/src/components/lookup/blocks/LookupOptionList.tsx +130 -0
  321. package/src/components/lookup/index.ts +2 -0
  322. package/src/components/lookup/types/lookup.ts +97 -0
  323. package/src/components/menu/Menu.tsx +103 -0
  324. package/src/components/menu/blocks/MenuContent.tsx +105 -0
  325. package/src/components/menu/blocks/MenuItem.tsx +120 -0
  326. package/src/components/menu/index.ts +2 -0
  327. package/src/components/menu/types/menu.ts +30 -0
  328. package/src/components/menu/types/menuItem.ts +48 -0
  329. package/src/components/modal/Modal.tsx +191 -0
  330. package/src/components/modal/index.ts +1 -0
  331. package/src/components/notification/Notification.tsx +79 -0
  332. package/src/components/notification/constant/notification.ts +30 -0
  333. package/src/components/notification/index.ts +2 -0
  334. package/src/components/notification/wrappers/CleenNotificationContainer.tsx +9 -0
  335. package/src/components/pagination/Pagination.tsx +294 -0
  336. package/src/components/pagination/blocks/PaginationGoToPage.tsx +91 -0
  337. package/src/components/pagination/blocks/PaginationPageSize.tsx +145 -0
  338. package/src/components/pagination/constants/labels.ts +15 -0
  339. package/src/components/pagination/index.ts +9 -0
  340. package/src/components/pillBadge/PillBadge.tsx +130 -0
  341. package/src/components/pillBadge/helper.ts +11 -0
  342. package/src/components/pillBadge/index.ts +1 -0
  343. package/src/components/pillBadge/variants.ts +47 -0
  344. package/src/components/popover/Popover.tsx +108 -0
  345. package/src/components/popover/index.ts +2 -0
  346. package/src/components/popover/types/popover.ts +21 -0
  347. package/src/components/progressBar/ProgressBar.tsx +179 -0
  348. package/src/components/progressBar/index.ts +1 -0
  349. package/src/components/progressCircle/ProgressCircle.tsx +142 -0
  350. package/src/components/progressCircle/index.ts +1 -0
  351. package/src/components/radioBoxGroup/RadioBoxGroup.tsx +207 -0
  352. package/src/components/radioBoxGroup/index.ts +1 -0
  353. package/src/components/radioButtonGroup/RadioButtonGroup.tsx +208 -0
  354. package/src/components/radioButtonGroup/blocks/RadioButton.tsx +22 -0
  355. package/src/components/radioButtonGroup/index.ts +4 -0
  356. package/src/components/radioButtonGroup/types/radioButton.ts +10 -0
  357. package/src/components/rangeSlider/RangeSlider.tsx +366 -0
  358. package/src/components/rangeSlider/index.ts +1 -0
  359. package/src/components/select/Select.tsx +349 -0
  360. package/src/components/select/blocks/SelectCustomMenuList.tsx +70 -0
  361. package/src/components/select/blocks/SelectNoOptionsMessage.tsx +22 -0
  362. package/src/components/select/blocks/SelectOption.tsx +19 -0
  363. package/src/components/select/blocks/SelectSingleValue.tsx +28 -0
  364. package/src/components/select/index.ts +1 -0
  365. package/src/components/sidebar/Sidebar.tsx +210 -0
  366. package/src/components/sidebar/SidebarItem.tsx +88 -0
  367. package/src/components/sidebar/drawerContainer/DrawerContainer.tsx +36 -0
  368. package/src/components/sidebar/drawerContainer/DrawerContentTitle.tsx +165 -0
  369. package/src/components/sidebar/drawerContainer/index.ts +2 -0
  370. package/src/components/sidebar/index.ts +13 -0
  371. package/src/components/sidebar/types.ts +157 -0
  372. package/src/components/skeletons/blocks/Skeleton.tsx +72 -0
  373. package/src/components/skeletons/blocks/SkeletonAvatar.tsx +43 -0
  374. package/src/components/skeletons/blocks/SkeletonBadge.tsx +30 -0
  375. package/src/components/skeletons/blocks/SkeletonBanner.tsx +44 -0
  376. package/src/components/skeletons/blocks/SkeletonButton.tsx +31 -0
  377. package/src/components/skeletons/blocks/SkeletonCard.tsx +39 -0
  378. package/src/components/skeletons/blocks/SkeletonCard2.tsx +57 -0
  379. package/src/components/skeletons/blocks/SkeletonCard3.tsx +89 -0
  380. package/src/components/skeletons/blocks/SkeletonCardStack.tsx +22 -0
  381. package/src/components/skeletons/blocks/SkeletonChart.tsx +114 -0
  382. package/src/components/skeletons/blocks/SkeletonContentCard.tsx +75 -0
  383. package/src/components/skeletons/blocks/SkeletonDataGrid.tsx +73 -0
  384. package/src/components/skeletons/blocks/SkeletonForm.tsx +50 -0
  385. package/src/components/skeletons/blocks/SkeletonImage.tsx +45 -0
  386. package/src/components/skeletons/blocks/SkeletonInfoCard.tsx +130 -0
  387. package/src/components/skeletons/blocks/SkeletonInput.tsx +32 -0
  388. package/src/components/skeletons/blocks/SkeletonList.tsx +67 -0
  389. package/src/components/skeletons/blocks/SkeletonParagraph.tsx +52 -0
  390. package/src/components/skeletons/blocks/SkeletonText.tsx +22 -0
  391. package/src/components/skeletons/blocks/SkeletonVideo.tsx +71 -0
  392. package/src/components/skeletons/blocks/SkeletonWidgetCard.tsx +56 -0
  393. package/src/components/skeletons/blocks/SkeletonWrapper.tsx +140 -0
  394. package/src/components/skeletons/index.ts +24 -0
  395. package/src/components/skeletons/styles/skeleton.ts +2 -0
  396. package/src/components/skeletons/types/skeleton.ts +8 -0
  397. package/src/components/slider/Slider.tsx +298 -0
  398. package/src/components/slider/index.ts +1 -0
  399. package/src/components/stepper/Stepper.tsx +185 -0
  400. package/src/components/stepper/index.ts +1 -0
  401. package/src/components/switch/Switch.tsx +152 -0
  402. package/src/components/switch/index.ts +1 -0
  403. package/src/components/tabs/Tabs.tsx +140 -0
  404. package/src/components/tabs/index.ts +2 -0
  405. package/src/components/tabs/types/tab.ts +33 -0
  406. package/src/components/tabs/variants.ts +49 -0
  407. package/src/components/textArea/TextArea.tsx +244 -0
  408. package/src/components/textArea/index.ts +1 -0
  409. package/src/components/tooltip/Tooltip.tsx +200 -0
  410. package/src/components/tooltip/index.ts +1 -0
  411. package/src/icons/IconFromLibrary.tsx +13 -0
  412. package/src/icons/getIconByName.ts +81 -0
  413. package/src/icons/index.ts +16 -0
  414. package/src/index.ts +1 -0
  415. package/tsconfig.json +27 -0
  416. package/tsup.config.ts +23 -0
@@ -0,0 +1,27 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconRadioButton = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="24"
7
+ height="24"
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ {...props}
12
+ >
13
+ <g id="Content">
14
+ <rect
15
+ x="0.75"
16
+ y="0.75"
17
+ width="22.5"
18
+ height="22.5"
19
+ rx="11.25"
20
+ stroke="currentColor"
21
+ strokeWidth="1.5"
22
+ />
23
+ <circle id="Dot" cx="12" cy="12" r="4" fill="currentColor" />
24
+ </g>
25
+ </svg>
26
+ );
27
+ };
@@ -0,0 +1,39 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconRadioButtonActive = ({
4
+ color1 = 'currentColor',
5
+ color2 = 'currentColor',
6
+ ...props
7
+ }: IconProps) => {
8
+ return (
9
+ <svg
10
+ width="24"
11
+ height="24"
12
+ viewBox="0 0 24 24"
13
+ fill="none"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ {...props}
16
+ >
17
+ <g id="Content">
18
+ <rect
19
+ x="0.75"
20
+ y="0.75"
21
+ width="22.5"
22
+ height="22.5"
23
+ rx="11.25"
24
+ fill={color1}
25
+ />
26
+ <rect
27
+ x="0.75"
28
+ y="0.75"
29
+ width="22.5"
30
+ height="22.5"
31
+ rx="11.25"
32
+ stroke={color1}
33
+ strokeWidth="1.5"
34
+ />
35
+ <circle id="Dot" cx="12" cy="12" r="4" fill={color2} />
36
+ </g>
37
+ </svg>
38
+ );
39
+ };
@@ -0,0 +1,25 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconReceiptCheck = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="24"
7
+ height="24"
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <g id="receipt-check">
15
+ <path
16
+ id="Icon"
17
+ d="M9 10.5L11 12.5L15.5 8M20 21V7.8C20 6.11984 20 5.27976 19.673 4.63803C19.3854 4.07354 18.9265 3.6146 18.362 3.32698C17.7202 3 16.8802 3 15.2 3H8.8C7.11984 3 6.27976 3 5.63803 3.32698C5.07354 3.6146 4.6146 4.07354 4.32698 4.63803C4 5.27976 4 6.11984 4 7.8V21L6.75 19L9.25 21L12 19L14.75 21L17.25 19L20 21Z"
18
+ strokeWidth="2"
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ />
22
+ </g>
23
+ </svg>
24
+ );
25
+ };
@@ -0,0 +1,16 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconRedo = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="28"
7
+ height="28"
8
+ viewBox="0 0 28 28"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ fill="currentColor"
11
+ {...props}
12
+ >
13
+ <path d="M11.5 10.25H19.1156L16.8737 8.00875L17.75 7.125L21.5 10.875L17.75 14.625L16.8737 13.7406L19.1137 11.5H11.5C10.5054 11.5 9.55161 11.8951 8.84835 12.5983C8.14509 13.3016 7.75 14.2554 7.75 15.25C7.75 16.2446 8.14509 17.1984 8.84835 17.9017C9.55161 18.6049 10.5054 19 11.5 19H16.5V20.25H11.5C10.1739 20.25 8.90215 19.7232 7.96447 18.7855C7.02678 17.8479 6.5 16.5761 6.5 15.25C6.5 13.9239 7.02678 12.6521 7.96447 11.7145C8.90215 10.7768 10.1739 10.25 11.5 10.25V10.25Z" />
14
+ </svg>
15
+ );
16
+ };
@@ -0,0 +1,22 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconRefresh = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="15"
7
+ height="14"
8
+ viewBox="0 0 15 14"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M14 5.66667C14 5.66667 12.6633 3.84548 11.5774 2.75883C10.4915 1.67218 8.99093 1 7.33333 1C4.01962 1 1.33333 3.68629 1.33333 7C1.33333 10.3137 4.01962 13 7.33333 13C10.0687 13 12.3766 11.1695 13.0988 8.66667M14 5.66667V1.66667M14 5.66667H10"
16
+ strokeWidth="1.5"
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ </svg>
21
+ );
22
+ };
@@ -0,0 +1,22 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconRefresh2 = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="16"
7
+ height="14"
8
+ viewBox="0 0 16 14"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M5.69758 12.1778C7.297 12.8874 9.20197 12.8489 10.8333 11.907C13.5436 10.3422 14.4722 6.87655 12.9074 4.16623L12.7408 3.87755M3.09217 9.83298C1.52737 7.12265 2.45599 3.65697 5.16632 2.09217C6.79764 1.15032 8.70261 1.11178 10.302 1.82136M1.66211 9.88874L3.48348 10.3768L3.97151 8.55541M12.0283 5.44344L12.5163 3.62208L14.3377 4.11011"
16
+ strokeWidth="1.5"
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ </svg>
21
+ );
22
+ };
@@ -0,0 +1,20 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconRefresh3 = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="14"
7
+ height="14"
8
+ viewBox="0 0 14 14"
9
+ fill="currentColor"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ {...props}
12
+ >
13
+ <path
14
+ fillRule="evenodd"
15
+ clipRule="evenodd"
16
+ d="M3.59558 1.16919C4.88594 0.415693 6.38985 0.111609 7.87159 0.304595C9.35334 0.497581 10.7292 1.17673 11.7835 2.23561C12.8378 3.29448 13.511 4.67324 13.6976 6.1558C13.7494 6.56677 13.4581 6.94186 13.0472 6.99359C12.6362 7.04531 12.2611 6.75409 12.2094 6.34311C12.0642 5.18997 11.5406 4.11757 10.7206 3.29398C9.9005 2.47038 8.83037 1.94214 7.67786 1.79203C6.52536 1.64193 5.35562 1.87844 4.35197 2.46452C3.68897 2.85167 3.12319 3.37691 2.68993 3.99946H4.75C5.16421 3.99946 5.5 4.33525 5.5 4.74946C5.5 5.16367 5.16421 5.49946 4.75 5.49946H1.45345C1.44201 5.49972 1.43054 5.49972 1.41905 5.49946H1C0.585786 5.49946 0.25 5.16367 0.25 4.74946V0.999459C0.25 0.585245 0.585786 0.249459 1 0.249459C1.41421 0.249459 1.75 0.585245 1.75 0.999459V2.75463C2.2607 2.12294 2.88466 1.58432 3.59558 1.16919ZM0.952306 7.0054C1.36324 6.95338 1.73854 7.24433 1.79056 7.65527C1.93649 8.80799 2.46054 9.8798 3.28068 10.7029C4.10082 11.526 5.17073 12.0538 6.32293 12.2039C7.47513 12.354 8.64457 12.1177 9.64815 11.5321C10.3107 11.1455 10.8763 10.6211 11.3097 9.99946H9.25C8.83579 9.99946 8.5 9.66367 8.5 9.24946C8.5 8.83525 8.83579 8.49946 9.25 8.49946H12.5473C12.5587 8.4992 12.5702 8.49919 12.5817 8.49946H13C13.4142 8.49946 13.75 8.83525 13.75 9.24946V12.9995C13.75 13.4137 13.4142 13.7495 13 13.7495C12.5858 13.7495 12.25 13.4137 12.25 12.9995V11.2434C11.7391 11.8747 11.115 12.4129 10.4041 12.8277C9.11389 13.5805 7.61048 13.8842 6.12922 13.6913C4.64796 13.4984 3.27248 12.8198 2.21812 11.7616C1.16376 10.7035 0.490043 9.32559 0.302438 7.84365C0.250417 7.43272 0.541372 7.05742 0.952306 7.0054Z"
17
+ />
18
+ </svg>
19
+ );
20
+ };
@@ -0,0 +1,22 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconRepeat = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="16"
7
+ height="15"
8
+ viewBox="0 0 16 15"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M7.33398 0.8125L9.33398 2.8125M9.33398 2.8125L7.33398 4.8125M9.33398 2.8125H4.53398C3.41388 2.8125 2.85383 2.8125 2.426 3.03049C2.04968 3.22223 1.74372 3.52819 1.55197 3.90452C1.33398 4.33234 1.33398 4.8924 1.33398 6.0125V9.8125C1.33398 10.1221 1.33398 10.2769 1.35109 10.4069C1.46925 11.3044 2.17546 12.0106 3.07293 12.1287C3.2029 12.1458 3.3577 12.1458 3.66732 12.1458M6.66732 12.1458H11.4673C12.5874 12.1458 13.1475 12.1458 13.5753 11.9278C13.9516 11.7361 14.2576 11.4301 14.4493 11.0538C14.6673 10.626 14.6673 10.0659 14.6673 8.94583V5.14583C14.6673 4.83622 14.6673 4.68141 14.6502 4.55145C14.5321 3.65398 13.8258 2.94776 12.9284 2.82961C12.7984 2.8125 12.6436 2.8125 12.334 2.8125M6.66732 12.1458L8.66732 14.1458M6.66732 12.1458L8.66732 10.1458"
16
+ strokeWidth="1.5"
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ </svg>
21
+ );
22
+ };
@@ -0,0 +1,22 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconRepeat2 = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="16"
7
+ height="16"
8
+ viewBox="0 0 16 16"
9
+ fill="none"
10
+ stroke="currentColor"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M8.66634 14.6668L6.66634 12.6668M6.66634 12.6668L8.66634 10.6668M6.66634 12.6668H9.99967C12.577 12.6668 14.6663 10.5775 14.6663 8.00016C14.6663 6.13857 13.5763 4.53156 11.9997 3.78258M3.99967 12.2177C2.42304 11.4688 1.33301 9.86176 1.33301 8.00016C1.33301 5.42283 3.42235 3.3335 5.99967 3.3335H9.33301M9.33301 3.3335L7.33301 1.3335M9.33301 3.3335L7.33301 5.3335"
16
+ strokeWidth="1.5"
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ </svg>
21
+ );
22
+ };
@@ -0,0 +1,33 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconRetweet = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="21"
7
+ height="21"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ fill="none"
10
+ stroke="currentColor"
11
+ {...props}
12
+ >
13
+ <g>
14
+ <g
15
+ transform="rotate(90 10.5 10.5)"
16
+ strokeWidth="2"
17
+ fill="none"
18
+ fillRule="evenodd"
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ id="svg_1"
22
+ >
23
+ <path d="m13.5,13.5l3,3l3,-3" id="svg_2" />
24
+ <path
25
+ d="m9.5,4.5l3,0a4,4 0 0 1 4,4l0,8m-9,-9l-3,-3l-3,3"
26
+ id="svg_3"
27
+ />
28
+ <path d="m11.5,16.5l-3,0a4,4 0 0 1 -4,-4l0,-8" id="svg_4" />
29
+ </g>
30
+ </g>
31
+ </svg>
32
+ );
33
+ };
@@ -0,0 +1,25 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconRoundChart = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="12"
7
+ height="13"
8
+ viewBox="0 0 12 13"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ {...props}
12
+ >
13
+ <path
14
+ d="M6.0249 1.1001C6.89933 1.10008 7.76105 1.3095 8.53793 1.71084C9.31482 2.11219 9.98427 2.69378 10.4903 3.40694C10.9963 4.12009 11.3241 4.94408 11.4463 5.80992C11.5685 6.67577 11.4815 7.5583 11.1927 8.38364L6.0249 6.57507V1.1001Z"
15
+ fill="currentColor"
16
+ />
17
+ <path
18
+ d="M0.549927 6.57507C0.549927 7.29406 0.691541 8.006 0.966684 8.67026C1.24183 9.33451 1.64511 9.93807 2.15351 10.4465C2.66191 10.9549 3.26547 11.3581 3.92972 11.6333C4.59397 11.9084 5.30592 12.05 6.0249 12.05C6.74389 12.05 7.45583 11.9084 8.12008 11.6333C8.78434 11.3581 9.3879 10.9549 9.89629 10.4465C10.4047 9.93807 10.808 9.33451 11.0831 8.67026C11.3583 8.006 11.4999 7.29406 11.4999 6.57507C11.4999 5.12302 10.9231 3.73044 9.89629 2.70368C8.86954 1.67692 7.47696 1.1001 6.0249 1.1001C4.57285 1.1001 3.18027 1.67692 2.15351 2.70368C1.12675 3.73044 0.549927 5.12302 0.549927 6.57507Z"
19
+ stroke="currentColor"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ </svg>
24
+ );
25
+ };
@@ -0,0 +1,29 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconRoundChart2 = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="20"
7
+ height="20"
8
+ viewBox="0 0 20 20"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <g clipPath="url(#clip0_240_3500)">
15
+ <path
16
+ d="M10.0001 1.6665C11.0944 1.6665 12.1781 1.88205 13.1891 2.30084C14.2002 2.71963 15.1188 3.33346 15.8926 4.10728C16.6665 4.8811 17.2803 5.79977 17.6991 6.81081C18.1179 7.82186 18.3334 8.90549 18.3334 9.99984M10.0001 1.6665V9.99984M10.0001 1.6665C5.39771 1.6665 1.66675 5.39746 1.66675 9.99984C1.66675 14.6022 5.39771 18.3332 10.0001 18.3332C14.6025 18.3332 18.3334 14.6022 18.3334 9.99984M10.0001 1.6665C14.6025 1.6665 18.3334 5.39747 18.3334 9.99984M18.3334 9.99984L10.0001 9.99984M18.3334 9.99984C18.3334 11.3149 18.0222 12.6113 17.4251 13.7831C16.8281 14.9548 15.9622 15.9687 14.8983 16.7416L10.0001 9.99984"
17
+ strokeWidth="1.67"
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ />
21
+ </g>
22
+ <defs>
23
+ <clipPath id="clip0_240_3500">
24
+ <rect width="20" height="20" fill="white" />
25
+ </clipPath>
26
+ </defs>
27
+ </svg>
28
+ );
29
+ };
@@ -0,0 +1,22 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconRoute = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="12"
7
+ height="12"
8
+ viewBox="0 0 12 12"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M5.75 2.5H5.9672C7.49082 2.5 8.25263 2.5 8.54182 2.77364C8.79179 3.01018 8.90257 3.35864 8.83508 3.69611C8.75701 4.08651 8.13505 4.52643 6.89114 5.40627L4.85886 6.84373C3.61495 7.72357 2.99299 8.16349 2.91492 8.55389C2.84743 8.89136 2.95821 9.23982 3.20818 9.47636C3.49737 9.75 4.25918 9.75 5.7828 9.75H6.25M4 2.5C4 3.32843 3.32843 4 2.5 4C1.67157 4 1 3.32843 1 2.5C1 1.67157 1.67157 1 2.5 1C3.32843 1 4 1.67157 4 2.5ZM11 9.5C11 10.3284 10.3284 11 9.5 11C8.67157 11 8 10.3284 8 9.5C8 8.67157 8.67157 8 9.5 8C10.3284 8 11 8.67157 11 9.5Z"
16
+ strokeWidth="1.5"
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ </svg>
21
+ );
22
+ };
@@ -0,0 +1,25 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconSave = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="20"
7
+ height="20"
8
+ viewBox="0 0 20 20"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <g id="save-01">
15
+ <path
16
+ id="Icon"
17
+ d="M5.83333 2.5V5.33333C5.83333 5.80004 5.83333 6.0334 5.92416 6.21166C6.00406 6.36846 6.13154 6.49594 6.28834 6.57584C6.4666 6.66667 6.69996 6.66667 7.16667 6.66667H12.8333C13.3 6.66667 13.5334 6.66667 13.7117 6.57584C13.8685 6.49594 13.9959 6.36846 14.0758 6.21166C14.1667 6.0334 14.1667 5.80004 14.1667 5.33333V3.33333M14.1667 17.5V12.1667C14.1667 11.7 14.1667 11.4666 14.0758 11.2883C13.9959 11.1315 13.8685 11.0041 13.7117 10.9242C13.5334 10.8333 13.3 10.8333 12.8333 10.8333H7.16667C6.69996 10.8333 6.4666 10.8333 6.28834 10.9242C6.13154 11.0041 6.00406 11.1315 5.92416 11.2883C5.83333 11.4666 5.83333 11.7 5.83333 12.1667V17.5M17.5 7.77124V13.5C17.5 14.9001 17.5 15.6002 17.2275 16.135C16.9878 16.6054 16.6054 16.9878 16.135 17.2275C15.6002 17.5 14.9001 17.5 13.5 17.5H6.5C5.09987 17.5 4.3998 17.5 3.86502 17.2275C3.39462 16.9878 3.01217 16.6054 2.77248 16.135C2.5 15.6002 2.5 14.9001 2.5 13.5V6.5C2.5 5.09987 2.5 4.3998 2.77248 3.86502C3.01217 3.39462 3.39462 3.01217 3.86502 2.77248C4.3998 2.5 5.09987 2.5 6.5 2.5H12.2288C12.6364 2.5 12.8402 2.5 13.0321 2.54605C13.2021 2.58688 13.3647 2.65422 13.5138 2.7456C13.682 2.84867 13.8261 2.9928 14.1144 3.28105L16.719 5.88562C17.0072 6.17387 17.1513 6.318 17.2544 6.48619C17.3458 6.63531 17.4131 6.79789 17.4539 6.96795C17.5 7.15976 17.5 7.36358 17.5 7.77124Z"
18
+ strokeWidth="1.66667"
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ />
22
+ </g>
23
+ </svg>
24
+ );
25
+ };
@@ -0,0 +1,22 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconSave2 = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="14"
7
+ height="14"
8
+ viewBox="0 0 14 14"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M8.99316 4.33333H4.7265C4.35313 4.33333 4.16645 4.33333 4.02384 4.26067C3.8984 4.19676 3.79641 4.09477 3.73249 3.96933C3.65983 3.82672 3.65983 3.64004 3.65983 3.26667V1M10.3265 13V8.73333C10.3265 8.35997 10.3265 8.17328 10.2538 8.03067C10.1899 7.90523 10.0879 7.80324 9.96249 7.73933C9.81988 7.66667 9.6332 7.66667 9.25983 7.66667H4.7265C4.35313 7.66667 4.16645 7.66667 4.02384 7.73933C3.8984 7.80324 3.79641 7.90523 3.73249 8.03067C3.65983 8.17328 3.65983 8.35997 3.65983 8.73333V13M12.9932 5.21699V9.8C12.9932 10.9201 12.9932 11.4802 12.7752 11.908C12.5834 12.2843 12.2775 12.5903 11.9011 12.782C11.4733 13 10.9133 13 9.79316 13H4.19316C3.07306 13 2.51301 13 2.08518 12.782C1.70886 12.5903 1.4029 12.2843 1.21115 11.908C0.993164 11.4802 0.993164 10.9201 0.993164 9.8V4.2C0.993164 3.0799 0.993164 2.51984 1.21115 2.09202C1.4029 1.71569 1.70886 1.40973 2.08518 1.21799C2.51301 1 3.07306 1 4.19316 1H8.77618C9.1023 1 9.26536 1 9.41881 1.03684C9.55486 1.0695 9.68491 1.12337 9.80421 1.19648C9.93877 1.27894 10.0541 1.39424 10.2847 1.62484L12.3683 3.7085C12.5989 3.9391 12.7142 4.0544 12.7967 4.18895C12.8698 4.30825 12.9237 4.43831 12.9563 4.57436C12.9932 4.72781 12.9932 4.89087 12.9932 5.21699Z"
16
+ strokeWidth="1.5"
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ </svg>
21
+ );
22
+ };
@@ -0,0 +1,22 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconScanDots = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="20"
7
+ height="20"
8
+ viewBox="0 0 20 20"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M6 1H5.8C4.11984 1 3.27976 1 2.63803 1.32698C2.07354 1.6146 1.6146 2.07354 1.32698 2.63803C1 3.27976 1 4.11984 1 5.8V6M6 19H5.8C4.11984 19 3.27976 19 2.63803 18.673C2.07354 18.3854 1.6146 17.9265 1.32698 17.362C1 16.7202 1 15.8802 1 14.2V14M19 6V5.8C19 4.11984 19 3.27976 18.673 2.63803C18.3854 2.07354 17.9265 1.6146 17.362 1.32698C16.7202 1 15.8802 1 14.2 1H14M19 14V14.2C19 15.8802 19 16.7202 18.673 17.362C18.3854 17.9265 17.9265 18.3854 17.362 18.673C16.7202 19 15.8802 19 14.2 19H14M1 10H1.01M5.5 10H5.51M14.5 10H14.51M10 10H10.01M19 10H19.01"
16
+ strokeWidth="2"
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ </svg>
21
+ );
22
+ };
@@ -0,0 +1,22 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconSearch = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="20"
8
+ height="20"
9
+ viewBox="0 0 20 20"
10
+ fill="none"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M17.5 17.5L14.5834 14.5833M16.6667 9.58333C16.6667 13.4954 13.4954 16.6667 9.58333 16.6667C5.67132 16.6667 2.5 13.4954 2.5 9.58333C2.5 5.67132 5.67132 2.5 9.58333 2.5C13.4954 2.5 16.6667 5.67132 16.6667 9.58333Z"
16
+ strokeWidth="1.66667"
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ </svg>
21
+ );
22
+ };
@@ -0,0 +1,25 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconSend = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="20"
7
+ height="20"
8
+ viewBox="0 0 20 20"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <g id="send-01">
15
+ <path
16
+ id="Icon"
17
+ d="M8.74976 11.25L17.4998 2.50002M8.85608 11.5234L11.0462 17.1551C11.2391 17.6512 11.3356 17.8993 11.4746 17.9717C11.5951 18.0345 11.7386 18.0345 11.8592 17.9719C11.9983 17.8997 12.095 17.6517 12.2886 17.1558L17.7805 3.08269C17.9552 2.63504 18.0426 2.41121 17.9948 2.26819C17.9533 2.14398 17.8558 2.04651 17.7316 2.00501C17.5886 1.95723 17.3647 2.04458 16.9171 2.21927L2.84398 7.71122C2.34808 7.90474 2.10013 8.0015 2.02788 8.14059C1.96524 8.26116 1.96532 8.4047 2.0281 8.5252C2.10052 8.66421 2.34859 8.76067 2.84471 8.95361L8.47638 11.1437C8.57708 11.1829 8.62744 11.2024 8.66984 11.2327C8.70742 11.2595 8.74028 11.2924 8.76709 11.3299C8.79734 11.3723 8.81692 11.4227 8.85608 11.5234Z"
18
+ strokeWidth="1.66667"
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ />
22
+ </g>
23
+ </svg>
24
+ );
25
+ };
@@ -0,0 +1,32 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconSettings = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="24"
7
+ height="24"
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <g id="settings-01">
15
+ <g id="Icon">
16
+ <path
17
+ d="M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z"
18
+ strokeWidth="2"
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ />
22
+ <path
23
+ d="M18.7273 14.7273C18.6063 15.0015 18.5702 15.3056 18.6236 15.6005C18.6771 15.8954 18.8177 16.1676 19.0273 16.3818L19.0818 16.4364C19.2509 16.6052 19.385 16.8057 19.4765 17.0265C19.568 17.2472 19.6151 17.4838 19.6151 17.7227C19.6151 17.9617 19.568 18.1983 19.4765 18.419C19.385 18.6397 19.2509 18.8402 19.0818 19.0091C18.913 19.1781 18.7124 19.3122 18.4917 19.4037C18.271 19.4952 18.0344 19.5423 17.7955 19.5423C17.5565 19.5423 17.3199 19.4952 17.0992 19.4037C16.8785 19.3122 16.678 19.1781 16.5091 19.0091L16.4545 18.9545C16.2403 18.745 15.9682 18.6044 15.6733 18.5509C15.3784 18.4974 15.0742 18.5335 14.8 18.6545C14.5311 18.7698 14.3018 18.9611 14.1403 19.205C13.9788 19.4489 13.8921 19.7347 13.8909 20.0273V20.1818C13.8909 20.664 13.6994 21.1265 13.3584 21.4675C13.0174 21.8084 12.5549 22 12.0727 22C11.5905 22 11.1281 21.8084 10.7871 21.4675C10.4461 21.1265 10.2545 20.664 10.2545 20.1818V20.1C10.2475 19.7991 10.1501 19.5073 9.97501 19.2625C9.79991 19.0176 9.55521 18.8312 9.27273 18.7273C8.99853 18.6063 8.69437 18.5702 8.39947 18.6236C8.10456 18.6771 7.83244 18.8177 7.61818 19.0273L7.56364 19.0818C7.39478 19.2509 7.19425 19.385 6.97353 19.4765C6.7528 19.568 6.51621 19.6151 6.27727 19.6151C6.03834 19.6151 5.80174 19.568 5.58102 19.4765C5.36029 19.385 5.15977 19.2509 4.99091 19.0818C4.82186 18.913 4.68775 18.7124 4.59626 18.4917C4.50476 18.271 4.45766 18.0344 4.45766 17.7955C4.45766 17.5565 4.50476 17.3199 4.59626 17.0992C4.68775 16.8785 4.82186 16.678 4.99091 16.5091L5.04545 16.4545C5.25503 16.2403 5.39562 15.9682 5.4491 15.6733C5.50257 15.3784 5.46647 15.0742 5.34545 14.8C5.23022 14.5311 5.03887 14.3018 4.79497 14.1403C4.55107 13.9788 4.26526 13.8921 3.97273 13.8909H3.81818C3.33597 13.8909 2.87351 13.6994 2.53253 13.3584C2.19156 13.0174 2 12.5549 2 12.0727C2 11.5905 2.19156 11.1281 2.53253 10.7871C2.87351 10.4461 3.33597 10.2545 3.81818 10.2545H3.9C4.2009 10.2475 4.49273 10.1501 4.73754 9.97501C4.98236 9.79991 5.16883 9.55521 5.27273 9.27273C5.39374 8.99853 5.42984 8.69437 5.37637 8.39947C5.3229 8.10456 5.18231 7.83244 4.97273 7.61818L4.91818 7.56364C4.74913 7.39478 4.61503 7.19425 4.52353 6.97353C4.43203 6.7528 4.38493 6.51621 4.38493 6.27727C4.38493 6.03834 4.43203 5.80174 4.52353 5.58102C4.61503 5.36029 4.74913 5.15977 4.91818 4.99091C5.08704 4.82186 5.28757 4.68775 5.50829 4.59626C5.72901 4.50476 5.96561 4.45766 6.20455 4.45766C6.44348 4.45766 6.68008 4.50476 6.9008 4.59626C7.12152 4.68775 7.32205 4.82186 7.49091 4.99091L7.54545 5.04545C7.75971 5.25503 8.03183 5.39562 8.32674 5.4491C8.62164 5.50257 8.9258 5.46647 9.2 5.34545H9.27273C9.54161 5.23022 9.77093 5.03887 9.93245 4.79497C10.094 4.55107 10.1807 4.26526 10.1818 3.97273V3.81818C10.1818 3.33597 10.3734 2.87351 10.7144 2.53253C11.0553 2.19156 11.5178 2 12 2C12.4822 2 12.9447 2.19156 13.2856 2.53253C13.6266 2.87351 13.8182 3.33597 13.8182 3.81818V3.9C13.8193 4.19253 13.906 4.47834 14.0676 4.72224C14.2291 4.96614 14.4584 5.15749 14.7273 5.27273C15.0015 5.39374 15.3056 5.42984 15.6005 5.37637C15.8954 5.3229 16.1676 5.18231 16.3818 4.97273L16.4364 4.91818C16.6052 4.74913 16.8057 4.61503 17.0265 4.52353C17.2472 4.43203 17.4838 4.38493 17.7227 4.38493C17.9617 4.38493 18.1983 4.43203 18.419 4.52353C18.6397 4.61503 18.8402 4.74913 19.0091 4.91818C19.1781 5.08704 19.3122 5.28757 19.4037 5.50829C19.4952 5.72901 19.5423 5.96561 19.5423 6.20455C19.5423 6.44348 19.4952 6.68008 19.4037 6.9008C19.3122 7.12152 19.1781 7.32205 19.0091 7.49091L18.9545 7.54545C18.745 7.75971 18.6044 8.03183 18.5509 8.32674C18.4974 8.62164 18.5335 8.9258 18.6545 9.2V9.27273C18.7698 9.54161 18.9611 9.77093 19.205 9.93245C19.4489 10.094 19.7347 10.1807 20.0273 10.1818H20.1818C20.664 10.1818 21.1265 10.3734 21.4675 10.7144C21.8084 11.0553 22 11.5178 22 12C22 12.4822 21.8084 12.9447 21.4675 13.2856C21.1265 13.6266 20.664 13.8182 20.1818 13.8182H20.1C19.8075 13.8193 19.5217 13.906 19.2778 14.0676C19.0339 14.2291 18.8425 14.4584 18.7273 14.7273Z"
24
+ strokeWidth="2"
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ </g>
29
+ </g>
30
+ </svg>
31
+ );
32
+ };
@@ -0,0 +1,25 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconSettings2 = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="24"
7
+ height="24"
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <g id="settings-03">
15
+ <path
16
+ id="Icon"
17
+ d="M15.0505 9H5.5C4.11929 9 3 7.88071 3 6.5C3 5.11929 4.11929 4 5.5 4H15.0505M8.94949 20H18.5C19.8807 20 21 18.8807 21 17.5C21 16.1193 19.8807 15 18.5 15H8.94949M3 17.5C3 19.433 4.567 21 6.5 21C8.433 21 10 19.433 10 17.5C10 15.567 8.433 14 6.5 14C4.567 14 3 15.567 3 17.5ZM21 6.5C21 8.433 19.433 10 17.5 10C15.567 10 14 8.433 14 6.5C14 4.567 15.567 3 17.5 3C19.433 3 21 4.567 21 6.5Z"
18
+ strokeWidth="2"
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ />
22
+ </g>
23
+ </svg>
24
+ );
25
+ };
@@ -0,0 +1,22 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconSettings3 = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="24"
8
+ height="24"
9
+ viewBox="0 0 24 24"
10
+ fill="none"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M3 8L15 8M15 8C15 9.65686 16.3431 11 18 11C19.6569 11 21 9.65685 21 8C21 6.34315 19.6569 5 18 5C16.3431 5 15 6.34315 15 8ZM9 16L21 16M9 16C9 17.6569 7.65685 19 6 19C4.34315 19 3 17.6569 3 16C3 14.3431 4.34315 13 6 13C7.65685 13 9 14.3431 9 16Z"
16
+ strokeWidth="2"
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ </svg>
21
+ );
22
+ };
@@ -0,0 +1,22 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconShieldLightning = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="18"
7
+ height="22"
8
+ viewBox="0 0 18 22"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M10 6.50011L7 9.50011L11 11.5001L8 14.5001M17 11.0001C17 15.9086 11.646 19.4785 9.69799 20.615C9.4766 20.7442 9.3659 20.8087 9.20968 20.8422C9.08844 20.8682 8.91156 20.8682 8.79032 20.8422C8.6341 20.8087 8.5234 20.7442 8.30201 20.615C6.35396 19.4785 1 15.9086 1 11.0001V6.21772C1 5.4182 1 5.01845 1.13076 4.67482C1.24627 4.37126 1.43398 4.10039 1.67766 3.88564C1.9535 3.64255 2.3278 3.50219 3.0764 3.22146L8.4382 1.21079C8.6461 1.13283 8.75005 1.09385 8.85698 1.07839C8.95184 1.06469 9.04816 1.06469 9.14302 1.07839C9.24995 1.09385 9.3539 1.13283 9.5618 1.21079L14.9236 3.22146C15.6722 3.50219 16.0465 3.64255 16.3223 3.88564C16.566 4.10039 16.7537 4.37126 16.8692 4.67482C17 5.01845 17 5.4182 17 6.21772V11.0001Z"
16
+ strokeWidth="2"
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ </svg>
21
+ );
22
+ };
@@ -0,0 +1,22 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconShieldPlus = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="16"
7
+ height="20"
8
+ viewBox="0 0 16 20"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M7.99967 12.0836V7.08363M5.49967 9.58363H10.4997M14.6663 10.0003C14.6663 14.0907 10.2047 17.0656 8.58133 18.0127C8.39684 18.1203 8.30459 18.1741 8.17441 18.2021C8.07338 18.2237 7.92597 18.2237 7.82494 18.2021C7.69475 18.1741 7.60251 18.1203 7.41802 18.0127C5.79464 17.0656 1.33301 14.0907 1.33301 10.0003V6.01497C1.33301 5.34871 1.33301 5.01558 1.44197 4.72922C1.53824 4.47625 1.69466 4.25053 1.89772 4.07157C2.12759 3.869 2.43951 3.75203 3.06334 3.51809L7.53151 1.84253C7.70476 1.77756 7.79138 1.74508 7.88049 1.7322C7.95954 1.72078 8.03981 1.72078 8.11885 1.7322C8.20797 1.74508 8.29459 1.77756 8.46784 1.84253L12.936 3.51809C13.5598 3.75203 13.8718 3.869 14.1016 4.07157C14.3047 4.25053 14.4611 4.47625 14.5574 4.72922C14.6663 5.01558 14.6663 5.34871 14.6663 6.01497V10.0003Z"
16
+ strokeWidth="1.66667"
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ </svg>
21
+ );
22
+ };
@@ -0,0 +1,16 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconShieldRemove = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="9"
7
+ height="10"
8
+ viewBox="0 0 9 10"
9
+ fill="currentColor"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ {...props}
12
+ >
13
+ <path d="M4.79996 5.75375L5.48246 6.44489C5.57184 6.53539 5.68559 6.58065 5.82371 6.58065C5.96184 6.58065 6.07559 6.53539 6.16496 6.44489C6.25434 6.35438 6.29903 6.23919 6.29903 6.09932C6.29903 5.95945 6.25434 5.84426 6.16496 5.75375L5.48246 5.06261L6.16496 4.37147C6.25434 4.28096 6.29903 4.16577 6.29903 4.0259C6.29903 3.88603 6.25434 3.77084 6.16496 3.68033C6.07559 3.58982 5.96184 3.54457 5.82371 3.54457C5.68559 3.54457 5.57184 3.58982 5.48246 3.68033L4.79996 4.37147L4.11746 3.68033C4.02809 3.58982 3.91434 3.54457 3.77621 3.54457C3.63809 3.54457 3.52434 3.58982 3.43496 3.68033C3.34559 3.77084 3.3009 3.88603 3.3009 4.0259C3.3009 4.16577 3.34559 4.28096 3.43496 4.37147L4.11746 5.06261L3.43496 5.75375C3.34559 5.84426 3.3009 5.95945 3.3009 6.09932C3.3009 6.23919 3.34559 6.35438 3.43496 6.44489C3.52434 6.53539 3.63809 6.58065 3.77621 6.58065C3.91434 6.58065 4.02809 6.53539 4.11746 6.44489L4.79996 5.75375ZM4.79996 9.94995C4.74309 9.94995 4.69028 9.94584 4.64153 9.93761C4.59278 9.92938 4.54403 9.91704 4.49528 9.90058C3.3984 9.53033 2.52496 8.84528 1.87496 7.84543C1.22496 6.84558 0.899963 5.76988 0.899963 4.61831V2.28571C0.899963 2.08001 0.958951 1.89489 1.07693 1.73033C1.1949 1.56577 1.34716 1.44647 1.53371 1.37242L4.45871 0.26166C4.57246 0.220521 4.68621 0.199951 4.79996 0.199951C4.91371 0.199951 5.02746 0.220521 5.14121 0.26166L8.06621 1.37242C8.25309 1.44647 8.40551 1.56577 8.52349 1.73033C8.64146 1.89489 8.70029 2.08001 8.69996 2.28571V4.61831C8.69996 5.77021 8.37496 6.84608 7.72496 7.84593C7.07496 8.84578 6.20153 9.53066 5.10465 9.90058C5.0559 9.91704 5.00715 9.92938 4.9584 9.93761C4.90965 9.94584 4.85684 9.94995 4.79996 9.94995ZM4.79996 8.96261C5.64496 8.69109 6.34371 8.14805 6.89621 7.3335C7.44871 6.51894 7.72496 5.61388 7.72496 4.61831V2.28571L4.79996 1.17495L1.87496 2.28571V4.61831C1.87496 5.61388 2.15121 6.51894 2.70371 7.3335C3.25621 8.14805 3.95496 8.69109 4.79996 8.96261Z" />
14
+ </svg>
15
+ );
16
+ };
@@ -0,0 +1,25 @@
1
+ import type { IconProps } from '../types/icon';
2
+
3
+ export const IconShuffle = ({ ...props }: IconProps) => {
4
+ return (
5
+ <svg
6
+ width="16"
7
+ height="16"
8
+ viewBox="0 0 16 16"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ stroke="currentColor"
12
+ {...props}
13
+ >
14
+ <g id="shuffle-01">
15
+ <path
16
+ id="Icon"
17
+ d="M12 10L14 12M14 12L12 14M14 12H12.3793C11.7531 12 11.44 12 11.1559 11.9137C10.9043 11.8373 10.6702 11.712 10.4671 11.5451C10.2377 11.3565 10.064 11.096 9.71669 10.575L9.55556 10.3333M12 2L14 4M14 4L12 6M14 4H12.3793C11.7531 4 11.44 4 11.1559 4.0863C10.9043 4.1627 10.6702 4.28796 10.4671 4.45491C10.2377 4.64349 10.064 4.90398 9.71669 5.42496L6.28331 10.575C5.93599 11.096 5.76232 11.3565 5.53288 11.5451C5.32976 11.712 5.09572 11.8373 4.84414 11.9137C4.55996 12 4.24689 12 3.62075 12H2M2 4H3.62075C4.24689 4 4.55996 4 4.84414 4.0863C5.09572 4.1627 5.32976 4.28796 5.53288 4.45491C5.76232 4.64349 5.93599 4.90398 6.28331 5.42496L6.44444 5.66667"
18
+ strokeWidth="1.5"
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ />
22
+ </g>
23
+ </svg>
24
+ );
25
+ };