@edge-zuq/core 1.2.7

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 (702) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +99 -0
  3. package/lib/module/assets/logo.png +0 -0
  4. package/lib/module/data/errors/http-client-error.js +14 -0
  5. package/lib/module/data/errors/http-client-error.js.map +1 -0
  6. package/lib/module/data/errors/index.js +6 -0
  7. package/lib/module/data/errors/index.js.map +1 -0
  8. package/lib/module/data/errors/save-file-error.js +9 -0
  9. package/lib/module/data/errors/save-file-error.js.map +1 -0
  10. package/lib/module/data/errors/unsupported-platform.js +9 -0
  11. package/lib/module/data/errors/unsupported-platform.js.map +1 -0
  12. package/lib/module/data/models/index.js +6 -0
  13. package/lib/module/data/models/index.js.map +1 -0
  14. package/lib/module/data/models/remote-get-comment-list-model.js +2 -0
  15. package/lib/module/data/models/remote-get-comment-list-model.js.map +1 -0
  16. package/lib/module/data/models/remote-get-image-list-model.js +2 -0
  17. package/lib/module/data/models/remote-get-image-list-model.js.map +1 -0
  18. package/lib/module/data/models/remote-user-model.js +2 -0
  19. package/lib/module/data/models/remote-user-model.js.map +1 -0
  20. package/lib/module/data/protocols/cookie-manager.js +2 -0
  21. package/lib/module/data/protocols/cookie-manager.js.map +1 -0
  22. package/lib/module/data/protocols/download-manager.js +4 -0
  23. package/lib/module/data/protocols/download-manager.js.map +1 -0
  24. package/lib/module/data/protocols/http-client.js +26 -0
  25. package/lib/module/data/protocols/http-client.js.map +1 -0
  26. package/lib/module/data/protocols/index.js +9 -0
  27. package/lib/module/data/protocols/index.js.map +1 -0
  28. package/lib/module/data/protocols/notification-manager.js +4 -0
  29. package/lib/module/data/protocols/notification-manager.js.map +1 -0
  30. package/lib/module/data/protocols/permission-manager.js +4 -0
  31. package/lib/module/data/protocols/permission-manager.js.map +1 -0
  32. package/lib/module/data/protocols/storage.js +4 -0
  33. package/lib/module/data/protocols/storage.js.map +1 -0
  34. package/lib/module/data/use-cases/index.js +6 -0
  35. package/lib/module/data/use-cases/index.js.map +1 -0
  36. package/lib/module/data/use-cases/remote-get-comment-list.js +29 -0
  37. package/lib/module/data/use-cases/remote-get-comment-list.js.map +1 -0
  38. package/lib/module/data/use-cases/remote-get-image-list.js +32 -0
  39. package/lib/module/data/use-cases/remote-get-image-list.js.map +1 -0
  40. package/lib/module/data/use-cases/remote-send-diagnostics.js +20 -0
  41. package/lib/module/data/use-cases/remote-send-diagnostics.js.map +1 -0
  42. package/lib/module/domain/errors/authentication-expired-error.js +9 -0
  43. package/lib/module/domain/errors/authentication-expired-error.js.map +1 -0
  44. package/lib/module/domain/errors/index.js +7 -0
  45. package/lib/module/domain/errors/index.js.map +1 -0
  46. package/lib/module/domain/errors/internal-server-error.js +9 -0
  47. package/lib/module/domain/errors/internal-server-error.js.map +1 -0
  48. package/lib/module/domain/errors/invalid-credentials-error.js +9 -0
  49. package/lib/module/domain/errors/invalid-credentials-error.js.map +1 -0
  50. package/lib/module/domain/errors/no-app-permission-error.js +9 -0
  51. package/lib/module/domain/errors/no-app-permission-error.js.map +1 -0
  52. package/lib/module/domain/models/get-comment-list-model.js +2 -0
  53. package/lib/module/domain/models/get-comment-list-model.js.map +1 -0
  54. package/lib/module/domain/models/get-image-list-model.js +2 -0
  55. package/lib/module/domain/models/get-image-list-model.js.map +1 -0
  56. package/lib/module/domain/models/index.js +6 -0
  57. package/lib/module/domain/models/index.js.map +1 -0
  58. package/lib/module/domain/models/user-model.js +2 -0
  59. package/lib/module/domain/models/user-model.js.map +1 -0
  60. package/lib/module/domain/use-cases/get-comment-list.js +4 -0
  61. package/lib/module/domain/use-cases/get-comment-list.js.map +1 -0
  62. package/lib/module/domain/use-cases/get-image-list.js +4 -0
  63. package/lib/module/domain/use-cases/get-image-list.js.map +1 -0
  64. package/lib/module/domain/use-cases/index.js +9 -0
  65. package/lib/module/domain/use-cases/index.js.map +1 -0
  66. package/lib/module/domain/use-cases/record-request.js +4 -0
  67. package/lib/module/domain/use-cases/record-request.js.map +1 -0
  68. package/lib/module/domain/use-cases/send-diagnostics.js +4 -0
  69. package/lib/module/domain/use-cases/send-diagnostics.js.map +1 -0
  70. package/lib/module/domain/use-cases/user-authentication.js +4 -0
  71. package/lib/module/domain/use-cases/user-authentication.js.map +1 -0
  72. package/lib/module/domain/use-cases/user-logout.js +4 -0
  73. package/lib/module/domain/use-cases/user-logout.js.map +1 -0
  74. package/lib/module/index.js +16 -0
  75. package/lib/module/index.js.map +1 -0
  76. package/lib/module/infra/axios-http-client-adapter.js +199 -0
  77. package/lib/module/infra/axios-http-client-adapter.js.map +1 -0
  78. package/lib/module/infra/index.js +10 -0
  79. package/lib/module/infra/index.js.map +1 -0
  80. package/lib/module/infra/isomorphic-id-manager.js +83 -0
  81. package/lib/module/infra/isomorphic-id-manager.js.map +1 -0
  82. package/lib/module/infra/mmkv-storage-adapter.js +62 -0
  83. package/lib/module/infra/mmkv-storage-adapter.js.map +1 -0
  84. package/lib/module/infra/notifee-notification-manager-adapter.js +69 -0
  85. package/lib/module/infra/notifee-notification-manager-adapter.js.map +1 -0
  86. package/lib/module/infra/offline-mutation-queue.js +210 -0
  87. package/lib/module/infra/offline-mutation-queue.js.map +1 -0
  88. package/lib/module/infra/rnbu-download-manager-adapter.js +31 -0
  89. package/lib/module/infra/rnbu-download-manager-adapter.js.map +1 -0
  90. package/lib/module/infra/rnp-permission-manager-adapter.js +117 -0
  91. package/lib/module/infra/rnp-permission-manager-adapter.js.map +1 -0
  92. package/lib/module/infra/storage-cookie-manager-adapter.js +24 -0
  93. package/lib/module/infra/storage-cookie-manager-adapter.js.map +1 -0
  94. package/lib/module/main/components/index.js +7 -0
  95. package/lib/module/main/components/index.js.map +1 -0
  96. package/lib/module/main/components/request-permissions.js +14 -0
  97. package/lib/module/main/components/request-permissions.js.map +1 -0
  98. package/lib/module/main/factories/infra/download-manager-factory.js +7 -0
  99. package/lib/module/main/factories/infra/download-manager-factory.js.map +1 -0
  100. package/lib/module/main/factories/infra/http-client-factory.js +7 -0
  101. package/lib/module/main/factories/infra/http-client-factory.js.map +1 -0
  102. package/lib/module/main/factories/infra/index.js +10 -0
  103. package/lib/module/main/factories/infra/index.js.map +1 -0
  104. package/lib/module/main/factories/infra/isomorphic-id-manager-factory.js +7 -0
  105. package/lib/module/main/factories/infra/isomorphic-id-manager-factory.js.map +1 -0
  106. package/lib/module/main/factories/infra/notification-manager-factory.js +7 -0
  107. package/lib/module/main/factories/infra/notification-manager-factory.js.map +1 -0
  108. package/lib/module/main/factories/infra/offline-mutation-queue-factory.js +7 -0
  109. package/lib/module/main/factories/infra/offline-mutation-queue-factory.js.map +1 -0
  110. package/lib/module/main/factories/infra/permission-manager-factory.js +7 -0
  111. package/lib/module/main/factories/infra/permission-manager-factory.js.map +1 -0
  112. package/lib/module/main/factories/infra/storage-factory.js +10 -0
  113. package/lib/module/main/factories/infra/storage-factory.js.map +1 -0
  114. package/lib/module/main/factories/use-cases/index.js +6 -0
  115. package/lib/module/main/factories/use-cases/index.js.map +1 -0
  116. package/lib/module/main/factories/use-cases/remote-get-comment-list-factory.js +7 -0
  117. package/lib/module/main/factories/use-cases/remote-get-comment-list-factory.js.map +1 -0
  118. package/lib/module/main/factories/use-cases/remote-get-image-list-factory.js +7 -0
  119. package/lib/module/main/factories/use-cases/remote-get-image-list-factory.js.map +1 -0
  120. package/lib/module/main/factories/use-cases/remote-send-diagnostics-factory.js +7 -0
  121. package/lib/module/main/factories/use-cases/remote-send-diagnostics-factory.js.map +1 -0
  122. package/lib/module/package.json +1 -0
  123. package/lib/module/presentation/components/atoms/UIBackdrop.js +31 -0
  124. package/lib/module/presentation/components/atoms/UIBackdrop.js.map +1 -0
  125. package/lib/module/presentation/components/atoms/UICheckbox.js +47 -0
  126. package/lib/module/presentation/components/atoms/UICheckbox.js.map +1 -0
  127. package/lib/module/presentation/components/atoms/UIDot.js +33 -0
  128. package/lib/module/presentation/components/atoms/UIDot.js.map +1 -0
  129. package/lib/module/presentation/components/atoms/UIIcon.js +1072 -0
  130. package/lib/module/presentation/components/atoms/UIIcon.js.map +1 -0
  131. package/lib/module/presentation/components/atoms/UILoading.js +19 -0
  132. package/lib/module/presentation/components/atoms/UILoading.js.map +1 -0
  133. package/lib/module/presentation/components/atoms/UIPage.js +70 -0
  134. package/lib/module/presentation/components/atoms/UIPage.js.map +1 -0
  135. package/lib/module/presentation/components/atoms/UIProgress.js +54 -0
  136. package/lib/module/presentation/components/atoms/UIProgress.js.map +1 -0
  137. package/lib/module/presentation/components/atoms/UIScrollPage.js +72 -0
  138. package/lib/module/presentation/components/atoms/UIScrollPage.js.map +1 -0
  139. package/lib/module/presentation/components/atoms/UISeparator.js +30 -0
  140. package/lib/module/presentation/components/atoms/UISeparator.js.map +1 -0
  141. package/lib/module/presentation/components/atoms/UISpacer.js +19 -0
  142. package/lib/module/presentation/components/atoms/UISpacer.js.map +1 -0
  143. package/lib/module/presentation/components/atoms/UIStack.js +31 -0
  144. package/lib/module/presentation/components/atoms/UIStack.js.map +1 -0
  145. package/lib/module/presentation/components/atoms/UIText.js +48 -0
  146. package/lib/module/presentation/components/atoms/UIText.js.map +1 -0
  147. package/lib/module/presentation/components/atoms/index.js +15 -0
  148. package/lib/module/presentation/components/atoms/index.js.map +1 -0
  149. package/lib/module/presentation/components/index.js +4 -0
  150. package/lib/module/presentation/components/index.js.map +1 -0
  151. package/lib/module/presentation/components/molecules/UIActionSheet.js +199 -0
  152. package/lib/module/presentation/components/molecules/UIActionSheet.js.map +1 -0
  153. package/lib/module/presentation/components/molecules/UIButton.js +173 -0
  154. package/lib/module/presentation/components/molecules/UIButton.js.map +1 -0
  155. package/lib/module/presentation/components/molecules/UIButtonCTA.js +31 -0
  156. package/lib/module/presentation/components/molecules/UIButtonCTA.js.map +1 -0
  157. package/lib/module/presentation/components/molecules/UICheckboxInput.js +84 -0
  158. package/lib/module/presentation/components/molecules/UICheckboxInput.js.map +1 -0
  159. package/lib/module/presentation/components/molecules/UIChip.js +49 -0
  160. package/lib/module/presentation/components/molecules/UIChip.js.map +1 -0
  161. package/lib/module/presentation/components/molecules/UICurrencyInput.js +32 -0
  162. package/lib/module/presentation/components/molecules/UICurrencyInput.js.map +1 -0
  163. package/lib/module/presentation/components/molecules/UIDataList.js +26 -0
  164. package/lib/module/presentation/components/molecules/UIDataList.js.map +1 -0
  165. package/lib/module/presentation/components/molecules/UIDataSectionList.js +26 -0
  166. package/lib/module/presentation/components/molecules/UIDataSectionList.js.map +1 -0
  167. package/lib/module/presentation/components/molecules/UIDatetimeInput.js +202 -0
  168. package/lib/module/presentation/components/molecules/UIDatetimeInput.js.map +1 -0
  169. package/lib/module/presentation/components/molecules/UIError.js +32 -0
  170. package/lib/module/presentation/components/molecules/UIError.js.map +1 -0
  171. package/lib/module/presentation/components/molecules/UIImage.js +87 -0
  172. package/lib/module/presentation/components/molecules/UIImage.js.map +1 -0
  173. package/lib/module/presentation/components/molecules/UIInlineDatePicker.js +245 -0
  174. package/lib/module/presentation/components/molecules/UIInlineDatePicker.js.map +1 -0
  175. package/lib/module/presentation/components/molecules/UIInputIcon.js +38 -0
  176. package/lib/module/presentation/components/molecules/UIInputIcon.js.map +1 -0
  177. package/lib/module/presentation/components/molecules/UIList.js +16 -0
  178. package/lib/module/presentation/components/molecules/UIList.js.map +1 -0
  179. package/lib/module/presentation/components/molecules/UIRadioInput.js +78 -0
  180. package/lib/module/presentation/components/molecules/UIRadioInput.js.map +1 -0
  181. package/lib/module/presentation/components/molecules/UISectionList.js +16 -0
  182. package/lib/module/presentation/components/molecules/UISectionList.js.map +1 -0
  183. package/lib/module/presentation/components/molecules/UISkeleton.js +54 -0
  184. package/lib/module/presentation/components/molecules/UISkeleton.js.map +1 -0
  185. package/lib/module/presentation/components/molecules/UISwitch.js +65 -0
  186. package/lib/module/presentation/components/molecules/UISwitch.js.map +1 -0
  187. package/lib/module/presentation/components/molecules/UITextInput.js +132 -0
  188. package/lib/module/presentation/components/molecules/UITextInput.js.map +1 -0
  189. package/lib/module/presentation/components/molecules/UITextInputMask.js +133 -0
  190. package/lib/module/presentation/components/molecules/UITextInputMask.js.map +1 -0
  191. package/lib/module/presentation/components/molecules/index.js +23 -0
  192. package/lib/module/presentation/components/molecules/index.js.map +1 -0
  193. package/lib/module/presentation/components/organisms/UIAppBar.js +102 -0
  194. package/lib/module/presentation/components/organisms/UIAppBar.js.map +1 -0
  195. package/lib/module/presentation/components/organisms/UIAppBarAction.js +21 -0
  196. package/lib/module/presentation/components/organisms/UIAppBarAction.js.map +1 -0
  197. package/lib/module/presentation/components/organisms/UICard.js +43 -0
  198. package/lib/module/presentation/components/organisms/UICard.js.map +1 -0
  199. package/lib/module/presentation/components/organisms/UIComment.js +73 -0
  200. package/lib/module/presentation/components/organisms/UIComment.js.map +1 -0
  201. package/lib/module/presentation/components/organisms/UIErrorBoundary.js +68 -0
  202. package/lib/module/presentation/components/organisms/UIErrorBoundary.js.map +1 -0
  203. package/lib/module/presentation/components/organisms/UIForm.js +83 -0
  204. package/lib/module/presentation/components/organisms/UIForm.js.map +1 -0
  205. package/lib/module/presentation/components/organisms/UIFormButton.js +43 -0
  206. package/lib/module/presentation/components/organisms/UIFormButton.js.map +1 -0
  207. package/lib/module/presentation/components/organisms/UIFormCheckboxInput.js +39 -0
  208. package/lib/module/presentation/components/organisms/UIFormCheckboxInput.js.map +1 -0
  209. package/lib/module/presentation/components/organisms/UIFormCurrencyInput.js +65 -0
  210. package/lib/module/presentation/components/organisms/UIFormCurrencyInput.js.map +1 -0
  211. package/lib/module/presentation/components/organisms/UIFormDatetimeInput.js +54 -0
  212. package/lib/module/presentation/components/organisms/UIFormDatetimeInput.js.map +1 -0
  213. package/lib/module/presentation/components/organisms/UIFormMultiselectInput.js +212 -0
  214. package/lib/module/presentation/components/organisms/UIFormMultiselectInput.js.map +1 -0
  215. package/lib/module/presentation/components/organisms/UIFormRadioInput.js +36 -0
  216. package/lib/module/presentation/components/organisms/UIFormRadioInput.js.map +1 -0
  217. package/lib/module/presentation/components/organisms/UIFormSelectInput.js +259 -0
  218. package/lib/module/presentation/components/organisms/UIFormSelectInput.js.map +1 -0
  219. package/lib/module/presentation/components/organisms/UIFormTextInput.js +64 -0
  220. package/lib/module/presentation/components/organisms/UIFormTextInput.js.map +1 -0
  221. package/lib/module/presentation/components/organisms/UIFormTextInputMask.js +69 -0
  222. package/lib/module/presentation/components/organisms/UIFormTextInputMask.js.map +1 -0
  223. package/lib/module/presentation/components/organisms/UIRow.js +55 -0
  224. package/lib/module/presentation/components/organisms/UIRow.js.map +1 -0
  225. package/lib/module/presentation/components/organisms/UISearchInput.js +33 -0
  226. package/lib/module/presentation/components/organisms/UISearchInput.js.map +1 -0
  227. package/lib/module/presentation/components/organisms/UISelectChip.js +94 -0
  228. package/lib/module/presentation/components/organisms/UISelectChip.js.map +1 -0
  229. package/lib/module/presentation/components/organisms/UISignature.js +159 -0
  230. package/lib/module/presentation/components/organisms/UISignature.js.map +1 -0
  231. package/lib/module/presentation/components/organisms/UISlideButton.js +90 -0
  232. package/lib/module/presentation/components/organisms/UISlideButton.js.map +1 -0
  233. package/lib/module/presentation/components/organisms/index.js +24 -0
  234. package/lib/module/presentation/components/organisms/index.js.map +1 -0
  235. package/lib/module/presentation/components/permissions/index.js +4 -0
  236. package/lib/module/presentation/components/permissions/index.js.map +1 -0
  237. package/lib/module/presentation/components/permissions/request-permissions.js +96 -0
  238. package/lib/module/presentation/components/permissions/request-permissions.js.map +1 -0
  239. package/lib/module/presentation/domain/metadata/index.js +5 -0
  240. package/lib/module/presentation/domain/metadata/index.js.map +1 -0
  241. package/lib/module/presentation/domain/metadata/use-comments.js +26 -0
  242. package/lib/module/presentation/domain/metadata/use-comments.js.map +1 -0
  243. package/lib/module/presentation/domain/metadata/use-images.js +26 -0
  244. package/lib/module/presentation/domain/metadata/use-images.js.map +1 -0
  245. package/lib/module/presentation/domain/offline/index.js +12 -0
  246. package/lib/module/presentation/domain/offline/index.js.map +1 -0
  247. package/lib/module/presentation/domain/offline/offline-mutation-queue-provider.js +69 -0
  248. package/lib/module/presentation/domain/offline/offline-mutation-queue-provider.js.map +1 -0
  249. package/lib/module/presentation/domain/offline/types.js +4 -0
  250. package/lib/module/presentation/domain/offline/types.js.map +1 -0
  251. package/lib/module/presentation/domain/offline/use-infinite-offline-query.js +69 -0
  252. package/lib/module/presentation/domain/offline/use-infinite-offline-query.js.map +1 -0
  253. package/lib/module/presentation/domain/offline/use-offline-id-v2.js +22 -0
  254. package/lib/module/presentation/domain/offline/use-offline-id-v2.js.map +1 -0
  255. package/lib/module/presentation/domain/offline/use-offline-id.js +11 -0
  256. package/lib/module/presentation/domain/offline/use-offline-id.js.map +1 -0
  257. package/lib/module/presentation/domain/offline/use-offline-mutation.js +115 -0
  258. package/lib/module/presentation/domain/offline/use-offline-mutation.js.map +1 -0
  259. package/lib/module/presentation/domain/offline/use-offline-query.js +33 -0
  260. package/lib/module/presentation/domain/offline/use-offline-query.js.map +1 -0
  261. package/lib/module/presentation/domain/offline/use-offline-queue.js +8 -0
  262. package/lib/module/presentation/domain/offline/use-offline-queue.js.map +1 -0
  263. package/lib/module/presentation/domain/offline/utils.js +110 -0
  264. package/lib/module/presentation/domain/offline/utils.js.map +1 -0
  265. package/lib/module/presentation/domain/provider/index.js +4 -0
  266. package/lib/module/presentation/domain/provider/index.js.map +1 -0
  267. package/lib/module/presentation/domain/provider/zuq-core-provider.js +51 -0
  268. package/lib/module/presentation/domain/provider/zuq-core-provider.js.map +1 -0
  269. package/lib/module/presentation/domain/utils/exists.js +6 -0
  270. package/lib/module/presentation/domain/utils/exists.js.map +1 -0
  271. package/lib/module/presentation/domain/utils/index.js +8 -0
  272. package/lib/module/presentation/domain/utils/index.js.map +1 -0
  273. package/lib/module/presentation/domain/utils/react-query.js +10 -0
  274. package/lib/module/presentation/domain/utils/react-query.js.map +1 -0
  275. package/lib/module/presentation/domain/utils/use-action-sheet.js +20 -0
  276. package/lib/module/presentation/domain/utils/use-action-sheet.js.map +1 -0
  277. package/lib/module/presentation/domain/utils/use-signature-ref.js +8 -0
  278. package/lib/module/presentation/domain/utils/use-signature-ref.js.map +1 -0
  279. package/lib/module/presentation/domain/utils/yup.js +5 -0
  280. package/lib/module/presentation/domain/utils/yup.js.map +1 -0
  281. package/lib/module/theme.js +211 -0
  282. package/lib/module/theme.js.map +1 -0
  283. package/lib/typescript/package.json +1 -0
  284. package/lib/typescript/src/data/errors/http-client-error.d.ts +13 -0
  285. package/lib/typescript/src/data/errors/http-client-error.d.ts.map +1 -0
  286. package/lib/typescript/src/data/errors/index.d.ts +4 -0
  287. package/lib/typescript/src/data/errors/index.d.ts.map +1 -0
  288. package/lib/typescript/src/data/errors/save-file-error.d.ts +4 -0
  289. package/lib/typescript/src/data/errors/save-file-error.d.ts.map +1 -0
  290. package/lib/typescript/src/data/errors/unsupported-platform.d.ts +4 -0
  291. package/lib/typescript/src/data/errors/unsupported-platform.d.ts.map +1 -0
  292. package/lib/typescript/src/data/models/index.d.ts +4 -0
  293. package/lib/typescript/src/data/models/index.d.ts.map +1 -0
  294. package/lib/typescript/src/data/models/remote-get-comment-list-model.d.ts +16 -0
  295. package/lib/typescript/src/data/models/remote-get-comment-list-model.d.ts.map +1 -0
  296. package/lib/typescript/src/data/models/remote-get-image-list-model.d.ts +16 -0
  297. package/lib/typescript/src/data/models/remote-get-image-list-model.d.ts.map +1 -0
  298. package/lib/typescript/src/data/models/remote-user-model.d.ts +14 -0
  299. package/lib/typescript/src/data/models/remote-user-model.d.ts.map +1 -0
  300. package/lib/typescript/src/data/protocols/cookie-manager.d.ts +7 -0
  301. package/lib/typescript/src/data/protocols/cookie-manager.d.ts.map +1 -0
  302. package/lib/typescript/src/data/protocols/download-manager.d.ts +12 -0
  303. package/lib/typescript/src/data/protocols/download-manager.d.ts.map +1 -0
  304. package/lib/typescript/src/data/protocols/http-client.d.ts +52 -0
  305. package/lib/typescript/src/data/protocols/http-client.d.ts.map +1 -0
  306. package/lib/typescript/src/data/protocols/index.d.ts +7 -0
  307. package/lib/typescript/src/data/protocols/index.d.ts.map +1 -0
  308. package/lib/typescript/src/data/protocols/notification-manager.d.ts +17 -0
  309. package/lib/typescript/src/data/protocols/notification-manager.d.ts.map +1 -0
  310. package/lib/typescript/src/data/protocols/permission-manager.d.ts +23 -0
  311. package/lib/typescript/src/data/protocols/permission-manager.d.ts.map +1 -0
  312. package/lib/typescript/src/data/protocols/storage.d.ts +17 -0
  313. package/lib/typescript/src/data/protocols/storage.d.ts.map +1 -0
  314. package/lib/typescript/src/data/use-cases/index.d.ts +4 -0
  315. package/lib/typescript/src/data/use-cases/index.d.ts.map +1 -0
  316. package/lib/typescript/src/data/use-cases/remote-get-comment-list.d.ts +9 -0
  317. package/lib/typescript/src/data/use-cases/remote-get-comment-list.d.ts.map +1 -0
  318. package/lib/typescript/src/data/use-cases/remote-get-image-list.d.ts +10 -0
  319. package/lib/typescript/src/data/use-cases/remote-get-image-list.d.ts.map +1 -0
  320. package/lib/typescript/src/data/use-cases/remote-send-diagnostics.d.ts +11 -0
  321. package/lib/typescript/src/data/use-cases/remote-send-diagnostics.d.ts.map +1 -0
  322. package/lib/typescript/src/domain/errors/authentication-expired-error.d.ts +4 -0
  323. package/lib/typescript/src/domain/errors/authentication-expired-error.d.ts.map +1 -0
  324. package/lib/typescript/src/domain/errors/index.d.ts +5 -0
  325. package/lib/typescript/src/domain/errors/index.d.ts.map +1 -0
  326. package/lib/typescript/src/domain/errors/internal-server-error.d.ts +4 -0
  327. package/lib/typescript/src/domain/errors/internal-server-error.d.ts.map +1 -0
  328. package/lib/typescript/src/domain/errors/invalid-credentials-error.d.ts +4 -0
  329. package/lib/typescript/src/domain/errors/invalid-credentials-error.d.ts.map +1 -0
  330. package/lib/typescript/src/domain/errors/no-app-permission-error.d.ts +4 -0
  331. package/lib/typescript/src/domain/errors/no-app-permission-error.d.ts.map +1 -0
  332. package/lib/typescript/src/domain/models/get-comment-list-model.d.ts +10 -0
  333. package/lib/typescript/src/domain/models/get-comment-list-model.d.ts.map +1 -0
  334. package/lib/typescript/src/domain/models/get-image-list-model.d.ts +8 -0
  335. package/lib/typescript/src/domain/models/get-image-list-model.d.ts.map +1 -0
  336. package/lib/typescript/src/domain/models/index.d.ts +4 -0
  337. package/lib/typescript/src/domain/models/index.d.ts.map +1 -0
  338. package/lib/typescript/src/domain/models/user-model.d.ts +16 -0
  339. package/lib/typescript/src/domain/models/user-model.d.ts.map +1 -0
  340. package/lib/typescript/src/domain/use-cases/get-comment-list.d.ts +12 -0
  341. package/lib/typescript/src/domain/use-cases/get-comment-list.d.ts.map +1 -0
  342. package/lib/typescript/src/domain/use-cases/get-image-list.d.ts +12 -0
  343. package/lib/typescript/src/domain/use-cases/get-image-list.d.ts.map +1 -0
  344. package/lib/typescript/src/domain/use-cases/index.d.ts +7 -0
  345. package/lib/typescript/src/domain/use-cases/index.d.ts.map +1 -0
  346. package/lib/typescript/src/domain/use-cases/record-request.d.ts +14 -0
  347. package/lib/typescript/src/domain/use-cases/record-request.d.ts.map +1 -0
  348. package/lib/typescript/src/domain/use-cases/send-diagnostics.d.ts +15 -0
  349. package/lib/typescript/src/domain/use-cases/send-diagnostics.d.ts.map +1 -0
  350. package/lib/typescript/src/domain/use-cases/user-authentication.d.ts +12 -0
  351. package/lib/typescript/src/domain/use-cases/user-authentication.d.ts.map +1 -0
  352. package/lib/typescript/src/domain/use-cases/user-logout.d.ts +10 -0
  353. package/lib/typescript/src/domain/use-cases/user-logout.d.ts.map +1 -0
  354. package/lib/typescript/src/index.d.ts +15 -0
  355. package/lib/typescript/src/index.d.ts.map +1 -0
  356. package/lib/typescript/src/infra/axios-http-client-adapter.d.ts +33 -0
  357. package/lib/typescript/src/infra/axios-http-client-adapter.d.ts.map +1 -0
  358. package/lib/typescript/src/infra/index.d.ts +8 -0
  359. package/lib/typescript/src/infra/index.d.ts.map +1 -0
  360. package/lib/typescript/src/infra/isomorphic-id-manager.d.ts +29 -0
  361. package/lib/typescript/src/infra/isomorphic-id-manager.d.ts.map +1 -0
  362. package/lib/typescript/src/infra/mmkv-storage-adapter.d.ts +18 -0
  363. package/lib/typescript/src/infra/mmkv-storage-adapter.d.ts.map +1 -0
  364. package/lib/typescript/src/infra/notifee-notification-manager-adapter.d.ts +17 -0
  365. package/lib/typescript/src/infra/notifee-notification-manager-adapter.d.ts.map +1 -0
  366. package/lib/typescript/src/infra/offline-mutation-queue.d.ts +56 -0
  367. package/lib/typescript/src/infra/offline-mutation-queue.d.ts.map +1 -0
  368. package/lib/typescript/src/infra/rnbu-download-manager-adapter.d.ts +7 -0
  369. package/lib/typescript/src/infra/rnbu-download-manager-adapter.d.ts.map +1 -0
  370. package/lib/typescript/src/infra/rnp-permission-manager-adapter.d.ts +20 -0
  371. package/lib/typescript/src/infra/rnp-permission-manager-adapter.d.ts.map +1 -0
  372. package/lib/typescript/src/infra/storage-cookie-manager-adapter.d.ts +12 -0
  373. package/lib/typescript/src/infra/storage-cookie-manager-adapter.d.ts.map +1 -0
  374. package/lib/typescript/src/main/components/index.d.ts +5 -0
  375. package/lib/typescript/src/main/components/index.d.ts.map +1 -0
  376. package/lib/typescript/src/main/components/request-permissions.d.ts +6 -0
  377. package/lib/typescript/src/main/components/request-permissions.d.ts.map +1 -0
  378. package/lib/typescript/src/main/factories/infra/download-manager-factory.d.ts +3 -0
  379. package/lib/typescript/src/main/factories/infra/download-manager-factory.d.ts.map +1 -0
  380. package/lib/typescript/src/main/factories/infra/http-client-factory.d.ts +4 -0
  381. package/lib/typescript/src/main/factories/infra/http-client-factory.d.ts.map +1 -0
  382. package/lib/typescript/src/main/factories/infra/index.d.ts +8 -0
  383. package/lib/typescript/src/main/factories/infra/index.d.ts.map +1 -0
  384. package/lib/typescript/src/main/factories/infra/isomorphic-id-manager-factory.d.ts +4 -0
  385. package/lib/typescript/src/main/factories/infra/isomorphic-id-manager-factory.d.ts.map +1 -0
  386. package/lib/typescript/src/main/factories/infra/notification-manager-factory.d.ts +4 -0
  387. package/lib/typescript/src/main/factories/infra/notification-manager-factory.d.ts.map +1 -0
  388. package/lib/typescript/src/main/factories/infra/offline-mutation-queue-factory.d.ts +5 -0
  389. package/lib/typescript/src/main/factories/infra/offline-mutation-queue-factory.d.ts.map +1 -0
  390. package/lib/typescript/src/main/factories/infra/permission-manager-factory.d.ts +3 -0
  391. package/lib/typescript/src/main/factories/infra/permission-manager-factory.d.ts.map +1 -0
  392. package/lib/typescript/src/main/factories/infra/storage-factory.d.ts +4 -0
  393. package/lib/typescript/src/main/factories/infra/storage-factory.d.ts.map +1 -0
  394. package/lib/typescript/src/main/factories/use-cases/index.d.ts +4 -0
  395. package/lib/typescript/src/main/factories/use-cases/index.d.ts.map +1 -0
  396. package/lib/typescript/src/main/factories/use-cases/remote-get-comment-list-factory.d.ts +4 -0
  397. package/lib/typescript/src/main/factories/use-cases/remote-get-comment-list-factory.d.ts.map +1 -0
  398. package/lib/typescript/src/main/factories/use-cases/remote-get-image-list-factory.d.ts +4 -0
  399. package/lib/typescript/src/main/factories/use-cases/remote-get-image-list-factory.d.ts.map +1 -0
  400. package/lib/typescript/src/main/factories/use-cases/remote-send-diagnostics-factory.d.ts +4 -0
  401. package/lib/typescript/src/main/factories/use-cases/remote-send-diagnostics-factory.d.ts.map +1 -0
  402. package/lib/typescript/src/presentation/components/atoms/UIBackdrop.d.ts +10 -0
  403. package/lib/typescript/src/presentation/components/atoms/UIBackdrop.d.ts.map +1 -0
  404. package/lib/typescript/src/presentation/components/atoms/UICheckbox.d.ts +11 -0
  405. package/lib/typescript/src/presentation/components/atoms/UICheckbox.d.ts.map +1 -0
  406. package/lib/typescript/src/presentation/components/atoms/UIDot.d.ts +10 -0
  407. package/lib/typescript/src/presentation/components/atoms/UIDot.d.ts.map +1 -0
  408. package/lib/typescript/src/presentation/components/atoms/UIIcon.d.ts +133 -0
  409. package/lib/typescript/src/presentation/components/atoms/UIIcon.d.ts.map +1 -0
  410. package/lib/typescript/src/presentation/components/atoms/UILoading.d.ts +9 -0
  411. package/lib/typescript/src/presentation/components/atoms/UILoading.d.ts.map +1 -0
  412. package/lib/typescript/src/presentation/components/atoms/UIPage.d.ts +20 -0
  413. package/lib/typescript/src/presentation/components/atoms/UIPage.d.ts.map +1 -0
  414. package/lib/typescript/src/presentation/components/atoms/UIProgress.d.ts +10 -0
  415. package/lib/typescript/src/presentation/components/atoms/UIProgress.d.ts.map +1 -0
  416. package/lib/typescript/src/presentation/components/atoms/UIScrollPage.d.ts +17 -0
  417. package/lib/typescript/src/presentation/components/atoms/UIScrollPage.d.ts.map +1 -0
  418. package/lib/typescript/src/presentation/components/atoms/UISeparator.d.ts +10 -0
  419. package/lib/typescript/src/presentation/components/atoms/UISeparator.d.ts.map +1 -0
  420. package/lib/typescript/src/presentation/components/atoms/UISpacer.d.ts +9 -0
  421. package/lib/typescript/src/presentation/components/atoms/UISpacer.d.ts.map +1 -0
  422. package/lib/typescript/src/presentation/components/atoms/UIStack.d.ts +14 -0
  423. package/lib/typescript/src/presentation/components/atoms/UIStack.d.ts.map +1 -0
  424. package/lib/typescript/src/presentation/components/atoms/UIText.d.ts +14 -0
  425. package/lib/typescript/src/presentation/components/atoms/UIText.d.ts.map +1 -0
  426. package/lib/typescript/src/presentation/components/atoms/index.d.ts +13 -0
  427. package/lib/typescript/src/presentation/components/atoms/index.d.ts.map +1 -0
  428. package/lib/typescript/src/presentation/components/index.d.ts +2 -0
  429. package/lib/typescript/src/presentation/components/index.d.ts.map +1 -0
  430. package/lib/typescript/src/presentation/components/molecules/UIActionSheet.d.ts +17 -0
  431. package/lib/typescript/src/presentation/components/molecules/UIActionSheet.d.ts.map +1 -0
  432. package/lib/typescript/src/presentation/components/molecules/UIButton.d.ts +18 -0
  433. package/lib/typescript/src/presentation/components/molecules/UIButton.d.ts.map +1 -0
  434. package/lib/typescript/src/presentation/components/molecules/UIButtonCTA.d.ts +8 -0
  435. package/lib/typescript/src/presentation/components/molecules/UIButtonCTA.d.ts.map +1 -0
  436. package/lib/typescript/src/presentation/components/molecules/UICheckboxInput.d.ts +16 -0
  437. package/lib/typescript/src/presentation/components/molecules/UICheckboxInput.d.ts.map +1 -0
  438. package/lib/typescript/src/presentation/components/molecules/UIChip.d.ts +17 -0
  439. package/lib/typescript/src/presentation/components/molecules/UIChip.d.ts.map +1 -0
  440. package/lib/typescript/src/presentation/components/molecules/UICurrencyInput.d.ts +11 -0
  441. package/lib/typescript/src/presentation/components/molecules/UICurrencyInput.d.ts.map +1 -0
  442. package/lib/typescript/src/presentation/components/molecules/UIDataList.d.ts +9 -0
  443. package/lib/typescript/src/presentation/components/molecules/UIDataList.d.ts.map +1 -0
  444. package/lib/typescript/src/presentation/components/molecules/UIDataSectionList.d.ts +9 -0
  445. package/lib/typescript/src/presentation/components/molecules/UIDataSectionList.d.ts.map +1 -0
  446. package/lib/typescript/src/presentation/components/molecules/UIDatetimeInput.d.ts +10 -0
  447. package/lib/typescript/src/presentation/components/molecules/UIDatetimeInput.d.ts.map +1 -0
  448. package/lib/typescript/src/presentation/components/molecules/UIError.d.ts +8 -0
  449. package/lib/typescript/src/presentation/components/molecules/UIError.d.ts.map +1 -0
  450. package/lib/typescript/src/presentation/components/molecules/UIImage.d.ts +11 -0
  451. package/lib/typescript/src/presentation/components/molecules/UIImage.d.ts.map +1 -0
  452. package/lib/typescript/src/presentation/components/molecules/UIInlineDatePicker.d.ts +15 -0
  453. package/lib/typescript/src/presentation/components/molecules/UIInlineDatePicker.d.ts.map +1 -0
  454. package/lib/typescript/src/presentation/components/molecules/UIInputIcon.d.ts +9 -0
  455. package/lib/typescript/src/presentation/components/molecules/UIInputIcon.d.ts.map +1 -0
  456. package/lib/typescript/src/presentation/components/molecules/UIList.d.ts +5 -0
  457. package/lib/typescript/src/presentation/components/molecules/UIList.d.ts.map +1 -0
  458. package/lib/typescript/src/presentation/components/molecules/UIRadioInput.d.ts +12 -0
  459. package/lib/typescript/src/presentation/components/molecules/UIRadioInput.d.ts.map +1 -0
  460. package/lib/typescript/src/presentation/components/molecules/UISectionList.d.ts +5 -0
  461. package/lib/typescript/src/presentation/components/molecules/UISectionList.d.ts.map +1 -0
  462. package/lib/typescript/src/presentation/components/molecules/UISkeleton.d.ts +8 -0
  463. package/lib/typescript/src/presentation/components/molecules/UISkeleton.d.ts.map +1 -0
  464. package/lib/typescript/src/presentation/components/molecules/UISwitch.d.ts +10 -0
  465. package/lib/typescript/src/presentation/components/molecules/UISwitch.d.ts.map +1 -0
  466. package/lib/typescript/src/presentation/components/molecules/UITextInput.d.ts +13 -0
  467. package/lib/typescript/src/presentation/components/molecules/UITextInput.d.ts.map +1 -0
  468. package/lib/typescript/src/presentation/components/molecules/UITextInputMask.d.ts +16 -0
  469. package/lib/typescript/src/presentation/components/molecules/UITextInputMask.d.ts.map +1 -0
  470. package/lib/typescript/src/presentation/components/molecules/index.d.ts +21 -0
  471. package/lib/typescript/src/presentation/components/molecules/index.d.ts.map +1 -0
  472. package/lib/typescript/src/presentation/components/organisms/UIAppBar.d.ts +13 -0
  473. package/lib/typescript/src/presentation/components/organisms/UIAppBar.d.ts.map +1 -0
  474. package/lib/typescript/src/presentation/components/organisms/UIAppBarAction.d.ts +6 -0
  475. package/lib/typescript/src/presentation/components/organisms/UIAppBarAction.d.ts.map +1 -0
  476. package/lib/typescript/src/presentation/components/organisms/UICard.d.ts +9 -0
  477. package/lib/typescript/src/presentation/components/organisms/UICard.d.ts.map +1 -0
  478. package/lib/typescript/src/presentation/components/organisms/UIComment.d.ts +9 -0
  479. package/lib/typescript/src/presentation/components/organisms/UIComment.d.ts.map +1 -0
  480. package/lib/typescript/src/presentation/components/organisms/UIErrorBoundary.d.ts +9 -0
  481. package/lib/typescript/src/presentation/components/organisms/UIErrorBoundary.d.ts.map +1 -0
  482. package/lib/typescript/src/presentation/components/organisms/UIForm.d.ts +13 -0
  483. package/lib/typescript/src/presentation/components/organisms/UIForm.d.ts.map +1 -0
  484. package/lib/typescript/src/presentation/components/organisms/UIFormButton.d.ts +11 -0
  485. package/lib/typescript/src/presentation/components/organisms/UIFormButton.d.ts.map +1 -0
  486. package/lib/typescript/src/presentation/components/organisms/UIFormCheckboxInput.d.ts +9 -0
  487. package/lib/typescript/src/presentation/components/organisms/UIFormCheckboxInput.d.ts.map +1 -0
  488. package/lib/typescript/src/presentation/components/organisms/UIFormCurrencyInput.d.ts +11 -0
  489. package/lib/typescript/src/presentation/components/organisms/UIFormCurrencyInput.d.ts.map +1 -0
  490. package/lib/typescript/src/presentation/components/organisms/UIFormDatetimeInput.d.ts +10 -0
  491. package/lib/typescript/src/presentation/components/organisms/UIFormDatetimeInput.d.ts.map +1 -0
  492. package/lib/typescript/src/presentation/components/organisms/UIFormMultiselectInput.d.ts +30 -0
  493. package/lib/typescript/src/presentation/components/organisms/UIFormMultiselectInput.d.ts.map +1 -0
  494. package/lib/typescript/src/presentation/components/organisms/UIFormRadioInput.d.ts +9 -0
  495. package/lib/typescript/src/presentation/components/organisms/UIFormRadioInput.d.ts.map +1 -0
  496. package/lib/typescript/src/presentation/components/organisms/UIFormSelectInput.d.ts +44 -0
  497. package/lib/typescript/src/presentation/components/organisms/UIFormSelectInput.d.ts.map +1 -0
  498. package/lib/typescript/src/presentation/components/organisms/UIFormTextInput.d.ts +11 -0
  499. package/lib/typescript/src/presentation/components/organisms/UIFormTextInput.d.ts.map +1 -0
  500. package/lib/typescript/src/presentation/components/organisms/UIFormTextInputMask.d.ts +11 -0
  501. package/lib/typescript/src/presentation/components/organisms/UIFormTextInputMask.d.ts.map +1 -0
  502. package/lib/typescript/src/presentation/components/organisms/UIRow.d.ts +14 -0
  503. package/lib/typescript/src/presentation/components/organisms/UIRow.d.ts.map +1 -0
  504. package/lib/typescript/src/presentation/components/organisms/UISearchInput.d.ts +6 -0
  505. package/lib/typescript/src/presentation/components/organisms/UISearchInput.d.ts.map +1 -0
  506. package/lib/typescript/src/presentation/components/organisms/UISelectChip.d.ts +13 -0
  507. package/lib/typescript/src/presentation/components/organisms/UISelectChip.d.ts.map +1 -0
  508. package/lib/typescript/src/presentation/components/organisms/UISignature.d.ts +26 -0
  509. package/lib/typescript/src/presentation/components/organisms/UISignature.d.ts.map +1 -0
  510. package/lib/typescript/src/presentation/components/organisms/UISlideButton.d.ts +8 -0
  511. package/lib/typescript/src/presentation/components/organisms/UISlideButton.d.ts.map +1 -0
  512. package/lib/typescript/src/presentation/components/organisms/index.d.ts +22 -0
  513. package/lib/typescript/src/presentation/components/organisms/index.d.ts.map +1 -0
  514. package/lib/typescript/src/presentation/components/permissions/index.d.ts +2 -0
  515. package/lib/typescript/src/presentation/components/permissions/index.d.ts.map +1 -0
  516. package/lib/typescript/src/presentation/components/permissions/request-permissions.d.ts +15 -0
  517. package/lib/typescript/src/presentation/components/permissions/request-permissions.d.ts.map +1 -0
  518. package/lib/typescript/src/presentation/domain/metadata/index.d.ts +3 -0
  519. package/lib/typescript/src/presentation/domain/metadata/index.d.ts.map +1 -0
  520. package/lib/typescript/src/presentation/domain/metadata/use-comments.d.ts +11 -0
  521. package/lib/typescript/src/presentation/domain/metadata/use-comments.d.ts.map +1 -0
  522. package/lib/typescript/src/presentation/domain/metadata/use-images.d.ts +11 -0
  523. package/lib/typescript/src/presentation/domain/metadata/use-images.d.ts.map +1 -0
  524. package/lib/typescript/src/presentation/domain/offline/index.d.ts +10 -0
  525. package/lib/typescript/src/presentation/domain/offline/index.d.ts.map +1 -0
  526. package/lib/typescript/src/presentation/domain/offline/offline-mutation-queue-provider.d.ts +18 -0
  527. package/lib/typescript/src/presentation/domain/offline/offline-mutation-queue-provider.d.ts.map +1 -0
  528. package/lib/typescript/src/presentation/domain/offline/types.d.ts +18 -0
  529. package/lib/typescript/src/presentation/domain/offline/types.d.ts.map +1 -0
  530. package/lib/typescript/src/presentation/domain/offline/use-infinite-offline-query.d.ts +78 -0
  531. package/lib/typescript/src/presentation/domain/offline/use-infinite-offline-query.d.ts.map +1 -0
  532. package/lib/typescript/src/presentation/domain/offline/use-offline-id-v2.d.ts +9 -0
  533. package/lib/typescript/src/presentation/domain/offline/use-offline-id-v2.d.ts.map +1 -0
  534. package/lib/typescript/src/presentation/domain/offline/use-offline-id.d.ts +3 -0
  535. package/lib/typescript/src/presentation/domain/offline/use-offline-id.d.ts.map +1 -0
  536. package/lib/typescript/src/presentation/domain/offline/use-offline-mutation.d.ts +88 -0
  537. package/lib/typescript/src/presentation/domain/offline/use-offline-mutation.d.ts.map +1 -0
  538. package/lib/typescript/src/presentation/domain/offline/use-offline-query.d.ts +8 -0
  539. package/lib/typescript/src/presentation/domain/offline/use-offline-query.d.ts.map +1 -0
  540. package/lib/typescript/src/presentation/domain/offline/use-offline-queue.d.ts +10 -0
  541. package/lib/typescript/src/presentation/domain/offline/use-offline-queue.d.ts.map +1 -0
  542. package/lib/typescript/src/presentation/domain/offline/utils.d.ts +18 -0
  543. package/lib/typescript/src/presentation/domain/offline/utils.d.ts.map +1 -0
  544. package/lib/typescript/src/presentation/domain/provider/index.d.ts +2 -0
  545. package/lib/typescript/src/presentation/domain/provider/index.d.ts.map +1 -0
  546. package/lib/typescript/src/presentation/domain/provider/zuq-core-provider.d.ts +13 -0
  547. package/lib/typescript/src/presentation/domain/provider/zuq-core-provider.d.ts.map +1 -0
  548. package/lib/typescript/src/presentation/domain/utils/exists.d.ts +2 -0
  549. package/lib/typescript/src/presentation/domain/utils/exists.d.ts.map +1 -0
  550. package/lib/typescript/src/presentation/domain/utils/index.d.ts +6 -0
  551. package/lib/typescript/src/presentation/domain/utils/index.d.ts.map +1 -0
  552. package/lib/typescript/src/presentation/domain/utils/react-query.d.ts +5 -0
  553. package/lib/typescript/src/presentation/domain/utils/react-query.d.ts.map +1 -0
  554. package/lib/typescript/src/presentation/domain/utils/use-action-sheet.d.ts +6 -0
  555. package/lib/typescript/src/presentation/domain/utils/use-action-sheet.d.ts.map +1 -0
  556. package/lib/typescript/src/presentation/domain/utils/use-signature-ref.d.ts +15 -0
  557. package/lib/typescript/src/presentation/domain/utils/use-signature-ref.d.ts.map +1 -0
  558. package/lib/typescript/src/presentation/domain/utils/yup.d.ts +3 -0
  559. package/lib/typescript/src/presentation/domain/utils/yup.d.ts.map +1 -0
  560. package/lib/typescript/src/theme.d.ts +214 -0
  561. package/lib/typescript/src/theme.d.ts.map +1 -0
  562. package/package.json +210 -0
  563. package/src/assets/logo.png +0 -0
  564. package/src/data/errors/http-client-error.ts +23 -0
  565. package/src/data/errors/index.ts +3 -0
  566. package/src/data/errors/save-file-error.ts +6 -0
  567. package/src/data/errors/unsupported-platform.ts +6 -0
  568. package/src/data/models/index.ts +3 -0
  569. package/src/data/models/remote-get-comment-list-model.ts +15 -0
  570. package/src/data/models/remote-get-image-list-model.ts +15 -0
  571. package/src/data/models/remote-user-model.ts +13 -0
  572. package/src/data/protocols/cookie-manager.ts +6 -0
  573. package/src/data/protocols/download-manager.ts +13 -0
  574. package/src/data/protocols/http-client.ts +75 -0
  575. package/src/data/protocols/index.ts +6 -0
  576. package/src/data/protocols/notification-manager.ts +17 -0
  577. package/src/data/protocols/permission-manager.ts +46 -0
  578. package/src/data/protocols/storage.ts +18 -0
  579. package/src/data/use-cases/index.ts +3 -0
  580. package/src/data/use-cases/remote-get-comment-list.ts +34 -0
  581. package/src/data/use-cases/remote-get-image-list.ts +40 -0
  582. package/src/data/use-cases/remote-send-diagnostics.ts +20 -0
  583. package/src/domain/errors/authentication-expired-error.ts +6 -0
  584. package/src/domain/errors/index.ts +4 -0
  585. package/src/domain/errors/internal-server-error.ts +6 -0
  586. package/src/domain/errors/invalid-credentials-error.ts +6 -0
  587. package/src/domain/errors/no-app-permission-error.ts +6 -0
  588. package/src/domain/models/get-comment-list-model.ts +9 -0
  589. package/src/domain/models/get-image-list-model.ts +7 -0
  590. package/src/domain/models/index.ts +3 -0
  591. package/src/domain/models/user-model.ts +15 -0
  592. package/src/domain/use-cases/get-comment-list.ts +14 -0
  593. package/src/domain/use-cases/get-image-list.ts +14 -0
  594. package/src/domain/use-cases/index.ts +6 -0
  595. package/src/domain/use-cases/record-request.ts +15 -0
  596. package/src/domain/use-cases/send-diagnostics.ts +15 -0
  597. package/src/domain/use-cases/user-authentication.ts +16 -0
  598. package/src/domain/use-cases/user-logout.ts +10 -0
  599. package/src/index.tsx +29 -0
  600. package/src/infra/axios-http-client-adapter.ts +271 -0
  601. package/src/infra/index.ts +7 -0
  602. package/src/infra/isomorphic-id-manager.ts +107 -0
  603. package/src/infra/mmkv-storage-adapter.ts +73 -0
  604. package/src/infra/notifee-notification-manager-adapter.ts +87 -0
  605. package/src/infra/offline-mutation-queue.ts +280 -0
  606. package/src/infra/rnbu-download-manager-adapter.ts +29 -0
  607. package/src/infra/rnp-permission-manager-adapter.ts +147 -0
  608. package/src/infra/storage-cookie-manager-adapter.ts +29 -0
  609. package/src/main/components/index.ts +4 -0
  610. package/src/main/components/request-permissions.tsx +17 -0
  611. package/src/main/factories/infra/download-manager-factory.ts +6 -0
  612. package/src/main/factories/infra/http-client-factory.ts +9 -0
  613. package/src/main/factories/infra/index.ts +7 -0
  614. package/src/main/factories/infra/isomorphic-id-manager-factory.ts +6 -0
  615. package/src/main/factories/infra/notification-manager-factory.ts +8 -0
  616. package/src/main/factories/infra/offline-mutation-queue-factory.ts +22 -0
  617. package/src/main/factories/infra/permission-manager-factory.ts +6 -0
  618. package/src/main/factories/infra/storage-factory.ts +11 -0
  619. package/src/main/factories/use-cases/index.ts +3 -0
  620. package/src/main/factories/use-cases/remote-get-comment-list-factory.ts +6 -0
  621. package/src/main/factories/use-cases/remote-get-image-list-factory.ts +6 -0
  622. package/src/main/factories/use-cases/remote-send-diagnostics-factory.ts +10 -0
  623. package/src/presentation/components/atoms/UIBackdrop.tsx +35 -0
  624. package/src/presentation/components/atoms/UICheckbox.tsx +58 -0
  625. package/src/presentation/components/atoms/UIDot.tsx +40 -0
  626. package/src/presentation/components/atoms/UIIcon.tsx +1091 -0
  627. package/src/presentation/components/atoms/UILoading.tsx +17 -0
  628. package/src/presentation/components/atoms/UIPage.tsx +92 -0
  629. package/src/presentation/components/atoms/UIProgress.tsx +60 -0
  630. package/src/presentation/components/atoms/UIScrollPage.tsx +87 -0
  631. package/src/presentation/components/atoms/UISeparator.tsx +41 -0
  632. package/src/presentation/components/atoms/UISpacer.tsx +21 -0
  633. package/src/presentation/components/atoms/UIStack.tsx +44 -0
  634. package/src/presentation/components/atoms/UIText.tsx +59 -0
  635. package/src/presentation/components/atoms/index.ts +12 -0
  636. package/src/presentation/components/index.ts +1 -0
  637. package/src/presentation/components/molecules/UIActionSheet.tsx +230 -0
  638. package/src/presentation/components/molecules/UIButton.tsx +192 -0
  639. package/src/presentation/components/molecules/UIButtonCTA.tsx +38 -0
  640. package/src/presentation/components/molecules/UICheckboxInput.tsx +106 -0
  641. package/src/presentation/components/molecules/UIChip.tsx +69 -0
  642. package/src/presentation/components/molecules/UICurrencyInput.tsx +43 -0
  643. package/src/presentation/components/molecules/UIDataList.tsx +30 -0
  644. package/src/presentation/components/molecules/UIDataSectionList.tsx +30 -0
  645. package/src/presentation/components/molecules/UIDatetimeInput.tsx +205 -0
  646. package/src/presentation/components/molecules/UIError.tsx +24 -0
  647. package/src/presentation/components/molecules/UIImage.tsx +85 -0
  648. package/src/presentation/components/molecules/UIInlineDatePicker.tsx +244 -0
  649. package/src/presentation/components/molecules/UIInputIcon.tsx +39 -0
  650. package/src/presentation/components/molecules/UIList.tsx +17 -0
  651. package/src/presentation/components/molecules/UIRadioInput.tsx +97 -0
  652. package/src/presentation/components/molecules/UISectionList.tsx +17 -0
  653. package/src/presentation/components/molecules/UISkeleton.tsx +66 -0
  654. package/src/presentation/components/molecules/UISwitch.tsx +72 -0
  655. package/src/presentation/components/molecules/UITextInput.tsx +160 -0
  656. package/src/presentation/components/molecules/UITextInputMask.tsx +160 -0
  657. package/src/presentation/components/molecules/index.ts +20 -0
  658. package/src/presentation/components/organisms/UIAppBar.tsx +103 -0
  659. package/src/presentation/components/organisms/UIAppBarAction.tsx +13 -0
  660. package/src/presentation/components/organisms/UICard.tsx +48 -0
  661. package/src/presentation/components/organisms/UIComment.tsx +64 -0
  662. package/src/presentation/components/organisms/UIErrorBoundary.tsx +72 -0
  663. package/src/presentation/components/organisms/UIForm.tsx +81 -0
  664. package/src/presentation/components/organisms/UIFormButton.tsx +38 -0
  665. package/src/presentation/components/organisms/UIFormCheckboxInput.tsx +35 -0
  666. package/src/presentation/components/organisms/UIFormCurrencyInput.tsx +65 -0
  667. package/src/presentation/components/organisms/UIFormDatetimeInput.tsx +51 -0
  668. package/src/presentation/components/organisms/UIFormMultiselectInput.tsx +251 -0
  669. package/src/presentation/components/organisms/UIFormRadioInput.tsx +32 -0
  670. package/src/presentation/components/organisms/UIFormSelectInput.tsx +316 -0
  671. package/src/presentation/components/organisms/UIFormTextInput.tsx +62 -0
  672. package/src/presentation/components/organisms/UIFormTextInputMask.tsx +79 -0
  673. package/src/presentation/components/organisms/UIRow.tsx +61 -0
  674. package/src/presentation/components/organisms/UISearchInput.tsx +40 -0
  675. package/src/presentation/components/organisms/UISelectChip.tsx +104 -0
  676. package/src/presentation/components/organisms/UISignature.tsx +194 -0
  677. package/src/presentation/components/organisms/UISlideButton.tsx +112 -0
  678. package/src/presentation/components/organisms/index.ts +21 -0
  679. package/src/presentation/components/permissions/index.ts +1 -0
  680. package/src/presentation/components/permissions/request-permissions.tsx +115 -0
  681. package/src/presentation/domain/metadata/index.ts +2 -0
  682. package/src/presentation/domain/metadata/use-comments.ts +27 -0
  683. package/src/presentation/domain/metadata/use-images.ts +27 -0
  684. package/src/presentation/domain/offline/index.ts +9 -0
  685. package/src/presentation/domain/offline/offline-mutation-queue-provider.tsx +95 -0
  686. package/src/presentation/domain/offline/types.ts +21 -0
  687. package/src/presentation/domain/offline/use-infinite-offline-query.tsx +89 -0
  688. package/src/presentation/domain/offline/use-offline-id-v2.ts +29 -0
  689. package/src/presentation/domain/offline/use-offline-id.ts +12 -0
  690. package/src/presentation/domain/offline/use-offline-mutation.ts +150 -0
  691. package/src/presentation/domain/offline/use-offline-query.ts +55 -0
  692. package/src/presentation/domain/offline/use-offline-queue.ts +6 -0
  693. package/src/presentation/domain/offline/utils.ts +139 -0
  694. package/src/presentation/domain/provider/index.ts +1 -0
  695. package/src/presentation/domain/provider/zuq-core-provider.tsx +52 -0
  696. package/src/presentation/domain/utils/exists.ts +3 -0
  697. package/src/presentation/domain/utils/index.ts +5 -0
  698. package/src/presentation/domain/utils/react-query.ts +10 -0
  699. package/src/presentation/domain/utils/use-action-sheet.ts +21 -0
  700. package/src/presentation/domain/utils/use-signature-ref.ts +19 -0
  701. package/src/presentation/domain/utils/yup.ts +3 -0
  702. package/src/theme.ts +240 -0
@@ -0,0 +1,1091 @@
1
+ import type { StyleProp, ViewStyle } from 'react-native';
2
+ import Svg, { G, Mask, Path } from 'react-native-svg';
3
+
4
+ import { theme } from '../../../theme';
5
+ import React from 'react';
6
+
7
+ export type IconName = keyof typeof icons;
8
+
9
+ type IconProps = {
10
+ size?: number;
11
+ color?: string;
12
+ style?: StyleProp<ViewStyle>;
13
+ };
14
+
15
+ type Props = IconProps & {
16
+ name: IconName;
17
+ };
18
+
19
+ export const UIIcon = React.memo(({ name, ...props }: Props) => {
20
+ const IconComponent = icons[name];
21
+ return <IconComponent {...props} />;
22
+ });
23
+
24
+ const icons = {
25
+ 'comment': IconComment,
26
+ 'user': IconUser,
27
+ 'password': IconPassword,
28
+ 'exit': IconExit,
29
+ 'play': IconPlay,
30
+ 'eye': IconEye,
31
+ 'eye-off': IconEyeOff,
32
+ 'bell': IconBell,
33
+ 'pin': IconPin,
34
+ 'box': IconBox,
35
+ 'truck': IconTruck,
36
+ 'chevron-right': IconChevronRight,
37
+ 'chevron-left': IconChevronLeft,
38
+ 'home': IconHome,
39
+ 'clock': IconClock,
40
+ 'info': IconInfo,
41
+ 'distance': IconDistance,
42
+ 'calendar': IconCalendar,
43
+ 'calendar-alt': IconCalendarAlt,
44
+ 'truck-alt': IconTruckAlt,
45
+ 'close': IconClose,
46
+ 'pause': IconPause,
47
+ 'later': IconLater,
48
+ 'check': IconCheck,
49
+ 'check-alt': IconCheckAlt,
50
+ 'check-outlined': IconCheckOutlined,
51
+ 'warning': IconWarning,
52
+ 'warning-outline': IconWarningOutline,
53
+ 'x-circle': IconXCircle,
54
+ 'returned': IconReturned,
55
+ 'waze': IconWaze,
56
+ 'camera': IconCamera,
57
+ 'battery': IconBattery,
58
+ 'no-wifi': IconNoWifi,
59
+ 'gallery': IconGallery,
60
+ 'trash': IconTrash,
61
+ 'gps': IconGPS,
62
+ 'box-later': IconBoxLater,
63
+ 'flash-on': IconFlashOn,
64
+ 'flash-off': IconFlashOff,
65
+ 'flash-auto': IconFlashAuto,
66
+ 'flip-camera': IconFlipCamera,
67
+ 'tool': IconTool,
68
+ 'call': IconCall,
69
+ 'block': IconBlock,
70
+ 'search': IconSearch,
71
+ 'add': IconAdd,
72
+ 'pending': IconPending,
73
+ 'settings': IconSettings,
74
+ 'menu': IconMenu,
75
+ 'number': IconNumber,
76
+ 'edit': IconEdit,
77
+ 'chevron-up': IconChevronUp,
78
+ 'chevron-down': IconChevronDown,
79
+ 'refresh': IconRefresh,
80
+ 'qr-code': IconQRCode,
81
+ 'barcode': IconBarCode,
82
+ 'map': IconMap,
83
+ };
84
+
85
+ export const iconsNames = Object.keys(icons) as IconName[];
86
+
87
+ function IconMap({
88
+ color = theme.color.brand.violet[500],
89
+ size = 15,
90
+ ...props
91
+ }: IconProps) {
92
+ return (
93
+ <Svg
94
+ width={size}
95
+ height={size}
96
+ fill={color}
97
+ viewBox="0 -960 960 960"
98
+ {...props}
99
+ >
100
+ <Path d="m574-129-214-75-186 72q-10 4-19.5 2.5T137-136q-8-5-12.5-13.5T120-169v-561q0-13 7.5-23t20.5-15l186-63q6-2 12.5-3t13.5-1q7 0 13.5 1t12.5 3l214 75 186-72q10-4 19.5-2.5T823-824q8 5 12.5 13.5T840-791v561q0 13-7.5 23T812-192l-186 63q-6 2-12.5 3t-13.5 1q-7 0-13.5-1t-12.5-3Zm-14-89v-468l-160-56v468l160 56Zm80 0 120-40v-474l-120 46v468Zm-440-10 120-46v-468l-120 40v474Zm440-458v468-468Zm-320-56v468-468Z" />
101
+ </Svg>
102
+ );
103
+ }
104
+
105
+ function IconBarCode({
106
+ color = theme.color.neutral.mid['60'],
107
+ size = 15,
108
+ ...props
109
+ }: IconProps) {
110
+ return (
111
+ <Svg
112
+ width={size}
113
+ height={size}
114
+ fill={color}
115
+ viewBox="0 -960 960 960"
116
+ {...props}
117
+ >
118
+ <Path d="M40-200v-560h80v560H40Zm120 0v-560h80v560h-80Zm120 0v-560h40v560h-40Zm120 0v-560h80v560h-80Zm120 0v-560h120v560H520Zm160 0v-560h40v560h-40Zm120 0v-560h120v560H800Z" />
119
+ </Svg>
120
+ );
121
+ }
122
+
123
+ function IconQRCode({
124
+ color = theme.color.neutral.mid['60'],
125
+ size = 15,
126
+ ...props
127
+ }: IconProps) {
128
+ return (
129
+ <Svg
130
+ width={size}
131
+ height={size}
132
+ fill={color}
133
+ viewBox="0 -960 960 960"
134
+ {...props}
135
+ >
136
+ <Path d="M120-680q-17 0-28.5-11.5T80-720v-120q0-17 11.5-28.5T120-880h120q17 0 28.5 11.5T280-840q0 17-11.5 28.5T240-800h-80v80q0 17-11.5 28.5T120-680Zm0 600q-17 0-28.5-11.5T80-120v-120q0-17 11.5-28.5T120-280q17 0 28.5 11.5T160-240v80h80q17 0 28.5 11.5T280-120q0 17-11.5 28.5T240-80H120Zm600 0q-17 0-28.5-11.5T680-120q0-17 11.5-28.5T720-160h80v-80q0-17 11.5-28.5T840-280q17 0 28.5 11.5T880-240v120q0 17-11.5 28.5T840-80H720Zm120-600q-17 0-28.5-11.5T800-720v-80h-80q-17 0-28.5-11.5T680-840q0-17 11.5-28.5T720-880h120q17 0 28.5 11.5T880-840v120q0 17-11.5 28.5T840-680ZM700-200v-60h60v60h-60Zm0-120v-60h60v60h-60Zm-60 60v-60h60v60h-60Zm-60 60v-60h60v60h-60Zm-60-60v-60h60v60h-60Zm120-120v-60h60v60h-60Zm-60 60v-60h60v60h-60Zm-60-60v-60h60v60h-60Zm40-140q-17 0-28.5-11.5T520-560v-160q0-17 11.5-28.5T560-760h160q17 0 28.5 11.5T760-720v160q0 17-11.5 28.5T720-520H560ZM240-200q-17 0-28.5-11.5T200-240v-160q0-17 11.5-28.5T240-440h160q17 0 28.5 11.5T440-400v160q0 17-11.5 28.5T400-200H240Zm0-320q-17 0-28.5-11.5T200-560v-160q0-17 11.5-28.5T240-760h160q17 0 28.5 11.5T440-720v160q0 17-11.5 28.5T400-520H240Zm20 260h120v-120H260v120Zm0-320h120v-120H260v120Zm320 0h120v-120H580v120Z" />
137
+ </Svg>
138
+ );
139
+ }
140
+
141
+ function IconRefresh({
142
+ color = theme.color.neutral.mid['60'],
143
+ size = 15,
144
+ ...props
145
+ }: IconProps) {
146
+ return (
147
+ <Svg
148
+ width={size}
149
+ height={size}
150
+ fill={color}
151
+ viewBox="0 -960 960 960"
152
+ {...props}
153
+ >
154
+ <Path d="M480-160q-134 0-227-93t-93-227q0-134 93-227t227-93q69 0 132 28.5T720-690v-70q0-17 11.5-28.5T760-800q17 0 28.5 11.5T800-760v200q0 17-11.5 28.5T760-520H560q-17 0-28.5-11.5T520-560q0-17 11.5-28.5T560-600h128q-32-56-87.5-88T480-720q-100 0-170 70t-70 170q0 100 70 170t170 70q68 0 124.5-34.5T692-367q8-14 22.5-19.5t29.5-.5q16 5 23 21t-1 30q-41 80-117 128t-169 48Z" />
155
+ </Svg>
156
+ );
157
+ }
158
+
159
+ function IconEdit({
160
+ color = theme.color.neutral.mid['60'],
161
+ size = 15,
162
+ ...props
163
+ }: IconProps) {
164
+ return (
165
+ <Svg
166
+ width={size}
167
+ height={size}
168
+ fill={color}
169
+ viewBox="0 -960 960 960"
170
+ {...props}
171
+ >
172
+ <Path d="M160-120q-17 0-28.5-11.5T120-160v-97q0-16 6-30.5t17-25.5l505-504q12-11 26.5-17t30.5-6q16 0 31 6t26 18l55 56q12 11 17.5 26t5.5 30q0 16-5.5 30.5T817-647L313-143q-11 11-25.5 17t-30.5 6h-97Zm544-528 56-56-56-56-56 56 56 56Z" />
173
+ </Svg>
174
+ );
175
+ }
176
+
177
+ function IconNumber({
178
+ color = theme.color.neutral.mid['60'],
179
+ size = 15,
180
+ ...props
181
+ }: IconProps) {
182
+ return (
183
+ <Svg
184
+ width={size}
185
+ height={size}
186
+ fill={color}
187
+ viewBox="0 -960 960 960"
188
+ {...props}
189
+ >
190
+ <Path d="m360-320-33 131q-3 13-13 21t-24 8q-19 0-31-15t-7-33l28-112H171q-20 0-32-15.5t-7-34.5q3-14 14-22t25-8h129l40-160H231q-20 0-32-15.5t-7-34.5q3-14 14-22t25-8h129l33-131q3-13 13-21t24-8q19 0 31 15t7 33l-28 112h160l33-131q3-13 13-21t24-8q19 0 31 15t7 33l-28 112h109q20 0 32 15.5t7 34.5q-3 14-14 22t-25 8H660l-40 160h109q20 0 32 15.5t7 34.5q-3 14-14 22t-25 8H600l-33 131q-3 13-13 21t-24 8q-19 0-31-15t-7-33l28-112H360Zm20-80h160l40-160H420l-40 160Z" />
191
+ </Svg>
192
+ );
193
+ }
194
+
195
+ function IconMenu({
196
+ color = theme.color.neutral.mid['60'],
197
+ size = 15,
198
+ ...props
199
+ }: IconProps) {
200
+ return (
201
+ <Svg
202
+ width={size}
203
+ height={size}
204
+ fill={color}
205
+ viewBox="0 -960 960 960"
206
+ {...props}
207
+ >
208
+ <Path d="M160-240q-17 0-28.5-11.5T120-280q0-17 11.5-28.5T160-320h640q17 0 28.5 11.5T840-280q0 17-11.5 28.5T800-240H160Zm0-200q-17 0-28.5-11.5T120-480q0-17 11.5-28.5T160-520h640q17 0 28.5 11.5T840-480q0 17-11.5 28.5T800-440H160Zm0-200q-17 0-28.5-11.5T120-680q0-17 11.5-28.5T160-720h640q17 0 28.5 11.5T840-680q0 17-11.5 28.5T800-640H160Z" />
209
+ </Svg>
210
+ );
211
+ }
212
+
213
+ function IconSettings({
214
+ color = theme.color.neutral.mid['60'],
215
+ size = 15,
216
+ ...props
217
+ }: IconProps) {
218
+ return (
219
+ <Svg
220
+ width={size}
221
+ height={size}
222
+ fill={color}
223
+ viewBox="0 -960 960 960"
224
+ {...props}
225
+ >
226
+ <Path d="M433-80q-27 0-46.5-18T363-142l-9-66q-13-5-24.5-12T307-235l-62 26q-25 11-50 2t-39-32l-47-82q-14-23-8-49t27-43l53-40q-1-7-1-13.5v-27q0-6.5 1-13.5l-53-40q-21-17-27-43t8-49l47-82q14-23 39-32t50 2l62 26q11-8 23-15t24-12l9-66q4-26 23.5-44t46.5-18h94q27 0 46.5 18t23.5 44l9 66q13 5 24.5 12t22.5 15l62-26q25-11 50-2t39 32l47 82q14 23 8 49t-27 43l-53 40q1 7 1 13.5v27q0 6.5-2 13.5l53 40q21 17 27 43t-8 49l-48 82q-14 23-39 32t-50-2l-60-26q-11 8-23 15t-24 12l-9 66q-4 26-23.5 44T527-80h-94Zm49-260q58 0 99-41t41-99q0-58-41-99t-99-41q-59 0-99.5 41T342-480q0 58 40.5 99t99.5 41Z" />
227
+ </Svg>
228
+ );
229
+ }
230
+
231
+ function IconPending({
232
+ color = theme.color.neutral.mid['60'],
233
+ size = 15,
234
+ ...props
235
+ }: IconProps) {
236
+ return (
237
+ <Svg
238
+ width={size}
239
+ height={size}
240
+ fill={color}
241
+ viewBox="0 -960 960 960"
242
+ {...props}
243
+ >
244
+ <Path d="M280-420q25 0 42.5-17.5T340-480q0-25-17.5-42.5T280-540q-25 0-42.5 17.5T220-480q0 25 17.5 42.5T280-420Zm200 0q25 0 42.5-17.5T540-480q0-25-17.5-42.5T480-540q-25 0-42.5 17.5T420-480q0 25 17.5 42.5T480-420Zm200 0q25 0 42.5-17.5T740-480q0-25-17.5-42.5T680-540q-25 0-42.5 17.5T620-480q0 25 17.5 42.5T680-420ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z" />
245
+ </Svg>
246
+ );
247
+ }
248
+
249
+ function IconAdd({
250
+ color = theme.color.neutral.mid['60'],
251
+ size = 15,
252
+ ...props
253
+ }: IconProps) {
254
+ return (
255
+ <Svg
256
+ width={size}
257
+ height={size}
258
+ fill={color}
259
+ viewBox="0 -960 960 960"
260
+ {...props}
261
+ >
262
+ <Path d="M440-440H240q-17 0-28.5-11.5T200-480q0-17 11.5-28.5T240-520h200v-200q0-17 11.5-28.5T480-760q17 0 28.5 11.5T520-720v200h200q17 0 28.5 11.5T760-480q0 17-11.5 28.5T720-440H520v200q0 17-11.5 28.5T480-200q-17 0-28.5-11.5T440-240v-200Z" />
263
+ </Svg>
264
+ );
265
+ }
266
+
267
+ function IconSearch({
268
+ color = theme.color.neutral.mid['60'],
269
+ size = 15,
270
+ ...props
271
+ }: IconProps) {
272
+ return (
273
+ <Svg
274
+ width={size}
275
+ height={size}
276
+ fill={color}
277
+ viewBox="0 -960 960 960"
278
+ {...props}
279
+ >
280
+ <Path d="M380-320q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l224 224q11 11 11 28t-11 28q-11 11-28 11t-28-11L532-372q-30 24-69 38t-83 14Zm0-80q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z" />
281
+ </Svg>
282
+ );
283
+ }
284
+
285
+ function IconBlock({
286
+ color = theme.color.neutral.mid['60'],
287
+ size = 15,
288
+ ...props
289
+ }: IconProps) {
290
+ return (
291
+ <Svg
292
+ width={size}
293
+ height={size}
294
+ fill={color}
295
+ viewBox="0 -960 960 960"
296
+ {...props}
297
+ >
298
+ <Path d="M480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q54 0 104-17.5t92-50.5L228-676q-33 42-50.5 92T160-480q0 134 93 227t227 93Zm252-124q33-42 50.5-92T800-480q0-134-93-227t-227-93q-54 0-104 17.5T284-732l448 448Z" />
299
+ </Svg>
300
+ );
301
+ }
302
+
303
+ function IconCall({
304
+ color = theme.color.neutral.mid['60'],
305
+ size = 15,
306
+ ...props
307
+ }: IconProps) {
308
+ return (
309
+ <Svg
310
+ width={size}
311
+ height={size}
312
+ fill={color}
313
+ viewBox="0 -960 960 960"
314
+ {...props}
315
+ >
316
+ <Path d="M798-120q-125 0-247-54.5T329-329Q229-429 174.5-551T120-798q0-18 12-30t30-12h162q14 0 25 9.5t13 22.5l26 140q2 16-1 27t-11 19l-97 98q20 37 47.5 71.5T387-386q31 31 65 57.5t72 48.5l94-94q9-9 23.5-13.5T670-390l138 28q14 4 23 14.5t9 23.5v162q0 18-12 30t-30 12Z" />
317
+ </Svg>
318
+ );
319
+ }
320
+
321
+ function IconTool({
322
+ color = theme.color.neutral.mid['60'],
323
+ size = 15,
324
+ ...props
325
+ }: IconProps) {
326
+ return (
327
+ <Svg
328
+ width={size}
329
+ height={size}
330
+ fill={color}
331
+ viewBox="0 -960 960 960"
332
+ {...props}
333
+ >
334
+ <Path d="M360-360q-100 0-170-70t-70-170q0-20 3-40t11-38q5-10 12.5-15t16.5-7q9-2 18.5.5T199-689l105 105 72-72-105-105q-8-8-10.5-17.5T260-797q2-9 7-16.5t15-12.5q18-8 38-11t40-3q100 0 170 70t70 170q0 23-4 43.5T584-516l202 200q29 29 29 71t-29 71q-29 29-71 29t-71-30L444-376q-20 8-40.5 12t-43.5 4Z" />
335
+ </Svg>
336
+ );
337
+ }
338
+
339
+ function IconFlipCamera({
340
+ color = theme.color.neutral.mid['60'],
341
+ size = 15,
342
+ ...props
343
+ }: IconProps) {
344
+ return (
345
+ <Svg
346
+ width={size}
347
+ height={size}
348
+ fill={color}
349
+ viewBox="0 -960 960 960"
350
+ {...props}
351
+ >
352
+ <Path d="M320-280q-33 0-56.5-23.5T240-360v-240q0-33 23.5-56.5T320-680h40l40-40h160l40 40h40q33 0 56.5 23.5T720-600v240q0 33-23.5 56.5T640-280H320Zm160-120q33 0 56.5-23.5T560-480q0-33-23.5-56.5T480-560q-33 0-56.5 23.5T400-480q0 33 23.5 56.5T480-400ZM342-940q34-11 68.5-15.5T480-960q94 0 177.5 33.5t148 93Q870-774 911-693.5T960-520h-80q-7-72-38-134.5T762.5-765Q714-813 651-842.5T516-878l62 62-56 56-180-180ZM618-20Q584-9 549.5-4.5T480 0q-94 0-177.5-33.5t-148-93Q90-186 49-266.5T0-440h80q8 72 38.5 134.5t79 110.5Q246-147 309-117.5T444-82l-62-62 56-56L618-20Z" />
353
+ </Svg>
354
+ );
355
+ }
356
+
357
+ function IconFlashAuto({
358
+ color = theme.color.neutral.mid['60'],
359
+ size = 15,
360
+ ...props
361
+ }: IconProps) {
362
+ return (
363
+ <Svg
364
+ width={size}
365
+ height={size}
366
+ fill={color}
367
+ viewBox="0 -960 960 960"
368
+ {...props}
369
+ >
370
+ <Path d="M200-80v-320H80v-480h400l-80 280h160L200-80Zm385-440 135-360h64l137 360h-62l-32-92H679l-32 92h-62Zm112-144h110l-53-150h-2l-55 150Z" />
371
+ </Svg>
372
+ );
373
+ }
374
+
375
+ function IconFlashOff({
376
+ color = theme.color.neutral.mid['60'],
377
+ size = 15,
378
+ ...props
379
+ }: IconProps) {
380
+ return (
381
+ <Svg
382
+ width={size}
383
+ height={size}
384
+ fill={color}
385
+ viewBox="0 -960 960 960"
386
+ {...props}
387
+ >
388
+ <Path d="M280-880h400l-80 280h160L643-431 280-794v-86ZM400-80v-320H280v-166L55-791l57-57 736 736-57 57-241-241L400-80Z" />
389
+ </Svg>
390
+ );
391
+ }
392
+
393
+ function IconFlashOn({
394
+ color = theme.color.neutral.mid['60'],
395
+ size = 15,
396
+ ...props
397
+ }: IconProps) {
398
+ return (
399
+ <Svg
400
+ width={size}
401
+ height={size}
402
+ fill={color}
403
+ viewBox="0 -960 960 960"
404
+ {...props}
405
+ >
406
+ <Path d="M400-80v-320H280v-480h400l-80 280h160L400-80Z" />
407
+ </Svg>
408
+ );
409
+ }
410
+
411
+ function IconBoxLater({
412
+ color = theme.color.neutral.mid['60'],
413
+ size = 15,
414
+ ...props
415
+ }: IconProps) {
416
+ return (
417
+ <Svg width={size} height={size} viewBox="0 0 15 15" fill="none" {...props}>
418
+ <Path
419
+ fill={color}
420
+ d="M11.68 11.8v-1.342a.28.28 0 0 0-.088-.204.28.28 0 0 0-.408 0 .28.28 0 0 0-.088.204v1.327a.602.602 0 0 0 .175.423l.875.875a.28.28 0 0 0 .409 0 .28.28 0 0 0 0-.408l-.875-.875ZM7.888 8.329c.107 0 .209-.015.306-.044.097-.029.19-.068.277-.116l2.96-1.707a.539.539 0 0 0 .263-.357.587.587 0 0 0-.058-.445.536.536 0 0 0-.35-.262.572.572 0 0 0-.438.058l-2.96 1.706-2.96-1.706a.571.571 0 0 0-.438-.058.536.536 0 0 0-.35.262.564.564 0 0 0-.051.445c.044.16.134.28.27.357L7.304 8.17c.088.048.18.087.278.116.097.03.199.044.306.044Zm-5.25 1.823V5.514a1.136 1.136 0 0 1 .583-1.006L7.304 2.16c.098-.048.192-.087.285-.116a1.06 1.06 0 0 1 .605 0c.097.029.19.068.277.116l4.084 2.348a1.136 1.136 0 0 1 .583 1.006v1.984a.464.464 0 0 1-.219.408.533.533 0 0 1-.467.073 3.486 3.486 0 0 0-.517-.11 4.08 4.08 0 0 0-.547-.036c-1.128 0-2.09.399-2.888 1.196-.797.797-1.196 1.76-1.196 2.887v.3c0 .092.01.177.03.255.039.243-.032.432-.212.569a.48.48 0 0 1-.561.043l-3.34-1.925a1.136 1.136 0 0 1-.583-1.006Zm8.75 4.681a2.811 2.811 0 0 1-2.064-.853 2.811 2.811 0 0 1-.853-2.064c0-.806.285-1.494.853-2.063A2.811 2.811 0 0 1 11.388 9c.807 0 1.495.284 2.063.853.57.569.854 1.257.854 2.063 0 .807-.285 1.495-.854 2.064a2.811 2.811 0 0 1-2.063.853Z"
421
+ />
422
+ </Svg>
423
+ );
424
+ }
425
+
426
+ function IconGPS({ color = '#8C0C0C', size = 15, ...props }: IconProps) {
427
+ return (
428
+ <Svg width={size} height={size} viewBox="0 0 16 16" fill="none" {...props}>
429
+ <Path
430
+ fill={color}
431
+ d="M9.45 14.517a.576.576 0 0 1-.525-.125.653.653 0 0 1-.225-.525c0-.156.053-.298.158-.425a.773.773 0 0 1 .392-.259c.278-.066.547-.152.808-.258.261-.106.514-.236.759-.392a.746.746 0 0 1 .475-.108c.172.017.314.08.425.192a.652.652 0 0 1 .208.533.584.584 0 0 1-.292.467 6.193 6.193 0 0 1-1.058.55 7.566 7.566 0 0 1-1.125.35Zm3.217-2.85a.664.664 0 0 1-.192-.417.667.667 0 0 1 .108-.45c.145-.245.273-.495.384-.75.11-.256.2-.528.266-.817a.8.8 0 0 1 .267-.4.664.664 0 0 1 .433-.166c.223 0 .398.077.525.233a.56.56 0 0 1 .109.533c-.09.4-.209.78-.359 1.142-.15.361-.336.703-.558 1.025a.587.587 0 0 1-.458.275.641.641 0 0 1-.525-.208Zm1.25-4.334a.632.632 0 0 1-.425-.166.82.82 0 0 1-.259-.4 4.933 4.933 0 0 0-.266-.825 5.484 5.484 0 0 0-.384-.742.667.667 0 0 1-.108-.45.664.664 0 0 1 .192-.417.667.667 0 0 1 .525-.216c.194.01.347.1.458.266.222.322.411.67.567 1.042.155.372.277.753.366 1.142.045.2 0 .377-.133.533a.667.667 0 0 1-.533.233ZM6.633 14.5c-1.522-.356-2.775-1.133-3.758-2.333C1.892 10.967 1.4 9.577 1.4 8c0-1.589.489-2.989 1.467-4.2a6.464 6.464 0 0 1 3.75-2.317.575.575 0 0 1 .525.125c.15.128.225.297.225.509a.651.651 0 0 1-.159.425.774.774 0 0 1-.391.258 5.222 5.222 0 0 0-2.934 1.883A5.19 5.19 0 0 0 2.733 8c0 1.244.384 2.342 1.15 3.292a5.447 5.447 0 0 0 2.934 1.891.755.755 0 0 1 .391.267.684.684 0 0 1 .159.433.62.62 0 0 1-.217.5.567.567 0 0 1-.517.117Zm4.234-11.017a6.572 6.572 0 0 0-.784-.408 4.867 4.867 0 0 0-.816-.275.82.82 0 0 1-.4-.258.633.633 0 0 1-.167-.425c0-.212.075-.38.225-.509a.576.576 0 0 1 .525-.125c.389.09.767.206 1.133.35.367.145.723.328 1.067.55a.584.584 0 0 1 .292.467.652.652 0 0 1-.209.533.696.696 0 0 1-.408.2.675.675 0 0 1-.458-.1ZM8.05 11.1a.814.814 0 0 1-.258-.042.524.524 0 0 1-.209-.125c-.733-.678-1.283-1.31-1.65-1.9-.366-.589-.55-1.133-.55-1.633 0-.778.253-1.428.759-1.95.505-.522 1.141-.783 1.908-.783.767 0 1.403.26 1.908.783.506.522.759 1.172.759 1.95 0 .5-.184 1.044-.55 1.633-.367.59-.917 1.223-1.65 1.9a.524.524 0 0 1-.209.125.814.814 0 0 1-.258.042Zm0-3.1c.2 0 .37-.07.508-.208a.692.692 0 0 0 .209-.509c0-.2-.07-.37-.209-.508a.692.692 0 0 0-.508-.208c-.2 0-.37.069-.508.208a.692.692 0 0 0-.209.508c0 .2.07.37.209.509A.692.692 0 0 0 8.05 8Z"
432
+ />
433
+ </Svg>
434
+ );
435
+ }
436
+
437
+ function IconTrash({
438
+ color = theme.color.feedback.red['500'],
439
+ size = 15,
440
+ ...props
441
+ }: IconProps) {
442
+ return (
443
+ <Svg width={size + 1} height={size} fill="none" {...props}>
444
+ <Path
445
+ fill={color}
446
+ d="M4.987 14c-.367 0-.681-.13-.942-.392a1.284 1.284 0 0 1-.392-.941V4h-.666V2.667H6.32V2h4v.667h3.333V4h-.667v8.667c0 .366-.13.68-.391.941a1.284 1.284 0 0 1-.942.392H4.987Zm6.666-10H4.987v8.667h6.666V4ZM6.32 11.333h1.333v-6H6.32v6Zm2.667 0h1.333v-6H8.987v6Z"
447
+ />
448
+ </Svg>
449
+ );
450
+ }
451
+
452
+ function IconGallery({
453
+ color = theme.color.feedback.green['500'],
454
+ size = 15,
455
+ ...props
456
+ }: IconProps) {
457
+ return (
458
+ <Svg
459
+ width={size}
460
+ height={size}
461
+ viewBox="0 -960 960 960"
462
+ fill={color}
463
+ {...props}
464
+ >
465
+ <Path d="M120-200q-33 0-56.5-23.5T40-280v-400q0-33 23.5-56.5T120-760h400q33 0 56.5 23.5T600-680v400q0 33-23.5 56.5T520-200H120Zm600-320q-17 0-28.5-11.5T680-560v-160q0-17 11.5-28.5T720-760h160q17 0 28.5 11.5T920-720v160q0 17-11.5 28.5T880-520H720Zm40-80h80v-80h-80v80ZM120-280h400v-400H120v400Zm40-80h320L375-500l-75 100-55-73-85 113Zm560 160q-17 0-28.5-11.5T680-240v-160q0-17 11.5-28.5T720-440h160q17 0 28.5 11.5T920-400v160q0 17-11.5 28.5T880-200H720Zm40-80h80v-80h-80v80Zm-640 0v-400 400Zm640-320v-80 80Zm0 320v-80 80Z" />
466
+ </Svg>
467
+ );
468
+ }
469
+
470
+ function IconCheckOutlined({
471
+ color = theme.color.feedback.green['500'],
472
+ size = 15,
473
+ ...props
474
+ }: IconProps) {
475
+ return (
476
+ <Svg
477
+ width={size}
478
+ height={size + 1}
479
+ fill="none"
480
+ viewBox="0 0 80 81"
481
+ {...props}
482
+ >
483
+ <Path
484
+ fill={color}
485
+ d="m33.89 48.604-8.586-8.47c-.435-.436-.853-.669-1.252-.698-.4-.03-.847.202-1.342.697-.495.495-.742.947-.742 1.355 0 .409.247.86.742 1.355l8.9 8.9c.674.674 1.434 1.011 2.28 1.011.848 0 1.608-.337 2.282-1.01l20.939-20.94c.435-.435.668-.872.698-1.31.03-.439-.203-.905-.698-1.4-.495-.495-.927-.742-1.297-.742-.37 0-.802.247-1.297.742l-20.626 20.51ZM40.017 80.5c-5.479 0-10.65-1.04-15.513-3.12-4.863-2.081-9.122-4.947-12.775-8.596-3.653-3.65-6.521-7.904-8.604-12.763C1.04 51.163 0 45.994 0 40.516c0-5.556 1.04-10.747 3.12-15.571 2.081-4.825 4.947-9.064 8.596-12.717 3.65-3.653 7.904-6.521 12.763-8.604C29.337 1.541 34.506.5 39.984.5c5.556 0 10.747 1.04 15.571 3.12 4.825 2.081 9.064 4.947 12.717 8.596 3.653 3.65 6.521 7.885 8.604 12.705C78.959 29.74 80 34.928 80 40.484c0 5.479-1.04 10.65-3.12 15.513-2.081 4.864-4.947 9.122-8.596 12.775-3.65 3.653-7.885 6.521-12.705 8.604C50.76 79.46 45.571 80.5 40.016 80.5ZM40 76.78c10.078 0 18.643-3.528 25.698-10.582 7.054-7.055 10.581-15.62 10.581-25.698 0-10.078-3.527-18.643-10.581-25.698C58.643 7.748 50.078 4.221 40 4.221c-10.078 0-18.643 3.527-25.698 10.581C7.248 21.857 3.721 30.422 3.721 40.5c0 10.078 3.527 18.643 10.581 25.698C21.357 73.252 29.922 76.779 40 76.779Z"
486
+ />
487
+ </Svg>
488
+ );
489
+ }
490
+
491
+ function IconCheckAlt({
492
+ color = theme.color.neutral.light['00'],
493
+ size = 15,
494
+ ...props
495
+ }: IconProps) {
496
+ return (
497
+ <Svg
498
+ width={size + 1}
499
+ height={size}
500
+ fill="none"
501
+ viewBox="0 0 17 16"
502
+ {...props}
503
+ >
504
+ <Path
505
+ fill={color}
506
+ d="m6.65 10.1 5.65-5.65a.649.649 0 0 1 .475-.2c.184 0 .342.067.476.2.133.133.2.292.2.475a.649.649 0 0 1-.2.475l-6.134 6.133a.64.64 0 0 1-.466.2.64.64 0 0 1-.467-.2L3.317 8.667a.62.62 0 0 1-.191-.475.68.68 0 0 1 .208-.475.649.649 0 0 1 .475-.2c.183 0 .342.066.475.2L6.65 10.1Z"
507
+ />
508
+ </Svg>
509
+ );
510
+ }
511
+
512
+ function IconNoWifi({
513
+ color = theme.color.neutral.mid['60'],
514
+ size = 15,
515
+ ...props
516
+ }: IconProps) {
517
+ return (
518
+ <Svg viewBox="0 0 24 24" width={size} height={size} fill="none" {...props}>
519
+ <Path
520
+ fill={color}
521
+ d="m10.575 19.575-9.05-9.05a1.934 1.934 0 0 1-.463-.7 1.964 1.964 0 0 1-.112-.8c.017-.283.075-.55.175-.8.1-.25.267-.467.5-.65C2.975 6.392 4.595 5.5 6.487 4.9 8.38 4.3 10.217 4 12 4c2.083 0 4.033.342 5.85 1.025 1.817.683 3.508 1.7 5.075 3.05.15.133.262.28.337.438.075.158.113.329.113.512s-.03.358-.088.525A1.186 1.186 0 0 1 23 10a5.34 5.34 0 0 0-1.738-1.45A4.756 4.756 0 0 0 19 8c-1.383 0-2.563.488-3.538 1.463C14.487 10.438 14 11.617 14 13c0 .817.183 1.57.55 2.262A5.34 5.34 0 0 0 16 17l-2.575 2.575a1.975 1.975 0 0 1-1.425.6 1.975 1.975 0 0 1-1.425-.6ZM19 20c-.283 0-.53-.104-.738-.313a1.009 1.009 0 0 1-.312-.737c0-.283.104-.53.312-.738.209-.208.455-.312.738-.312s.53.104.737.313c.209.208.313.454.313.737s-.104.53-.313.738A1.009 1.009 0 0 1 19 20Zm2.9-7.425c0 .383-.083.725-.25 1.025-.167.3-.483.683-.95 1.15a5.31 5.31 0 0 0-.613.7 1.459 1.459 0 0 0-.237.625c-.033.2-.13.37-.288.512a.784.784 0 0 1-.537.213.748.748 0 0 1-.55-.225.574.574 0 0 1-.175-.525c.05-.383.167-.717.35-1 .183-.283.492-.642.925-1.075.35-.35.575-.612.675-.787.1-.176.15-.396.15-.663 0-.3-.117-.563-.35-.787-.233-.226-.542-.338-.925-.338-.25 0-.492.058-.725.175a1.724 1.724 0 0 0-.6.5.993.993 0 0 1-.438.325.674.674 0 0 1-.537-.025.863.863 0 0 1-.413-.375.471.471 0 0 1 .013-.5 2.88 2.88 0 0 1 1.112-1.1 3.186 3.186 0 0 1 1.588-.4c.817 0 1.483.242 2 .725.517.483.775 1.1.775 1.85Z"
522
+ />
523
+ </Svg>
524
+ );
525
+ }
526
+
527
+ function IconBattery({
528
+ color = theme.color.neutral.mid['60'],
529
+ size = 15,
530
+ ...props
531
+ }: IconProps) {
532
+ return (
533
+ <Svg width={size} height={size} viewBox="0 0 24 24" fill="none" {...props}>
534
+ <Path
535
+ fill={color}
536
+ d="M5 17a.967.967 0 0 1-.713-.288A.968.968 0 0 1 4 16v-2H2v-4h2V8c0-.283.096-.52.287-.713A.968.968 0 0 1 5 7h16c.283 0 .52.096.712.287.192.192.288.43.288.713v8c0 .283-.096.52-.288.712A.968.968 0 0 1 21 17H5Zm1-2h13V9H6v6Z"
537
+ />
538
+ </Svg>
539
+ );
540
+ }
541
+
542
+ function IconCamera({
543
+ color = theme.color.neutral.mid['60'],
544
+ size = 15,
545
+ ...props
546
+ }: IconProps) {
547
+ return (
548
+ <Svg width={size} height={size} viewBox="0 0 25 25" fill="none" {...props}>
549
+ <Path
550
+ fill={color}
551
+ d="M3.364 20.985c-.484 0-.904-.18-1.263-.538-.358-.358-.537-.779-.537-1.262v-10.8c0-.484.179-.904.537-1.263.359-.358.78-.537 1.263-.537h3l1.25-1.675c.183-.234.401-.413.654-.538.253-.125.518-.187.796-.187h5.4c.255 0 .468.086.641.257a.863.863 0 0 1 .259.637.88.88 0 0 1-.259.643.865.865 0 0 1-.641.263h-5.4l-1.8 2.4h-3.9v10.8h15.6v-8.7c0-.255.085-.469.257-.641a.863.863 0 0 1 .637-.26.88.88 0 0 1 .643.26.865.865 0 0 1 .263.64v8.7c0 .484-.177.905-.529 1.263a1.72 1.72 0 0 1-1.271.538h-15.6Zm15.605-15h-.902a.875.875 0 0 1-.644-.259.87.87 0 0 1-.26-.641.87.87 0 0 1 .26-.641.875.875 0 0 1 .644-.26h.902v-.9a.87.87 0 0 1 .26-.64.871.871 0 0 1 .64-.26c.253 0 .466.087.637.26a.873.873 0 0 1 .258.64v.9h.894c.254 0 .468.087.643.258a.857.857 0 0 1 .263.637.87.87 0 0 1-.259.64.87.87 0 0 1-.641.26h-.9v.903c0 .256-.087.47-.259.643a.87.87 0 0 1-.641.26.865.865 0 0 1-.635-.259.87.87 0 0 1-.26-.641v-.9Zm-7.805 12c1.2 0 2.2-.409 3-1.225.8-.817 1.2-1.809 1.2-2.975 0-1.15-.4-2.138-1.2-2.963-.8-.825-1.8-1.237-3-1.237s-2.2.412-3 1.237c-.8.825-1.2 1.817-1.2 2.975 0 1.159.4 2.146 1.2 2.963.8.816 1.8 1.225 3 1.225Zm0-1.8c-.7 0-1.275-.235-1.725-.703-.45-.47-.675-1.043-.675-1.722 0-.665.225-1.227.675-1.687.45-.459 1.025-.688 1.725-.688.7 0 1.275.23 1.725.688.45.46.675 1.022.675 1.687 0 .679-.225 1.253-.675 1.722-.45.468-1.025.703-1.725.703Z"
552
+ />
553
+ </Svg>
554
+ );
555
+ }
556
+
557
+ function IconWaze({
558
+ color = theme.color.neutral.mid['60'],
559
+ size = 15,
560
+ ...props
561
+ }: IconProps) {
562
+ return (
563
+ <Svg viewBox="0 0 122.71 122.88" width={size} height={size} {...props}>
564
+ <Path
565
+ fill="#fff"
566
+ d="M55.14 104.21c4.22 0 8.44.19 12.66-.09 3.84-.19 7.88-.56 11.63-1.5 29.82-7.31 45.76-40.23 32.72-68.07C104.27 17.76 90.77 8.19 72.3 6.22 58.14 4.72 45.48 8.94 34.79 18.5c-10.5 9.47-15.94 21.28-16.31 35.44-.09 3.28 0 6.66 0 9.94-.1 7.14-4.13 12.67-10.98 14.82-.09 0-.28.19-.38.19 2.63 6.94 13.31 17.16 19.97 19.69 8.36-11.44 25.23-7.4 28.05 5.63z"
567
+ />
568
+ <Path
569
+ fill={color}
570
+ d="M54.95 110.49c-1.03 4.69-3.56 8.16-7.69 10.31-5.25 2.72-10.6 2.63-15.57-.56-5.16-3.28-7.41-8.25-7.03-14.35.09-1.03-.19-1.41-1.03-1.88-9.1-4.78-16.31-11.44-21.28-20.44-.94-1.78-1.69-3.66-2.16-5.63-.66-2.72.38-4.03 3.19-4.31 3.38-.38 6.38-1.69 7.88-4.88.66-1.41 1.03-3.09 1.03-4.69.19-4.03 0-8.06.19-12.1 1.03-15.57 7.5-28.5 19.32-38.63C42.67 3.97 55.42-.43 69.76.03c25.04.94 46.51 18.57 51.57 43.23 4.59 22.32-2.34 40.98-20.07 55.51-1.03.84-2.16 1.69-3.38 2.44-.66.47-.84.84-.56 1.59 2.34 7.13-.94 15-7.5 18.38-8.91 4.41-19.22-.09-21.94-9.66-.09-.38-.56-.84-.84-.84-3.93-.28-7.97-.19-12.09-.19zm.19-6.28c4.22 0 8.44.19 12.66-.09 3.84-.19 7.88-.56 11.63-1.5 29.82-7.31 45.76-40.23 32.72-68.07C104.27 17.76 90.77 8.19 72.3 6.22 58.14 4.72 45.48 8.94 34.79 18.5c-10.5 9.47-15.94 21.28-16.31 35.44-.09 3.28 0 6.66 0 9.94-.1 7.14-4.13 12.67-10.98 14.82-.09 0-.28.19-.38.19 2.63 6.94 13.31 17.16 19.97 19.69 8.36-11.44 25.23-7.4 28.05 5.63z"
571
+ />
572
+ <Path
573
+ fill={color}
574
+ d="M74.92 79.74c-11.07-.56-18.38-4.97-23.07-13.78-1.13-2.16-.09-4.31 2.06-4.78 1.31-.28 2.53.66 3.47 2.16 1.22 1.88 2.44 3.75 4.03 5.25 8.81 8.34 23.25 5.72 28.79-5.06.66-1.31 1.5-2.34 3.09-2.34 2.34.09 3.66 2.44 2.63 4.59-2.91 5.91-7.5 10.22-13.69 12.28-2.72.93-5.53 1.3-7.31 1.68zM55.32 48.98c-3.38 0-6.09-2.72-6.09-6.09s2.72-6.09 6.09-6.09 6.09 2.72 6.09 6.09c.01 3.28-2.71 6.09-6.09 6.09zM98.27 42.79c0 3.38-2.72 6.09-6 6.19-3.38 0-6.09-2.63-6.09-6.09a6.15 6.15 0 0 1 6-6.19c3.28 0 5.99 2.72 6.09 6.09z"
575
+ />
576
+ </Svg>
577
+ );
578
+ }
579
+
580
+ function IconReturned({
581
+ color = theme.color.neutral.mid['60'],
582
+ size = 15,
583
+ ...props
584
+ }: IconProps) {
585
+ return (
586
+ <Svg width={size} height={size} viewBox="0 0 25 25" fill="none" {...props}>
587
+ <Path
588
+ fill={color}
589
+ d="M6.408 12.72c0 .266.017.528.05.787.034.258.092.512.175.762.084.284.075.554-.025.813a.995.995 0 0 1-.525.562.904.904 0 0 1-.787.038.866.866 0 0 1-.513-.588 6.365 6.365 0 0 1-.287-1.175c-.059-.4-.088-.8-.088-1.2 0-2.233.775-4.133 2.325-5.7 1.55-1.566 3.442-2.35 5.675-2.35h.175l-.9-.9a.948.948 0 0 1-.275-.7c0-.283.092-.516.275-.7a.948.948 0 0 1 .7-.275c.284 0 .517.092.7.275l2.6 2.6c.2.2.3.434.3.7 0 .267-.1.5-.3.7l-2.6 2.6a.948.948 0 0 1-.7.275.948.948 0 0 1-.7-.275.948.948 0 0 1-.275-.7c0-.283.092-.516.275-.7l.9-.9h-.175c-1.666 0-3.083.588-4.25 1.763-1.166 1.175-1.75 2.604-1.75 4.287Zm12-.1c0-.267-.017-.53-.05-.788a4.042 4.042 0 0 0-.175-.763 1.231 1.231 0 0 1 .025-.812.995.995 0 0 1 .525-.563.905.905 0 0 1 .788-.037c.258.108.429.304.512.587.133.384.23.775.288 1.175.058.4.087.8.087 1.2 0 2.234-.775 4.134-2.325 5.7-1.55 1.567-3.441 2.35-5.675 2.35h-.175l.9.9a.949.949 0 0 1 .275.7.948.948 0 0 1-.275.7.948.948 0 0 1-.7.275.948.948 0 0 1-.7-.275l-2.6-2.6a.96.96 0 0 1-.3-.7c0-.266.1-.5.3-.7l2.6-2.6a.948.948 0 0 1 .7-.275c.284 0 .517.092.7.275a.949.949 0 0 1 .275.7.948.948 0 0 1-.275.7l-.9.9h.175c1.667 0 3.084-.587 4.25-1.762 1.167-1.175 1.75-2.604 1.75-4.288Z"
590
+ />
591
+ </Svg>
592
+ );
593
+ }
594
+
595
+ function IconXCircle({
596
+ color = theme.color.neutral.mid['60'],
597
+ size = 15,
598
+ ...props
599
+ }: IconProps) {
600
+ return (
601
+ <Svg width={size} height={size} fill="none" viewBox="0 0 25 25" {...props}>
602
+ <Path
603
+ fill={color}
604
+ d="m12.408 14.07 2.9 2.9a.948.948 0 0 0 .7.274.948.948 0 0 0 .7-.275.948.948 0 0 0 .275-.7.948.948 0 0 0-.275-.7l-2.9-2.9 2.9-2.9a.948.948 0 0 0 .275-.7.948.948 0 0 0-.275-.7.948.948 0 0 0-.7-.275.948.948 0 0 0-.7.275l-2.9 2.9-2.9-2.9a.948.948 0 0 0-.7-.275.948.948 0 0 0-.7.275.948.948 0 0 0-.275.7c0 .284.092.517.275.7l2.9 2.9-2.9 2.9a.948.948 0 0 0-.275.7c0 .284.092.517.275.7a.948.948 0 0 0 .7.275.948.948 0 0 0 .7-.275l2.9-2.9Zm0 8.6a9.738 9.738 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.138c-.9-.9-1.612-1.958-2.137-3.175a9.738 9.738 0 0 1-.788-3.9c0-1.383.263-2.683.788-3.9a10.099 10.099 0 0 1 2.137-3.175c.9-.9 1.959-1.612 3.175-2.137a9.738 9.738 0 0 1 3.9-.788c1.383 0 2.684.263 3.9.788a10.098 10.098 0 0 1 3.175 2.137c.9.9 1.613 1.959 2.138 3.175a9.738 9.738 0 0 1 .787 3.9 9.738 9.738 0 0 1-.787 3.9 10.098 10.098 0 0 1-2.138 3.175c-.9.9-1.958 1.613-3.175 2.138a9.738 9.738 0 0 1-3.9.787Z"
605
+ />
606
+ </Svg>
607
+ );
608
+ }
609
+
610
+ function IconWarning({
611
+ color = theme.color.neutral.mid['60'],
612
+ size = 15,
613
+ ...props
614
+ }: IconProps) {
615
+ return (
616
+ <Svg width={size} height={size} fill="none" viewBox="0 0 25 25" {...props}>
617
+ <Path
618
+ fill={color}
619
+ d="M12.408 17.67c.284 0 .521-.097.713-.288a.968.968 0 0 0 .287-.713.968.968 0 0 0-.287-.712.968.968 0 0 0-.713-.288.968.968 0 0 0-.712.288.968.968 0 0 0-.288.712c0 .284.096.521.288.713.191.191.429.287.712.287Zm0-4c.284 0 .521-.097.713-.288a.968.968 0 0 0 .287-.713v-4a.967.967 0 0 0-.287-.712.968.968 0 0 0-.713-.288.968.968 0 0 0-.712.288.967.967 0 0 0-.288.712v4c0 .284.096.521.288.713.191.191.429.287.712.287Zm0 9a9.738 9.738 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.138c-.9-.9-1.612-1.958-2.137-3.175a9.738 9.738 0 0 1-.788-3.9c0-1.383.263-2.683.788-3.9a10.099 10.099 0 0 1 2.137-3.175c.9-.9 1.959-1.612 3.175-2.137a9.738 9.738 0 0 1 3.9-.788c1.383 0 2.684.263 3.9.788a10.098 10.098 0 0 1 3.175 2.137c.9.9 1.613 1.959 2.138 3.175a9.738 9.738 0 0 1 .787 3.9 9.738 9.738 0 0 1-.787 3.9 10.098 10.098 0 0 1-2.138 3.175c-.9.9-1.958 1.613-3.175 2.138a9.738 9.738 0 0 1-3.9.787Z"
620
+ />
621
+ </Svg>
622
+ );
623
+ }
624
+
625
+ function IconWarningOutline({
626
+ color = theme.color.neutral.mid['60'],
627
+ size = 15,
628
+ ...props
629
+ }: IconProps) {
630
+ return (
631
+ <Svg
632
+ width={size}
633
+ height={size}
634
+ fill={color}
635
+ viewBox="0 -960 960 960"
636
+ {...props}
637
+ >
638
+ <Path d="M480-280q17 0 28.5-11.5T520-320q0-17-11.5-28.5T480-360q-17 0-28.5 11.5T440-320q0 17 11.5 28.5T480-280Zm0-160q17 0 28.5-11.5T520-480v-160q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640v160q0 17 11.5 28.5T480-440Zm0 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
639
+ </Svg>
640
+ );
641
+ }
642
+
643
+ function IconCheck({
644
+ color = theme.color.neutral.mid['60'],
645
+ size = 15,
646
+ ...props
647
+ }: IconProps) {
648
+ return (
649
+ <Svg width={size} height={size} fill="none" viewBox="0 0 25 25" {...props}>
650
+ <Path
651
+ fill={color}
652
+ d="m11.008 14.47-2.15-2.15a.948.948 0 0 0-.7-.276.948.948 0 0 0-.7.275.948.948 0 0 0-.275.7c0 .284.092.517.275.7l2.85 2.85c.2.2.434.3.7.3.267 0 .5-.1.7-.3l5.65-5.65a.948.948 0 0 0 .275-.7.948.948 0 0 0-.275-.7.948.948 0 0 0-.7-.275.948.948 0 0 0-.7.275l-4.95 4.95Zm1.4 8.2a9.738 9.738 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.138c-.9-.9-1.612-1.958-2.137-3.175a9.738 9.738 0 0 1-.788-3.9c0-1.383.263-2.683.788-3.9a10.099 10.099 0 0 1 2.137-3.175c.9-.9 1.959-1.612 3.175-2.137a9.738 9.738 0 0 1 3.9-.788c1.383 0 2.684.263 3.9.788a10.098 10.098 0 0 1 3.175 2.137c.9.9 1.613 1.959 2.138 3.175a9.738 9.738 0 0 1 .787 3.9 9.738 9.738 0 0 1-.787 3.9 10.098 10.098 0 0 1-2.138 3.175c-.9.9-1.958 1.613-3.175 2.138a9.738 9.738 0 0 1-3.9.787Z"
653
+ />
654
+ </Svg>
655
+ );
656
+ }
657
+
658
+ function IconPause({
659
+ color = theme.color.neutral.mid['60'],
660
+ size = 15,
661
+ ...props
662
+ }: IconProps) {
663
+ return (
664
+ <Svg
665
+ width={size + 1}
666
+ height={size}
667
+ fill="none"
668
+ viewBox="0 0 25 24"
669
+ {...props}
670
+ >
671
+ <Path
672
+ fill={color}
673
+ d="M10.148 16c.283 0 .52-.096.712-.287a.968.968 0 0 0 .288-.713V9a.967.967 0 0 0-.288-.713.967.967 0 0 0-.712-.287.968.968 0 0 0-.713.287.968.968 0 0 0-.287.713v6c0 .283.096.52.287.713.192.191.43.287.713.287Zm4 0c.283 0 .52-.096.712-.287a.968.968 0 0 0 .288-.713V9a.967.967 0 0 0-.288-.713.967.967 0 0 0-.712-.287.968.968 0 0 0-.713.287.968.968 0 0 0-.287.713v6c0 .283.096.52.287.713.192.191.43.287.713.287Zm-2 6a9.737 9.737 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.137c-.9-.9-1.613-1.958-2.138-3.175a9.738 9.738 0 0 1-.787-3.9c0-1.383.262-2.683.787-3.9a10.099 10.099 0 0 1 2.138-3.175c.9-.9 1.958-1.612 3.175-2.137a9.737 9.737 0 0 1 3.9-.788c1.383 0 2.683.263 3.9.788a10.098 10.098 0 0 1 3.175 2.137c.9.9 1.612 1.958 2.137 3.175a9.738 9.738 0 0 1 .788 3.9 9.738 9.738 0 0 1-.788 3.9 10.097 10.097 0 0 1-2.137 3.175c-.9.9-1.958 1.613-3.175 2.137a9.737 9.737 0 0 1-3.9.788Zm0-2c2.233 0 4.125-.775 5.675-2.325 1.55-1.55 2.325-3.442 2.325-5.675 0-2.233-.775-4.125-2.325-5.675C16.273 4.775 14.38 4 12.148 4c-2.233 0-4.125.775-5.675 2.325C4.923 7.875 4.148 9.767 4.148 12c0 2.233.775 4.125 2.325 5.675C8.023 19.225 9.915 20 12.148 20Z"
674
+ />
675
+ </Svg>
676
+ );
677
+ }
678
+
679
+ function IconTruckAlt({ size = 15, ...props }: IconProps) {
680
+ return (
681
+ <Svg
682
+ width={size + 1}
683
+ height={size}
684
+ fill="none"
685
+ viewBox="0 0 17 16"
686
+ {...props}
687
+ >
688
+ <Mask
689
+ id="a"
690
+ width={size + 1}
691
+ height={size}
692
+ x={0}
693
+ y={0}
694
+ maskUnits="userSpaceOnUse"
695
+ >
696
+ <Path fill="#D9D9D9" d="M.568 0h16v16h-16z" />
697
+ </Mask>
698
+ <G mask="url(#a)">
699
+ <Path
700
+ fill="#fff"
701
+ d="M4.568 13.333a1.929 1.929 0 0 1-1.417-.583 1.929 1.929 0 0 1-.583-1.417h-.667a.645.645 0 0 1-.475-.191.645.645 0 0 1-.191-.475V4c0-.367.13-.68.391-.942.262-.26.575-.391.942-.391h8c.367 0 .68.13.942.391.26.262.391.575.391.942v1.333h1.334a1.323 1.323 0 0 1 1.066.534l1.467 1.95a.59.59 0 0 1 .1.183.682.682 0 0 1 .033.217v2.45a.645.645 0 0 1-.191.475.645.645 0 0 1-.475.191h-.667c0 .556-.194 1.028-.583 1.417a1.928 1.928 0 0 1-1.417.583 1.929 1.929 0 0 1-1.417-.583 1.929 1.929 0 0 1-.583-1.417h-4c0 .556-.194 1.028-.583 1.417a1.929 1.929 0 0 1-1.417.583Zm0-1.333a.645.645 0 0 0 .475-.192.645.645 0 0 0 .192-.475.645.645 0 0 0-.192-.475.645.645 0 0 0-.475-.191.645.645 0 0 0-.475.191.645.645 0 0 0-.192.475c0 .19.064.348.192.475a.645.645 0 0 0 .475.192Zm-2-2h.533c.19-.2.406-.361.65-.483a1.8 1.8 0 0 1 .817-.184c.3 0 .572.062.817.184.244.122.46.283.65.483h4.533V4h-8v6Zm10 2a.645.645 0 0 0 .475-.192.645.645 0 0 0 .192-.475.645.645 0 0 0-.192-.475.645.645 0 0 0-.475-.191.645.645 0 0 0-.475.191.645.645 0 0 0-.192.475c0 .19.064.348.192.475a.645.645 0 0 0 .475.192Zm-.667-3.333h2.834l-1.5-2H11.9v2Z"
702
+ />
703
+ </G>
704
+ </Svg>
705
+ );
706
+ }
707
+
708
+ function IconCalendar({
709
+ color = theme.color.neutral.mid['60'],
710
+ size = 15,
711
+ ...props
712
+ }: IconProps) {
713
+ return (
714
+ <Svg width={size} height={size} viewBox="0 0 15 15" fill="none" {...props}>
715
+ <Path
716
+ fill={color}
717
+ d="M8.57 10.67c-.408 0-.753-.142-1.035-.424a1.408 1.408 0 0 1-.423-1.035c0-.408.141-.754.423-1.035a1.408 1.408 0 0 1 1.036-.423c.408 0 .753.14 1.035.423.282.281.423.627.423 1.035 0 .408-.141.753-.423 1.035a1.408 1.408 0 0 1-1.035.423ZM3.03 13.002c-.321 0-.596-.115-.824-.343a1.123 1.123 0 0 1-.343-.824V3.669c0-.32.114-.595.343-.824.228-.228.503-.342.824-.342h.583v-.584c0-.165.056-.304.168-.415a.564.564 0 0 1 .416-.168c.165 0 .303.056.415.168.112.111.168.25.168.415v.584h4.667v-.584c0-.165.055-.304.167-.415a.564.564 0 0 1 .416-.168c.165 0 .304.056.415.168.112.111.168.25.168.415v.584h.583c.321 0 .596.114.825.342.228.229.342.503.342.824v8.167c0 .32-.114.595-.342.824a1.123 1.123 0 0 1-.825.343H3.03Zm0-1.167h8.166V6.003H3.03v5.833Z"
718
+ />
719
+ </Svg>
720
+ );
721
+ }
722
+
723
+ function IconCalendarAlt({
724
+ color = theme.color.neutral.mid['60'],
725
+ size = 15,
726
+ ...props
727
+ }: IconProps) {
728
+ return (
729
+ <Svg
730
+ width={size}
731
+ height={size + 1}
732
+ viewBox="0 0 14 15"
733
+ fill="none"
734
+ {...props}
735
+ >
736
+ <Path
737
+ fill={color}
738
+ d="M2.917 13.334c-.321 0-.596-.115-.824-.343a1.124 1.124 0 0 1-.343-.824V4c0-.32.114-.595.343-.824.228-.228.503-.342.824-.342H3.5V2.25c0-.165.056-.303.168-.415a.564.564 0 0 1 .415-.168c.166 0 .304.056.416.168.112.112.168.25.168.415v.584h4.666V2.25c0-.165.056-.303.168-.415a.564.564 0 0 1 .416-.168c.165 0 .303.056.415.168.112.112.168.25.168.415v.584h.583c.321 0 .596.114.824.342.229.229.343.503.343.824v8.167c0 .32-.114.595-.343.824a1.124 1.124 0 0 1-.824.343H2.917Zm0-1.167h8.166V6.334H2.917v5.833ZM7 8.667a.564.564 0 0 1-.416-.168.564.564 0 0 1-.167-.415c0-.166.056-.304.167-.416A.564.564 0 0 1 7 7.5c.165 0 .304.056.416.168.111.112.167.25.167.416a.564.564 0 0 1-.167.415.564.564 0 0 1-.416.168Zm-2.333 0a.564.564 0 0 1-.416-.168.564.564 0 0 1-.168-.415c0-.166.056-.304.168-.416a.564.564 0 0 1 .416-.168c.165 0 .303.056.415.168.112.112.168.25.168.416a.564.564 0 0 1-.168.415.564.564 0 0 1-.415.168Zm4.666 0a.564.564 0 0 1-.415-.168.564.564 0 0 1-.168-.415c0-.166.056-.304.168-.416a.564.564 0 0 1 .415-.168c.166 0 .304.056.416.168.112.112.168.25.168.416a.564.564 0 0 1-.168.415.564.564 0 0 1-.416.168ZM7 11a.564.564 0 0 1-.416-.167.564.564 0 0 1-.167-.416c0-.165.056-.304.167-.416A.564.564 0 0 1 7 9.834c.165 0 .304.056.416.167.111.112.167.25.167.416a.564.564 0 0 1-.167.416A.564.564 0 0 1 7 11Zm-2.333 0a.564.564 0 0 1-.416-.167.564.564 0 0 1-.168-.416c0-.165.056-.304.168-.416a.564.564 0 0 1 .416-.167c.165 0 .303.056.415.167.112.112.168.25.168.416a.564.564 0 0 1-.168.416.564.564 0 0 1-.415.167Zm4.666 0a.564.564 0 0 1-.415-.167.564.564 0 0 1-.168-.416c0-.165.056-.304.168-.416a.564.564 0 0 1 .415-.167c.166 0 .304.056.416.167.112.112.168.25.168.416a.564.564 0 0 1-.168.416.564.564 0 0 1-.416.167Z"
739
+ />
740
+ </Svg>
741
+ );
742
+ }
743
+
744
+ function IconDistance({
745
+ color = theme.color.neutral.mid['60'],
746
+ size = 15,
747
+ ...props
748
+ }: IconProps) {
749
+ return (
750
+ <Svg width={size} height={size} viewBox="0 0 15 15" fill="none" {...props}>
751
+ <Path
752
+ fill={color}
753
+ d="M5.362 12.42a2.247 2.247 0 0 1-1.648-.686 2.247 2.247 0 0 1-.685-1.648V5.317a1.802 1.802 0 0 1-.839-.634 1.663 1.663 0 0 1-.328-1.014c0-.486.17-.9.51-1.24.34-.34.754-.51 1.24-.51s.9.17 1.24.51c.34.34.51.754.51 1.24 0 .38-.11.717-.328 1.014a1.802 1.802 0 0 1-.838.634v4.769c0 .32.114.595.342.824.229.228.503.342.824.342.321 0 .596-.114.824-.342.229-.229.343-.503.343-.824V4.253c0-.642.228-1.191.685-1.648a2.247 2.247 0 0 1 1.648-.686c.642 0 1.191.229 1.648.686.457.457.685 1.006.685 1.648V9.02c.34.127.62.338.84.635.218.296.327.634.327 1.013 0 .486-.17.9-.51 1.24-.34.34-.754.51-1.24.51s-.9-.17-1.24-.51c-.34-.34-.51-.754-.51-1.24 0-.379.11-.72.328-1.02.22-.302.499-.511.839-.628V4.253c0-.321-.114-.596-.343-.824a1.123 1.123 0 0 0-.824-.343c-.32 0-.595.114-.824.343a1.123 1.123 0 0 0-.342.824v5.833c0 .641-.229 1.19-.686 1.648a2.247 2.247 0 0 1-1.648.685Z"
754
+ />
755
+ </Svg>
756
+ );
757
+ }
758
+
759
+ function IconClock({
760
+ color = theme.color.neutral.mid['60'],
761
+ size = 15,
762
+ ...props
763
+ }: IconProps) {
764
+ return (
765
+ <Svg width={size} height={size} viewBox="0 0 15 15" fill="none" {...props}>
766
+ <Path
767
+ fill={color}
768
+ d="M7.88 7.6V5.5a.564.564 0 0 0-.168-.416.564.564 0 0 0-.416-.167.564.564 0 0 0-.416.167.564.564 0 0 0-.167.416v2.319a.603.603 0 0 0 .175.423l1.925 1.925c.107.107.243.16.408.16a.553.553 0 0 0 .408-.16.553.553 0 0 0 .16-.409.553.553 0 0 0-.16-.408L7.88 7.6Zm-.584 6.067a5.681 5.681 0 0 1-2.275-.46 5.892 5.892 0 0 1-1.852-1.247 5.89 5.89 0 0 1-1.247-1.852 5.68 5.68 0 0 1-.46-2.275c0-.807.154-1.565.46-2.275A5.89 5.89 0 0 1 3.17 3.706 5.89 5.89 0 0 1 5.02 2.46 5.68 5.68 0 0 1 7.296 2a5.68 5.68 0 0 1 2.275.46c.71.306 1.327.721 1.852 1.246.525.525.94 1.143 1.247 1.852.306.71.46 1.468.46 2.275a5.68 5.68 0 0 1-.46 2.275 5.89 5.89 0 0 1-1.247 1.852 5.892 5.892 0 0 1-1.852 1.247c-.71.306-1.468.46-2.275.46Z"
769
+ />
770
+ </Svg>
771
+ );
772
+ }
773
+
774
+ function IconHome({
775
+ color = theme.color.neutral.mid['60'],
776
+ size = 24,
777
+ ...props
778
+ }: IconProps) {
779
+ return (
780
+ <Svg width={size} height={size} viewBox="0 0 25 24" fill="none" {...props}>
781
+ <Path
782
+ fill={color}
783
+ d="M4.112 19v-9a1.986 1.986 0 0 1 .8-1.6l6-4.5c.35-.267.75-.4 1.2-.4.45 0 .85.133 1.2.4l6 4.5a1.987 1.987 0 0 1 .8 1.6v9c0 .55-.196 1.02-.587 1.413a1.926 1.926 0 0 1-1.413.587h-3a.967.967 0 0 1-.712-.288.968.968 0 0 1-.288-.712v-5a.968.968 0 0 0-.287-.713.968.968 0 0 0-.713-.287h-2a.967.967 0 0 0-.712.287.968.968 0 0 0-.288.713v5c0 .283-.096.52-.287.712a.967.967 0 0 1-.713.288h-3c-.55 0-1.02-.196-1.412-.587A1.926 1.926 0 0 1 4.112 19Z"
784
+ />
785
+ </Svg>
786
+ );
787
+ }
788
+
789
+ function IconChevronUp({
790
+ color = theme.color.neutral.mid['60'],
791
+ size = 24,
792
+ style,
793
+ ...props
794
+ }: IconProps) {
795
+ return (
796
+ <Svg
797
+ width={size}
798
+ height={size}
799
+ fill={color}
800
+ viewBox="0 -960 960 960"
801
+ style={[{ transform: [{ rotateZ: '90deg' }] }, style]}
802
+ {...props}
803
+ >
804
+ <Path d="m432-480 156 156q11 11 11 28t-11 28q-11 11-28 11t-28-11L348-452q-6-6-8.5-13t-2.5-15q0-8 2.5-15t8.5-13l184-184q11-11 28-11t28 11q11 11 11 28t-11 28L432-480Z" />
805
+ </Svg>
806
+ );
807
+ }
808
+
809
+ function IconChevronDown({
810
+ color = theme.color.neutral.mid['60'],
811
+ size = 24,
812
+ style,
813
+ ...props
814
+ }: IconProps) {
815
+ return (
816
+ <Svg
817
+ width={size}
818
+ height={size}
819
+ fill={color}
820
+ viewBox="0 -960 960 960"
821
+ style={[{ transform: [{ rotateZ: '-90deg' }] }, style]}
822
+ {...props}
823
+ >
824
+ <Path d="m432-480 156 156q11 11 11 28t-11 28q-11 11-28 11t-28-11L348-452q-6-6-8.5-13t-2.5-15q0-8 2.5-15t8.5-13l184-184q11-11 28-11t28 11q11 11 11 28t-11 28L432-480Z" />
825
+ </Svg>
826
+ );
827
+ }
828
+
829
+ function IconChevronRight({
830
+ color = theme.color.neutral.mid['60'],
831
+ size = 24,
832
+ style,
833
+ ...props
834
+ }: IconProps) {
835
+ return (
836
+ <Svg
837
+ width={size}
838
+ height={size}
839
+ fill={color}
840
+ viewBox="0 -960 960 960"
841
+ style={[{ transform: [{ rotateZ: '180deg' }] }, style]}
842
+ {...props}
843
+ >
844
+ <Path d="m432-480 156 156q11 11 11 28t-11 28q-11 11-28 11t-28-11L348-452q-6-6-8.5-13t-2.5-15q0-8 2.5-15t8.5-13l184-184q11-11 28-11t28 11q11 11 11 28t-11 28L432-480Z" />
845
+ </Svg>
846
+ );
847
+ }
848
+
849
+ function IconChevronLeft({
850
+ color = theme.color.neutral.mid['60'],
851
+ size = 24,
852
+ ...props
853
+ }: IconProps) {
854
+ return (
855
+ <Svg
856
+ width={size}
857
+ height={size}
858
+ fill={color}
859
+ viewBox="0 -960 960 960"
860
+ {...props}
861
+ >
862
+ <Path d="m432-480 156 156q11 11 11 28t-11 28q-11 11-28 11t-28-11L348-452q-6-6-8.5-13t-2.5-15q0-8 2.5-15t8.5-13l184-184q11-11 28-11t28 11q11 11 11 28t-11 28L432-480Z" />
863
+ </Svg>
864
+ );
865
+ }
866
+
867
+ function IconTruck({
868
+ color = theme.color.neutral.mid['60'],
869
+ size = 24,
870
+ ...props
871
+ }: IconProps) {
872
+ return (
873
+ <Svg
874
+ width={size}
875
+ height={size + 1}
876
+ viewBox="0 0 28 29"
877
+ fill="none"
878
+ {...props}
879
+ >
880
+ <Path
881
+ fill={color}
882
+ d="M7.244 23.827c-.954 0-1.765-.334-2.432-1.002-.668-.668-1.002-1.479-1.002-2.432H2.665c-.324 0-.596-.11-.815-.33-.22-.219-.33-.49-.33-.815V7.8c0-.63.225-1.168.673-1.617a2.205 2.205 0 0 1 1.617-.672h13.736c.63 0 1.169.224 1.617.672.448.449.672.988.672 1.617v2.29h2.29c.362 0 .706.08 1.03.243.324.162.591.386.801.672l2.518 3.348c.077.096.134.2.172.315.038.115.057.239.057.372v4.207c0 .324-.11.596-.329.816-.22.219-.49.329-.815.329h-1.145c0 .953-.334 1.764-1.002 2.432-.667.668-1.478 1.002-2.432 1.002s-1.765-.334-2.432-1.002c-.668-.668-1.002-1.479-1.002-2.432h-6.868c0 .953-.334 1.764-1.002 2.432-.667.668-1.478 1.002-2.432 1.002Zm0-2.29c.324 0 .596-.11.816-.329.219-.22.329-.491.329-.815 0-.325-.11-.597-.33-.816-.219-.22-.49-.33-.815-.33-.324 0-.596.11-.815.33-.22.22-.33.491-.33.816 0 .324.11.596.33.815.219.22.49.33.815.33Zm13.736 0c.324 0 .596-.11.816-.329.219-.22.329-.491.329-.815 0-.325-.11-.597-.33-.816-.219-.22-.49-.33-.815-.33-.324 0-.596.11-.816.33-.219.22-.329.491-.329.816 0 .324.11.596.33.815.219.22.49.33.815.33Zm-1.145-5.723H24.7l-2.575-3.434h-2.29v3.434Z"
883
+ />
884
+ </Svg>
885
+ );
886
+ }
887
+
888
+ function IconPin({
889
+ color = theme.color.neutral.mid['60'],
890
+ size = 24,
891
+ ...props
892
+ }: IconProps) {
893
+ return (
894
+ <Svg width={size} height={size} viewBox="0 0 15 15" fill="none" {...props}>
895
+ <Path
896
+ fill={color}
897
+ d="M7.112 12.609c-.136 0-.272-.024-.408-.073a1.074 1.074 0 0 1-.365-.219 22.802 22.802 0 0 1-1.677-1.706 12.642 12.642 0 0 1-1.217-1.612A7.673 7.673 0 0 1 2.7 7.497a4.133 4.133 0 0 1-.255-1.378c0-1.458.469-2.62 1.407-3.485.938-.865 2.025-1.298 3.26-1.298 1.234 0 2.32.433 3.259 1.298.938.865 1.407 2.027 1.407 3.485 0 .438-.085.897-.255 1.378-.17.482-.418.982-.744 1.502s-.732 1.058-1.218 1.612a22.803 22.803 0 0 1-1.677 1.706c-.107.097-.228.17-.364.219a1.208 1.208 0 0 1-.409.073Zm0-5.44c.321 0 .596-.114.824-.342.229-.229.343-.504.343-.824 0-.321-.114-.596-.343-.824a1.123 1.123 0 0 0-.824-.343c-.32 0-.595.114-.824.343a1.123 1.123 0 0 0-.342.824c0 .32.114.595.342.824.229.228.503.342.824.342Z"
898
+ />
899
+ </Svg>
900
+ );
901
+ }
902
+
903
+ function IconBox({
904
+ color = theme.color.neutral.mid['60'],
905
+ size = 24,
906
+ ...props
907
+ }: IconProps) {
908
+ return (
909
+ <Svg width={size} height={size} fill="none" viewBox="0 0 15 15" {...props}>
910
+ <Path
911
+ fill={color}
912
+ d="M6.529 12.842V7.505L1.862 4.807v4.681a1.137 1.137 0 0 0 .584 1.006l4.083 2.348Zm1.167 0 4.083-2.348a1.138 1.138 0 0 0 .583-1.006V4.807L7.696 7.505v5.337Zm2.318-8.02 1.721-1.007-4.04-2.319a1.147 1.147 0 0 0-1.166 0l-1.152.657 4.637 2.668ZM7.112 6.497l1.736-.991-4.623-2.684-1.75 1.007 4.637 2.668Z"
913
+ />
914
+ </Svg>
915
+ );
916
+ }
917
+
918
+ function IconBell({
919
+ color = theme.color.neutral.mid['60'],
920
+ size = 24,
921
+ ...props
922
+ }: IconProps) {
923
+ return (
924
+ <Svg width={size} height={size} viewBox="0 0 24 24" fill="none" {...props}>
925
+ <Path
926
+ fill={color}
927
+ d="M5 19a.967.967 0 0 1-.713-.288A.968.968 0 0 1 4 18c0-.283.096-.52.287-.712A.967.967 0 0 1 5 17h1v-7c0-1.383.417-2.612 1.25-3.688.833-1.075 1.917-1.779 3.25-2.112v-.7c0-.417.146-.77.438-1.063A1.447 1.447 0 0 1 12 2c.417 0 .77.146 1.063.438.291.291.437.645.437 1.062v.7c1.333.333 2.417 1.037 3.25 2.112C17.583 7.388 18 8.617 18 10v7h1c.283 0 .52.096.712.288.192.191.288.429.288.712s-.096.52-.288.712A.968.968 0 0 1 19 19H5Zm7 3c-.55 0-1.02-.196-1.412-.587A1.926 1.926 0 0 1 10 20h4c0 .55-.196 1.02-.588 1.413A1.926 1.926 0 0 1 12 22Z"
928
+ />
929
+ </Svg>
930
+ );
931
+ }
932
+
933
+ function IconEye({
934
+ color = theme.color.neutral.mid['60'],
935
+ size = 24,
936
+ ...props
937
+ }: IconProps) {
938
+ return (
939
+ <Svg width={size} height={size} fill="none" viewBox="0 0 25 25" {...props}>
940
+ <Path
941
+ fill={color}
942
+ d="M12.674 16.34c1.25 0 2.313-.438 3.188-1.313.874-.875 1.312-1.937 1.312-3.187 0-1.25-.438-2.313-1.313-3.188S13.925 7.34 12.675 7.34c-1.25 0-2.313.437-3.188 1.312S8.174 10.59 8.174 11.84c0 1.25.437 2.312 1.312 3.187s1.938 1.313 3.188 1.313Zm0-1.8c-.75 0-1.387-.263-1.912-.788a2.604 2.604 0 0 1-.788-1.912c0-.75.262-1.388.787-1.913a2.604 2.604 0 0 1 1.913-.787c.75 0 1.388.262 1.912.787.525.525.788 1.163.788 1.913s-.263 1.387-.788 1.912a2.604 2.604 0 0 1-1.912.788Zm0 4.8c-2.233 0-4.27-.6-6.113-1.8-1.841-1.2-3.295-2.783-4.362-4.75a1.907 1.907 0 0 1-.188-1.438c.042-.158.105-.312.188-.462 1.067-1.967 2.52-3.55 4.362-4.75 1.842-1.2 3.88-1.8 6.113-1.8 2.233 0 4.27.6 6.113 1.8 1.841 1.2 3.295 2.783 4.362 4.75a1.911 1.911 0 0 1 .188 1.438 1.998 1.998 0 0 1-.188.462c-1.067 1.967-2.52 3.55-4.363 4.75-1.841 1.2-3.879 1.8-6.112 1.8Z"
943
+ />
944
+ </Svg>
945
+ );
946
+ }
947
+
948
+ function IconEyeOff({
949
+ color = theme.color.neutral.mid['60'],
950
+ size = 24,
951
+ ...props
952
+ }: IconProps) {
953
+ return (
954
+ <Svg width={size} height={size} viewBox="0 0 25 25" fill="none" {...props}>
955
+ <Path
956
+ fill={color}
957
+ d="m20.474 22.94-4.2-4.15a11.91 11.91 0 0 1-3.6.55c-2.233 0-4.275-.6-6.125-1.8a12.69 12.69 0 0 1-4.35-4.75 1.907 1.907 0 0 1-.188-1.438c.042-.158.105-.312.188-.462.367-.65.758-1.284 1.175-1.9.417-.617.9-1.167 1.45-1.65l-2.75-2.8 1.4-1.4 18.4 18.4-1.4 1.4Zm-7.8-6.6c.183 0 .358-.009.525-.025.167-.017.333-.05.5-.1l-5.4-5.4a2.66 2.66 0 0 0-.1.5 5.283 5.283 0 0 0-.025.525c0 1.25.437 2.312 1.312 3.187s1.938 1.313 3.188 1.313Zm7.3.45-3.175-3.15a5.34 5.34 0 0 0 .275-.875c.067-.3.1-.609.1-.925 0-1.25-.438-2.313-1.313-3.188S13.925 7.34 12.675 7.34a4.178 4.178 0 0 0-1.8.4l-2.55-2.55a11.51 11.51 0 0 1 4.35-.85c2.233 0 4.28.604 6.137 1.812a12.754 12.754 0 0 1 4.363 4.763c.083.133.146.279.188.437.041.159.062.321.062.488 0 .166-.017.329-.05.487a1.34 1.34 0 0 1-.175.438 14.2 14.2 0 0 1-1.388 2.2 9.77 9.77 0 0 1-1.837 1.825Zm-4.625-4.6-3-3c.433-.084.854-.05 1.262.1.409.15.755.383 1.038.7.283.3.488.641.613 1.025.124.383.154.775.087 1.175Z"
958
+ />
959
+ </Svg>
960
+ );
961
+ }
962
+
963
+ function IconPlay({
964
+ color = theme.color.neutral.mid['60'],
965
+ size = 24,
966
+ ...props
967
+ }: IconProps) {
968
+ return (
969
+ <Svg
970
+ width={size + 1}
971
+ height={size}
972
+ fill="none"
973
+ viewBox="0 0 25 24"
974
+ {...props}
975
+ >
976
+ <Path
977
+ fill={color}
978
+ d="m11.39 15.75 4.875-3.125a.705.705 0 0 0 .35-.625.705.705 0 0 0-.35-.625L11.39 8.25a.688.688 0 0 0-.763-.037.705.705 0 0 0-.387.662v6.25c0 .3.129.52.387.662.259.142.513.13.763-.037ZM12.74 22a9.737 9.737 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.137c-.9-.9-1.613-1.958-2.138-3.175A9.738 9.738 0 0 1 2.74 12c0-1.383.262-2.683.787-3.9a10.099 10.099 0 0 1 2.138-3.175c.9-.9 1.958-1.612 3.175-2.137A9.737 9.737 0 0 1 12.74 2c1.383 0 2.683.263 3.9.788a10.098 10.098 0 0 1 3.175 2.137c.9.9 1.612 1.958 2.137 3.175a9.738 9.738 0 0 1 .788 3.9 9.738 9.738 0 0 1-.788 3.9 10.098 10.098 0 0 1-2.137 3.175c-.9.9-1.959 1.613-3.175 2.137a9.737 9.737 0 0 1-3.9.788Zm0-2c2.233 0 4.125-.775 5.675-2.325 1.55-1.55 2.325-3.442 2.325-5.675 0-2.233-.775-4.125-2.325-5.675C16.865 4.775 14.973 4 12.74 4c-2.234 0-4.125.775-5.675 2.325C5.515 7.875 4.74 9.767 4.74 12c0 2.233.775 4.125 2.325 5.675C8.615 19.225 10.506 20 12.74 20Z"
979
+ />
980
+ </Svg>
981
+ );
982
+ }
983
+
984
+ function IconExit({
985
+ color = theme.color.neutral.mid['60'],
986
+ size = 24,
987
+ ...props
988
+ }: IconProps) {
989
+ return (
990
+ <Svg
991
+ width={size}
992
+ height={size}
993
+ fill={color}
994
+ color={color}
995
+ viewBox="0 0 512 512"
996
+ {...props}
997
+ >
998
+ <Path d="M160 416H96c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h64c17.67 0 32-14.33 32-32s-14.3-32-32-32H96C42.98 32 0 74.98 0 128v256c0 53.02 42.98 96 96 96h64c17.67 0 32-14.33 32-32s-14.3-32-32-32zm342.6-182.6-128-128c-12.51-12.51-32.76-12.49-45.25 0-12.5 12.5-12.5 32.75 0 45.25L402.8 224H192c-17.7 0-32 14.3-32 32s14.31 32 32 32h210.8l-73.38 73.38c-12.5 12.5-12.5 32.75 0 45.25s32.75 12.5 45.25 0l128-128c12.43-12.53 12.43-32.73-.07-45.23z" />
999
+ </Svg>
1000
+ );
1001
+ }
1002
+
1003
+ function IconClose({ size = 24, color = '#555', ...props }: IconProps) {
1004
+ return (
1005
+ <Svg
1006
+ width={size}
1007
+ height={size + 1}
1008
+ fill="none"
1009
+ viewBox="0 0 20 21"
1010
+ {...props}
1011
+ >
1012
+ <Path
1013
+ fill={color}
1014
+ d="m10 11.836-4.083 4.083a.79.79 0 0 1-.584.23.79.79 0 0 1-.583-.23.79.79 0 0 1-.23-.583.79.79 0 0 1 .23-.584l4.083-4.083L4.75 6.586a.79.79 0 0 1-.23-.584.79.79 0 0 1 .23-.583.79.79 0 0 1 .583-.23.79.79 0 0 1 .584.23L10 9.502l4.083-4.083a.79.79 0 0 1 .584-.23.79.79 0 0 1 .583.23.79.79 0 0 1 .23.583.79.79 0 0 1-.23.584l-4.083 4.083 4.083 4.083a.79.79 0 0 1 .23.584.79.79 0 0 1-.23.583.79.79 0 0 1-.583.23.79.79 0 0 1-.584-.23L10 11.836Z"
1015
+ />
1016
+ </Svg>
1017
+ );
1018
+ }
1019
+
1020
+ function IconPassword({ size = 24, color = '#555', ...props }: IconProps) {
1021
+ return (
1022
+ <Svg width={size + 1} height={size} fill="none" {...props}>
1023
+ <Path
1024
+ fill={color}
1025
+ d="M6.68 22c-.55 0-1.02-.196-1.412-.587A1.926 1.926 0 0 1 4.68 20V10c0-.55.196-1.02.588-1.412A1.926 1.926 0 0 1 6.68 8h1V6c0-1.383.488-2.563 1.463-3.538C10.118 1.487 11.297 1 12.68 1s2.563.488 3.538 1.462c.975.975 1.462 2.155 1.462 3.538v2h1c.55 0 1.021.196 1.413.588.391.391.587.862.587 1.412v10c0 .55-.196 1.02-.587 1.413A1.926 1.926 0 0 1 18.68 22h-12Zm6-5c.55 0 1.021-.196 1.413-.587.391-.392.587-.863.587-1.413s-.196-1.02-.587-1.412A1.926 1.926 0 0 0 12.68 13c-.55 0-1.02.196-1.412.588A1.926 1.926 0 0 0 10.68 15c0 .55.196 1.02.588 1.413.391.391.862.587 1.412.587Zm-3-9h6V6c0-.833-.291-1.542-.875-2.125A2.893 2.893 0 0 0 12.68 3c-.833 0-1.541.292-2.125.875A2.893 2.893 0 0 0 9.68 6v2Z"
1026
+ />
1027
+ </Svg>
1028
+ );
1029
+ }
1030
+
1031
+ function IconUser({ size = 24, color = '#555', ...props }: IconProps) {
1032
+ return (
1033
+ <Svg width={size} height={size} viewBox="0 0 15 15" fill="none" {...props}>
1034
+ <Path
1035
+ fill={color}
1036
+ d="M7.112 7.17a2.247 2.247 0 0 1-1.648-.686 2.247 2.247 0 0 1-.685-1.648c0-.642.228-1.191.685-1.648a2.247 2.247 0 0 1 1.648-.686c.642 0 1.191.229 1.648.686.457.457.686 1.006.686 1.648 0 .641-.229 1.19-.686 1.648a2.247 2.247 0 0 1-1.648.685Zm-4.666 3.5v-.468c0-.33.085-.634.255-.911.17-.277.396-.489.678-.634a8.66 8.66 0 0 1 1.837-.679 8.026 8.026 0 0 1 3.792 0c.622.151 1.235.377 1.838.679.281.145.508.357.678.634.17.277.255.58.255.911v.467c0 .32-.114.596-.343.824a1.124 1.124 0 0 1-.824.343h-7c-.32 0-.595-.114-.824-.343a1.124 1.124 0 0 1-.342-.824Z"
1037
+ />
1038
+ </Svg>
1039
+ );
1040
+ }
1041
+
1042
+ function IconInfo({
1043
+ size = 17,
1044
+ color = theme.color.brand.violet['500'],
1045
+ ...props
1046
+ }: IconProps) {
1047
+ return (
1048
+ <Svg width={size} height={size} fill="none" viewBox="0 0 17 17" {...props}>
1049
+ <Path
1050
+ fill={color}
1051
+ d="M11.877 13.833a.32.32 0 0 0 .234-.1.32.32 0 0 0 .1-.233v-2a.32.32 0 0 0-.1-.233.32.32 0 0 0-.467 0 .32.32 0 0 0-.1.233v2a.32.32 0 0 0 .1.233.32.32 0 0 0 .233.1Zm0-3.333a.32.32 0 0 0 .234-.1.32.32 0 0 0 0-.467.32.32 0 0 0-.467 0 .32.32 0 0 0 0 .467.32.32 0 0 0 .233.1Zm-6-.667h1.667a.645.645 0 0 0 .475-.191.645.645 0 0 0 .192-.475.645.645 0 0 0-.192-.475.645.645 0 0 0-.475-.192H5.878a.645.645 0 0 0-.475.192.645.645 0 0 0-.192.475c0 .188.064.347.192.475a.645.645 0 0 0 .475.191Zm0 2.667h.667a.645.645 0 0 0 .475-.192.645.645 0 0 0 .192-.475.645.645 0 0 0-.192-.475.645.645 0 0 0-.475-.191h-.666a.645.645 0 0 0-.475.191.645.645 0 0 0-.192.475c0 .19.064.348.192.475a.645.645 0 0 0 .475.192Zm-2 2.667c-.366 0-.68-.131-.941-.392a1.284 1.284 0 0 1-.392-.942V3.167c0-.367.13-.681.392-.942.261-.261.575-.392.942-.392H8.66a1.317 1.317 0 0 1 .933.384l3.234 3.233a1.318 1.318 0 0 1 .383.933V6.6a.645.645 0 0 1-.192.475.645.645 0 0 1-.475.192.645.645 0 0 1-.475-.192.645.645 0 0 1-.192-.475v-.1H9.211a.645.645 0 0 1-.475-.192.645.645 0 0 1-.192-.475V3.167H3.878v10.666H7.56c.189 0 .347.064.475.192a.645.645 0 0 1 .192.475.645.645 0 0 1-.192.475.645.645 0 0 1-.475.192H3.878Zm8-6.667c.923 0 1.709.325 2.359.975.65.65.975 1.436.975 2.358 0 .922-.325 1.709-.975 2.359-.65.65-1.436.975-2.359.975a3.213 3.213 0 0 1-2.358-.975 3.213 3.213 0 0 1-.975-2.359c0-.922.325-1.708.975-2.358a3.213 3.213 0 0 1 2.358-.975Z"
1052
+ />
1053
+ </Svg>
1054
+ );
1055
+ }
1056
+
1057
+ function IconComment({
1058
+ size = 24,
1059
+ color = theme.color.neutral.mid['60'],
1060
+ ...props
1061
+ }: IconProps) {
1062
+ return (
1063
+ <Svg
1064
+ width={size + 1}
1065
+ height={size}
1066
+ fill="none"
1067
+ viewBox="0 0 25 24"
1068
+ {...props}
1069
+ >
1070
+ <Path
1071
+ fill={color}
1072
+ d="m6.148 18-2.3 2.3c-.317.317-.68.387-1.088.212-.408-.175-.612-.487-.612-.937V4c0-.55.196-1.02.587-1.413A1.926 1.926 0 0 1 4.148 2h16c.55 0 1.02.196 1.412.587.392.392.588.863.588 1.413v12c0 .55-.196 1.02-.588 1.413a1.926 1.926 0 0 1-1.412.587h-14Zm-.85-2h14.85V4h-16v13.125L5.298 16Zm1.85-2h6c.283 0 .52-.096.712-.287a.968.968 0 0 0 .288-.713.968.968 0 0 0-.288-.713.967.967 0 0 0-.712-.287h-6a.967.967 0 0 0-.713.287.968.968 0 0 0-.287.713c0 .283.096.52.287.713.192.191.43.287.713.287Zm0-3h10c.283 0 .52-.096.712-.287a.968.968 0 0 0 .288-.713.967.967 0 0 0-.288-.713.967.967 0 0 0-.712-.287h-10a.968.968 0 0 0-.713.287.968.968 0 0 0-.287.713c0 .283.096.52.287.713.192.191.43.287.713.287Zm0-3h10c.283 0 .52-.096.712-.287A.967.967 0 0 0 18.148 7a.967.967 0 0 0-.288-.713.967.967 0 0 0-.712-.287h-10a.968.968 0 0 0-.713.287.968.968 0 0 0-.287.713c0 .283.096.52.287.713.192.191.43.287.713.287Z"
1073
+ />
1074
+ </Svg>
1075
+ );
1076
+ }
1077
+
1078
+ function IconLater({
1079
+ size = 24,
1080
+ color = theme.color.neutral.mid['60'],
1081
+ ...props
1082
+ }: IconProps) {
1083
+ return (
1084
+ <Svg width={size + 1} height={size} fill="none" {...props}>
1085
+ <Path
1086
+ fill={color}
1087
+ d="M9.74 18c-1.25 0-2.421-.238-3.513-.712a9.149 9.149 0 0 1-2.85-1.925 9.147 9.147 0 0 1-1.925-2.85A8.707 8.707 0 0 1 .74 9c0-1.25.237-2.42.712-3.513a9.148 9.148 0 0 1 1.925-2.85A9.148 9.148 0 0 1 6.227.713 8.707 8.707 0 0 1 9.74 0a8.93 8.93 0 0 1 3.887.875A8.732 8.732 0 0 1 16.74 3.35V2c0-.283.096-.52.287-.712A.968.968 0 0 1 17.74 1c.283 0 .52.096.712.288.192.191.288.429.288.712v4c0 .283-.096.52-.288.713A.967.967 0 0 1 17.74 7h-4a.968.968 0 0 1-.713-.287A.968.968 0 0 1 12.74 6c0-.283.096-.52.287-.713A.968.968 0 0 1 13.74 5h1.75a7.431 7.431 0 0 0-2.525-2.2A6.75 6.75 0 0 0 9.74 2c-1.95 0-3.604.68-4.963 2.037C3.42 5.396 2.74 7.05 2.74 9c0 1.95.679 3.604 2.037 4.963C6.136 15.32 7.79 16 9.74 16c1.583 0 3-.475 4.25-1.425 1.25-.95 2.075-2.175 2.475-3.675a1.04 1.04 0 0 1 .45-.6c.216-.133.458-.183.725-.15a.973.973 0 0 1 .675.362.741.741 0 0 1 .15.688c-.484 1.983-1.534 3.613-3.15 4.887C13.698 17.363 11.84 18 9.74 18Zm1-9.4 2.5 2.5a.948.948 0 0 1 .275.7.948.948 0 0 1-.275.7.948.948 0 0 1-.7.275.949.949 0 0 1-.7-.275l-2.8-2.8a.999.999 0 0 1-.225-.337 1.034 1.034 0 0 1-.075-.388V5c0-.283.096-.52.287-.713A.968.968 0 0 1 9.74 4c.283 0 .52.096.712.287.192.192.288.43.288.713v3.6Z"
1088
+ />
1089
+ </Svg>
1090
+ );
1091
+ }