@worknice/whiteboard 0.0.2 → 0.0.3

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 (564) hide show
  1. package/dist/controls/Action.d.ts +7 -0
  2. package/dist/controls/Action.js +81 -0
  3. package/dist/controls/Button.d.ts +22 -0
  4. package/dist/controls/Button.js +61 -0
  5. package/dist/controls/Button.module.js +9 -0
  6. package/dist/controls/ButtonCard.d.ts +7 -0
  7. package/dist/controls/ButtonCard.js +43 -0
  8. package/dist/controls/ButtonCard.module.js +7 -0
  9. package/dist/controls/ButtonCard_module.css +31 -0
  10. package/dist/controls/ButtonLink.d.ts +15 -0
  11. package/dist/controls/ButtonLink.js +48 -0
  12. package/dist/controls/ButtonLink.module.js +9 -0
  13. package/dist/controls/ButtonLink_module.css +68 -0
  14. package/dist/controls/Button_module.css +86 -0
  15. package/dist/controls/Disclosure.d.ts +7 -0
  16. package/dist/controls/Disclosure.js +27 -0
  17. package/dist/controls/Link.d.ts +14 -0
  18. package/dist/controls/Link.js +35 -0
  19. package/dist/controls/Link.module.js +5 -0
  20. package/dist/controls/LinkCard.d.ts +7 -0
  21. package/dist/controls/LinkCard.js +26 -0
  22. package/dist/controls/LinkCard.module.js +6 -0
  23. package/dist/controls/LinkCard_module.css +22 -0
  24. package/dist/controls/Link_module.css +19 -0
  25. package/dist/controls/MenuButton.d.ts +31 -0
  26. package/dist/controls/MenuButton.js +216 -0
  27. package/dist/controls/MenuButton.module.js +10 -0
  28. package/dist/controls/MenuButton_module.css +78 -0
  29. package/dist/controls/PageTabSet.d.ts +11 -0
  30. package/dist/controls/PageTabSet.js +26 -0
  31. package/dist/controls/PageTabSet.module.js +7 -0
  32. package/dist/controls/PageTabSet_module.css +32 -0
  33. package/dist/controls/Sortable.d.ts +11 -0
  34. package/dist/controls/Sortable.js +27 -0
  35. package/dist/controls/SortableItem.d.ts +8 -0
  36. package/dist/controls/SortableItem.js +42 -0
  37. package/dist/controls/SortableItem.module.js +9 -0
  38. package/dist/controls/SortableItem_module.css +46 -0
  39. package/dist/controls/TabSet.d.ts +12 -0
  40. package/dist/controls/TabSet.js +26 -0
  41. package/dist/controls/TabSet.module.js +7 -0
  42. package/dist/controls/TabSetLink.d.ts +12 -0
  43. package/dist/controls/TabSetLink.js +24 -0
  44. package/dist/controls/TabSetLink.module.js +7 -0
  45. package/dist/controls/TabSetLink_module.css +41 -0
  46. package/dist/controls/TabSet_module.css +39 -0
  47. package/dist/email/EmailBodyText.d.ts +5 -0
  48. package/dist/email/EmailBodyText.js +12 -0
  49. package/dist/email/EmailButton.d.ts +6 -0
  50. package/dist/email/EmailButton.js +19 -0
  51. package/dist/email/EmailFooterText.d.ts +5 -0
  52. package/dist/email/EmailFooterText.js +12 -0
  53. package/dist/email/EmailLayout.d.ts +10 -0
  54. package/dist/email/EmailLayout.js +41 -0
  55. package/dist/fields/BooleanField.d.ts +15 -0
  56. package/dist/fields/BooleanField.js +19 -0
  57. package/dist/fields/ColorPickerField.d.ts +18 -0
  58. package/dist/fields/ColorPickerField.js +18 -0
  59. package/dist/fields/DateField.d.ts +18 -0
  60. package/dist/fields/DateField.js +22 -0
  61. package/dist/fields/DateTimeField.d.ts +16 -0
  62. package/dist/fields/DateTimeField.js +20 -0
  63. package/dist/fields/FileField.d.ts +12 -0
  64. package/dist/fields/FileField.js +18 -0
  65. package/dist/fields/ListBoxField.d.ts +21 -0
  66. package/dist/fields/ListBoxField.js +24 -0
  67. package/dist/fields/MarkdownField.d.ts +17 -0
  68. package/dist/fields/MarkdownField.js +36 -0
  69. package/dist/fields/NumberField.d.ts +12 -0
  70. package/dist/fields/NumberField.js +23 -0
  71. package/dist/fields/PasswordField.d.ts +15 -0
  72. package/dist/fields/PasswordField.js +63 -0
  73. package/dist/fields/PasswordField.module.js +14 -0
  74. package/dist/fields/PasswordField_module.css +47 -0
  75. package/dist/fields/RadioSetField.d.ts +22 -0
  76. package/dist/fields/RadioSetField.js +42 -0
  77. package/dist/fields/RadioSetField.module.js +6 -0
  78. package/dist/fields/RadioSetField_module.css +15 -0
  79. package/dist/fields/SelectField.d.ts +20 -0
  80. package/dist/fields/SelectField.js +24 -0
  81. package/dist/fields/SimpleRadioSetField.d.ts +15 -0
  82. package/dist/fields/SimpleRadioSetField.js +13 -0
  83. package/dist/fields/SingleSelectComboboxField.d.ts +25 -0
  84. package/dist/fields/SingleSelectComboboxField.js +28 -0
  85. package/dist/fields/StringField.d.ts +12 -0
  86. package/dist/fields/StringField.js +25 -0
  87. package/dist/fields/TextField.d.ts +17 -0
  88. package/dist/fields/TextField.js +21 -0
  89. package/dist/fields/TimeField.d.ts +12 -0
  90. package/dist/fields/TimeField.js +21 -0
  91. package/dist/forms/FormButtonSet.d.ts +14 -0
  92. package/dist/forms/FormButtonSet.js +31 -0
  93. package/dist/forms/FormButtonSet.module.js +5 -0
  94. package/dist/forms/FormButtonSet_module.css +12 -0
  95. package/dist/forms/FormError.d.ts +6 -0
  96. package/dist/forms/FormError.js +10 -0
  97. package/dist/forms/FormErrorList.d.ts +8 -0
  98. package/dist/forms/FormErrorList.js +22 -0
  99. package/dist/forms/FormErrorList.module.js +6 -0
  100. package/dist/forms/FormErrorList_module.css +12 -0
  101. package/dist/forms/FormStatusIndicator.d.ts +8 -0
  102. package/dist/forms/FormStatusIndicator.js +40 -0
  103. package/dist/forms/FormStatusIndicator.module.js +8 -0
  104. package/dist/forms/FormStatusIndicator_module.css +18 -0
  105. package/dist/forms/RegularField.d.ts +14 -0
  106. package/dist/forms/RegularField.js +47 -0
  107. package/dist/forms/RegularField.module.js +14 -0
  108. package/dist/forms/RegularField_module.css +47 -0
  109. package/dist/forms/ToggleField.d.ts +12 -0
  110. package/dist/forms/ToggleField.js +38 -0
  111. package/dist/forms/ToggleField.module.js +8 -0
  112. package/dist/forms/ToggleField_module.css +25 -0
  113. package/dist/forms/_types.d.ts +17 -0
  114. package/dist/forms/_types.js +0 -0
  115. package/dist/forms/useForm.d.ts +54 -0
  116. package/dist/forms/useForm.js +107 -0
  117. package/dist/hud/ChevronIcon.d.ts +2 -0
  118. package/dist/hud/ChevronIcon.js +13 -0
  119. package/dist/hud/NavItem.d.ts +10 -0
  120. package/dist/hud/NavItem.js +27 -0
  121. package/dist/hud/NavItem.module.js +7 -0
  122. package/dist/hud/NavItemChild.d.ts +8 -0
  123. package/dist/hud/NavItemChild.js +20 -0
  124. package/dist/hud/NavItemChild.module.js +6 -0
  125. package/dist/hud/NavItemChild_module.css +20 -0
  126. package/dist/hud/NavItem_module.css +26 -0
  127. package/dist/hud/NavSection.d.ts +12 -0
  128. package/dist/hud/NavSection.js +48 -0
  129. package/dist/hud/NavSection.module.js +11 -0
  130. package/dist/hud/NavSection_module.css +44 -0
  131. package/dist/hud/NavTitle.d.ts +8 -0
  132. package/dist/hud/NavTitle.js +43 -0
  133. package/dist/hud/NavTitle.module.js +6 -0
  134. package/dist/hud/NavTitle_module.css +30 -0
  135. package/dist/hud/SidebarIcon.d.ts +2 -0
  136. package/dist/hud/SidebarIcon.js +13 -0
  137. package/dist/hud/ToolbarButton.d.ts +12 -0
  138. package/dist/hud/ToolbarButton.js +23 -0
  139. package/dist/hud/ToolbarButton.module.js +6 -0
  140. package/dist/hud/ToolbarButton_module.css +24 -0
  141. package/dist/icons/AppsIcon.d.ts +3 -0
  142. package/dist/icons/AppsIcon.js +11 -0
  143. package/dist/icons/ArchiveIcon.d.ts +3 -0
  144. package/dist/icons/ArchiveIcon.js +11 -0
  145. package/dist/icons/ArrowLeftIcon.d.ts +3 -0
  146. package/dist/icons/ArrowLeftIcon.js +11 -0
  147. package/dist/icons/ArrowRightIcon.d.ts +3 -0
  148. package/dist/icons/ArrowRightIcon.js +11 -0
  149. package/dist/icons/AssignIcon.d.ts +3 -0
  150. package/dist/icons/AssignIcon.js +13 -0
  151. package/dist/icons/BankAccountIcon.d.ts +3 -0
  152. package/dist/icons/BankAccountIcon.js +11 -0
  153. package/dist/icons/CalendarIcon.d.ts +3 -0
  154. package/dist/icons/CalendarIcon.js +11 -0
  155. package/dist/icons/CancelIcon.d.ts +3 -0
  156. package/dist/icons/CancelIcon.js +11 -0
  157. package/dist/icons/CaratDownIcon.d.ts +3 -0
  158. package/dist/icons/CaratDownIcon.js +11 -0
  159. package/dist/icons/CaratLeftIcon.d.ts +3 -0
  160. package/dist/icons/CaratLeftIcon.js +11 -0
  161. package/dist/icons/CaratRightIcon.d.ts +3 -0
  162. package/dist/icons/CaratRightIcon.js +11 -0
  163. package/dist/icons/CaratUpIcon.d.ts +3 -0
  164. package/dist/icons/CaratUpIcon.js +11 -0
  165. package/dist/icons/CheckmarkIcon.d.ts +3 -0
  166. package/dist/icons/CheckmarkIcon.js +11 -0
  167. package/dist/icons/ChevronDownIcon.d.ts +3 -0
  168. package/dist/icons/ChevronDownIcon.js +11 -0
  169. package/dist/icons/ChevronLeftIcon.d.ts +3 -0
  170. package/dist/icons/ChevronLeftIcon.js +11 -0
  171. package/dist/icons/ChevronRightIcon.d.ts +3 -0
  172. package/dist/icons/ChevronRightIcon.js +11 -0
  173. package/dist/icons/ChevronUpIcon.d.ts +3 -0
  174. package/dist/icons/ChevronUpIcon.js +11 -0
  175. package/dist/icons/CloseIcon.d.ts +3 -0
  176. package/dist/icons/CloseIcon.js +11 -0
  177. package/dist/icons/CopyIcon.d.ts +3 -0
  178. package/dist/icons/CopyIcon.js +14 -0
  179. package/dist/icons/DashIcon.d.ts +3 -0
  180. package/dist/icons/DashIcon.js +11 -0
  181. package/dist/icons/DeleteIcon.d.ts +3 -0
  182. package/dist/icons/DeleteIcon.js +11 -0
  183. package/dist/icons/EditIcon.d.ts +3 -0
  184. package/dist/icons/EditIcon.js +11 -0
  185. package/dist/icons/EmailIcon.d.ts +3 -0
  186. package/dist/icons/EmailIcon.js +11 -0
  187. package/dist/icons/EmergencyContactIcon.d.ts +3 -0
  188. package/dist/icons/EmergencyContactIcon.js +11 -0
  189. package/dist/icons/ExternalIcon.d.ts +3 -0
  190. package/dist/icons/ExternalIcon.js +14 -0
  191. package/dist/icons/GripLinesIcon.d.ts +3 -0
  192. package/dist/icons/GripLinesIcon.js +11 -0
  193. package/dist/icons/HelpIcon.d.ts +3 -0
  194. package/dist/icons/HelpIcon.js +11 -0
  195. package/dist/icons/HiddenIcon.d.ts +3 -0
  196. package/dist/icons/HiddenIcon.js +11 -0
  197. package/dist/icons/InboxIcon.d.ts +3 -0
  198. package/dist/icons/InboxIcon.js +11 -0
  199. package/dist/icons/InsightsIcon.d.ts +3 -0
  200. package/dist/icons/InsightsIcon.js +11 -0
  201. package/dist/icons/JobIcon.d.ts +3 -0
  202. package/dist/icons/JobIcon.js +11 -0
  203. package/dist/icons/LeaveIcon.d.ts +3 -0
  204. package/dist/icons/LeaveIcon.js +11 -0
  205. package/dist/icons/LoadingIcon.d.ts +4 -0
  206. package/dist/icons/LoadingIcon.js +22 -0
  207. package/dist/icons/LogoutIcon.d.ts +3 -0
  208. package/dist/icons/LogoutIcon.js +11 -0
  209. package/dist/icons/MicrosoftIcon.d.ts +3 -0
  210. package/dist/icons/MicrosoftIcon.js +26 -0
  211. package/dist/icons/MinusIcon.d.ts +3 -0
  212. package/dist/icons/MinusIcon.js +11 -0
  213. package/dist/icons/OverflowIcon.d.ts +3 -0
  214. package/dist/icons/OverflowIcon.js +11 -0
  215. package/dist/icons/PaperworkIcon.d.ts +3 -0
  216. package/dist/icons/PaperworkIcon.js +11 -0
  217. package/dist/icons/PeopleIcon.d.ts +3 -0
  218. package/dist/icons/PeopleIcon.js +11 -0
  219. package/dist/icons/PhoneIcon.d.ts +3 -0
  220. package/dist/icons/PhoneIcon.js +11 -0
  221. package/dist/icons/PlusIcon.d.ts +3 -0
  222. package/dist/icons/PlusIcon.js +11 -0
  223. package/dist/icons/PositionsIcon.d.ts +3 -0
  224. package/dist/icons/PositionsIcon.js +11 -0
  225. package/dist/icons/ProfileFemaleIcon.d.ts +3 -0
  226. package/dist/icons/ProfileFemaleIcon.js +11 -0
  227. package/dist/icons/ProfileIcon.d.ts +3 -0
  228. package/dist/icons/ProfileIcon.js +11 -0
  229. package/dist/icons/ProfileMaleIcon.d.ts +3 -0
  230. package/dist/icons/ProfileMaleIcon.js +11 -0
  231. package/dist/icons/RemunerationIcon.d.ts +3 -0
  232. package/dist/icons/RemunerationIcon.js +11 -0
  233. package/dist/icons/RescheduleIcon.d.ts +3 -0
  234. package/dist/icons/RescheduleIcon.js +13 -0
  235. package/dist/icons/RestoreIcon.d.ts +3 -0
  236. package/dist/icons/RestoreIcon.js +13 -0
  237. package/dist/icons/ReviewIcon.d.ts +3 -0
  238. package/dist/icons/ReviewIcon.js +11 -0
  239. package/dist/icons/ScheduleIcon.d.ts +3 -0
  240. package/dist/icons/ScheduleIcon.js +13 -0
  241. package/dist/icons/SettingsIcon.d.ts +3 -0
  242. package/dist/icons/SettingsIcon.js +11 -0
  243. package/dist/icons/SidebarIcon.d.ts +3 -0
  244. package/dist/icons/SidebarIcon.js +11 -0
  245. package/dist/icons/SortAscIcon.d.ts +3 -0
  246. package/dist/icons/SortAscIcon.js +11 -0
  247. package/dist/icons/SortDefaultIcon.d.ts +3 -0
  248. package/dist/icons/SortDefaultIcon.js +11 -0
  249. package/dist/icons/SortDesIcon.d.ts +3 -0
  250. package/dist/icons/SortDesIcon.js +11 -0
  251. package/dist/icons/StepsCompleteIcon.d.ts +3 -0
  252. package/dist/icons/StepsCompleteIcon.js +11 -0
  253. package/dist/icons/StepsCurrentIcon.d.ts +3 -0
  254. package/dist/icons/StepsCurrentIcon.js +11 -0
  255. package/dist/icons/StepsIncompleteIcon.d.ts +3 -0
  256. package/dist/icons/StepsIncompleteIcon.js +11 -0
  257. package/dist/icons/SubmitIcon.d.ts +3 -0
  258. package/dist/icons/SubmitIcon.js +13 -0
  259. package/dist/icons/SuccessIcon.d.ts +3 -0
  260. package/dist/icons/SuccessIcon.js +13 -0
  261. package/dist/icons/SuperFundIcon.d.ts +3 -0
  262. package/dist/icons/SuperFundIcon.js +11 -0
  263. package/dist/icons/SyncIcon.d.ts +3 -0
  264. package/dist/icons/SyncIcon.js +11 -0
  265. package/dist/icons/TaskIcon.d.ts +3 -0
  266. package/dist/icons/TaskIcon.js +11 -0
  267. package/dist/icons/TaxIcon.d.ts +3 -0
  268. package/dist/icons/TaxIcon.js +11 -0
  269. package/dist/icons/TenureIcon.d.ts +3 -0
  270. package/dist/icons/TenureIcon.js +11 -0
  271. package/dist/icons/VisibleIcon.d.ts +3 -0
  272. package/dist/icons/VisibleIcon.js +11 -0
  273. package/dist/icons/WarningIcon.d.ts +3 -0
  274. package/dist/icons/WarningIcon.js +12 -0
  275. package/dist/icons/_types.d.ts +4 -0
  276. package/dist/icons/_types.js +0 -0
  277. package/dist/icons/index.d.ts +67 -0
  278. package/dist/icons/index.js +68 -0
  279. package/dist/index.d.ts +1 -0
  280. package/dist/index.js +0 -0
  281. package/dist/inputs/CheckboxInput.d.ts +12 -0
  282. package/dist/inputs/CheckboxInput.js +48 -0
  283. package/dist/inputs/CheckboxInput.module.js +6 -0
  284. package/dist/inputs/CheckboxInput_module.css +32 -0
  285. package/dist/inputs/ColorPickerInput.d.ts +8 -0
  286. package/dist/inputs/ColorPickerInput.js +36 -0
  287. package/dist/inputs/ColorPickerInput.module.js +15 -0
  288. package/dist/inputs/ColorPickerInput_module.css +99 -0
  289. package/dist/inputs/DateInput.d.ts +19 -0
  290. package/dist/inputs/DateInput.js +43 -0
  291. package/dist/inputs/DateInput.module.js +10 -0
  292. package/dist/inputs/DateInput_module.css +60 -0
  293. package/dist/inputs/DateTimeInput.d.ts +17 -0
  294. package/dist/inputs/DateTimeInput.js +34 -0
  295. package/dist/inputs/DateTimeInput.module.js +5 -0
  296. package/dist/inputs/DateTimeInput_module.css +27 -0
  297. package/dist/inputs/FileInput.d.ts +7 -0
  298. package/dist/inputs/FileInput.js +12 -0
  299. package/dist/inputs/ListBoxInput.d.ts +14 -0
  300. package/dist/inputs/ListBoxInput.js +66 -0
  301. package/dist/inputs/ListBoxInput.module.js +10 -0
  302. package/dist/inputs/ListBoxInput_module.css +44 -0
  303. package/dist/inputs/MarkdownInput.d.ts +11 -0
  304. package/dist/inputs/MarkdownInput.js +35 -0
  305. package/dist/inputs/MarkdownInput.module.js +5 -0
  306. package/dist/inputs/MarkdownInput_module.css +27 -0
  307. package/dist/inputs/NumberInput.d.ts +13 -0
  308. package/dist/inputs/NumberInput.js +44 -0
  309. package/dist/inputs/NumberInput.module.js +10 -0
  310. package/dist/inputs/NumberInput_module.css +59 -0
  311. package/dist/inputs/RadioInput.d.ts +9 -0
  312. package/dist/inputs/RadioInput.js +34 -0
  313. package/dist/inputs/RadioInput.module.js +6 -0
  314. package/dist/inputs/RadioInput_module.css +31 -0
  315. package/dist/inputs/SelectInput.d.ts +14 -0
  316. package/dist/inputs/SelectInput.js +130 -0
  317. package/dist/inputs/SelectInput.module.js +10 -0
  318. package/dist/inputs/SelectInput_module.css +63 -0
  319. package/dist/inputs/SingleSelectComboboxInput.d.ts +19 -0
  320. package/dist/inputs/SingleSelectComboboxInput.js +179 -0
  321. package/dist/inputs/SingleSelectComboboxInput.module.js +12 -0
  322. package/dist/inputs/SingleSelectComboboxInput_module.css +73 -0
  323. package/dist/inputs/StringInput.d.ts +15 -0
  324. package/dist/inputs/StringInput.js +51 -0
  325. package/dist/inputs/StringInput.module.js +10 -0
  326. package/dist/inputs/StringInput_module.css +59 -0
  327. package/dist/inputs/TextInput.d.ts +13 -0
  328. package/dist/inputs/TextInput.js +51 -0
  329. package/dist/inputs/TextInput.module.js +10 -0
  330. package/dist/inputs/TextInput_module.css +59 -0
  331. package/dist/inputs/TimeInput.d.ts +11 -0
  332. package/dist/inputs/TimeInput.js +26 -0
  333. package/dist/inputs/TimeInput.module.js +5 -0
  334. package/dist/inputs/TimeInput_module.css +33 -0
  335. package/dist/layouts/BaseLayout.d.ts +7 -0
  336. package/dist/layouts/BaseLayout.js +15 -0
  337. package/dist/layouts/FullLayout.d.ts +19 -0
  338. package/dist/layouts/FullLayout.js +152 -0
  339. package/dist/layouts/FullLayout.module.js +24 -0
  340. package/dist/layouts/FullLayout_module.css +257 -0
  341. package/dist/layouts/MinimalLayout.d.ts +12 -0
  342. package/dist/layouts/MinimalLayout.js +34 -0
  343. package/dist/layouts/MinimalLayout.module.js +6 -0
  344. package/dist/layouts/MinimalLayout_module.css +25 -0
  345. package/dist/presentation/ActionSet.d.ts +13 -0
  346. package/dist/presentation/ActionSet.js +13 -0
  347. package/dist/presentation/ActionSet.module.js +5 -0
  348. package/dist/presentation/ActionSet_module.css +7 -0
  349. package/dist/presentation/Avatar.d.ts +8 -0
  350. package/dist/presentation/Avatar.js +27 -0
  351. package/dist/presentation/Avatar.module.js +5 -0
  352. package/dist/presentation/Avatar_module.css +10 -0
  353. package/dist/presentation/Badge.d.ts +8 -0
  354. package/dist/presentation/Badge.js +20 -0
  355. package/dist/presentation/Badge.module.js +14 -0
  356. package/dist/presentation/BadgeSet.d.ts +15 -0
  357. package/dist/presentation/BadgeSet.js +18 -0
  358. package/dist/presentation/BadgeSet.module.js +7 -0
  359. package/dist/presentation/BadgeSet_module.css +15 -0
  360. package/dist/presentation/Badge_module.css +53 -0
  361. package/dist/presentation/Banner.d.ts +11 -0
  362. package/dist/presentation/Banner.js +33 -0
  363. package/dist/presentation/Banner.module.js +12 -0
  364. package/dist/presentation/Banner_module.css +54 -0
  365. package/dist/presentation/ButtonSet.d.ts +11 -0
  366. package/dist/presentation/ButtonSet.js +21 -0
  367. package/dist/presentation/ButtonsSet.module.js +6 -0
  368. package/dist/presentation/ButtonsSet_module.css +10 -0
  369. package/dist/presentation/Card.d.ts +17 -0
  370. package/dist/presentation/Card.js +38 -0
  371. package/dist/presentation/Card.module.js +9 -0
  372. package/dist/presentation/CardContent.d.ts +7 -0
  373. package/dist/presentation/CardContent.js +12 -0
  374. package/dist/presentation/CardContent.module.js +5 -0
  375. package/dist/presentation/CardContent_module.css +4 -0
  376. package/dist/presentation/Card_module.css +32 -0
  377. package/dist/presentation/Columns.d.ts +8 -0
  378. package/dist/presentation/Columns.js +16 -0
  379. package/dist/presentation/Columns.module.js +7 -0
  380. package/dist/presentation/Columns_module.css +19 -0
  381. package/dist/presentation/ConfirmationModal.d.ts +13 -0
  382. package/dist/presentation/ConfirmationModal.js +61 -0
  383. package/dist/presentation/DefinitionList.d.ts +10 -0
  384. package/dist/presentation/DefinitionList.js +22 -0
  385. package/dist/presentation/DefinitionList.module.js +6 -0
  386. package/dist/presentation/DefinitionList_module.css +10 -0
  387. package/dist/presentation/Divider.d.ts +5 -0
  388. package/dist/presentation/Divider.js +23 -0
  389. package/dist/presentation/Divider.module.js +6 -0
  390. package/dist/presentation/Divider_module.css +12 -0
  391. package/dist/presentation/File.d.ts +6 -0
  392. package/dist/presentation/File.js +57 -0
  393. package/dist/presentation/Footer.d.ts +12 -0
  394. package/dist/presentation/Footer.js +18 -0
  395. package/dist/presentation/Footer.module.js +5 -0
  396. package/dist/presentation/Footer_module.css +16 -0
  397. package/dist/presentation/HStack.d.ts +10 -0
  398. package/dist/presentation/HStack.js +16 -0
  399. package/dist/presentation/HStack.module.js +5 -0
  400. package/dist/presentation/HStack_module.css +10 -0
  401. package/dist/presentation/Header.d.ts +10 -0
  402. package/dist/presentation/Header.js +20 -0
  403. package/dist/presentation/Header.module.js +6 -0
  404. package/dist/presentation/Header_module.css +17 -0
  405. package/dist/presentation/Heading.d.ts +10 -0
  406. package/dist/presentation/Heading.js +10 -0
  407. package/dist/presentation/HeadlineStatisticCard.d.ts +9 -0
  408. package/dist/presentation/HeadlineStatisticCard.js +35 -0
  409. package/dist/presentation/HoverCard.d.ts +7 -0
  410. package/dist/presentation/HoverCard.js +90 -0
  411. package/dist/presentation/HoverCard.module.js +8 -0
  412. package/dist/presentation/HoverCard_module.css +18 -0
  413. package/dist/presentation/Icon.d.ts +20 -0
  414. package/dist/presentation/Icon.js +27 -0
  415. package/dist/presentation/IconSymbolSet.d.ts +6 -0
  416. package/dist/presentation/IconSymbolSet.js +16 -0
  417. package/dist/presentation/Info.d.ts +10 -0
  418. package/dist/presentation/Info.js +26 -0
  419. package/dist/presentation/Info.module.js +8 -0
  420. package/dist/presentation/Info_module.css +38 -0
  421. package/dist/presentation/Key.d.ts +7 -0
  422. package/dist/presentation/Key.js +13 -0
  423. package/dist/presentation/Key.module.js +5 -0
  424. package/dist/presentation/Key_module.css +15 -0
  425. package/dist/presentation/KeysSet.d.ts +9 -0
  426. package/dist/presentation/KeysSet.js +8 -0
  427. package/dist/presentation/KeysSet.module.js +5 -0
  428. package/dist/presentation/KeysSet_module.css +6 -0
  429. package/dist/presentation/Label.d.ts +10 -0
  430. package/dist/presentation/Label.js +10 -0
  431. package/dist/presentation/Layer.d.ts +9 -0
  432. package/dist/presentation/Layer.js +48 -0
  433. package/dist/presentation/ListCard.d.ts +13 -0
  434. package/dist/presentation/ListCard.js +50 -0
  435. package/dist/presentation/ListCard.module.js +10 -0
  436. package/dist/presentation/ListCard_module.css +78 -0
  437. package/dist/presentation/Markdown.d.ts +19 -0
  438. package/dist/presentation/Markdown.js +33 -0
  439. package/dist/presentation/Modal.d.ts +8 -0
  440. package/dist/presentation/Modal.js +26 -0
  441. package/dist/presentation/Modal.module.js +7 -0
  442. package/dist/presentation/Modal_module.css +17 -0
  443. package/dist/presentation/ObscuredText.d.ts +5 -0
  444. package/dist/presentation/ObscuredText.js +25 -0
  445. package/dist/presentation/ObscuredText.module.js +6 -0
  446. package/dist/presentation/ObscuredText_module.css +26 -0
  447. package/dist/presentation/Overlay.d.ts +7 -0
  448. package/dist/presentation/Overlay.js +29 -0
  449. package/dist/presentation/Overlay.module.js +6 -0
  450. package/dist/presentation/Overlay_module.css +20 -0
  451. package/dist/presentation/PersonAvatar.d.ts +18 -0
  452. package/dist/presentation/PersonAvatar.js +89 -0
  453. package/dist/presentation/PersonCover.d.ts +5 -0
  454. package/dist/presentation/PersonCover.js +21 -0
  455. package/dist/presentation/PersonCover.module.js +6 -0
  456. package/dist/presentation/PersonCover_module.css +22 -0
  457. package/dist/presentation/Placeholder.d.ts +6 -0
  458. package/dist/presentation/Placeholder.js +8 -0
  459. package/dist/presentation/Placeholder.module.js +5 -0
  460. package/dist/presentation/Placeholder_module.css +9 -0
  461. package/dist/presentation/PlainText.d.ts +11 -0
  462. package/dist/presentation/PlainText.js +40 -0
  463. package/dist/presentation/PlainText.module.js +5 -0
  464. package/dist/presentation/PlainText_module.css +6 -0
  465. package/dist/presentation/RichText.d.ts +16 -0
  466. package/dist/presentation/RichText.js +21 -0
  467. package/dist/presentation/RichText.module.js +7 -0
  468. package/dist/presentation/RichText_module.css +177 -0
  469. package/dist/presentation/Sheet.d.ts +23 -0
  470. package/dist/presentation/Sheet.js +22 -0
  471. package/dist/presentation/Sheet.module.js +8 -0
  472. package/dist/presentation/SheetContent.d.ts +6 -0
  473. package/dist/presentation/SheetContent.js +8 -0
  474. package/dist/presentation/SheetContent.module.js +5 -0
  475. package/dist/presentation/SheetContent_module.css +7 -0
  476. package/dist/presentation/SheetFooter.d.ts +7 -0
  477. package/dist/presentation/SheetFooter.js +12 -0
  478. package/dist/presentation/SheetFooter.module.js +5 -0
  479. package/dist/presentation/SheetFooter_module.css +7 -0
  480. package/dist/presentation/SheetHeader.d.ts +8 -0
  481. package/dist/presentation/SheetHeader.js +13 -0
  482. package/dist/presentation/SheetHeader.module.js +5 -0
  483. package/dist/presentation/SheetHeader_module.css +7 -0
  484. package/dist/presentation/Sheet_module.css +24 -0
  485. package/dist/presentation/SimpleList.d.ts +9 -0
  486. package/dist/presentation/SimpleList.js +14 -0
  487. package/dist/presentation/SimpleList.module.js +5 -0
  488. package/dist/presentation/SimpleList_module.css +9 -0
  489. package/dist/presentation/SimpleTable.d.ts +27 -0
  490. package/dist/presentation/SimpleTable.js +67 -0
  491. package/dist/presentation/SimpleTable.module.js +12 -0
  492. package/dist/presentation/SimpleTable_module.css +42 -0
  493. package/dist/presentation/Slot.d.ts +8 -0
  494. package/dist/presentation/Slot.js +26 -0
  495. package/dist/presentation/Slot.module.js +5 -0
  496. package/dist/presentation/Slot_module.css +7 -0
  497. package/dist/presentation/Subheading.d.ts +10 -0
  498. package/dist/presentation/Subheading.js +10 -0
  499. package/dist/presentation/Table.d.ts +71 -0
  500. package/dist/presentation/Table.js +458 -0
  501. package/dist/presentation/Table.module.js +22 -0
  502. package/dist/presentation/Table_module.css +142 -0
  503. package/dist/presentation/Tag.d.ts +9 -0
  504. package/dist/presentation/Tag.js +20 -0
  505. package/dist/presentation/Tag.module.js +14 -0
  506. package/dist/presentation/TagSet.d.ts +15 -0
  507. package/dist/presentation/TagSet.js +18 -0
  508. package/dist/presentation/TagSet.module.js +7 -0
  509. package/dist/presentation/TagSet_module.css +15 -0
  510. package/dist/presentation/Tag_module.css +53 -0
  511. package/dist/presentation/Timeline.d.ts +10 -0
  512. package/dist/presentation/Timeline.js +24 -0
  513. package/dist/presentation/Timeline.module.js +7 -0
  514. package/dist/presentation/Timeline_module.css +32 -0
  515. package/dist/presentation/Title.d.ts +10 -0
  516. package/dist/presentation/Title.js +10 -0
  517. package/dist/presentation/Tooltip.d.ts +7 -0
  518. package/dist/presentation/Tooltip.js +62 -0
  519. package/dist/presentation/Tooltip.module.js +6 -0
  520. package/dist/presentation/Tooltip_module.css +12 -0
  521. package/dist/presentation/VStack.d.ts +13 -0
  522. package/dist/presentation/VStack.js +15 -0
  523. package/dist/presentation/VStack.module.js +5 -0
  524. package/dist/presentation/VStack_module.css +8 -0
  525. package/dist/shared.css +351 -335
  526. package/dist/utils/NextContext.d.ts +10 -0
  527. package/dist/utils/NextContext.js +4 -0
  528. package/dist/utils/TrackingContext.d.ts +20 -0
  529. package/dist/utils/TrackingContext.js +4 -0
  530. package/dist/utils/customProperties.d.ts +5 -0
  531. package/dist/utils/customProperties.js +3 -0
  532. package/dist/utils/encodeCsv.d.ts +5 -0
  533. package/dist/utils/encodeCsv.js +30 -0
  534. package/dist/utils/search.d.ts +4 -0
  535. package/dist/utils/search.js +10 -0
  536. package/dist/utils/useNextContext.d.ts +35 -0
  537. package/dist/utils/useNextContext.js +9 -0
  538. package/dist/validators/isGreaterThan.d.ts +8 -0
  539. package/dist/validators/isGreaterThan.js +11 -0
  540. package/dist/validators/isInteger.d.ts +8 -0
  541. package/dist/validators/isInteger.js +11 -0
  542. package/dist/validators/isLessThan.d.ts +8 -0
  543. package/dist/validators/isLessThan.js +11 -0
  544. package/dist/validators/isNotBlank.d.ts +8 -0
  545. package/dist/validators/isNotBlank.js +11 -0
  546. package/dist/validators/isNotEmpty.d.ts +8 -0
  547. package/dist/validators/isNotEmpty.js +11 -0
  548. package/dist/validators/isNumber.d.ts +8 -0
  549. package/dist/validators/isNumber.js +12 -0
  550. package/dist/validators/isRequired.d.ts +8 -0
  551. package/dist/validators/isRequired.js +11 -0
  552. package/dist/validators/isTrue.d.ts +8 -0
  553. package/dist/validators/isTrue.js +11 -0
  554. package/dist/validators/isValidEmail.d.ts +8 -0
  555. package/dist/validators/isValidEmail.js +12 -0
  556. package/dist/visuals/ProportionVisual.d.ts +11 -0
  557. package/dist/visuals/ProportionVisual.js +41 -0
  558. package/dist/visuals/ProportionVisual.module.js +16 -0
  559. package/dist/visuals/ProportionVisualCompact.d.ts +9 -0
  560. package/dist/visuals/ProportionVisualCompact.js +27 -0
  561. package/dist/visuals/ProportionVisualCompact.module.js +15 -0
  562. package/dist/visuals/ProportionVisualCompact_module.css +48 -0
  563. package/dist/visuals/ProportionVisual_module.css +65 -0
  564. package/package.json +70 -28
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const CloseIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 12 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M10.7813 6.28126C11.075 5.98751 11.075 5.51251 10.7813 5.22188C10.4875 4.93126 10.0125 4.92813 9.72188 5.22188L6.00313 8.94063L2.28126 5.21876C1.98751 4.92501 1.51251 4.92501 1.22188 5.21876C0.931256 5.51251 0.928131 5.98751 1.22188 6.27813L4.94063 9.99688L1.21876 13.7188C0.925006 14.0125 0.925006 14.4875 1.21876 14.7781C1.51251 15.0688 1.98751 15.0719 2.27813 14.7781L5.99688 11.0594L9.71876 14.7813C10.0125 15.075 10.4875 15.075 10.7781 14.7813C11.0688 14.4875 11.0719 14.0125 10.7781 13.7219L7.05938 10.0031L10.7813 6.28126Z"
8
+ })
9
+ });
10
+ const CloseIcon_rslib_entry_ = CloseIcon;
11
+ export { CloseIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const CopyIcon: Icon;
3
+ export default CopyIcon;
@@ -0,0 +1,14 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const CopyIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 14 20",
5
+ fill: "currentColor",
6
+ children: [
7
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
8
+ d: "M12 12.5H6a.5.5 0 0 1-.5-.5V4c0-.275.225-.5.5-.5h4.378L12.5 5.622V12c0 .275-.225.5-.5.5M6 14h6c1.103 0 2-.897 2-2V5.622a1.5 1.5 0 0 0-.44-1.06l-2.12-2.121A1.5 1.5 0 0 0 10.382 2H6c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2M2 6C.897 6 0 6.897 0 8v8c0 1.103.897 2 2 2h6c1.103 0 2-.897 2-2v-1H8.5v1c0 .275-.225.5-.5.5H2a.5.5 0 0 1-.5-.5V8c0-.275.225-.5.5-.5h1V6z"
9
+ }),
10
+ " "
11
+ ]
12
+ });
13
+ const CopyIcon_rslib_entry_ = CopyIcon;
14
+ export { CopyIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const DashIcon: Icon;
3
+ export default DashIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const DashIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 17 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M1 10C1 9.58437 1.33437 9.25 1.75 9.25H16.25C16.6656 9.25 17 9.58437 17 10C17 10.4156 16.6656 10.75 16.25 10.75H1.75C1.33437 10.75 1 10.4156 1 10Z"
8
+ })
9
+ });
10
+ const DashIcon_rslib_entry_ = DashIcon;
11
+ export { DashIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const DeleteIcon: Icon;
3
+ export default DeleteIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const DeleteIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 14 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M5.32812 3.6125L4.73438 4.5H9.26562L8.67188 3.6125C8.625 3.54375 8.54687 3.5 8.4625 3.5H5.53438C5.45 3.5 5.37187 3.54062 5.325 3.6125H5.32812ZM9.92188 2.78125L11.0688 4.5H11.5H13H13.25C13.6656 4.5 14 4.83437 14 5.25C14 5.66563 13.6656 6 13.25 6H13V15.5C13 16.8813 11.8813 18 10.5 18H3.5C2.11875 18 1 16.8813 1 15.5V6H0.75C0.334375 6 0 5.66563 0 5.25C0 4.83437 0.334375 4.5 0.75 4.5H1H2.5H2.93125L4.07812 2.77812C4.40312 2.29375 4.95 2 5.53438 2H8.4625C9.04687 2 9.59375 2.29375 9.91875 2.77812L9.92188 2.78125ZM2.5 6V15.5C2.5 16.0531 2.94687 16.5 3.5 16.5H10.5C11.0531 16.5 11.5 16.0531 11.5 15.5V6H2.5ZM5 8V14.5C5 14.775 4.775 15 4.5 15C4.225 15 4 14.775 4 14.5V8C4 7.725 4.225 7.5 4.5 7.5C4.775 7.5 5 7.725 5 8ZM7.5 8V14.5C7.5 14.775 7.275 15 7 15C6.725 15 6.5 14.775 6.5 14.5V8C6.5 7.725 6.725 7.5 7 7.5C7.275 7.5 7.5 7.725 7.5 8ZM10 8V14.5C10 14.775 9.775 15 9.5 15C9.225 15 9 14.775 9 14.5V8C9 7.725 9.225 7.5 9.5 7.5C9.775 7.5 10 7.725 10 8Z"
8
+ })
9
+ });
10
+ const DeleteIcon_rslib_entry_ = DeleteIcon;
11
+ export { DeleteIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const EditIcon: Icon;
3
+ export default EditIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const EditIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 16 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M1.13753 13.2781L0.418778 15.7188L0.0312776 17.0375C-0.0468474 17.3031 0.0250276 17.5875 0.218778 17.7813C0.412528 17.975 0.696903 18.0469 0.959403 17.9719L2.28128 17.5813L4.7219 16.8625C5.0469 16.7688 5.35003 16.6125 5.61565 16.4094L5.62503 16.4156L5.64065 16.3906C5.6844 16.3563 5.72503 16.3219 5.76565 16.2875C5.8094 16.25 5.85003 16.2094 5.89065 16.1688L15.3969 6.66563C16.0813 5.98125 16.1657 4.92813 15.6532 4.15C15.5813 4.04063 15.4938 3.93438 15.3969 3.8375L14.1657 2.60313C13.3844 1.82188 12.1188 1.82188 11.3375 2.60313L1.83128 12.1094C1.75315 12.1875 1.67815 12.2719 1.6094 12.3594L1.5844 12.375L1.59065 12.3844C1.38753 12.65 1.2344 12.9531 1.13753 13.2781ZM11.9688 7.96875L6.16878 13.7688L4.61878 13.3813L4.23128 11.8313L10.0313 6.03125L11.9688 7.96875ZM3.03128 13.2156L3.2719 14.1844C3.33753 14.4531 3.55003 14.6625 3.81878 14.7313L4.78753 14.9719L4.55628 15.3219C4.47503 15.3656 4.39065 15.4031 4.30315 15.4281L3.5719 15.6438L1.85628 16.1438L2.3594 14.4313L2.57503 13.7C2.60003 13.6125 2.63753 13.525 2.68128 13.4469L3.03128 13.2156ZM9.85315 8.83438C10.0469 8.64063 10.0469 8.32188 9.85315 8.12813C9.6594 7.93438 9.34065 7.93438 9.1469 8.12813L6.1469 11.1281C5.95315 11.3219 5.95315 11.6406 6.1469 11.8344C6.34065 12.0281 6.6594 12.0281 6.85315 11.8344L9.85315 8.83438Z"
8
+ })
9
+ });
10
+ const EditIcon_rslib_entry_ = EditIcon;
11
+ export { EditIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const EmailIcon: Icon;
3
+ export default EmailIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const EmailIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 16 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M12.25 3.5H3.75C3.6125 3.5 3.5 3.6125 3.5 3.75V9.0375L2.1625 7.94063C2.10937 7.89688 2.05625 7.85938 2 7.82188V3.75C2 2.78438 2.78438 2 3.75 2H12.25C13.2156 2 14 2.78438 14 3.75V7.81875C13.9438 7.85625 13.8906 7.89688 13.8375 7.9375L12.5 9.0375V3.75C12.5 3.6125 12.3875 3.5 12.25 3.5ZM5 5.75C5 5.33437 5.33437 5 5.75 5H10.25C10.6656 5 11 5.33437 11 5.75C11 6.16563 10.6656 6.5 10.25 6.5H5.75C5.33437 6.5 5 6.16563 5 5.75ZM5 8.25C5 7.83437 5.33437 7.5 5.75 7.5H10.25C10.6656 7.5 11 7.83437 11 8.25C11 8.66563 10.6656 9 10.25 9H5.75C5.33437 9 5 8.66563 5 8.25ZM1.5 10.6313V16.25C1.5 16.3875 1.6125 16.5 1.75 16.5H14.25C14.3875 16.5 14.5 16.3875 14.5 16.25V10.6313L10.0625 14.275C8.8625 15.2594 7.13437 15.2594 5.9375 14.275L1.5 10.6313ZM0 9.43437C0 8.91875 0.41875 8.5 0.934375 8.5C1.15 8.5 1.35938 8.575 1.52813 8.7125L6.89062 13.1187C7.5375 13.65 8.46563 13.65 9.1125 13.1187L14.475 8.7125C14.6406 8.575 14.8531 8.5 15.0688 8.5C15.5844 8.5 16.0031 8.91875 16.0031 9.43437L16 16.25C16 17.2156 15.2156 18 14.25 18H1.75C0.784375 18 0 17.2156 0 16.25V9.43437Z"
8
+ })
9
+ });
10
+ const EmailIcon_rslib_entry_ = EmailIcon;
11
+ export { EmailIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const EmergencyContactIcon: Icon;
3
+ export default EmergencyContactIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const EmergencyContactIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 20 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M2 3.5C1.725 3.5 1.5 3.725 1.5 4V13C1.5 13.275 1.725 13.5 2 13.5H2.4C2.91875 12.6031 3.8875 12 5 12C6.1125 12 7.08125 12.6031 7.6 13.5H10H11C11.275 13.5 11.5 13.275 11.5 13V4C11.5 3.725 11.275 3.5 11 3.5H2ZM15 18C13.3438 18 12 16.6562 12 15H11.75H11H10H8C8 16.6562 6.65625 18 5 18C3.34375 18 2 16.6562 2 15C0.896875 15 0 14.1031 0 13V4C0 2.89688 0.896875 2 2 2H11C12.1031 2 13 2.89688 13 4V5H14.3344C14.8 5 15.2437 5.18438 15.5719 5.5125L18.4875 8.42812C18.8156 8.75625 19 9.2 19 9.66563V13.5H19.25C19.6656 13.5 20 13.8344 20 14.25C20 14.6656 19.6656 15 19.25 15H18C18 16.6562 16.6562 18 15 18ZM17.4375 9.5C17.4344 9.49687 17.4312 9.49063 17.425 9.4875L14.5094 6.57188C14.4625 6.525 14.4 6.5 14.3313 6.5H13V9.5H17.4375ZM5 16.5C5.39782 16.5 5.77936 16.342 6.06066 16.0607C6.34196 15.7794 6.5 15.3978 6.5 15C6.5 14.6022 6.34196 14.2206 6.06066 13.9393C5.77936 13.658 5.39782 13.5 5 13.5C4.60218 13.5 4.22064 13.658 3.93934 13.9393C3.65804 14.2206 3.5 14.6022 3.5 15C3.5 15.3978 3.65804 15.7794 3.93934 16.0607C4.22064 16.342 4.60218 16.5 5 16.5ZM16.5 15C16.5 14.6022 16.342 14.2206 16.0607 13.9393C15.7794 13.658 15.3978 13.5 15 13.5C14.6022 13.5 14.2206 13.658 13.9393 13.9393C13.658 14.2206 13.5 14.6022 13.5 15C13.5 15.3978 13.658 15.7794 13.9393 16.0607C14.2206 16.342 14.6022 16.5 15 16.5C15.3978 16.5 15.7794 16.342 16.0607 16.0607C16.342 15.7794 16.5 15.3978 16.5 15ZM5.5 5C5.5 4.725 5.725 4.5 6 4.5H7C7.275 4.5 7.5 4.725 7.5 5V6.5H9C9.275 6.5 9.5 6.725 9.5 7V8C9.5 8.275 9.275 8.5 9 8.5H7.5V10C7.5 10.275 7.275 10.5 7 10.5H6C5.725 10.5 5.5 10.275 5.5 10V8.5H4C3.725 8.5 3.5 8.275 3.5 8V7C3.5 6.725 3.725 6.5 4 6.5H5.5V5Z"
8
+ })
9
+ });
10
+ const EmergencyContactIcon_rslib_entry_ = EmergencyContactIcon;
11
+ export { EmergencyContactIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const ExternalIcon: Icon;
3
+ export default ExternalIcon;
@@ -0,0 +1,14 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const ExternalIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 16 20",
5
+ fill: "currentColor",
6
+ children: [
7
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
8
+ d: "M9.5 2.75c0 .416.334.75.75.75h3.19l-6.97 6.969a.75.75 0 0 0 1.06 1.06l6.968-6.97.003 3.191c0 .416.334.75.75.75s.75-.334.75-.75v-5a.75.75 0 0 0-.75-.75h-5a.75.75 0 0 0-.75.75M2.25 3A2.25 2.25 0 0 0 0 5.25v10.5A2.25 2.25 0 0 0 2.25 18h10.5A2.25 2.25 0 0 0 15 15.75v-4a.75.75 0 0 0-.75-.75.75.75 0 0 0-.75.75v4c0 .416-.334.75-.75.75H2.25a.75.75 0 0 1-.75-.75V5.25c0-.416.334-.75.75-.75h4c.416 0 .75-.334.75-.75A.75.75 0 0 0 6.25 3z"
9
+ }),
10
+ " "
11
+ ]
12
+ });
13
+ const ExternalIcon_rslib_entry_ = ExternalIcon;
14
+ export { ExternalIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const GripLinesIcon: Icon;
3
+ export default GripLinesIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const GripLinesIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 14 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M14 8C14 7.58437 13.6656 7.25 13.25 7.25H0.75C0.334375 7.25 0 7.58437 0 8C0 8.41563 0.334375 8.75 0.75 8.75H13.25C13.6656 8.75 14 8.41563 14 8ZM14 12C14 11.5844 13.6656 11.25 13.25 11.25H0.75C0.334375 11.25 0 11.5844 0 12C0 12.4156 0.334375 12.75 0.75 12.75H13.25C13.6656 12.75 14 12.4156 14 12Z"
8
+ })
9
+ });
10
+ const GripLinesIcon_rslib_entry_ = GripLinesIcon;
11
+ export { GripLinesIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const HelpIcon: Icon;
3
+ export default HelpIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const HelpIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 16 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M14.5 10C14.5 8.27609 13.8152 6.62279 12.5962 5.40381C11.3772 4.18482 9.72391 3.5 8 3.5C6.27609 3.5 4.62279 4.18482 3.40381 5.40381C2.18482 6.62279 1.5 8.27609 1.5 10C1.5 11.7239 2.18482 13.3772 3.40381 14.5962C4.62279 15.8152 6.27609 16.5 8 16.5C9.72391 16.5 11.3772 15.8152 12.5962 14.5962C13.8152 13.3772 14.5 11.7239 14.5 10ZM0 10C0 7.87827 0.842855 5.84344 2.34315 4.34315C3.84344 2.84285 5.87827 2 8 2C10.1217 2 12.1566 2.84285 13.6569 4.34315C15.1571 5.84344 16 7.87827 16 10C16 12.1217 15.1571 14.1566 13.6569 15.6569C12.1566 17.1571 10.1217 18 8 18C5.87827 18 3.84344 17.1571 2.34315 15.6569C0.842855 14.1566 0 12.1217 0 10ZM5.30625 7.16563C5.55313 6.46875 6.21563 6 6.95625 6H8.77812C9.86875 6 10.75 6.88438 10.75 7.97188C10.75 8.67813 10.3719 9.33125 9.75937 9.68437L8.75 10.2625C8.74375 10.6687 8.40938 11 8 11C7.58437 11 7.25 10.6656 7.25 10.25V9.82812C7.25 9.55937 7.39375 9.3125 7.62813 9.17812L9.0125 8.38438C9.15937 8.3 9.25 8.14375 9.25 7.975C9.25 7.7125 9.0375 7.50313 8.77812 7.50313H6.95625C6.85 7.50313 6.75625 7.56875 6.72188 7.66875L6.70937 7.70625C6.57187 8.09688 6.14063 8.3 5.75313 8.1625C5.36563 8.025 5.15937 7.59375 5.29688 7.20625L5.30937 7.16875L5.30625 7.16563ZM7 13C7 12.7348 7.10536 12.4804 7.29289 12.2929C7.48043 12.1054 7.73478 12 8 12C8.26522 12 8.51957 12.1054 8.70711 12.2929C8.89464 12.4804 9 12.7348 9 13C9 13.2652 8.89464 13.5196 8.70711 13.7071C8.51957 13.8946 8.26522 14 8 14C7.73478 14 7.48043 13.8946 7.29289 13.7071C7.10536 13.5196 7 13.2652 7 13Z"
8
+ })
9
+ });
10
+ const HelpIcon_rslib_entry_ = HelpIcon;
11
+ export { HelpIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const HiddenIcon: Icon;
3
+ export default HiddenIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const HiddenIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 20 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M1.21255 2.15937C0.887554 1.90312 0.415679 1.96249 0.159429 2.28749C-0.0968214 2.61249 -0.0374464 3.08437 0.287554 3.34062L18.7876 17.8406C19.1126 18.0969 19.5844 18.0375 19.8407 17.7125C20.0969 17.3875 20.0376 16.9156 19.7126 16.6594L16.4251 14.0844C17.6626 12.8156 18.5001 11.3937 18.9219 10.3844C19.0251 10.1375 19.0251 9.86249 18.9219 9.61562C18.4563 8.49999 17.4782 6.87499 16.0157 5.51874C14.5469 4.14999 12.5251 2.99999 10.0001 2.99999C7.8688 2.99999 6.0938 3.82187 4.70943 4.89999L1.21255 2.15937ZM5.9313 5.85624C7.06255 5.05312 8.42193 4.49999 10.0001 4.49999C12.0376 4.49999 13.7126 5.42499 14.9969 6.61562C16.2001 7.73437 17.0313 9.06249 17.4563 9.99999C17.0626 10.875 16.3126 12.0875 15.2407 13.1531L13.5594 11.8344C13.8438 11.2844 14.0032 10.6625 14.0032 9.99999C14.0032 7.79062 12.2126 5.99999 10.0032 5.99999C8.99693 5.99999 8.07505 6.37187 7.37193 6.98437L5.9313 5.85624ZM12.3407 10.8812L9.7938 8.88437C9.92505 8.61874 10.0001 8.31562 10.0001 7.99999C10.0001 7.82812 9.97818 7.65937 9.93755 7.49999C9.95943 7.49999 9.97818 7.49999 10.0001 7.49999C11.3813 7.49999 12.5001 8.61874 12.5001 9.99999C12.5001 10.3094 12.4438 10.6062 12.3407 10.8812ZM12.6344 14.9531C11.8376 15.2937 10.9594 15.5 10.0001 15.5C7.96255 15.5 6.28755 14.575 5.00318 13.3844C3.80005 12.2656 2.9688 10.9375 2.5438 9.99999C2.80318 9.42499 3.21568 8.70312 3.77505 7.97499L2.59693 7.04687C1.88443 7.97499 1.37505 8.89999 1.07818 9.61562C0.975054 9.86249 0.975054 10.1375 1.07818 10.3844C1.5438 11.5 2.52193 13.125 3.98443 14.4812C5.45318 15.85 7.47505 17 10.0001 17C11.4938 17 12.8094 16.5969 13.9438 15.9844L12.6344 14.9531ZM6.00005 9.99999C6.00005 12.2094 7.79068 14 10.0001 14C10.4157 14 10.8157 13.9375 11.1938 13.8187L9.43755 12.4375C8.70318 12.2687 8.09068 11.775 7.75943 11.1156L6.0063 9.73437C6.00005 9.82187 5.99693 9.90937 5.99693 9.99999H6.00005Z"
8
+ })
9
+ });
10
+ const HiddenIcon_rslib_entry_ = HiddenIcon;
11
+ export { HiddenIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const InboxIcon: Icon;
3
+ export default InboxIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const InboxIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 16 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M1.5 15C1.5 15.275 1.725 15.5 2 15.5H14C14.275 15.5 14.5 15.275 14.5 15V12.5H11.9625L11.3094 13.8094C11.0969 14.2344 10.6656 14.5 10.1906 14.5H5.80937C5.33437 14.5 4.90313 14.2312 4.69063 13.8094L4.0375 12.5H1.5V15ZM12.675 4.87812C12.6188 4.65625 12.4188 4.5 12.1875 4.5H3.8125C3.58437 4.5 3.38437 4.65625 3.32812 4.87812L1.79688 11H4.19063C4.66563 11 5.09687 11.2688 5.30937 11.6906L5.9625 13H10.0344L10.6875 11.6906C10.9 11.2656 11.3312 11 11.8062 11H14.2L12.6687 4.87812H12.675ZM0 15V12.2469C0 12.0844 0.01875 11.9219 0.059375 11.7625L1.87188 4.51562C2.09375 3.625 2.89375 3 3.8125 3H12.1875C13.1062 3 13.9063 3.625 14.1281 4.51562L15.9406 11.7625C15.9813 11.9219 16 12.0844 16 12.2469V15C16 16.1031 15.1031 17 14 17H2C0.896875 17 0 16.1031 0 15ZM5.75 6H10.25C10.6656 6 11 6.33437 11 6.75C11 7.16563 10.6656 7.5 10.25 7.5H5.75C5.33437 7.5 5 7.16563 5 6.75C5 6.33437 5.33437 6 5.75 6ZM4.75 8.5H11.25C11.6656 8.5 12 8.83437 12 9.25C12 9.66563 11.6656 10 11.25 10H4.75C4.33437 10 4 9.66563 4 9.25C4 8.83437 4.33437 8.5 4.75 8.5Z"
8
+ })
9
+ });
10
+ const InboxIcon_rslib_entry_ = InboxIcon;
11
+ export { InboxIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const InsightsIcon: Icon;
3
+ export default InsightsIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const InsightsIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 16 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M8.5 4.5V15.5H7.5V4.5H8.5ZM7.5 3C6.67188 3 6 3.67188 6 4.5V15.5C6 16.3281 6.67188 17 7.5 17H8.5C9.32812 17 10 16.3281 10 15.5V4.5C10 3.67188 9.32812 3 8.5 3H7.5ZM3.5 10.5V15.5H2.5V10.5H3.5ZM2.5 9C1.67188 9 1 9.67188 1 10.5V15.5C1 16.3281 1.67188 17 2.5 17H3.5C4.32812 17 5 16.3281 5 15.5V10.5C5 9.67188 4.32812 9 3.5 9H2.5ZM12.5 6.5H13.5V15.5H12.5V6.5ZM11 6.5V15.5C11 16.3281 11.6719 17 12.5 17H13.5C14.3281 17 15 16.3281 15 15.5V6.5C15 5.67188 14.3281 5 13.5 5H12.5C11.6719 5 11 5.67188 11 6.5Z"
8
+ })
9
+ });
10
+ const InsightsIcon_rslib_entry_ = InsightsIcon;
11
+ export { InsightsIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const JobIcon: Icon;
3
+ export default JobIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const JobIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 16 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M5.5 3.75V5H10.5V3.75C10.5 3.6125 10.3875 3.5 10.25 3.5H5.75C5.6125 3.5 5.5 3.6125 5.5 3.75ZM4 5V3.75C4 2.78438 4.78438 2 5.75 2H10.25C11.2156 2 12 2.78438 12 3.75V5H14C15.1031 5 16 5.89688 16 7V10.75V15C16 16.1031 15.1031 17 14 17H2C0.896875 17 0 16.1031 0 15V10.75V7C0 5.89688 0.896875 5 2 5H4ZM1.5 11.5V15C1.5 15.275 1.725 15.5 2 15.5H14C14.275 15.5 14.5 15.275 14.5 15V11.5H10V12C10 12.5531 9.55313 13 9 13H7C6.44687 13 6 12.5531 6 12V11.5H1.5ZM6 10H10H14.5V7C14.5 6.725 14.275 6.5 14 6.5H11.25H4.75H2C1.725 6.5 1.5 6.725 1.5 7V10H6Z"
8
+ })
9
+ });
10
+ const JobIcon_rslib_entry_ = JobIcon;
11
+ export { JobIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const LeaveIcon: Icon;
3
+ export default LeaveIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const LeaveIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 16 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M14.5 10C14.5 11.7239 13.8152 13.3772 12.5962 14.5962C11.3772 15.8152 9.72391 16.5 8 16.5C6.27609 16.5 4.62279 15.8152 3.40381 14.5962C2.18482 13.3772 1.5 11.7239 1.5 10C1.5 8.27609 2.18482 6.62279 3.40381 5.40381C4.62279 4.18482 6.27609 3.5 8 3.5C9.72391 3.5 11.3772 4.18482 12.5962 5.40381C13.8152 6.62279 14.5 8.27609 14.5 10ZM0 10C0 12.1217 0.842855 14.1566 2.34315 15.6569C3.84344 17.1571 5.87827 18 8 18C10.1217 18 12.1566 17.1571 13.6569 15.6569C15.1571 14.1566 16 12.1217 16 10C16 7.87827 15.1571 5.84344 13.6569 4.34315C12.1566 2.84285 10.1217 2 8 2C5.87827 2 3.84344 2.84285 2.34315 4.34315C0.842855 5.84344 0 7.87827 0 10ZM7.25 5.75V10C7.25 10.25 7.375 10.4844 7.58437 10.625L10.5844 12.625C10.9281 12.8563 11.3937 12.7625 11.625 12.4156C11.8563 12.0687 11.7625 11.6063 11.4156 11.375L8.75 9.6V5.75C8.75 5.33437 8.41563 5 8 5C7.58437 5 7.25 5.33437 7.25 5.75Z"
8
+ })
9
+ });
10
+ const LeaveIcon_rslib_entry_ = LeaveIcon;
11
+ export { LeaveIcon_rslib_entry_ as default };
@@ -0,0 +1,4 @@
1
+ import type { Icon } from "./_types";
2
+ declare const LoadingIcon: Icon;
3
+ export declare const animation: () => import("react/jsx-runtime").JSX.Element;
4
+ export default LoadingIcon;
@@ -0,0 +1,22 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const LoadingIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ width: 20,
5
+ height: 20,
6
+ viewBox: "0 0 20 20",
7
+ fill: "currentColor",
8
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
9
+ d: "M17.8516 14.5313C18.3008 14.7891 18.8789 14.6367 19.0937 14.168C19.6758 12.8985 20 11.4883 20 10C20 4.79299 16.0195 0.515648 10.9375 0.0429922C10.4219 -0.00388284 10 0.417992 10 0.937523C10 1.45705 10.4219 1.87112 10.9375 1.92971C14.9805 2.39065 18.125 5.82815 18.125 10C18.125 11.1446 17.8867 12.2383 17.4609 13.2266C17.2539 13.7031 17.4023 14.2735 17.8516 14.5352V14.5313Z"
10
+ })
11
+ });
12
+ const animation = ()=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("animateTransform", {
13
+ attributeName: "transform",
14
+ begin: "0.1s",
15
+ dur: "0.8s",
16
+ from: "0 10 10",
17
+ repeatCount: "indefinite",
18
+ to: "360 10 10",
19
+ type: "rotate"
20
+ });
21
+ const LoadingIcon_rslib_entry_ = LoadingIcon;
22
+ export { animation, LoadingIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const LogoutIcon: Icon;
3
+ export default LogoutIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const LogoutIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 16 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M11 6.56875L14.4375 10L11 13.4312V11.75C11 11.3344 10.6656 11 10.25 11H6.5V9H10.25C10.6656 9 11 8.66563 11 8.25V6.56875ZM16 10C16 9.64062 15.8562 9.29687 15.6031 9.04375L11.975 5.425C11.7031 5.15312 11.3344 5 10.95 5C10.15 5 9.5 5.65 9.5 6.45V7.5H6.5C5.67188 7.5 5 8.17188 5 9V11C5 11.8281 5.67188 12.5 6.5 12.5H9.5V13.55C9.5 14.35 10.15 15 10.95 15C11.3344 15 11.7031 14.8469 11.975 14.575L15.6031 10.9563C15.8562 10.7031 16 10.3594 16 10ZM5.25 4.5C5.66563 4.5 6 4.16563 6 3.75C6 3.33437 5.66563 3 5.25 3H2.75C1.23125 3 0 4.23125 0 5.75V14.25C0 15.7687 1.23125 17 2.75 17H5.25C5.66563 17 6 16.6656 6 16.25C6 15.8344 5.66563 15.5 5.25 15.5H2.75C2.05937 15.5 1.5 14.9406 1.5 14.25V5.75C1.5 5.05937 2.05937 4.5 2.75 4.5H5.25Z"
8
+ })
9
+ });
10
+ const LogoutIcon_rslib_entry_ = LogoutIcon;
11
+ export { LogoutIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const MicrosoftIcon: Icon;
3
+ export default MicrosoftIcon;
@@ -0,0 +1,26 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const MicrosoftIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 16 20",
5
+ fill: "currentColor",
6
+ children: [
7
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
8
+ fill: "#F35325",
9
+ d: "M0 2h7.5v7.5H0z"
10
+ }),
11
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
12
+ fill: "#81BC06",
13
+ d: "M8.5 2H16v7.5H8.5z"
14
+ }),
15
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
16
+ fill: "#FFBA08",
17
+ d: "M8.5 10.5H16V18H8.5z"
18
+ }),
19
+ /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
20
+ fill: "#05A6F0",
21
+ d: "M0 10.5h7.5V18H0z"
22
+ })
23
+ ]
24
+ });
25
+ const MicrosoftIcon_rslib_entry_ = MicrosoftIcon;
26
+ export { MicrosoftIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const MinusIcon: Icon;
3
+ export default MinusIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const MinusIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 14 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M13.5 10C13.5 10.4156 13.1656 10.75 12.75 10.75H1.25C0.834375 10.75 0.5 10.4156 0.5 10C0.5 9.58437 0.834375 9.25 1.25 9.25H12.75C13.1656 9.25 13.5 9.58437 13.5 10Z"
8
+ })
9
+ });
10
+ const MinusIcon_rslib_entry_ = MinusIcon;
11
+ export { MinusIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const OverflowIcon: Icon;
3
+ export default OverflowIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const OverflowIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 4 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M2 13.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m0-5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M3.5 5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0"
8
+ })
9
+ });
10
+ const OverflowIcon_rslib_entry_ = OverflowIcon;
11
+ export { OverflowIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const PaperworkIcon: Icon;
3
+ export default PaperworkIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const PaperworkIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 12 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M2 16.5C1.725 16.5 1.5 16.275 1.5 16V4C1.5 3.725 1.725 3.5 2 3.5H7V6C7 6.55313 7.44687 7 8 7H10.5V16C10.5 16.275 10.275 16.5 10 16.5H2ZM2 2C0.896875 2 0 2.89688 0 4V16C0 17.1031 0.896875 18 2 18H10C11.1031 18 12 17.1031 12 16V6.82812C12 6.29688 11.7906 5.7875 11.4156 5.4125L8.58438 2.58438C8.20938 2.20938 7.70312 2 7.17188 2H2ZM3.75 10C3.33437 10 3 10.3344 3 10.75C3 11.1656 3.33437 11.5 3.75 11.5H8.25C8.66563 11.5 9 11.1656 9 10.75C9 10.3344 8.66563 10 8.25 10H3.75ZM3.75 13C3.33437 13 3 13.3344 3 13.75C3 14.1656 3.33437 14.5 3.75 14.5H8.25C8.66563 14.5 9 14.1656 9 13.75C9 13.3344 8.66563 13 8.25 13H3.75Z"
8
+ })
9
+ });
10
+ const PaperworkIcon_rslib_entry_ = PaperworkIcon;
11
+ export { PaperworkIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const PeopleIcon: Icon;
3
+ export default PeopleIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const PeopleIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 20 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M4 6C4.39782 6 4.77936 5.84196 5.06066 5.56066C5.34196 5.27936 5.5 4.89782 5.5 4.5C5.5 4.10218 5.34196 3.72064 5.06066 3.43934C4.77936 3.15804 4.39782 3 4 3C3.60218 3 3.22064 3.15804 2.93934 3.43934C2.65804 3.72064 2.5 4.10218 2.5 4.5C2.5 4.89782 2.65804 5.27936 2.93934 5.56066C3.22064 5.84196 3.60218 6 4 6ZM3.5 7C1.56562 7 0 8.56562 0 10.5C0 11.8969 0.81875 13.1 2 13.6625V15C2 15.5531 2.44687 16 3 16H5C5.55313 16 6 15.5531 6 15V14C6 13.5844 5.66563 13.25 5.25 13.25C4.83437 13.25 4.5 13.5844 4.5 14V14.5H3.5V14V12.5V8.5H4.5C4.89375 8.5 5.25937 8.6125 5.56875 8.80937C5.81562 8.36562 6.13437 7.96875 6.5125 7.63438C5.94375 7.23438 5.25 7 4.5 7H3.5ZM2 9.17812V11.825C1.6875 11.4719 1.5 11.0063 1.5 10.5C1.5 9.99375 1.6875 9.52812 2 9.17812ZM15.5 8.5H16.5V12.5V14V14.5H15.5V14C15.5 13.5844 15.1656 13.25 14.75 13.25C14.3344 13.25 14 13.5844 14 14V15C14 15.5531 14.4469 16 15 16H17C17.5531 16 18 15.5531 18 15V13.6625C19.1812 13.1 20 11.8969 20 10.5C20 8.56562 18.4344 7 16.5 7H15.5C14.75 7 14.0563 7.23438 13.4875 7.63438C13.8625 7.96875 14.1844 8.36562 14.4312 8.80937C14.7406 8.6125 15.1062 8.5 15.5 8.5ZM18.5 10.5C18.5 11.0063 18.3125 11.4719 18 11.8219V9.175C18.3125 9.52813 18.5 9.99062 18.5 10.4969V10.5ZM17.5 4.5C17.5 4.10218 17.342 3.72064 17.0607 3.43934C16.7794 3.15804 16.3978 3 16 3C15.6022 3 15.2206 3.15804 14.9393 3.43934C14.658 3.72064 14.5 4.10218 14.5 4.5C14.5 4.89782 14.658 5.27936 14.9393 5.56066C15.2206 5.84196 15.6022 6 16 6C16.3978 6 16.7794 5.84196 17.0607 5.56066C17.342 5.27936 17.5 4.89782 17.5 4.5ZM10 6.5C10.2298 6.5 10.4574 6.45474 10.6697 6.36679C10.882 6.27884 11.0749 6.14994 11.2374 5.98744C11.3999 5.82493 11.5288 5.63202 11.6168 5.4197C11.7047 5.20738 11.75 4.97981 11.75 4.75C11.75 4.52019 11.7047 4.29262 11.6168 4.0803C11.5288 3.86798 11.3999 3.67507 11.2374 3.51256C11.0749 3.35006 10.882 3.22116 10.6697 3.13321C10.4574 3.04527 10.2298 3 10 3C9.77019 3 9.54262 3.04527 9.3303 3.13321C9.11798 3.22116 8.92507 3.35006 8.76256 3.51256C8.60006 3.67507 8.47116 3.86798 8.38321 4.0803C8.29527 4.29262 8.25 4.52019 8.25 4.75C8.25 4.97981 8.29527 5.20738 8.38321 5.4197C8.47116 5.63202 8.60006 5.82493 8.76256 5.98744C8.92507 6.14994 9.11798 6.27884 9.3303 6.36679C9.54262 6.45474 9.77019 6.5 10 6.5ZM9.5 7.5C7.56562 7.5 6 9.06562 6 11C6 12.3969 6.81875 13.6 8 14.1625V16C8 16.5531 8.44687 17 9 17H11C11.5531 17 12 16.5531 12 16V14.1625C13.1812 13.6 14 12.3969 14 11C14 9.06562 12.4344 7.5 10.5 7.5H9.5ZM9.5 14.5V13V9H10.5V13V14.5V15.5H9.5V14.5ZM8 12.3219C7.6875 11.9687 7.5 11.5063 7.5 11C7.5 10.4937 7.6875 10.0281 8 9.67812V12.325V12.3219ZM12 12.3219V9.675C12.3125 10.0281 12.5 10.4906 12.5 10.9969C12.5 11.5031 12.3125 11.9688 12 12.3188V12.3219Z"
8
+ })
9
+ });
10
+ const PeopleIcon_rslib_entry_ = PeopleIcon;
11
+ export { PeopleIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const PhoneIcon: Icon;
3
+ export default PhoneIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const PhoneIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 16 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M11.7437 10.6C11.2312 10.3812 10.6375 10.525 10.2844 10.9562L9.24687 12.225C7.80937 11.3906 6.60938 10.1906 5.775 8.75312L7.04063 7.71875C7.47188 7.36562 7.61875 6.77187 7.39687 6.25937L5.89687 2.75937C5.6625 2.20937 5.07188 1.90312 4.4875 2.02812L0.9875 2.77812C0.4125 2.9 0 3.40937 0 4C0 11.225 5.475 17.175 12.5031 17.9219C12.8094 17.9531 13.1156 17.9781 13.4281 17.9906H13.4312C13.6219 17.9969 13.8094 18.0031 14 18.0031C14.5906 18.0031 15.1 17.5906 15.2219 17.0156L15.9719 13.5156C16.0969 12.9312 15.7906 12.3406 15.2406 12.1062L11.7406 10.6062L11.7437 10.6ZM13.7969 16.5C7.05625 16.3906 1.60937 10.9437 1.50312 4.20312L4.60313 3.5375L5.94688 6.675L4.825 7.59375C4.25625 8.05937 4.10938 8.86875 4.47813 9.50625C5.44375 11.1719 6.83125 12.5594 8.49687 13.525C9.13437 13.8937 9.94375 13.7469 10.4094 13.1781L11.3281 12.0562L14.4656 13.4L13.7969 16.5Z"
8
+ })
9
+ });
10
+ const PhoneIcon_rslib_entry_ = PhoneIcon;
11
+ export { PhoneIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const PlusIcon: Icon;
3
+ export default PlusIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const PlusIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 15 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M8.3316 4.25C8.3316 3.83437 7.99723 3.5 7.5816 3.5C7.16598 3.5 6.8316 3.83437 6.8316 4.25V9.25H1.8316C1.41598 9.25 1.0816 9.58437 1.0816 10C1.0816 10.4156 1.41598 10.75 1.8316 10.75H6.8316V15.75C6.8316 16.1656 7.16598 16.5 7.5816 16.5C7.99723 16.5 8.3316 16.1656 8.3316 15.75V10.75H13.3316C13.7472 10.75 14.0816 10.4156 14.0816 10C14.0816 9.58437 13.7472 9.25 13.3316 9.25H8.3316V4.25Z"
8
+ })
9
+ });
10
+ const PlusIcon_rslib_entry_ = PlusIcon;
11
+ export { PlusIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const PositionsIcon: Icon;
3
+ export default PositionsIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const PositionsIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 18 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M10 4.5V6.5H8V4.5H10ZM8 3C7.17188 3 6.5 3.67188 6.5 4.5V6.5C6.5 7.32812 7.17188 8 8 8H8.25V9.25H3.5C2.53438 9.25 1.75 10.0344 1.75 11V12H1.5C0.671875 12 0 12.6719 0 13.5V15.5C0 16.3281 0.671875 17 1.5 17H3.5C4.32812 17 5 16.3281 5 15.5V13.5C5 12.6719 4.32812 12 3.5 12H3.25V11C3.25 10.8625 3.3625 10.75 3.5 10.75H8.25V12H8C7.17188 12 6.5 12.6719 6.5 13.5V15.5C6.5 16.3281 7.17188 17 8 17H10C10.8281 17 11.5 16.3281 11.5 15.5V13.5C11.5 12.6719 10.8281 12 10 12H9.75V10.75H14.5C14.6375 10.75 14.75 10.8625 14.75 11V12H14.5C13.6719 12 13 12.6719 13 13.5V15.5C13 16.3281 13.6719 17 14.5 17H16.5C17.3281 17 18 16.3281 18 15.5V13.5C18 12.6719 17.3281 12 16.5 12H16.25V11C16.25 10.0344 15.4656 9.25 14.5 9.25H9.75V8H10C10.8281 8 11.5 7.32812 11.5 6.5V4.5C11.5 3.67188 10.8281 3 10 3H8ZM1.5 13.5H3.5V15.5H1.5V13.5ZM8 13.5H10V15.5H8V13.5ZM14.5 13.5H16.5V15.5H14.5V13.5Z"
8
+ })
9
+ });
10
+ const PositionsIcon_rslib_entry_ = PositionsIcon;
11
+ export { PositionsIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const ProfileFemaleIcon: Icon;
3
+ export default ProfileFemaleIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const ProfileFemaleIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 14 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M9.5 6C9.5 5.64375 9.425 5.30625 9.29062 5H9.25C8.60938 5 8.04063 4.7 7.675 4.23438C7.24688 4.99063 6.43125 5.5 5.5 5.5H4.55C4.51875 5.6625 4.5 5.82812 4.5 6V6.5C4.5 7.88125 5.61875 9 7 9C8.38125 9 9.5 7.88125 9.5 6.5V6ZM3 6C3 3.79063 4.79063 2 7 2C9.20937 2 11 3.79063 11 6V6.34375C11 7.40313 11.4219 8.42188 12.1719 9.17188L12.2937 9.29375C12.425 9.425 12.5 9.60625 12.5 9.79375C12.5 10.1844 12.1844 10.5 11.7937 10.5H7H2.20625C1.81562 10.5 1.5 10.1844 1.5 9.79375C1.5 9.60625 1.575 9.425 1.70625 9.29375L1.82812 9.17188C2.57812 8.42188 3 7.40313 3 6.34375V6ZM1.50937 16.4344H12.4937C12.3969 14.975 11.4656 13.7406 10.1687 13.2125L8.6 15.3031C7.8 16.3688 6.2 16.3688 5.4 15.3031L3.83125 13.2125C2.5375 13.7406 1.60313 14.975 1.50625 16.4344H1.50937ZM4.12813 11.5531C4.30938 11.5125 4.49375 11.5906 4.60625 11.7375L6.60313 14.4C6.80313 14.6656 7.20312 14.6656 7.40312 14.4L9.4 11.7375C9.5125 11.5906 9.69688 11.5125 9.87813 11.5531C12.2313 12.0688 14 14.1719 14 16.6844V16.9344C14 17.4875 13.5531 17.9344 13 17.9344H1C0.446875 17.9344 0 17.4875 0 16.9344V16.6844C0 14.1687 1.76875 12.0688 4.12813 11.5531Z"
8
+ })
9
+ });
10
+ const ProfileFemaleIcon_rslib_entry_ = ProfileFemaleIcon;
11
+ export { ProfileFemaleIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const ProfileIcon: Icon;
3
+ export default ProfileIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const ProfileIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 14 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M7 8.5C7.66304 8.5 8.29893 8.23661 8.76777 7.76777C9.23661 7.29893 9.5 6.66304 9.5 6C9.5 5.33696 9.23661 4.70107 8.76777 4.23223C8.29893 3.76339 7.66304 3.5 7 3.5C6.33696 3.5 5.70107 3.76339 5.23223 4.23223C4.76339 4.70107 4.5 5.33696 4.5 6C4.5 6.66304 4.76339 7.29893 5.23223 7.76777C5.70107 8.23661 6.33696 8.5 7 8.5ZM11 6C11 7.06087 10.5786 8.07828 9.82843 8.82843C9.07828 9.57857 8.06087 10 7 10C5.93913 10 4.92172 9.57857 4.17157 8.82843C3.42143 8.07828 3 7.06087 3 6C3 4.93913 3.42143 3.92172 4.17157 3.17157C4.92172 2.42143 5.93913 2 7 2C8.06087 2 9.07828 2.42143 9.82843 3.17157C10.5786 3.92172 11 4.93913 11 6ZM1.50937 16.5H12.4937C12.3969 15.0219 11.4406 13.7719 10.1187 13.2563L8.5625 15.2C7.7625 16.2 6.24063 16.2 5.4375 15.2L3.88438 13.2563C2.5625 13.7719 1.60625 15.0219 1.50937 16.5ZM4.16563 11.6125C4.34063 11.575 4.51875 11.6469 4.63125 11.7875L6.6125 14.2625C6.8125 14.5125 7.19375 14.5125 7.39375 14.2625L9.375 11.7875C9.4875 11.6469 9.66562 11.5781 9.84062 11.6125C12.2156 12.1125 14 14.2219 14 16.75V17C14 17.5531 13.5531 18 13 18H1C0.446875 18 0 17.5531 0 17V16.75C0 14.2219 1.78438 12.1125 4.16563 11.6125Z"
8
+ })
9
+ });
10
+ const ProfileIcon_rslib_entry_ = ProfileIcon;
11
+ export { ProfileIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const ProfileMaleIcon: Icon;
3
+ export default ProfileMaleIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const ProfileMaleIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 14 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M9.5 6C9.5 5.64375 9.425 5.30625 9.29062 5H9.25C8.60938 5 8.04063 4.7 7.675 4.23438C7.24688 4.99063 6.43125 5.5 5.5 5.5H4.55C4.51875 5.6625 4.5 5.82812 4.5 6V6.5C4.5 7.88125 5.61875 9 7 9C8.38125 9 9.5 7.88125 9.5 6.5V6ZM3 6C3 3.79063 4.79063 2 7 2C9.20937 2 11 3.79063 11 6V6.5C11 8.70937 9.20937 10.5 7 10.5C4.79063 10.5 3 8.70937 3 6.5V6ZM1.50937 16.5H12.4937C12.3969 15.0406 11.4656 13.8062 10.1687 13.2781L8.6 15.3687C7.8 16.4344 6.2 16.4344 5.4 15.3687L3.83125 13.2781C2.5375 13.8062 1.60312 15.0406 1.50937 16.5ZM4.12813 11.6187C4.30938 11.5781 4.49375 11.6563 4.60625 11.8031L6.60313 14.4656C6.80313 14.7312 7.20312 14.7312 7.40312 14.4656L9.4 11.8031C9.5125 11.6563 9.69688 11.5781 9.87813 11.6187C12.2313 12.1344 14 14.2344 14 16.75V17C14 17.5531 13.5531 18 13 18H1C0.446875 18 0 17.5531 0 17V16.75C0 14.2344 1.76875 12.1344 4.12813 11.6187Z"
8
+ })
9
+ });
10
+ const ProfileMaleIcon_rslib_entry_ = ProfileMaleIcon;
11
+ export { ProfileMaleIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const RemunerationIcon: Icon;
3
+ export default RemunerationIcon;
@@ -0,0 +1,11 @@
1
+ import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
2
+ const RemunerationIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
3
+ id: id,
4
+ viewBox: "0 0 16 20",
5
+ fill: "currentColor",
6
+ children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
7
+ d: "M5.5 4.75C5.5 4.75313 5.50313 4.76875 5.51875 4.79688C5.5375 4.83438 5.58125 4.89375 5.66563 4.96875C5.67813 4.97813 5.69062 4.99062 5.70312 5C5.11875 5.0125 4.55 5.05312 4.00313 5.12812L4 4.75C4 4.1875 4.30313 3.7375 4.65938 3.41562C5.01563 3.09375 5.49375 2.8375 6.01875 2.6375C7.075 2.23438 8.48438 2 10 2C11.5156 2 12.925 2.23437 13.9781 2.63437C14.5031 2.83437 14.9812 3.09063 15.3375 3.4125C15.6937 3.73438 16 4.1875 16 4.75V8V11.25C16 11.8125 15.6969 12.2625 15.3406 12.5844C14.9844 12.9063 14.5062 13.1625 13.9812 13.3625C13.6812 13.4781 13.3531 13.5781 13.0031 13.6625V12.1094C13.1625 12.0625 13.3094 12.0125 13.4469 11.9594C13.8719 11.7969 14.1656 11.6219 14.3375 11.4688C14.4219 11.3937 14.4656 11.3344 14.4844 11.2969C14.5031 11.2625 14.5031 11.25 14.5031 11.25V9.8875C14.3375 9.96875 14.1625 10.0438 13.9812 10.1125C13.6812 10.2281 13.3531 10.3281 13.0031 10.4125V8.85938C13.1625 8.8125 13.3094 8.7625 13.4469 8.70937C13.8719 8.54687 14.1656 8.37188 14.3375 8.21875C14.4219 8.14375 14.4656 8.08438 14.4844 8.04688C14.5 8.01875 14.5031 8.00313 14.5031 8V6.6375C14.3375 6.71875 14.1625 6.79375 13.9812 6.8625C13.5531 7.025 13.0625 7.1625 12.5344 7.26562C12.375 7.03125 12.1906 6.83125 12.0094 6.66875C11.6937 6.38437 11.3281 6.15313 10.9469 5.9625C11.9375 5.89063 12.8 5.70625 13.4469 5.45937C13.8719 5.29687 14.1656 5.12188 14.3375 4.96875C14.4219 4.89375 14.4656 4.83438 14.4844 4.79688C14.5 4.76875 14.5031 4.75313 14.5031 4.75C14.5031 4.75 14.5031 4.73438 14.4844 4.70312C14.4656 4.66562 14.4219 4.60625 14.3375 4.53125C14.1656 4.375 13.8719 4.2 13.4469 4.04063C12.6 3.71563 11.3813 3.5 10 3.5C8.61875 3.5 7.4 3.71562 6.55625 4.0375C6.13125 4.2 5.8375 4.375 5.66563 4.52813C5.58125 4.60313 5.5375 4.6625 5.51875 4.7C5.5 4.73438 5.5 4.74688 5.5 4.74688V4.75ZM1.5 8.75C1.5 8.75313 1.50312 8.76875 1.51875 8.79688C1.5375 8.83438 1.58125 8.89375 1.66562 8.96875C1.8375 9.125 2.13125 9.3 2.55625 9.45937C3.4 9.78125 4.61875 9.99687 6 9.99687C7.38125 9.99687 8.6 9.78125 9.44375 9.45937C9.86875 9.29687 10.1625 9.12188 10.3344 8.96875C10.4188 8.89375 10.4625 8.83438 10.4812 8.79688C10.4969 8.76875 10.5 8.75313 10.5 8.75C10.5 8.75 10.5 8.73438 10.4812 8.70312C10.4625 8.66562 10.4188 8.60625 10.3344 8.53125C10.1625 8.375 9.86875 8.2 9.44375 8.04063C8.6 7.71875 7.38125 7.50313 6 7.50313C4.61875 7.50313 3.4 7.71875 2.55625 8.04063C2.13125 8.20313 1.8375 8.37812 1.66562 8.53125C1.58125 8.60625 1.5375 8.66562 1.51875 8.70312C1.5 8.7375 1.5 8.75 1.5 8.75ZM0 8.75C0 8.1875 0.303125 7.7375 0.659375 7.41563C1.01562 7.09375 1.49375 6.8375 2.01875 6.6375C3.075 6.23437 4.48438 6 6 6C7.51562 6 8.925 6.23438 9.97812 6.63438C10.5031 6.83438 10.9812 7.09062 11.3375 7.4125C11.6937 7.73437 12 8.1875 12 8.75V12V15.25C12 15.8125 11.6969 16.2625 11.3406 16.5844C10.9844 16.9063 10.5062 17.1625 9.98125 17.3625C8.925 17.7656 7.51562 18 6 18C4.48438 18 3.075 17.7656 2.02187 17.3656C1.49687 17.1656 1.02188 16.9094 0.6625 16.5875C0.303125 16.2656 0 15.8125 0 15.25V12V8.75ZM10.5 12V10.6375C10.3344 10.7187 10.1594 10.7938 9.97812 10.8625C8.925 11.2656 7.51562 11.5 6 11.5C4.48438 11.5 3.075 11.2656 2.02187 10.8656C1.84062 10.7969 1.66563 10.7219 1.5 10.6406V12C1.5 12.0031 1.50312 12.0188 1.51875 12.0469C1.5375 12.0844 1.58125 12.1437 1.66562 12.2188C1.8375 12.375 2.13125 12.55 2.55625 12.7094C3.4 13.0313 4.61875 13.2469 6 13.2469C7.38125 13.2469 8.6 13.0313 9.44375 12.7094C9.86875 12.5469 10.1625 12.3719 10.3344 12.2188C10.4188 12.1437 10.4625 12.0844 10.4812 12.0469C10.4969 12.0188 10.5 12.0031 10.5 12ZM2.02187 14.1156C1.84062 14.0469 1.66563 13.9719 1.5 13.8906V15.25C1.5 15.25 1.5 15.2656 1.51875 15.2969C1.5375 15.3344 1.58125 15.3937 1.66562 15.4688C1.8375 15.625 2.13125 15.8 2.55625 15.9594C3.4 16.2813 4.61875 16.4969 6 16.4969C7.38125 16.4969 8.6 16.2813 9.44375 15.9594C9.86875 15.7969 10.1625 15.6219 10.3344 15.4688C10.4188 15.3937 10.4625 15.3344 10.4812 15.2969C10.5 15.2625 10.5 15.25 10.5 15.25V13.8875C10.3344 13.9687 10.1594 14.0438 9.97812 14.1125C8.925 14.5156 7.51562 14.75 6 14.75C4.48438 14.75 3.075 14.5156 2.02187 14.1156Z"
8
+ })
9
+ });
10
+ const RemunerationIcon_rslib_entry_ = RemunerationIcon;
11
+ export { RemunerationIcon_rslib_entry_ as default };
@@ -0,0 +1,3 @@
1
+ import type { Icon } from "./_types";
2
+ declare const RescheduleIcon: Icon;
3
+ export default RescheduleIcon;