prometeo-design-system 2.8.4 → 2.8.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 (339) hide show
  1. package/dist/Avatar.js +4 -0
  2. package/dist/Button.js +4 -0
  3. package/dist/CardProfile.d.ts +4 -0
  4. package/dist/CardProfile.js +5 -0
  5. package/dist/CheckBox.js +4 -0
  6. package/dist/DatePicker.d.ts +2 -0
  7. package/dist/DatePicker.js +5 -0
  8. package/dist/DialogModal.js +6 -0
  9. package/dist/DrawerDesktop.js +6 -0
  10. package/dist/DrawerMobile.js +6 -0
  11. package/dist/DropZone.d.ts +4 -0
  12. package/dist/DropZone.js +5 -0
  13. package/dist/FAButton.js +4 -0
  14. package/dist/Header.js +4 -0
  15. package/dist/Icons/Icons.d.ts +1 -1
  16. package/dist/Icons/Icons.js +1055 -0
  17. package/dist/Icons.d.ts +4 -0
  18. package/dist/Icons.js +5 -0
  19. package/dist/Image.js +4 -0
  20. package/dist/ImageGallery.js +6 -0
  21. package/dist/Input.js +4 -0
  22. package/dist/InputMultiple.d.ts +4 -0
  23. package/dist/InputMultiple.js +5 -0
  24. package/dist/LayoutGeneric.js +4 -0
  25. package/dist/Logo.js +4 -0
  26. package/dist/Menu.d.ts +4 -0
  27. package/dist/Menu.js +5 -0
  28. package/dist/OtpInput.js +4 -0
  29. package/dist/Pagination.js +4 -0
  30. package/dist/ProfilePictureUpload.d.ts +4 -0
  31. package/dist/ProfilePictureUpload.js +5 -0
  32. package/dist/ProgressBar.js +4 -0
  33. package/dist/RadioButton.d.ts +4 -0
  34. package/dist/RadioButton.js +5 -0
  35. package/dist/SegmentedButton.d.ts +4 -0
  36. package/dist/SegmentedButton.js +5 -0
  37. package/dist/Select.js +4 -0
  38. package/dist/SelectSearch.js +4 -0
  39. package/dist/Skeleton.d.ts +4 -0
  40. package/dist/Skeleton.js +5 -0
  41. package/dist/Spinner.js +4 -0
  42. package/dist/Steps.d.ts +4 -0
  43. package/dist/Steps.js +5 -0
  44. package/dist/SwipeContainer.js +4 -0
  45. package/dist/Switch.d.ts +4 -0
  46. package/dist/Switch.js +5 -0
  47. package/dist/TabLinks.js +4 -0
  48. package/dist/Table.js +11 -0
  49. package/dist/TextArea.js +4 -0
  50. package/dist/Toast.js +5 -0
  51. package/dist/ToastProvider.js +4 -0
  52. package/dist/Tooltip.js +4 -0
  53. package/dist/components/Autocomplete/useAutocomplete.js +143 -0
  54. package/dist/{Avatar.es.js → components/Avatar/Avatar.js} +28 -33
  55. package/dist/{Button.es.js → components/Button/Button.js} +55 -55
  56. package/dist/{CardProfile-BB-IP1MR.js → components/CardProfile/CardProfile.js} +68 -94
  57. package/dist/{CheckBox.es.js → components/CheckBox/CheckBox.js} +25 -25
  58. package/dist/components/DatePicker/DatePicker.js +396 -0
  59. package/dist/components/Dialog/Dialog.js +60 -0
  60. package/dist/components/Dialog/useDialogControl.js +18 -0
  61. package/dist/components/Drawer/DrawerDesktop.js +179 -0
  62. package/dist/components/Drawer/DrawerMobile.js +219 -0
  63. package/dist/components/Drawer/useDrawerDesktop.js +18 -0
  64. package/dist/components/Drawer/useDrawerMobile.js +27 -0
  65. package/dist/components/DropZone/DropZone.js +86 -0
  66. package/dist/components/DropZone/useFileDropzone.js +24 -0
  67. package/dist/{FAButton.es.js → components/FAB/FAButton.js} +5 -5
  68. package/dist/components/Header/Header.js +32 -0
  69. package/dist/components/Image/GalleryPreview.js +40 -0
  70. package/dist/{Image.es.js → components/Image/Image.js} +32 -32
  71. package/dist/components/Image/ImageGallery.js +68 -0
  72. package/dist/components/Image/LightBox.js +223 -0
  73. package/dist/{ImageGallery.es.js → components/Image/useImageGallery.js} +0 -2
  74. package/dist/components/Input/Input.js +219 -0
  75. package/dist/{InputMultiple.es.js → components/InputMultiple/InputMultiple.js} +91 -91
  76. package/dist/components/Layout/LayoutGeneric.js +13 -0
  77. package/dist/components/Logo/Logo.js +9 -0
  78. package/dist/{Menu.es.js → components/Menu/MenuComposable.js} +11 -11
  79. package/dist/components/OtpInput/OtpInput.js +112 -0
  80. package/dist/{Pagination.es.js → components/Pagination/Pagination.js} +32 -32
  81. package/dist/components/ProfilePictureUpload/ProfilePictureUpload.d.ts +1 -1
  82. package/dist/{ProfilePictureUpload.es.js → components/ProfilePictureUpload/ProfilePictureUpload.js} +73 -98
  83. package/dist/components/ProgressBar/ProgressBar.js +70 -0
  84. package/dist/{RadioButton.es.js → components/RadioButton/RadioButton.js} +35 -35
  85. package/dist/{SegmentedButton.es.js → components/SegmentedButton/SegmentedButton.js} +37 -37
  86. package/dist/components/Select/Select.js +1005 -0
  87. package/dist/components/SelectSearch/SelectSearch.js +101 -0
  88. package/dist/components/Shared/Chip.js +55 -0
  89. package/dist/components/Shared/HelperComponent.js +24 -0
  90. package/dist/components/Sidebar/SecondaryBar/SecondaryBar.js +62 -0
  91. package/dist/components/Sidebar/SecondaryBar/hooks/useSecondaryBarAnimation.js +59 -0
  92. package/dist/components/Sidebar/SidebarComposable.js +84 -0
  93. package/dist/components/Sidebar/components/NavigationLink.js +34 -0
  94. package/dist/components/Sidebar/components/badge.js +33 -0
  95. package/dist/components/Sidebar/components/changue-account.js +31 -0
  96. package/dist/components/Sidebar/components/collapse-button.js +18 -0
  97. package/dist/components/Sidebar/components/company-logo.js +12 -0
  98. package/dist/components/Sidebar/components/nav-actions.js +98 -0
  99. package/dist/components/Sidebar/components/nav-links.js +100 -0
  100. package/dist/components/Sidebar/context/SidebarContext.js +19 -0
  101. package/dist/components/Sidebar/hooks/SidebarProvider.js +33 -0
  102. package/dist/components/Sidebar/hooks/useNavBarActions.js +9 -0
  103. package/dist/components/Sidebar/hooks/useNavBarCollapse.js +11 -0
  104. package/dist/components/Sidebar/hooks/useSidebarHook.js +13 -0
  105. package/dist/components/Sidebar/ui/useNavbarAnimation.js +326 -0
  106. package/dist/{Skeleton.es.js → components/Skeleton/Skeleton.js} +16 -17
  107. package/dist/components/Spinner/Spinner.js +52 -0
  108. package/dist/{Steps.es.js → components/Steps/Steps.js} +61 -61
  109. package/dist/{SwipeContainer.es.js → components/SwipeContainer/SwipeContainer.js} +68 -68
  110. package/dist/{Switch.es.js → components/Switch/Switch.js} +17 -17
  111. package/dist/{TabLinks.es.js → components/TabLinks/TabLinks.js} +11 -11
  112. package/dist/components/TabSwitch/TabSwitch.js +57 -0
  113. package/dist/{Table.es.js → components/Table/Table.js} +38 -41
  114. package/dist/{TextArea.es.js → components/TextArea/TextArea.js} +24 -26
  115. package/dist/components/Toaster/ToastProvider.js +6 -0
  116. package/dist/{Toast.es.js → components/Toaster/Toaster.js} +42 -42
  117. package/dist/components/Tooltip/Tootip.js +62 -0
  118. package/dist/exports/CardProfile.d.ts +1 -0
  119. package/dist/exports/DatePicker.d.ts +2 -0
  120. package/dist/exports/DropZone.d.ts +2 -0
  121. package/dist/exports/Icons.d.ts +2 -1
  122. package/dist/exports/InputMultiple.d.ts +2 -0
  123. package/dist/exports/Menu.d.ts +1 -0
  124. package/dist/exports/ProfilePictureUpload.d.ts +1 -0
  125. package/dist/exports/RadioButton.d.ts +2 -0
  126. package/dist/exports/SegmentedButton.d.ts +2 -0
  127. package/dist/exports/Skeleton.d.ts +2 -0
  128. package/dist/exports/Steps.d.ts +1 -0
  129. package/dist/exports/Switch.d.ts +2 -0
  130. package/dist/hooks/useClickOutside.js +24 -0
  131. package/dist/{useDragScroll-CHN9OMwn.js → hooks/useDragScroll.js} +1 -1
  132. package/dist/hooks/useLabelBackground.js +25 -0
  133. package/dist/index.d.ts +0 -4
  134. package/dist/index.js +119 -0
  135. package/dist/{cn-B6yFEsav.js → lib/cn.js} +2 -2
  136. package/dist/lib/utils.js +54 -0
  137. package/dist/node_modules/@date-fns/tz/date/index.js +61 -0
  138. package/dist/node_modules/@date-fns/tz/date/mini.js +69 -0
  139. package/dist/node_modules/@date-fns/tz/tzName/index.js +11 -0
  140. package/dist/node_modules/@date-fns/tz/tzOffset/index.js +22 -0
  141. package/dist/{index-BOQuZ0gG.js → node_modules/class-variance-authority/dist/index.js} +10 -9
  142. package/dist/node_modules/date-fns/_lib/addLeadingZeros.js +7 -0
  143. package/dist/node_modules/date-fns/_lib/defaultOptions.js +7 -0
  144. package/dist/node_modules/date-fns/_lib/format/formatters.js +583 -0
  145. package/dist/node_modules/date-fns/_lib/format/lightFormatters.js +59 -0
  146. package/dist/node_modules/date-fns/_lib/format/longFormatters.js +52 -0
  147. package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +18 -0
  148. package/dist/node_modules/date-fns/_lib/normalizeDates.js +11 -0
  149. package/dist/node_modules/date-fns/_lib/normalizeInterval.js +8 -0
  150. package/dist/node_modules/date-fns/_lib/protectedTokens.js +20 -0
  151. package/dist/node_modules/date-fns/addDays.js +10 -0
  152. package/dist/node_modules/date-fns/addMonths.js +20 -0
  153. package/dist/node_modules/date-fns/addWeeks.js +8 -0
  154. package/dist/node_modules/date-fns/addYears.js +8 -0
  155. package/dist/node_modules/date-fns/constants.js +6 -0
  156. package/dist/node_modules/date-fns/constructFrom.js +8 -0
  157. package/dist/node_modules/date-fns/differenceInCalendarDays.js +16 -0
  158. package/dist/node_modules/date-fns/differenceInCalendarMonths.js +13 -0
  159. package/dist/node_modules/date-fns/eachMonthOfInterval.js +17 -0
  160. package/dist/node_modules/date-fns/eachYearOfInterval.js +17 -0
  161. package/dist/node_modules/date-fns/endOfISOWeek.js +8 -0
  162. package/dist/node_modules/date-fns/endOfMonth.js +9 -0
  163. package/dist/node_modules/date-fns/endOfWeek.js +10 -0
  164. package/dist/node_modules/date-fns/endOfYear.js +9 -0
  165. package/dist/node_modules/date-fns/format.js +58 -0
  166. package/dist/node_modules/date-fns/getDayOfYear.js +11 -0
  167. package/dist/node_modules/date-fns/getDaysInMonth.js +10 -0
  168. package/dist/node_modules/date-fns/getISOWeek.js +12 -0
  169. package/dist/node_modules/date-fns/getISOWeekYear.js +15 -0
  170. package/dist/node_modules/date-fns/getMonth.js +8 -0
  171. package/dist/node_modules/date-fns/getWeek.js +12 -0
  172. package/dist/node_modules/date-fns/getWeekYear.js +16 -0
  173. package/dist/node_modules/date-fns/getYear.js +8 -0
  174. package/dist/node_modules/date-fns/isAfter.js +8 -0
  175. package/dist/node_modules/date-fns/isBefore.js +8 -0
  176. package/dist/node_modules/date-fns/isDate.js +7 -0
  177. package/dist/node_modules/date-fns/isSameDay.js +14 -0
  178. package/dist/node_modules/date-fns/isSameMonth.js +13 -0
  179. package/dist/node_modules/date-fns/isSameYear.js +13 -0
  180. package/dist/node_modules/date-fns/isValid.js +9 -0
  181. package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +9 -0
  182. package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +18 -0
  183. package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.js +31 -0
  184. package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +15 -0
  185. package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +70 -0
  186. package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.js +33 -0
  187. package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +11 -0
  188. package/dist/node_modules/date-fns/locale/en-US/_lib/localize.js +155 -0
  189. package/dist/node_modules/date-fns/locale/en-US/_lib/match.js +110 -0
  190. package/dist/node_modules/date-fns/locale/en-US.js +21 -0
  191. package/dist/node_modules/date-fns/locale/es/_lib/formatDistance.js +70 -0
  192. package/dist/node_modules/date-fns/locale/es/_lib/formatLong.js +33 -0
  193. package/dist/node_modules/date-fns/locale/es/_lib/formatRelative.js +18 -0
  194. package/dist/node_modules/date-fns/locale/es/_lib/localize.js +143 -0
  195. package/dist/node_modules/date-fns/locale/es/_lib/match.js +116 -0
  196. package/dist/node_modules/date-fns/locale/es.js +21 -0
  197. package/dist/node_modules/date-fns/max.js +14 -0
  198. package/dist/node_modules/date-fns/min.js +14 -0
  199. package/dist/node_modules/date-fns/setMonth.js +13 -0
  200. package/dist/node_modules/date-fns/setYear.js +10 -0
  201. package/dist/node_modules/date-fns/startOfDay.js +9 -0
  202. package/dist/node_modules/date-fns/startOfISOWeek.js +8 -0
  203. package/dist/node_modules/date-fns/startOfISOWeekYear.js +11 -0
  204. package/dist/node_modules/date-fns/startOfMonth.js +9 -0
  205. package/dist/node_modules/date-fns/startOfWeek.js +10 -0
  206. package/dist/node_modules/date-fns/startOfWeekYear.js +12 -0
  207. package/dist/node_modules/date-fns/startOfYear.js +9 -0
  208. package/dist/node_modules/date-fns/toDate.js +8 -0
  209. package/dist/node_modules/input-otp/dist/index.js +194 -0
  210. package/dist/node_modules/react-day-picker/dist/esm/DayPicker.js +227 -0
  211. package/dist/node_modules/react-day-picker/dist/esm/UI.js +22 -0
  212. package/dist/node_modules/react-day-picker/dist/esm/classes/CalendarDay.js +19 -0
  213. package/dist/node_modules/react-day-picker/dist/esm/classes/CalendarMonth.js +8 -0
  214. package/dist/node_modules/react-day-picker/dist/esm/classes/CalendarWeek.js +8 -0
  215. package/dist/node_modules/react-day-picker/dist/esm/classes/DateLib.js +147 -0
  216. package/dist/node_modules/react-day-picker/dist/esm/components/Button.js +7 -0
  217. package/dist/node_modules/react-day-picker/dist/esm/components/CaptionLabel.js +7 -0
  218. package/dist/node_modules/react-day-picker/dist/esm/components/Chevron.js +18 -0
  219. package/dist/node_modules/react-day-picker/dist/esm/components/Day.js +8 -0
  220. package/dist/node_modules/react-day-picker/dist/esm/components/DayButton.js +10 -0
  221. package/dist/node_modules/react-day-picker/dist/esm/components/Dropdown.js +19 -0
  222. package/dist/node_modules/react-day-picker/dist/esm/components/DropdownNav.js +7 -0
  223. package/dist/node_modules/react-day-picker/dist/esm/components/Footer.js +7 -0
  224. package/dist/node_modules/react-day-picker/dist/esm/components/Month.js +8 -0
  225. package/dist/node_modules/react-day-picker/dist/esm/components/MonthCaption.js +8 -0
  226. package/dist/node_modules/react-day-picker/dist/esm/components/MonthGrid.js +7 -0
  227. package/dist/node_modules/react-day-picker/dist/esm/components/Months.js +7 -0
  228. package/dist/node_modules/react-day-picker/dist/esm/components/MonthsDropdown.js +9 -0
  229. package/dist/node_modules/react-day-picker/dist/esm/components/Nav.js +27 -0
  230. package/dist/node_modules/react-day-picker/dist/esm/components/NextMonthButton.js +9 -0
  231. package/dist/node_modules/react-day-picker/dist/esm/components/Option.js +7 -0
  232. package/dist/node_modules/react-day-picker/dist/esm/components/PreviousMonthButton.js +9 -0
  233. package/dist/node_modules/react-day-picker/dist/esm/components/Root.js +8 -0
  234. package/dist/node_modules/react-day-picker/dist/esm/components/Select.js +7 -0
  235. package/dist/node_modules/react-day-picker/dist/esm/components/Week.js +8 -0
  236. package/dist/node_modules/react-day-picker/dist/esm/components/WeekNumber.js +8 -0
  237. package/dist/node_modules/react-day-picker/dist/esm/components/WeekNumberHeader.js +7 -0
  238. package/dist/node_modules/react-day-picker/dist/esm/components/Weekday.js +7 -0
  239. package/dist/node_modules/react-day-picker/dist/esm/components/Weekdays.js +11 -0
  240. package/dist/node_modules/react-day-picker/dist/esm/components/Weeks.js +7 -0
  241. package/dist/node_modules/react-day-picker/dist/esm/components/YearsDropdown.js +9 -0
  242. package/dist/node_modules/react-day-picker/dist/esm/components/custom-components.js +54 -0
  243. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatCaption.js +9 -0
  244. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatDay.js +7 -0
  245. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatMonthDropdown.js +7 -0
  246. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatWeekNumber.js +7 -0
  247. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatWeekNumberHeader.js +6 -0
  248. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatWeekdayName.js +7 -0
  249. package/dist/node_modules/react-day-picker/dist/esm/formatters/formatYearDropdown.js +9 -0
  250. package/dist/node_modules/react-day-picker/dist/esm/formatters/index.js +18 -0
  251. package/dist/node_modules/react-day-picker/dist/esm/helpers/calculateFocusTarget.js +19 -0
  252. package/dist/node_modules/react-day-picker/dist/esm/helpers/createGetModifiers.js +42 -0
  253. package/dist/node_modules/react-day-picker/dist/esm/helpers/endOfBroadcastWeek.js +9 -0
  254. package/dist/node_modules/react-day-picker/dist/esm/helpers/getBroadcastWeeksInMonth.js +7 -0
  255. package/dist/node_modules/react-day-picker/dist/esm/helpers/getClassNamesForModifiers.js +7 -0
  256. package/dist/node_modules/react-day-picker/dist/esm/helpers/getComponents.js +10 -0
  257. package/dist/node_modules/react-day-picker/dist/esm/helpers/getDataAttributes.js +16 -0
  258. package/dist/node_modules/react-day-picker/dist/esm/helpers/getDates.js +21 -0
  259. package/dist/node_modules/react-day-picker/dist/esm/helpers/getDays.js +10 -0
  260. package/dist/node_modules/react-day-picker/dist/esm/helpers/getDefaultClassNames.js +16 -0
  261. package/dist/node_modules/react-day-picker/dist/esm/helpers/getDisplayMonths.js +13 -0
  262. package/dist/node_modules/react-day-picker/dist/esm/helpers/getFocusableDate.js +15 -0
  263. package/dist/node_modules/react-day-picker/dist/esm/helpers/getFormatters.js +10 -0
  264. package/dist/node_modules/react-day-picker/dist/esm/helpers/getInitialMonth.js +13 -0
  265. package/dist/node_modules/react-day-picker/dist/esm/helpers/getMonthOptions.js +13 -0
  266. package/dist/node_modules/react-day-picker/dist/esm/helpers/getMonths.js +24 -0
  267. package/dist/node_modules/react-day-picker/dist/esm/helpers/getNavMonth.js +13 -0
  268. package/dist/node_modules/react-day-picker/dist/esm/helpers/getNextFocus.js +12 -0
  269. package/dist/node_modules/react-day-picker/dist/esm/helpers/getNextMonth.js +12 -0
  270. package/dist/node_modules/react-day-picker/dist/esm/helpers/getPreviousMonth.js +12 -0
  271. package/dist/node_modules/react-day-picker/dist/esm/helpers/getStyleForModifiers.js +13 -0
  272. package/dist/node_modules/react-day-picker/dist/esm/helpers/getWeekdays.js +11 -0
  273. package/dist/node_modules/react-day-picker/dist/esm/helpers/getWeeks.js +7 -0
  274. package/dist/node_modules/react-day-picker/dist/esm/helpers/getYearOptions.js +16 -0
  275. package/dist/node_modules/react-day-picker/dist/esm/helpers/startOfBroadcastWeek.js +7 -0
  276. package/dist/node_modules/react-day-picker/dist/esm/helpers/useControlledValue.js +8 -0
  277. package/dist/node_modules/react-day-picker/dist/esm/labels/index.js +26 -0
  278. package/dist/node_modules/react-day-picker/dist/esm/labels/labelDayButton.js +10 -0
  279. package/dist/node_modules/react-day-picker/dist/esm/labels/labelGrid.js +9 -0
  280. package/dist/node_modules/react-day-picker/dist/esm/labels/labelGridcell.js +8 -0
  281. package/dist/node_modules/react-day-picker/dist/esm/labels/labelMonthDropdown.js +6 -0
  282. package/dist/node_modules/react-day-picker/dist/esm/labels/labelNav.js +6 -0
  283. package/dist/node_modules/react-day-picker/dist/esm/labels/labelNext.js +6 -0
  284. package/dist/node_modules/react-day-picker/dist/esm/labels/labelPrevious.js +6 -0
  285. package/dist/node_modules/react-day-picker/dist/esm/labels/labelWeekNumber.js +6 -0
  286. package/dist/node_modules/react-day-picker/dist/esm/labels/labelWeekNumberHeader.js +6 -0
  287. package/dist/node_modules/react-day-picker/dist/esm/labels/labelWeekday.js +7 -0
  288. package/dist/node_modules/react-day-picker/dist/esm/labels/labelYearDropdown.js +6 -0
  289. package/dist/node_modules/react-day-picker/dist/esm/selection/useMulti.js +21 -0
  290. package/dist/node_modules/react-day-picker/dist/esm/selection/useRange.js +18 -0
  291. package/dist/node_modules/react-day-picker/dist/esm/selection/useSingle.js +15 -0
  292. package/dist/node_modules/react-day-picker/dist/esm/useAnimation.js +56 -0
  293. package/dist/node_modules/react-day-picker/dist/esm/useCalendar.js +44 -0
  294. package/dist/node_modules/react-day-picker/dist/esm/useDayPicker.js +12 -0
  295. package/dist/node_modules/react-day-picker/dist/esm/useFocus.js +23 -0
  296. package/dist/node_modules/react-day-picker/dist/esm/useSelection.js +19 -0
  297. package/dist/node_modules/react-day-picker/dist/esm/utils/addToRange.js +32 -0
  298. package/dist/node_modules/react-day-picker/dist/esm/utils/dateMatchModifiers.js +26 -0
  299. package/dist/node_modules/react-day-picker/dist/esm/utils/rangeContainsDayOfWeek.js +15 -0
  300. package/dist/node_modules/react-day-picker/dist/esm/utils/rangeContainsModifiers.js +28 -0
  301. package/dist/node_modules/react-day-picker/dist/esm/utils/rangeIncludesDate.js +9 -0
  302. package/dist/node_modules/react-day-picker/dist/esm/utils/rangeOverlaps.js +8 -0
  303. package/dist/node_modules/react-day-picker/dist/esm/utils/typeguards.js +26 -0
  304. package/dist/prometeo-design-system.css +1 -1
  305. package/dist/styles.d.ts +0 -0
  306. package/dist/useDevice.js +4 -0
  307. package/package.json +282 -274
  308. package/src/styles/app.css +1314 -0
  309. package/src/styles/base.css +1323 -0
  310. package/src/styles/fonts.css +46 -0
  311. package/src/styles/palette.css +83 -0
  312. package/src/styles/utilities.css +1126 -0
  313. package/dist/CardProfile.es.js +0 -4
  314. package/dist/DatePicker.es.js +0 -3500
  315. package/dist/DialogModal.es.js +0 -75
  316. package/dist/DrawerDesktop.es.js +0 -192
  317. package/dist/DrawerMobile.es.js +0 -242
  318. package/dist/DropZone.es.js +0 -86
  319. package/dist/Header.es.js +0 -32
  320. package/dist/HelperComponent-D_Cqdf1J.js +0 -24
  321. package/dist/Icons.es.js +0 -1055
  322. package/dist/ImageGallery-CjaJ0UCN.js +0 -317
  323. package/dist/Input-Bdo-Acix.js +0 -240
  324. package/dist/Input.es.js +0 -4
  325. package/dist/LayoutGeneric-B6E-yOYJ.js +0 -26
  326. package/dist/LayoutGeneric.es.js +0 -4
  327. package/dist/Logo.es.js +0 -9
  328. package/dist/OtpInput.es.js +0 -301
  329. package/dist/ProgressBar.es.js +0 -70
  330. package/dist/Select-D2APaG1z.js +0 -1100
  331. package/dist/Select.es.js +0 -4
  332. package/dist/SelectSearch.es.js +0 -237
  333. package/dist/Spinner.es.js +0 -52
  334. package/dist/ToastProvider.es.js +0 -6
  335. package/dist/Tooltip.es.js +0 -62
  336. package/dist/components/Button/Button_Legacy.d.ts +0 -29
  337. package/dist/jsx-runtime-ByW6EXIE.js +0 -283
  338. package/dist/prometeo-design-system.es.js +0 -1008
  339. /package/dist/{useDevice.es.js → hooks/useDevice.js} +0 -0
@@ -0,0 +1,1055 @@
1
+ import { jsx as r, jsxs as n } from "react/jsx-runtime";
2
+ import { memo as e } from "react";
3
+ const o = (t) => e(t), w = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ ...h,
8
+ viewBox: "0 -960 960 960",
9
+ width: t,
10
+ height: t,
11
+ fill: "currentColor",
12
+ className: l,
13
+ children: /* @__PURE__ */ r("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-480q0-17-11.5-28.5T480-520q-17 0-28.5 11.5T440-480q0 17 11.5 28.5T480-440Zm0-160q17 0 28.5-11.5T520-640q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640q0 17 11.5 28.5T480-600Zm320 440H160q-33 0-56.5-23.5T80-240v-160q33 0 56.5-23.5T160-480q0-33-23.5-56.5T80-560v-160q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v160q-33 0-56.5 23.5T800-480q0 33 23.5 56.5T880-400v160q0 33-23.5 56.5T800-160Zm0-80v-102q-37-22-58.5-58.5T720-480q0-43 21.5-79.5T800-618v-102H160v102q37 22 58.5 58.5T240-480q0 43-21.5 79.5T160-342v102h640ZM480-480Z" })
14
+ }
15
+ )), q = o(
16
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
17
+ "svg",
18
+ {
19
+ xmlns: "http://www.w3.org/2000/svg",
20
+ viewBox: "0 -960 960 960",
21
+ width: t,
22
+ height: t,
23
+ fill: "currentColor",
24
+ className: l,
25
+ ...h,
26
+ children: /* @__PURE__ */ r("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-480q0-17-11.5-28.5T480-520q-17 0-28.5 11.5T440-480q0 17 11.5 28.5T480-440Zm0-160q17 0 28.5-11.5T520-640q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640q0 17 11.5 28.5T480-600Zm320 440H160q-33 0-56.5-23.5T80-240v-160q33 0 56.5-23.5T160-480q0-33-23.5-56.5T80-560v-160q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v160q-33 0-56.5 23.5T800-480q0 33 23.5 56.5T880-400v160q0 33-23.5 56.5T800-160Z" })
27
+ }
28
+ )
29
+ ), v = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
30
+ "svg",
31
+ {
32
+ xmlns: "http://www.w3.org/2000/svg",
33
+ ...h,
34
+ viewBox: "0 -960 960 960",
35
+ width: t,
36
+ height: t,
37
+ fill: "currentColor",
38
+ className: l,
39
+ children: /* @__PURE__ */ r("path", { d: "M240-200h120v-240h240v240h120v-360L480-740 240-560v360Zm-80 80v-480l320-240 320 240v480H520v-240h-80v240H160Zm320-350Z" })
40
+ }
41
+ )), i = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
42
+ "svg",
43
+ {
44
+ xmlns: "http://www.w3.org/2000/svg",
45
+ ...h,
46
+ viewBox: "0 -960 960 960",
47
+ width: t,
48
+ height: t,
49
+ fill: "currentColor",
50
+ className: l,
51
+ children: /* @__PURE__ */ r("path", { d: "M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v480q0 33-23.5 56.5T800-160H160Zm360-80h100v-480H520v480Zm-180 0h100v-480H340v480Zm-180 0h100v-480H160v480Zm540 0h100v-480H700v480Z" })
52
+ }
53
+ )), s = o(
54
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
55
+ "svg",
56
+ {
57
+ xmlns: "http://www.w3.org/2000/svg",
58
+ ...h,
59
+ viewBox: "0 -960 960 960",
60
+ width: t,
61
+ height: t,
62
+ fill: "currentColor",
63
+ className: l,
64
+ children: /* @__PURE__ */ r("path", { d: "M160-200v-80h80v-280q0-83 50-147.5T420-792v-28q0-25 17.5-42.5T480-880q25 0 42.5 17.5T540-820v28q80 20 130 84.5T720-560v280h80v80H160Zm320-300Zm0 420q-33 0-56.5-23.5T400-160h160q0 33-23.5 56.5T480-80ZM320-280h320v-280q0-66-47-113t-113-47q-66 0-113 47t-47 113v280Z" })
65
+ }
66
+ )
67
+ ), T = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
68
+ "svg",
69
+ {
70
+ xmlns: "http://www.w3.org/2000/svg",
71
+ ...h,
72
+ viewBox: "0 -960 960 960",
73
+ width: t,
74
+ height: t,
75
+ fill: "currentColor",
76
+ className: l,
77
+ children: /* @__PURE__ */ r("path", { d: "M478-240q21 0 35.5-14.5T528-290q0-21-14.5-35.5T478-340q-21 0-35.5 14.5T428-290q0 21 14.5 35.5T478-240Zm-36-154h74q0-33 7.5-52t42.5-52q26-26 41-49.5t15-56.5q0-56-41-86t-97-30q-57 0-92.5 30T342-618l66 26q5-18 22.5-39t53.5-21q32 0 48 17.5t16 38.5q0 20-12 37.5T506-526q-44 39-54 59t-10 73Zm38 314q-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" })
78
+ }
79
+ )), C = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
80
+ "svg",
81
+ {
82
+ xmlns: "http://www.w3.org/2000/svg",
83
+ ...h,
84
+ viewBox: "0 -960 960 960",
85
+ width: t,
86
+ height: t,
87
+ fill: "currentColor",
88
+ className: l,
89
+ children: /* @__PURE__ */ r("path", { d: "m370-80-16-128q-13-5-24.5-12T307-235l-119 50L78-375l103-78q-1-7-1-13.5v-27q0-6.5 1-13.5L78-585l110-190 119 50q11-8 23-15t24-12l16-128h220l16 128q13 5 24.5 12t22.5 15l119-50 110 190-103 78q1 7 1 13.5v27q0 6.5-2 13.5l103 78-110 190-118-50q-11 8-23 15t-24 12L590-80H370Zm70-80h79l14-106q31-8 57.5-23.5T639-327l99 41 39-68-86-65q5-14 7-29.5t2-31.5q0-16-2-31.5t-7-29.5l86-65-39-68-99 42q-22-23-48.5-38.5T533-694l-13-106h-79l-14 106q-31 8-57.5 23.5T321-633l-99-41-39 68 86 64q-5 15-7 30t-2 32q0 16 2 31t7 30l-86 65 39 68 99-42q22 23 48.5 38.5T427-266l13 106Zm42-180q58 0 99-41t41-99q0-58-41-99t-99-41q-59 0-99.5 41T342-480q0 58 40.5 99t99.5 41Zm-2-140Z" })
90
+ }
91
+ )), g = o(
92
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
93
+ "svg",
94
+ {
95
+ xmlns: "http://www.w3.org/2000/svg",
96
+ ...h,
97
+ viewBox: "0 -960 960 960",
98
+ width: t,
99
+ height: t,
100
+ fill: "currentColor",
101
+ className: l,
102
+ children: /* @__PURE__ */ r("path", { d: "M560-240 320-480l240-240 56 56-184 184 184 184-56 56Z" })
103
+ }
104
+ )
105
+ ), c = o(
106
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
107
+ "svg",
108
+ {
109
+ xmlns: "http://www.w3.org/2000/svg",
110
+ ...h,
111
+ viewBox: "0 -960 960 960",
112
+ width: t,
113
+ height: t,
114
+ fill: "currentColor",
115
+ className: l,
116
+ children: /* @__PURE__ */ r("path", { d: "M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z" })
117
+ }
118
+ )
119
+ ), d = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
120
+ "svg",
121
+ {
122
+ xmlns: "http://www.w3.org/2000/svg",
123
+ ...h,
124
+ viewBox: "0 -960 960 960",
125
+ width: t,
126
+ height: t,
127
+ fill: "currentColor",
128
+ className: l,
129
+ children: /* @__PURE__ */ r("path", { d: "M400-240 160-480l240-240 56 58-142 142h486v80H314l142 142-56 58Z" })
130
+ }
131
+ )), Z = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
132
+ "svg",
133
+ {
134
+ xmlns: "http://www.w3.org/2000/svg",
135
+ ...h,
136
+ viewBox: "0 -960 960 960",
137
+ width: t,
138
+ height: t,
139
+ fill: "currentColor",
140
+ className: l,
141
+ children: /* @__PURE__ */ r("path", { d: "M680-80q-50 0-85-35t-35-85q0-6 3-28L282-392q-16 15-37 23.5t-45 8.5q-50 0-85-35t-35-85q0-50 35-85t85-35q24 0 45 8.5t37 23.5l281-164q-2-7-2.5-13.5T560-760q0-50 35-85t85-35q50 0 85 35t35 85q0 50-35 85t-85 35q-24 0-45-8.5T598-672L317-508q2 7 2.5 13.5t.5 14.5q0 8-.5 14.5T317-452l281 164q16-15 37-23.5t45-8.5q50 0 85 35t35 85q0 50-35 85t-85 35Zm0-80q17 0 28.5-11.5T720-200q0-17-11.5-28.5T680-240q-17 0-28.5 11.5T640-200q0 17 11.5 28.5T680-160ZM200-440q17 0 28.5-11.5T240-480q0-17-11.5-28.5T200-520q-17 0-28.5 11.5T160-480q0 17 11.5 28.5T200-440Zm480-280q17 0 28.5-11.5T720-760q0-17-11.5-28.5T680-800q-17 0-28.5 11.5T640-760q0 17 11.5 28.5T680-720Zm0 520ZM200-480Zm480-280Z" })
142
+ }
143
+ )), a = o(
144
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
145
+ "svg",
146
+ {
147
+ xmlns: "http://www.w3.org/2000/svg",
148
+ ...h,
149
+ viewBox: "0 -960 960 960",
150
+ width: t,
151
+ height: t,
152
+ fill: "currentColor",
153
+ className: l,
154
+ children: /* @__PURE__ */ r("path", { d: "M480-345 240-585l56-56 184 183 184-183 56 56-240 240Z" })
155
+ }
156
+ )
157
+ ), m = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
158
+ "svg",
159
+ {
160
+ xmlns: "http://www.w3.org/2000/svg",
161
+ ...h,
162
+ viewBox: "0 -960 960 960",
163
+ width: t,
164
+ height: t,
165
+ fill: "currentColor",
166
+ className: l,
167
+ children: /* @__PURE__ */ r("path", { d: "M440-440v240h-80v-160H200v-80h240Zm160-320v160h160v80H520v-240h80Z" })
168
+ }
169
+ )), p = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
170
+ "svg",
171
+ {
172
+ xmlns: "http://www.w3.org/2000/svg",
173
+ ...h,
174
+ viewBox: "0 -960 960 960",
175
+ width: t,
176
+ height: t,
177
+ fill: "currentColor",
178
+ className: l,
179
+ children: /* @__PURE__ */ r("path", { d: "M200-80q-33 0-56.5-23.5T120-160v-560q0-33 23.5-56.5T200-800h40v-80h80v80h320v-80h80v80h40q33 0 56.5 23.5T840-720v560q0 33-23.5 56.5T760-80H200Zm0-80h560v-400H200v400Zm0-480h560v-80H200v80Zm0 0v-80 80Zm280 240q-17 0-28.5-11.5T440-440q0-17 11.5-28.5T480-480q17 0 28.5 11.5T520-440q0 17-11.5 28.5T480-400Zm-160 0q-17 0-28.5-11.5T280-440q0-17 11.5-28.5T320-480q17 0 28.5 11.5T360-440q0 17-11.5 28.5T320-400Zm320 0q-17 0-28.5-11.5T600-440q0-17 11.5-28.5T640-480q17 0 28.5 11.5T680-440q0 17-11.5 28.5T640-400ZM480-240q-17 0-28.5-11.5T440-280q0-17 11.5-28.5T480-320q17 0 28.5 11.5T520-280q0 17-11.5 28.5T480-240Zm-160 0q-17 0-28.5-11.5T280-280q0-17 11.5-28.5T320-320q17 0 28.5 11.5T360-280q0 17-11.5 28.5T320-240Zm320 0q-17 0-28.5-11.5T600-280q0-17 11.5-28.5T640-320q17 0 28.5 11.5T680-280q0 17-11.5 28.5T640-240Z" })
180
+ }
181
+ )), u = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
182
+ "svg",
183
+ {
184
+ xmlns: "http://www.w3.org/2000/svg",
185
+ ...h,
186
+ viewBox: "0 -960 960 960",
187
+ width: t,
188
+ height: t,
189
+ fill: "currentColor",
190
+ className: l,
191
+ children: /* @__PURE__ */ r("path", { d: "m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z" })
192
+ }
193
+ )), H = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
194
+ "svg",
195
+ {
196
+ xmlns: "http://www.w3.org/2000/svg",
197
+ ...h,
198
+ viewBox: "0 -960 960 960",
199
+ width: t,
200
+ height: t,
201
+ fill: "currentColor",
202
+ className: l,
203
+ children: /* @__PURE__ */ r("path", { d: "M480-480q-66 0-113-47t-47-113q0-66 47-113t113-47q66 0 113 47t47 113q0 66-47 113t-113 47ZM160-160v-112q0-34 17.5-62.5T224-378q62-31 126-46.5T480-440q66 0 130 15.5T736-378q29 15 46.5 43.5T800-272v112H160Zm80-80h480v-32q0-11-5.5-20T700-306q-54-27-109-40.5T480-360q-56 0-111 13.5T260-306q-9 5-14.5 14t-5.5 20v32Zm240-320q33 0 56.5-23.5T560-640q0-33-23.5-56.5T480-720q-33 0-56.5 23.5T400-640q0 33 23.5 56.5T480-560Zm0-80Zm0 400Z" })
204
+ }
205
+ )), x = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
206
+ "svg",
207
+ {
208
+ xmlns: "http://www.w3.org/2000/svg",
209
+ ...h,
210
+ viewBox: "0 -960 960 960",
211
+ width: t,
212
+ height: t,
213
+ fill: "currentColor",
214
+ className: l,
215
+ children: /* @__PURE__ */ r("path", { d: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h280v80H200v560h280v80H200Zm440-160-55-58 102-102H360v-80h327L585-622l55-58 200 200-200 200Z" })
216
+ }
217
+ )), M = o(
218
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
219
+ "svg",
220
+ {
221
+ xmlns: "http://www.w3.org/2000/svg",
222
+ ...h,
223
+ viewBox: "0 -960 960 960",
224
+ width: t,
225
+ height: t,
226
+ fill: "currentColor",
227
+ className: l,
228
+ children: /* @__PURE__ */ r("path", { d: "M320-440v-287L217-624l-57-56 200-200 200 200-57 56-103-103v287h-80ZM600-80 400-280l57-56 103 103v-287h80v287l103-103 57 56L600-80Z" })
229
+ }
230
+ )
231
+ ), L = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
232
+ "svg",
233
+ {
234
+ xmlns: "http://www.w3.org/2000/svg",
235
+ ...h,
236
+ viewBox: "0 -960 960 960",
237
+ width: t,
238
+ height: t,
239
+ fill: "currentColor",
240
+ className: l,
241
+ children: /* @__PURE__ */ r("path", { d: "M400-240v-80h160v80H400ZM240-440v-80h480v80H240ZM120-640v-80h720v80H120Z" })
242
+ }
243
+ )), f = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
244
+ "svg",
245
+ {
246
+ xmlns: "http://www.w3.org/2000/svg",
247
+ ...h,
248
+ viewBox: "0 -960 960 960",
249
+ width: t,
250
+ height: t,
251
+ fill: "currentColor",
252
+ className: l,
253
+ children: /* @__PURE__ */ r("path", { d: "M784-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l252 252-56 56ZM380-400q75 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" })
254
+ }
255
+ )), V = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
256
+ "svg",
257
+ {
258
+ xmlns: "http://www.w3.org/2000/svg",
259
+ ...h,
260
+ viewBox: "0 -960 960 960",
261
+ width: t,
262
+ height: t,
263
+ fill: "currentColor",
264
+ className: l,
265
+ children: /* @__PURE__ */ r("path", { d: "m668-380 152-130 120 10-176 153 52 227-102-62-46-198Zm-94-292-42-98 46-110 92 217-96-9ZM294-287l126-76 126 77-33-144 111-96-146-13-58-136-58 135-146 13 111 97-33 143ZM173-120l65-281L20-590l288-25 112-265 112 265 288 25-218 189 65 281-247-149-247 149Zm247-340Z" })
266
+ }
267
+ )), B = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
268
+ "svg",
269
+ {
270
+ xmlns: "http://www.w3.org/2000/svg",
271
+ ...h,
272
+ viewBox: "0 -960 960 960",
273
+ width: t,
274
+ height: t,
275
+ fill: "currentColor",
276
+ className: l,
277
+ children: /* @__PURE__ */ r("path", { d: "M480-160q-33 0-56.5-23.5T400-240q0-33 23.5-56.5T480-320q33 0 56.5 23.5T560-240q0 33-23.5 56.5T480-160Zm0-240q-33 0-56.5-23.5T400-480q0-33 23.5-56.5T480-560q33 0 56.5 23.5T560-480q0 33-23.5 56.5T480-400Zm0-240q-33 0-56.5-23.5T400-720q0-33 23.5-56.5T480-800q33 0 56.5 23.5T560-720q0 33-23.5 56.5T480-640Z" })
278
+ }
279
+ )), _ = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
280
+ "svg",
281
+ {
282
+ xmlns: "http://www.w3.org/2000/svg",
283
+ ...h,
284
+ viewBox: "0 -960 960 960",
285
+ width: t,
286
+ height: t,
287
+ fill: "currentColor",
288
+ className: l,
289
+ children: /* @__PURE__ */ r("path", { d: "M440-440H200v-80h240v-240h80v240h240v80H520v240h-80v-240Z" })
290
+ }
291
+ )), F = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
292
+ "svg",
293
+ {
294
+ xmlns: "http://www.w3.org/2000/svg",
295
+ ...h,
296
+ viewBox: "0 -960 960 960",
297
+ width: t,
298
+ height: t,
299
+ fill: "currentColor",
300
+ className: l,
301
+ children: /* @__PURE__ */ r("path", { d: "M200-200h57l391-391-57-57-391 391v57Zm-80 80v-170l528-527q12-11 26.5-17t30.5-6q16 0 31 6t26 18l55 56q12 11 17.5 26t5.5 30q0 16-5.5 30.5T817-647L290-120H120Zm640-584-56-56 56 56Zm-141 85-28-29 57 57-29-28Z" })
302
+ }
303
+ )), y = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
304
+ "svg",
305
+ {
306
+ xmlns: "http://www.w3.org/2000/svg",
307
+ ...h,
308
+ viewBox: "0 -960 960 960",
309
+ width: t,
310
+ height: t,
311
+ fill: "currentColor",
312
+ className: l,
313
+ children: /* @__PURE__ */ r("path", { d: "M440-320v-326L336-542l-56-58 200-200 200 200-56 58-104-104v326h-80ZM240-160q-33 0-56.5-23.5T160-240v-120h80v120h480v-120h80v120q0 33-23.5 56.5T720-160H240Z" })
314
+ }
315
+ )), k = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
316
+ "svg",
317
+ {
318
+ xmlns: "http://www.w3.org/2000/svg",
319
+ ...h,
320
+ viewBox: "0 -960 960 960",
321
+ width: t,
322
+ height: t,
323
+ fill: "currentColor",
324
+ className: l,
325
+ children: /* @__PURE__ */ r("path", { d: "M360-240q-33 0-56.5-23.5T280-320v-480q0-33 23.5-56.5T360-880h360q33 0 56.5 23.5T800-800v480q0 33-23.5 56.5T720-240H360Zm0-80h360v-480H360v480ZM200-80q-33 0-56.5-23.5T120-160v-560h80v560h440v80H200Zm160-240v-480 480Z" })
326
+ }
327
+ )), U = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
328
+ "svg",
329
+ {
330
+ xmlns: "http://www.w3.org/2000/svg",
331
+ ...h,
332
+ viewBox: "0 -960 960 960",
333
+ width: t,
334
+ height: t,
335
+ fill: "currentColor",
336
+ className: l,
337
+ children: /* @__PURE__ */ r("path", { d: "M80-200v-80h800v80H80Zm46-242-52-30 34-60H40v-60h68l-34-58 52-30 34 58 34-58 52 30-34 58h68v60h-68l34 60-52 30-34-60-34 60Zm320 0-52-30 34-60h-68v-60h68l-34-58 52-30 34 58 34-58 52 30-34 58h68v60h-68l34 60-52 30-34-60-34 60Zm320 0-52-30 34-60h-68v-60h68l-34-58 52-30 34 58 34-58 52 30-34 58h68v60h-68l34 60-52 30-34-60-34 60Z" })
338
+ }
339
+ )), A = o(
340
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
341
+ "svg",
342
+ {
343
+ xmlns: "http://www.w3.org/2000/svg",
344
+ ...h,
345
+ viewBox: "0 -960 960 960",
346
+ width: t,
347
+ height: t,
348
+ fill: "currentColor",
349
+ className: l,
350
+ children: /* @__PURE__ */ r("path", { d: "M234-276q51-39 114-61.5T480-360q69 0 132 22.5T726-276q35-41 54.5-93T800-480q0-133-93.5-226.5T480-800q-133 0-226.5 93.5T160-480q0 59 19.5 111t54.5 93Zm246-164q-59 0-99.5-40.5T340-580q0-59 40.5-99.5T480-720q59 0 99.5 40.5T620-580q0 59-40.5 99.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-80q53 0 100-15.5t86-44.5q-39-29-86-44.5T480-280q-53 0-100 15.5T294-220q39 29 86 44.5T480-160Zm0-360q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Zm0 360Z" })
351
+ }
352
+ )
353
+ ), S = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
354
+ "svg",
355
+ {
356
+ xmlns: "http://www.w3.org/2000/svg",
357
+ ...h,
358
+ viewBox: "0 -960 960 960",
359
+ width: t,
360
+ height: t,
361
+ fill: "currentColor",
362
+ className: l,
363
+ children: /* @__PURE__ */ r("path", { d: "M720-400v-120H600v-80h120v-120h80v120h120v80H800v120h-80Zm-360-80q-66 0-113-47t-47-113q0-66 47-113t113-47q66 0 113 47t47 113q0 66-47 113t-113 47ZM40-160v-112q0-34 17.5-62.5T104-378q62-31 126-46.5T360-440q66 0 130 15.5T616-378q29 15 46.5 43.5T680-272v112H40Zm80-80h480v-32q0-11-5.5-20T580-306q-54-27-109-40.5T360-360q-56 0-111 13.5T140-306q-9 5-14.5 14t-5.5 20v32Zm240-320q33 0 56.5-23.5T440-640q0-33-23.5-56.5T360-720q-33 0-56.5 23.5T280-640q0 33 23.5 56.5T360-560Zm0-80Zm0 400Z" })
364
+ }
365
+ )), D = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
366
+ "svg",
367
+ {
368
+ xmlns: "http://www.w3.org/2000/svg",
369
+ ...h,
370
+ viewBox: "0 -960 960 960",
371
+ width: t,
372
+ height: t,
373
+ fill: "currentColor",
374
+ className: l,
375
+ children: /* @__PURE__ */ r("path", { d: "M720-330q0 104-73 177T470-80q-104 0-177-73t-73-177v-370q0-75 52.5-127.5T400-880q75 0 127.5 52.5T580-700v350q0 46-32 78t-78 32q-46 0-78-32t-32-78v-370h80v370q0 13 8.5 21.5T470-320q13 0 21.5-8.5T500-350v-350q-1-42-29.5-71T400-800q-42 0-71 29t-29 71v370q-1 71 49 120.5T470-160q70 0 119-49.5T640-330v-390h80v390Z" })
376
+ }
377
+ )), E = o(
378
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
379
+ "svg",
380
+ {
381
+ xmlns: "http://www.w3.org/2000/svg",
382
+ ...h,
383
+ viewBox: "0 -960 960 960",
384
+ width: t,
385
+ height: t,
386
+ fill: "currentColor",
387
+ className: l,
388
+ children: /* @__PURE__ */ r("path", { d: "M480-80q-155 0-269-103T82-440h81q15 121 105.5 200.5T480-160q134 0 227-93t93-227q0-134-93-227t-227-93q-86 0-159.5 42.5T204-640h116v80H88q29-140 139-230t253-90q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm112-232L440-464v-216h80v184l128 128-56 56Z" })
389
+ }
390
+ )
391
+ ), I = o(
392
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
393
+ "svg",
394
+ {
395
+ xmlns: "http://www.w3.org/2000/svg",
396
+ ...h,
397
+ viewBox: "0 -960 960 960",
398
+ width: t,
399
+ height: t,
400
+ fill: "currentColor",
401
+ className: l,
402
+ children: /* @__PURE__ */ r("path", { d: "M80-80v-720q0-33 23.5-56.5T160-880h640q33 0 56.5 23.5T880-800v480q0 33-23.5 56.5T800-240H240L80-80Zm126-240h594v-480H160v525l46-45Zm-46 0v-480 480Z" })
403
+ }
404
+ )
405
+ ), O = o(
406
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ n(
407
+ "svg",
408
+ {
409
+ width: t,
410
+ height: t,
411
+ viewBox: "0 0 24 24",
412
+ fill: "currentColor",
413
+ xmlns: "http://www.w3.org/2000/svg",
414
+ ...h,
415
+ className: l,
416
+ children: [
417
+ /* @__PURE__ */ r(
418
+ "mask",
419
+ {
420
+ id: "mask0_977_20941",
421
+ style: { maskType: "alpha" },
422
+ maskUnits: "userSpaceOnUse",
423
+ x: "0",
424
+ y: "0",
425
+ width: t,
426
+ height: t,
427
+ children: /* @__PURE__ */ r("rect", { width: "24", height: "24", fill: "#D9D9D9" })
428
+ }
429
+ ),
430
+ /* @__PURE__ */ r("g", { mask: "url(#mask0_977_20941)", children: /* @__PURE__ */ r("path", { d: "M11 17V7L6 12L11 17ZM13 21H15V3H13V21Z", fill: "#E4E4E7" }) })
431
+ ]
432
+ }
433
+ )
434
+ ), b = o(
435
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
436
+ "svg",
437
+ {
438
+ xmlns: "http://www.w3.org/2000/svg",
439
+ viewBox: "0 -960 960 960",
440
+ width: t,
441
+ height: t,
442
+ ...h,
443
+ className: l,
444
+ fill: "currentColor",
445
+ children: /* @__PURE__ */ r("path", { d: "M480-320q75 0 127.5-52.5T660-500q0-75-52.5-127.5T480-680q-75 0-127.5 52.5T300-500q0 75 52.5 127.5T480-320Zm0-72q-45 0-76.5-31.5T372-500q0-45 31.5-76.5T480-608q45 0 76.5 31.5T588-500q0 45-31.5 76.5T480-392Zm0 192q-146 0-266-81.5T40-500q54-137 174-218.5T480-800q146 0 266 81.5T920-500q-54 137-174 218.5T480-200Zm0-300Zm0 220q113 0 207.5-59.5T832-500q-50-101-144.5-160.5T480-720q-113 0-207.5 59.5T128-500q50 101 144.5 160.5T480-280Z" })
446
+ }
447
+ )
448
+ ), j = o(
449
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
450
+ "svg",
451
+ {
452
+ xmlns: "http://www.w3.org/2000/svg",
453
+ viewBox: "0 -960 960 960",
454
+ width: t,
455
+ height: t,
456
+ ...h,
457
+ className: l,
458
+ fill: "currentColor",
459
+ children: /* @__PURE__ */ r("path", { d: "m644-428-58-58q9-47-27-88t-93-32l-58-58q17-8 34.5-12t37.5-4q75 0 127.5 52.5T660-500q0 20-4 37.5T644-428Zm128 126-58-56q38-29 67.5-63.5T832-500q-50-101-143.5-160.5T480-720q-29 0-57 4t-55 12l-62-62q41-17 84-25.5t90-8.5q151 0 269 83.5T920-500q-23 59-60.5 109.5T772-302Zm20 246L624-222q-35 11-70.5 16.5T480-200q-151 0-269-83.5T40-500q21-53 53-98.5t73-81.5L56-792l56-56 736 736-56 56ZM222-624q-29 26-53 57t-41 67q50 101 143.5 160.5T480-280q20 0 39-2.5t39-5.5l-36-38q-11 3-21 4.5t-21 1.5q-75 0-127.5-52.5T300-500q0-11 1.5-21t4.5-21l-84-82Zm319 93Zm-151 75Z" })
460
+ }
461
+ )
462
+ ), N = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
463
+ "svg",
464
+ {
465
+ xmlns: "http://www.w3.org/2000/svg",
466
+ width: t,
467
+ height: t,
468
+ ...h,
469
+ className: l,
470
+ viewBox: "0 -960 960 960",
471
+ fill: "currentColor",
472
+ children: /* @__PURE__ */ r("path", { d: "M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z" })
473
+ }
474
+ )), P = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
475
+ "svg",
476
+ {
477
+ xmlns: "http://www.w3.org/2000/svg",
478
+ viewBox: "0 -960 960 960",
479
+ width: t,
480
+ height: t,
481
+ ...h,
482
+ className: l,
483
+ fill: "currentColor",
484
+ children: /* @__PURE__ */ r("path", { d: "M440-280h80v-240h-80v240Zm40-320q17 0 28.5-11.5T520-640q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640q0 17 11.5 28.5T480-600Zm0 520q-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" })
485
+ }
486
+ )), G = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
487
+ "svg",
488
+ {
489
+ xmlns: "http://www.w3.org/2000/svg",
490
+ width: t,
491
+ height: t,
492
+ ...h,
493
+ className: l,
494
+ fill: "currentColor",
495
+ viewBox: "0 -960 960 960",
496
+ children: /* @__PURE__ */ r("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-280Zm-40-160h80v-240h-80v240Zm40 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" })
497
+ }
498
+ )), R = o(
499
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
500
+ "svg",
501
+ {
502
+ xmlns: "http://www.w3.org/2000/svg",
503
+ height: t,
504
+ viewBox: "0 -960 960 960",
505
+ width: t,
506
+ fill: "currentColor",
507
+ ...h,
508
+ className: l,
509
+ children: /* @__PURE__ */ r("path", { d: "M260-160q-91 0-155.5-63T40-377q0-78 47-139t123-78q25-92 100-149t170-57q117 0 198.5 81.5T760-520q69 8 114.5 59.5T920-340q0 75-52.5 127.5T740-160H520q-33 0-56.5-23.5T440-240v-206l-64 62-56-56 160-160 160 160-56 56-64-62v206h220q42 0 71-29t29-71q0-42-29-71t-71-29h-60v-80q0-83-58.5-141.5T480-720q-83 0-141.5 58.5T280-520h-20q-58 0-99 41t-41 99q0 58 41 99t99 41h100v80H260Zm220-280Z" })
510
+ }
511
+ )
512
+ ), W = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
513
+ "svg",
514
+ {
515
+ xmlns: "http://www.w3.org/2000/svg",
516
+ ...h,
517
+ viewBox: "0 -960 960 960",
518
+ width: t,
519
+ height: t,
520
+ fill: "currentColor",
521
+ className: l,
522
+ children: /* @__PURE__ */ r("path", { d: "m612-292 56-56-148-148v-184h-80v216l172 172ZM480-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-400Zm0 320q133 0 226.5-93.5T800-480q0-133-93.5-226.5T480-800q-133 0-226.5 93.5T160-480q0 133 93.5 226.5T480-160Z" })
523
+ }
524
+ )), $ = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
525
+ "svg",
526
+ {
527
+ xmlns: "http://www.w3.org/2000/svg",
528
+ ...h,
529
+ viewBox: "0 -960 960 960",
530
+ width: t,
531
+ height: t,
532
+ fill: "currentColor",
533
+ className: l,
534
+ children: /* @__PURE__ */ r("path", { d: "M520-200v-560h240v560H520Zm-320 0v-560h240v560H200Zm400-80h80v-400h-80v400Zm-320 0h80v-400h-80v400Zm0-400v400-400Zm320 0v400-400Z" })
535
+ }
536
+ )), J = o(
537
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
538
+ "svg",
539
+ {
540
+ xmlns: "http://www.w3.org/2000/svg",
541
+ ...h,
542
+ viewBox: "0 -960 960 960",
543
+ width: t,
544
+ height: t,
545
+ fill: "currentColor",
546
+ className: l,
547
+ children: /* @__PURE__ */ r(
548
+ "path",
549
+ {
550
+ d: "M40-240v-480l360 240-360 240Zm440 0v-480l360 240-360 240Z",
551
+ transform: "translate(40,0)"
552
+ }
553
+ )
554
+ }
555
+ )
556
+ ), K = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
557
+ "svg",
558
+ {
559
+ xmlns: "http://www.w3.org/2000/svg",
560
+ ...h,
561
+ viewBox: "0 -960 960 960",
562
+ width: t,
563
+ height: t,
564
+ fill: "currentColor",
565
+ className: l,
566
+ children: /* @__PURE__ */ r("path", { d: "M280-120q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520ZM360-280h80v-360h-80v360Zm160 0h80v-360h-80v360ZM280-720v520-520Z" })
567
+ }
568
+ )), Q = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
569
+ "svg",
570
+ {
571
+ xmlns: "http://www.w3.org/2000/svg",
572
+ width: t,
573
+ height: t,
574
+ viewBox: "0 0 8 14",
575
+ fill: "currentColor",
576
+ ...h,
577
+ className: l,
578
+ children: /* @__PURE__ */ r("path", { d: "M4 13.3333L0 9.33333L0.95 8.38333L4 11.4333L7.05 8.38333L8 9.33333L4 13.3333ZM0.966667 4.93333L0 4L4 0L8 4L7.03333 4.93333L4 1.9L0.966667 4.93333Z" })
579
+ }
580
+ )), X = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
581
+ "svg",
582
+ {
583
+ xmlns: "http://www.w3.org/2000/svg",
584
+ width: t,
585
+ height: t,
586
+ viewBox: "0 0 24 24",
587
+ fill: "currentColor",
588
+ ...h,
589
+ className: l,
590
+ children: /* @__PURE__ */ r("path", { d: "M8.4 17L12 13.4L15.6 17L17 15.6L13.4 12L17 8.4L15.6 7L12 10.6L8.4 7L7 8.4L10.6 12L7 15.6L8.4 17ZM12 22C10.6167 22 9.31667 21.7375 8.1 21.2125C6.88333 20.6875 5.825 19.975 4.925 19.075C4.025 18.175 3.3125 17.1167 2.7875 15.9C2.2625 14.6833 2 13.3833 2 12C2 10.6167 2.2625 9.31667 2.7875 8.1C3.3125 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.3125 8.1 2.7875C9.31667 2.2625 10.6167 2 12 2C13.3833 2 14.6833 2.2625 15.9 2.7875C17.1167 3.3125 18.175 4.025 19.075 4.925C19.975 5.825 20.6875 6.88333 21.2125 8.1C21.7375 9.31667 22 10.6167 22 12C22 13.3833 21.7375 14.6833 21.2125 15.9C20.6875 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6875 15.9 21.2125C14.6833 21.7375 13.3833 22 12 22ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76667 19.225 7.875 17.675 6.325C16.125 4.775 14.2333 4 12 4C9.76667 4 7.875 4.775 6.325 6.325C4.775 7.875 4 9.76667 4 12C4 14.2333 4.775 16.125 6.325 17.675C7.875 19.225 9.76667 20 12 20Z" })
591
+ }
592
+ )), Y = o(
593
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
594
+ "svg",
595
+ {
596
+ xmlns: "http://www.w3.org/2000/svg",
597
+ width: t,
598
+ height: t,
599
+ viewBox: "0 0 24 24",
600
+ fill: "currentColor",
601
+ ...h,
602
+ className: l,
603
+ children: /* @__PURE__ */ r("path", { d: "M10.6 16.6L17.65 9.55L16.25 8.15L10.6 13.8L7.75 10.95L6.35 12.35L10.6 16.6ZM12 22C10.6167 22 9.31667 21.7375 8.1 21.2125C6.88333 20.6875 5.825 19.975 4.925 19.075C4.025 18.175 3.3125 17.1167 2.7875 15.9C2.2625 14.6833 2 13.3833 2 12C2 10.6167 2.2625 9.31667 2.7875 8.1C3.3125 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.3125 8.1 2.7875C9.31667 2.2625 10.6167 2 12 2C13.3833 2 14.6833 2.2625 15.9 2.7875C17.1167 3.3125 18.175 4.025 19.075 4.925C19.975 5.825 20.6875 6.88333 21.2125 8.1C21.7375 9.31667 22 10.6167 22 12C22 13.3833 21.7375 14.6833 21.2125 15.9C20.6875 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6875 15.9 21.2125C14.6833 21.7375 13.3833 22 12 22ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76667 19.225 7.875 17.675 6.325C16.125 4.775 14.2333 4 12 4C9.76667 4 7.875 4.775 6.325 6.325C4.775 7.875 4 9.76667 4 12C4 14.2333 4.775 16.125 6.325 17.675C7.875 19.225 9.76667 20 12 20Z" })
604
+ }
605
+ )
606
+ ), z = o(
607
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
608
+ "svg",
609
+ {
610
+ xmlns: "http://www.w3.org/2000/svg",
611
+ width: t,
612
+ height: t,
613
+ viewBox: "0 0 24 24",
614
+ fill: "currentColor",
615
+ ...h,
616
+ className: l,
617
+ children: /* @__PURE__ */ r(
618
+ "path",
619
+ {
620
+ d: "M3.5 21V17.5714H20.5V21H3.5ZM6.475 15L10.9375 3H13.0625L17.525 15H15.485L14.4225 11.9143H9.62L8.515 15H6.475ZM10.215 10.2H13.785L12.0425 5.22857H11.9575L10.215 10.2Z",
621
+ fill: "currentColor"
622
+ }
623
+ )
624
+ }
625
+ )
626
+ ), t0 = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
627
+ "svg",
628
+ {
629
+ xmlns: "http://www.w3.org/2000/svg",
630
+ width: t,
631
+ height: t,
632
+ viewBox: "0 -960 960 960",
633
+ fill: "currentColor",
634
+ ...h,
635
+ className: l,
636
+ children: /* @__PURE__ */ r(
637
+ "path",
638
+ {
639
+ d: "M286.5 -253.875L180 -360.375L222 -402.375L285.75 -338.625L413.25 -466.125L455.25 -423.375L286.5 -253.875ZM286.5 -493.875L180 -600.375L222 -642.375L285.75 -578.625L413.25 -706.125L455.25 -663.375L286.5 -493.875ZM510 -313.875V-373.875H780V-313.875H510ZM510 -553.875V-613.875H780V-553.875H510Z",
640
+ fill: "currentColor",
641
+ transform: "translate(480,-480) scale(1.45) translate(-480,480)"
642
+ }
643
+ )
644
+ }
645
+ )), r0 = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ n(
646
+ "svg",
647
+ {
648
+ xmlns: "http://www.w3.org/2000/svg",
649
+ width: t,
650
+ height: t,
651
+ viewBox: "0 -960 960 960",
652
+ fill: "currentColor",
653
+ ...h,
654
+ className: l,
655
+ children: [
656
+ /* @__PURE__ */ n("g", { transform: "translate(480,-480) scale(40,40) translate(-9,-9)", children: [
657
+ /* @__PURE__ */ r(
658
+ "path",
659
+ {
660
+ d: "M0.383945 8.89222C0.383523 10.4046 0.781773 11.8813 1.53904 13.1828L0.311523 17.63L4.89815 16.4367C6.16675 17.1219 7.58812 17.481 9.03252 17.4811H9.03632C13.8046 17.4811 17.686 13.6311 17.6881 8.89899C17.689 6.60594 16.7898 4.44971 15.1562 2.82748C13.5228 1.20538 11.3505 0.311593 9.03597 0.310547C4.26717 0.310547 0.385984 4.16031 0.384016 8.89222",
661
+ fill: "url(#paint0_linear_1569_263602)"
662
+ }
663
+ ),
664
+ /* @__PURE__ */ r(
665
+ "path",
666
+ {
667
+ d: "M0.0752344 8.88949C0.0747422 10.4563 0.487266 11.9858 1.27153 13.334L0 17.9405L4.75109 16.7044C6.06016 17.4126 7.53405 17.786 9.03382 17.7866H9.03769C13.977 17.7866 17.9979 13.7981 18 8.8966C18.0008 6.52116 17.0693 4.28742 15.3773 2.60707C13.6851 0.92693 11.4351 0.000976744 9.03769 0C4.09753 0 0.0772031 3.98791 0.0752344 8.88949ZM2.90468 13.1018L2.72728 12.8223C1.98155 11.6458 1.58794 10.2862 1.5885 8.89005C1.59005 4.81598 4.93158 1.5014 9.0405 1.5014C11.0303 1.50223 12.9004 2.27191 14.3069 3.66837C15.7134 5.06498 16.4873 6.92149 16.4868 8.89605C16.485 12.9701 13.1434 16.2851 9.03769 16.2851H9.03473C7.69788 16.2844 6.38677 15.9282 5.24334 15.255L4.97123 15.0949L2.15184 15.8284L2.90468 13.1018Z",
668
+ fill: "url(#paint1_linear_1569_263602)"
669
+ }
670
+ ),
671
+ /* @__PURE__ */ r(
672
+ "path",
673
+ {
674
+ d: "M6.79738 5.17316C6.62962 4.80318 6.45306 4.79572 6.29352 4.78923C6.16288 4.78365 6.01354 4.78406 5.86434 4.78406C5.71499 4.78406 5.47234 4.83981 5.26724 5.06202C5.06193 5.28444 4.4834 5.82193 4.4834 6.91511C4.4834 8.0083 5.28588 9.06486 5.39774 9.21325C5.50975 9.36137 6.94694 11.6765 9.22309 12.5672C11.1148 13.3073 11.4997 13.1601 11.9103 13.123C12.3209 13.086 13.2353 12.5857 13.4218 12.0668C13.6085 11.548 13.6085 11.1033 13.5525 11.0104C13.4965 10.9178 13.3472 10.8622 13.1233 10.7511C12.8993 10.6401 11.7983 10.1024 11.593 10.0283C11.3877 9.95418 11.2385 9.9172 11.0891 10.1397C10.9398 10.3618 10.5109 10.8622 10.3802 11.0104C10.2497 11.1589 10.1189 11.1774 9.89507 11.0663C9.67098 10.9548 8.94979 10.7204 8.09416 9.96353C7.42844 9.37455 6.979 8.64723 6.84836 8.42474C6.71772 8.2026 6.83437 8.08218 6.94666 7.97146C7.04727 7.8719 7.17067 7.712 7.28275 7.5823C7.39441 7.45253 7.43167 7.35995 7.50634 7.21176C7.58109 7.06344 7.54368 6.93367 7.48778 6.82253C7.43167 6.71139 6.99651 5.61248 6.79738 5.17316Z",
675
+ fill: "white"
676
+ }
677
+ )
678
+ ] }),
679
+ /* @__PURE__ */ n("defs", { children: [
680
+ /* @__PURE__ */ n(
681
+ "linearGradient",
682
+ {
683
+ id: "paint0_linear_1569_263602",
684
+ x1: "869.139",
685
+ y1: "1732.25",
686
+ x2: "869.139",
687
+ y2: "0.310547",
688
+ gradientUnits: "userSpaceOnUse",
689
+ children: [
690
+ /* @__PURE__ */ r("stop", { "stop-color": "#1FAF38" }),
691
+ /* @__PURE__ */ r("stop", { offset: "1", "stop-color": "#60D669" })
692
+ ]
693
+ }
694
+ ),
695
+ /* @__PURE__ */ n(
696
+ "linearGradient",
697
+ {
698
+ id: "paint1_linear_1569_263602",
699
+ x1: "900",
700
+ y1: "1794.05",
701
+ x2: "900",
702
+ y2: "0",
703
+ gradientUnits: "userSpaceOnUse",
704
+ children: [
705
+ /* @__PURE__ */ r("stop", { "stop-color": "#F9F9F9" }),
706
+ /* @__PURE__ */ r("stop", { offset: "1", "stop-color": "white" })
707
+ ]
708
+ }
709
+ ),
710
+ /* @__PURE__ */ r("clipPath", { id: "clip0_1569_263602", children: /* @__PURE__ */ r("rect", { width: "18", height: "18", fill: "white" }) })
711
+ ] })
712
+ ]
713
+ }
714
+ )), l0 = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
715
+ "svg",
716
+ {
717
+ xmlns: "http://www.w3.org/2000/svg",
718
+ width: t,
719
+ height: t,
720
+ viewBox: "0 -960 960 960",
721
+ fill: "currentColor",
722
+ ...h,
723
+ className: l,
724
+ children: /* @__PURE__ */ r(
725
+ "path",
726
+ {
727
+ d: "M2 16C1.45 16 0.979167 15.8042 0.5875 15.4125C0.195833 15.0208 0 14.55 0 14V2C0 1.45 0.195833 0.979167 0.5875 0.5875C0.979167 0.195833 1.45 0 2 0H18C18.55 0 19.0208 0.195833 19.4125 0.5875C19.8042 0.979167 20 1.45 20 2V14C20 14.55 19.8042 15.0208 19.4125 15.4125C19.0208 15.8042 18.55 16 18 16H2ZM10 9L2 4V14H18V4L10 9ZM10 7L18 2H2L10 7ZM2 4V2V14V4Z",
728
+ fill: "currentColor",
729
+ transform: "translate(480,-480) scale(40,40) translate(-10,-8)"
730
+ }
731
+ )
732
+ }
733
+ )), h0 = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
734
+ "svg",
735
+ {
736
+ xmlns: "http://www.w3.org/2000/svg",
737
+ width: t,
738
+ height: t,
739
+ viewBox: "0 -960 960 960",
740
+ fill: "currentColor",
741
+ ...h,
742
+ className: l,
743
+ children: /* @__PURE__ */ r(
744
+ "path",
745
+ {
746
+ d: "M2 20C1.45 20 0.979167 19.8042 0.5875 19.4125C0.195833 19.0208 0 18.55 0 18V2C0 1.45 0.195833 0.979167 0.5875 0.5875C0.979167 0.195833 1.45 0 2 0H10L16 6V18C16 18.55 15.8042 19.0208 15.4125 19.4125C15.0208 19.8042 14.55 20 14 20H2ZM9 7V2H2V18H14V7H9Z",
747
+ fill: "currentColor",
748
+ transform: "translate(480,-480) scale(40,40) translate(-8,-10)"
749
+ }
750
+ )
751
+ }
752
+ )), o0 = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
753
+ "svg",
754
+ {
755
+ xmlns: "http://www.w3.org/2000/svg",
756
+ width: t,
757
+ height: t,
758
+ viewBox: "0 -960 960 960",
759
+ fill: "currentColor",
760
+ ...h,
761
+ className: l,
762
+ children: /* @__PURE__ */ r(
763
+ "path",
764
+ {
765
+ d: "M8 12L3 7L4.4 5.55L7 8.15V0H9V8.15L11.6 5.55L13 7L8 12ZM2 16C1.45 16 0.979167 15.8042 0.5875 15.4125C0.195833 15.0208 0 14.55 0 14V11H2V14H14V11H16V14C16 14.55 15.8042 15.0208 15.4125 15.4125C15.0208 15.8042 14.55 16 14 16H2Z",
766
+ fill: "currentColor",
767
+ transform: "translate(480,-480) scale(40,40) translate(-8,-8)"
768
+ }
769
+ )
770
+ }
771
+ )), n0 = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
772
+ "svg",
773
+ {
774
+ xmlns: "http://www.w3.org/2000/svg",
775
+ width: t,
776
+ height: t,
777
+ viewBox: "0 -960 960 960",
778
+ fill: "currentColor",
779
+ ...h,
780
+ className: l,
781
+ children: /* @__PURE__ */ r(
782
+ "path",
783
+ {
784
+ d: "M9 21C7.75 21 6.57917 20.7625 5.4875 20.2875C4.39583 19.8125 3.44583 19.1708 2.6375 18.3625C1.82917 17.5542 1.1875 16.6042 0.7125 15.5125C0.2375 14.4208 0 13.25 0 12H2C2 13.95 2.67917 15.6042 4.0375 16.9625C5.39583 18.3208 7.05 19 9 19C10.95 19 12.6042 18.3208 13.9625 16.9625C15.3208 15.6042 16 13.95 16 12C16 10.05 15.3208 8.39583 13.9625 7.0375C12.6042 5.67917 10.95 5 9 5H8.85L10.4 6.55L9 8L5 4L9 0L10.4 1.45L8.85 3H9C10.25 3 11.4208 3.2375 12.5125 3.7125C13.6042 4.1875 14.5542 4.82917 15.3625 5.6375C16.1708 6.44583 16.8125 7.39583 17.2875 8.4875C17.7625 9.57917 18 10.75 18 12C18 13.25 17.7625 14.4208 17.2875 15.5125C16.8125 16.6042 16.1708 17.5542 15.3625 18.3625C14.5542 19.1708 13.6042 19.8125 12.5125 20.2875C11.4208 20.7625 10.25 21 9 21Z",
785
+ fill: "currentColor",
786
+ transform: "translate(480,-480) scale(40,40) translate(-9,-10.5)"
787
+ }
788
+ )
789
+ }
790
+ )), e0 = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
791
+ "svg",
792
+ {
793
+ xmlns: "http://www.w3.org/2000/svg",
794
+ width: t,
795
+ height: t,
796
+ viewBox: "0 -960 960 960",
797
+ fill: "currentColor",
798
+ ...h,
799
+ className: l,
800
+ children: /* @__PURE__ */ r(
801
+ "path",
802
+ {
803
+ d: "M2 18C1.45 18 0.979167 17.8042 0.5875 17.4125C0.195833 17.0208 0 16.55 0 16V2C0 1.45 0.195833 0.979167 0.5875 0.5875C0.979167 0.195833 1.45 0 2 0H16C16.55 0 17.0208 0.195833 17.4125 0.5875C17.8042 0.979167 18 1.45 18 2V16C18 16.55 17.8042 17.0208 17.4125 17.4125C17.0208 17.8042 16.55 18 16 18H2ZM2 16H16V2H2V16ZM3 14H15L11.25 9L8.25 13L6 10L3 14ZM5.5 7C5.91667 7 6.27083 6.85417 6.5625 6.5625C6.85417 6.27083 7 5.91667 7 5.5C7 5.08333 6.85417 4.72917 6.5625 4.4375C6.27083 4.14583 5.91667 4 5.5 4C5.08333 4 4.72917 4.14583 4.4375 4.4375C4.14583 4.72917 4 5.08333 4 5.5C4 5.91667 4.14583 6.27083 4.4375 6.5625C4.72917 6.85417 5.08333 7 5.5 7Z",
804
+ fill: "currentColor",
805
+ transform: "translate(480,-480) scale(48,48) translate(-9,-9)"
806
+ }
807
+ )
808
+ }
809
+ )), w0 = o(
810
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
811
+ "svg",
812
+ {
813
+ xmlns: "http://www.w3.org/2000/svg",
814
+ width: t,
815
+ height: t,
816
+ viewBox: "0 -960 960 960",
817
+ fill: "currentColor",
818
+ ...h,
819
+ className: l,
820
+ children: /* @__PURE__ */ r(
821
+ "path",
822
+ {
823
+ d: "M1.33333 13.3333C0.966667 13.3333 0.652778 13.2028 0.391667 12.9417C0.130556 12.6806 0 12.3667 0 12V1.33333C0 0.966667 0.130556 0.652778 0.391667 0.391667C0.652778 0.130556 0.966667 0 1.33333 0H6.66667L10.6667 4V12C10.6667 12.3667 10.5361 12.6806 10.275 12.9417C10.0139 13.2028 9.7 13.3333 9.33333 13.3333H1.33333ZM6 4.66667H9.33333L6 1.33333V4.66667Z",
824
+ fill: "currentColor",
825
+ transform: "translate(480,-480) scale(48,48) translate(-5.3333,-6.6667)"
826
+ }
827
+ )
828
+ }
829
+ )
830
+ ), q0 = o(
831
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
832
+ "svg",
833
+ {
834
+ xmlns: "http://www.w3.org/2000/svg",
835
+ width: t,
836
+ height: t,
837
+ viewBox: "0 -960 960 960",
838
+ fill: "currentColor",
839
+ ...h,
840
+ className: l,
841
+ children: /* @__PURE__ */ r(
842
+ "path",
843
+ {
844
+ d: "M0 13.3333V1.33333C0 0.966667 0.130556 0.652778 0.391667 0.391667C0.652778 0.130556 0.966667 0 1.33333 0H12C12.3667 0 12.6806 0.130556 12.9417 0.391667C13.2028 0.652778 13.3333 0.966667 13.3333 1.33333V9.33333C13.3333 9.7 13.2028 10.0139 12.9417 10.275C12.6806 10.5361 12.3667 10.6667 12 10.6667H2.66667L0 13.3333Z",
845
+ fill: "currentColor",
846
+ transform: "translate(480,-480) scale(48,48) translate(-6.6667,-6.6667)"
847
+ }
848
+ )
849
+ }
850
+ )
851
+ ), v0 = o(
852
+ ({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
853
+ "svg",
854
+ {
855
+ xmlns: "http://www.w3.org/2000/svg",
856
+ width: t,
857
+ height: t,
858
+ viewBox: "0 -960 960 960",
859
+ fill: "currentColor",
860
+ ...h,
861
+ className: l,
862
+ children: /* @__PURE__ */ r(
863
+ "path",
864
+ {
865
+ d: "M11.3333 6.66667V4.66667H9.33333V3.33333H11.3333V1.33333H12.6667V3.33333H14.6667V4.66667H12.6667V6.66667H11.3333ZM5.33333 5.33333C4.6 5.33333 3.97222 5.07222 3.45 4.55C2.92778 4.02778 2.66667 3.4 2.66667 2.66667C2.66667 1.93333 2.92778 1.30556 3.45 0.783333C3.97222 0.261111 4.6 0 5.33333 0C6.06667 0 6.69444 0.261111 7.21667 0.783333C7.73889 1.30556 8 1.93333 8 2.66667C8 3.4 7.73889 4.02778 7.21667 4.55C6.69444 5.07222 6.06667 5.33333 5.33333 5.33333ZM0 10.6667V8.8C0 8.42222 0.0972222 8.075 0.291667 7.75833C0.486111 7.44167 0.744444 7.2 1.06667 7.03333C1.75556 6.68889 2.45556 6.43056 3.16667 6.25833C3.87778 6.08611 4.6 6 5.33333 6C6.06667 6 6.78889 6.08611 7.5 6.25833C8.21111 6.43056 8.91111 6.68889 9.6 7.03333C9.92222 7.2 10.1806 7.44167 10.375 7.75833C10.5694 8.075 10.6667 8.42222 10.6667 8.8V10.6667H0Z",
866
+ fill: "currentColor",
867
+ transform: "translate(480,-480) scale(48,48) translate(-7.3333,-5.3333)"
868
+ }
869
+ )
870
+ }
871
+ )
872
+ ), i0 = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
873
+ "svg",
874
+ {
875
+ xmlns: "http://www.w3.org/2000/svg",
876
+ width: t,
877
+ height: t,
878
+ viewBox: "0 -960 960 960",
879
+ fill: "currentColor",
880
+ ...h,
881
+ className: l,
882
+ children: /* @__PURE__ */ r(
883
+ "path",
884
+ {
885
+ d: "M0 12V9.16667L8.8 0.383333C8.93333 0.261111 9.08056 0.166667 9.24167 0.1C9.40278 0.0333333 9.57222 0 9.75 0C9.92778 0 10.1 0.0333333 10.2667 0.1C10.4333 0.166667 10.5778 0.266667 10.7 0.4L11.6167 1.33333C11.75 1.45556 11.8472 1.6 11.9083 1.76667C11.9694 1.93333 12 2.1 12 2.26667C12 2.44444 11.9694 2.61389 11.9083 2.775C11.8472 2.93611 11.75 3.08333 11.6167 3.21667L2.83333 12H0ZM9.73333 3.2L10.6667 2.26667L9.73333 1.33333L8.8 2.26667L9.73333 3.2Z",
886
+ fill: "currentColor",
887
+ transform: "translate(480,-480) scale(48,48) translate(-6,-6)"
888
+ }
889
+ )
890
+ }
891
+ )), s0 = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
892
+ "svg",
893
+ {
894
+ xmlns: "http://www.w3.org/2000/svg",
895
+ width: t,
896
+ height: t,
897
+ viewBox: "0 -960 960 960",
898
+ fill: "currentColor",
899
+ ...h,
900
+ className: l,
901
+ children: /* @__PURE__ */ r(
902
+ "path",
903
+ {
904
+ d: "M2 12C1.63333 12 1.31944 11.8694 1.05833 11.6083C0.797222 11.3472 0.666667 11.0333 0.666667 10.6667V2H0V0.666667H3.33333V0H7.33333V0.666667H10.6667V2H10V10.6667C10 11.0333 9.86944 11.3472 9.60833 11.6083C9.34722 11.8694 9.03333 12 8.66667 12H2ZM3.33333 9.33333H4.66667V3.33333H3.33333V9.33333ZM6 9.33333H7.33333V3.33333H6V9.33333Z",
905
+ fill: "currentColor",
906
+ transform: "translate(480,-480) scale(48,48) translate(-5.3333,-6)"
907
+ }
908
+ )
909
+ }
910
+ )), T0 = o(({ size: t = 24, className: l, ...h }) => /* @__PURE__ */ r(
911
+ "svg",
912
+ {
913
+ xmlns: "http://www.w3.org/2000/svg",
914
+ width: t,
915
+ height: t,
916
+ viewBox: "0 -960 960 960",
917
+ fill: "currentColor",
918
+ ...h,
919
+ className: l,
920
+ children: /* @__PURE__ */ r(
921
+ "path",
922
+ {
923
+ d: "M0 12V0H6.66667V2.66667H13.3333V8H12V4H6.66667V5.33333H8V6.66667H6.66667V8H8V9.33333H6.66667V10.6667H9.33333V12H0ZM1.33333 10.6667H2.66667V9.33333H1.33333V10.6667ZM1.33333 8H2.66667V6.66667H1.33333V8ZM1.33333 5.33333H2.66667V4H1.33333V5.33333ZM1.33333 2.66667H2.66667V1.33333H1.33333V2.66667ZM4 10.6667H5.33333V9.33333H4V10.6667ZM4 8H5.33333V6.66667H4V8ZM4 5.33333H5.33333V4H4V5.33333ZM4 2.66667H5.33333V1.33333H4V2.66667ZM12 13.3333V12H10.6667V10.6667H12V9.33333H13.3333V10.6667H14.6667V12H13.3333V13.3333H12ZM9.33333 6.66667V5.33333H10.6667V6.66667H9.33333ZM9.33333 9.33333V8H10.6667V9.33333H9.33333Z",
924
+ fill: "currentColor",
925
+ transform: "translate(480,-480) scale(48,48) translate(-7.3333,-6.6667)"
926
+ }
927
+ )
928
+ }
929
+ )), C0 = {
930
+ Ticket: w,
931
+ Home: v,
932
+ Boards: i,
933
+ Notifications: s,
934
+ Help: T,
935
+ Settings: C,
936
+ CrevronLeft: g,
937
+ CrevronRight: c,
938
+ ArrowLeft: d,
939
+ Shared: Z,
940
+ ChevronDown: a,
941
+ Collapse: m,
942
+ Calendar: p,
943
+ Close: u,
944
+ UserPerson: H,
945
+ Logout: x,
946
+ ArrowUpDown: M,
947
+ Filter: L,
948
+ Search: f,
949
+ Stars: V,
950
+ MoreVert: B,
951
+ Add: _,
952
+ Edit: F,
953
+ Upload: y,
954
+ Copy: k,
955
+ FaLock: U,
956
+ AccountCircle: A,
957
+ UserAdd: S,
958
+ AttachFile: D,
959
+ HistoryActivity: E,
960
+ MessageSquare: I,
961
+ CloseNavBarDesktop: O,
962
+ EyeVisibility: b,
963
+ EyeVisibilityOff: j,
964
+ Check: N,
965
+ Info: P,
966
+ Error: G,
967
+ TicketFilled: q,
968
+ UploadCloud: R,
969
+ Clock: W,
970
+ Pause: $,
971
+ FastForward: J,
972
+ Trash: K,
973
+ Sort: Q,
974
+ Cancel: X,
975
+ CheckCircle: Y,
976
+ FormatColorText: z,
977
+ CheckList: t0,
978
+ WhatsApp: r0,
979
+ File: h0,
980
+ Email: l0,
981
+ Download: o0,
982
+ Reload: n0,
983
+ Image: e0,
984
+ DocumentFill: w0,
985
+ Company: T0,
986
+ EditFill: i0,
987
+ TrashFill: s0,
988
+ MessageSquareFill: q0,
989
+ UserAddFill: v0
990
+ };
991
+ for (const [t, l] of Object.entries(C0))
992
+ l.displayName = `${t}_Icon`;
993
+ export {
994
+ A as AccountCircle,
995
+ _ as Add,
996
+ d as ArrowLeft,
997
+ M as ArrowUpDown,
998
+ D as AttachFile,
999
+ i as Boards,
1000
+ p as Calendar,
1001
+ X as Cancel,
1002
+ N as Check,
1003
+ Y as CheckCircle,
1004
+ t0 as CheckList,
1005
+ a as ChevronDown,
1006
+ W as Clock,
1007
+ u as Close,
1008
+ O as CloseNavBarDesktop,
1009
+ m as Collapse,
1010
+ T0 as Company,
1011
+ k as Copy,
1012
+ g as CrevronLeft,
1013
+ c as CrevronRight,
1014
+ w0 as DocumentFill,
1015
+ o0 as Download,
1016
+ F as Edit,
1017
+ i0 as EditFill,
1018
+ l0 as Email,
1019
+ G as Error,
1020
+ b as EyeVisibility,
1021
+ j as EyeVisibilityOff,
1022
+ U as FaLock,
1023
+ J as FastForward,
1024
+ h0 as File,
1025
+ L as Filter,
1026
+ z as FormatColorText,
1027
+ T as Help,
1028
+ E as HistoryActivity,
1029
+ v as Home,
1030
+ C0 as Icons,
1031
+ e0 as Image,
1032
+ P as Info,
1033
+ x as Logout,
1034
+ I as MessageSquare,
1035
+ q0 as MessageSquareFill,
1036
+ B as MoreVert,
1037
+ s as Notifications,
1038
+ $ as Pause,
1039
+ n0 as Reload,
1040
+ f as Search,
1041
+ C as Settings,
1042
+ Z as Shared,
1043
+ Q as Sort,
1044
+ V as Stars,
1045
+ w as Ticket,
1046
+ q as TicketFilled,
1047
+ K as Trash,
1048
+ s0 as TrashFill,
1049
+ y as Upload,
1050
+ R as UploadCloud,
1051
+ S as UserAdd,
1052
+ v0 as UserAddFill,
1053
+ H as UserPerson,
1054
+ r0 as WhatsApp
1055
+ };