@edifice.io/react 1.7.4-develop-pedago.20241211160712

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 (1334) hide show
  1. package/LICENSE +661 -0
  2. package/README.md +110 -0
  3. package/dist/audience.js +16 -0
  4. package/dist/comments.js +4 -0
  5. package/dist/components/ActionBar/ActionBar.d.ts +9 -0
  6. package/dist/components/ActionBar/ActionBar.js +8 -0
  7. package/dist/components/ActionBar/index.d.ts +2 -0
  8. package/dist/components/Alert/Alert.d.ts +60 -0
  9. package/dist/components/Alert/Alert.js +81 -0
  10. package/dist/components/Alert/index.d.ts +2 -0
  11. package/dist/components/AppHeader/AppHeader.d.ts +17 -0
  12. package/dist/components/AppHeader/AppHeader.js +22 -0
  13. package/dist/components/AppHeader/index.d.ts +2 -0
  14. package/dist/components/AppIcon/AppIcon.d.ts +45 -0
  15. package/dist/components/AppIcon/AppIcon.js +51 -0
  16. package/dist/components/AppIcon/index.d.ts +1 -0
  17. package/dist/components/Attachment/Attachment.d.ts +14 -0
  18. package/dist/components/Attachment/Attachment.js +18 -0
  19. package/dist/components/Attachment/index.d.ts +2 -0
  20. package/dist/components/Avatar/Avatar.d.ts +31 -0
  21. package/dist/components/Avatar/Avatar.js +33 -0
  22. package/dist/components/Avatar/index.d.ts +2 -0
  23. package/dist/components/Badge/Badge.d.ts +49 -0
  24. package/dist/components/Badge/Badge.js +18 -0
  25. package/dist/components/Badge/index.d.ts +2 -0
  26. package/dist/components/Breadcrumb/Breadcrumb.d.ts +13 -0
  27. package/dist/components/Breadcrumb/Breadcrumb.js +28 -0
  28. package/dist/components/Breadcrumb/BreadcrumbItem.d.ts +13 -0
  29. package/dist/components/Breadcrumb/BreadcrumbItem.js +14 -0
  30. package/dist/components/Breadcrumb/BreadcrumbList.d.ts +13 -0
  31. package/dist/components/Breadcrumb/BreadcrumbList.js +13 -0
  32. package/dist/components/Breadcrumb/BreadcrumbNav.d.ts +18 -0
  33. package/dist/components/Breadcrumb/BreadcrumbNav.js +22 -0
  34. package/dist/components/Breadcrumb/index.d.ts +2 -0
  35. package/dist/components/Button/Button.d.ts +63 -0
  36. package/dist/components/Button/Button.js +35 -0
  37. package/dist/components/Button/IconButton.d.ts +11 -0
  38. package/dist/components/Button/IconButton.js +18 -0
  39. package/dist/components/Button/SearchButton.d.ts +21 -0
  40. package/dist/components/Button/SearchButton.js +17 -0
  41. package/dist/components/Button/index.d.ts +6 -0
  42. package/dist/components/Card/Card.d.ts +87 -0
  43. package/dist/components/Card/Card.js +53 -0
  44. package/dist/components/Card/CardBody.d.ts +10 -0
  45. package/dist/components/Card/CardBody.js +18 -0
  46. package/dist/components/Card/CardContext.d.ts +12 -0
  47. package/dist/components/Card/CardContext.js +11 -0
  48. package/dist/components/Card/CardFooter.d.ts +8 -0
  49. package/dist/components/Card/CardFooter.js +7 -0
  50. package/dist/components/Card/CardHeader.d.ts +5 -0
  51. package/dist/components/Card/CardHeader.js +22 -0
  52. package/dist/components/Card/CardImage.d.ts +9 -0
  53. package/dist/components/Card/CardImage.js +21 -0
  54. package/dist/components/Card/CardText.d.ts +9 -0
  55. package/dist/components/Card/CardText.js +12 -0
  56. package/dist/components/Card/CardTitle.d.ts +9 -0
  57. package/dist/components/Card/CardTitle.js +12 -0
  58. package/dist/components/Card/CardUser.d.ts +8 -0
  59. package/dist/components/Card/CardUser.js +10 -0
  60. package/dist/components/Card/index.d.ts +2 -0
  61. package/dist/components/Checkbox/Checkbox.d.ts +20 -0
  62. package/dist/components/Checkbox/Checkbox.js +35 -0
  63. package/dist/components/Checkbox/index.d.ts +2 -0
  64. package/dist/components/ColorPicker/ColorPalette.d.ts +46 -0
  65. package/dist/components/ColorPicker/ColorPalette.js +171 -0
  66. package/dist/components/ColorPicker/ColorPicker.d.ts +18 -0
  67. package/dist/components/ColorPicker/ColorPicker.js +38 -0
  68. package/dist/components/ColorPicker/ColorPickerItem.d.ts +20 -0
  69. package/dist/components/ColorPicker/ColorPickerItem.js +13 -0
  70. package/dist/components/ColorPicker/index.d.ts +5 -0
  71. package/dist/components/Combobox/Combobox.d.ts +31 -0
  72. package/dist/components/Combobox/Combobox.js +40 -0
  73. package/dist/components/Combobox/ComboboxTrigger.d.ts +9 -0
  74. package/dist/components/Combobox/ComboboxTrigger.js +30 -0
  75. package/dist/components/Combobox/index.d.ts +2 -0
  76. package/dist/components/Dropdown/Dropdown.d.ts +79 -0
  77. package/dist/components/Dropdown/Dropdown.js +60 -0
  78. package/dist/components/Dropdown/DropdownCheckboxItem.d.ts +24 -0
  79. package/dist/components/Dropdown/DropdownCheckboxItem.js +34 -0
  80. package/dist/components/Dropdown/DropdownContext.d.ts +8 -0
  81. package/dist/components/Dropdown/DropdownContext.js +11 -0
  82. package/dist/components/Dropdown/DropdownItem.d.ts +29 -0
  83. package/dist/components/Dropdown/DropdownItem.js +33 -0
  84. package/dist/components/Dropdown/DropdownMenu.d.ts +35 -0
  85. package/dist/components/Dropdown/DropdownMenu.js +26 -0
  86. package/dist/components/Dropdown/DropdownMenuGroup.d.ts +13 -0
  87. package/dist/components/Dropdown/DropdownMenuGroup.js +12 -0
  88. package/dist/components/Dropdown/DropdownRadioItem.d.ts +24 -0
  89. package/dist/components/Dropdown/DropdownRadioItem.js +34 -0
  90. package/dist/components/Dropdown/DropdownSeparator.d.ts +5 -0
  91. package/dist/components/Dropdown/DropdownSeparator.js +5 -0
  92. package/dist/components/Dropdown/DropdownTrigger.d.ts +37 -0
  93. package/dist/components/Dropdown/DropdownTrigger.js +34 -0
  94. package/dist/components/Dropdown/index.d.ts +2 -0
  95. package/dist/components/Dropzone/Dropzone.d.ts +52 -0
  96. package/dist/components/Dropzone/Dropzone.js +55 -0
  97. package/dist/components/Dropzone/DropzoneContext.d.ts +9 -0
  98. package/dist/components/Dropzone/DropzoneContext.js +12 -0
  99. package/dist/components/Dropzone/DropzoneDrag.d.ts +5 -0
  100. package/dist/components/Dropzone/DropzoneDrag.js +11 -0
  101. package/dist/components/Dropzone/DropzoneFile.d.ts +9 -0
  102. package/dist/components/Dropzone/DropzoneFile.js +30 -0
  103. package/dist/components/Dropzone/DropzoneImport.d.ts +5 -0
  104. package/dist/components/Dropzone/DropzoneImport.js +28 -0
  105. package/dist/components/Dropzone/index.d.ts +3 -0
  106. package/dist/components/EmptyScreen/EmptyScreen.d.ts +31 -0
  107. package/dist/components/EmptyScreen/EmptyScreen.js +21 -0
  108. package/dist/components/EmptyScreen/index.d.ts +2 -0
  109. package/dist/components/Form/FormContext.d.ts +6 -0
  110. package/dist/components/Form/FormContext.js +11 -0
  111. package/dist/components/Form/FormControl.d.ts +42 -0
  112. package/dist/components/Form/FormControl.js +32 -0
  113. package/dist/components/Form/FormText.d.ts +8 -0
  114. package/dist/components/Form/FormText.js +17 -0
  115. package/dist/components/Form/index.d.ts +3 -0
  116. package/dist/components/Grid/Grid.d.ts +56 -0
  117. package/dist/components/Grid/Grid.js +32 -0
  118. package/dist/components/Grid/index.d.ts +1 -0
  119. package/dist/components/Heading/Heading.d.ts +27 -0
  120. package/dist/components/Heading/Heading.js +16 -0
  121. package/dist/components/Heading/index.d.ts +2 -0
  122. package/dist/components/Image/Image.d.ts +28 -0
  123. package/dist/components/Image/Image.js +41 -0
  124. package/dist/components/Image/index.d.ts +2 -0
  125. package/dist/components/Input/Input.d.ts +33 -0
  126. package/dist/components/Input/Input.js +31 -0
  127. package/dist/components/Input/index.d.ts +2 -0
  128. package/dist/components/Label/Label.d.ts +26 -0
  129. package/dist/components/Label/Label.js +37 -0
  130. package/dist/components/Label/index.d.ts +2 -0
  131. package/dist/components/Layout/Layout.d.ts +12 -0
  132. package/dist/components/Layout/Layout.js +44 -0
  133. package/dist/components/Layout/components/Header.d.ts +9 -0
  134. package/dist/components/Layout/components/Header.js +189 -0
  135. package/dist/components/Layout/components/Help.d.ts +8 -0
  136. package/dist/components/Layout/components/Help.js +25 -0
  137. package/dist/components/Layout/components/Main.d.ts +16 -0
  138. package/dist/components/Layout/components/NavItem.d.ts +6 -0
  139. package/dist/components/Layout/components/NavItem.js +14 -0
  140. package/dist/components/Layout/components/NavLink.d.ts +24 -0
  141. package/dist/components/Layout/components/NavLink.js +19 -0
  142. package/dist/components/Layout/components/Navbar.d.ts +6 -0
  143. package/dist/components/Layout/components/Navbar.js +13 -0
  144. package/dist/components/Layout/components/NavbarNav.d.ts +6 -0
  145. package/dist/components/Layout/components/NavbarNav.js +13 -0
  146. package/dist/components/Layout/components/SearchEngine.d.ts +5 -0
  147. package/dist/components/Layout/components/SearchEngine.js +33 -0
  148. package/dist/components/Layout/components/WidgetApps.d.ts +9 -0
  149. package/dist/components/Layout/components/WidgetApps.js +23 -0
  150. package/dist/components/Layout/hooks/index.d.ts +2 -0
  151. package/dist/components/Layout/hooks/useHeader.d.ts +5 -0
  152. package/dist/components/Layout/hooks/useHelp.d.ts +9 -0
  153. package/dist/components/Layout/hooks/useHelp.js +85 -0
  154. package/dist/components/Layout/index.d.ts +1 -0
  155. package/dist/components/List/List.d.ts +23 -0
  156. package/dist/components/List/List.js +50 -0
  157. package/dist/components/List/index.d.ts +1 -0
  158. package/dist/components/Loading/Loading.d.ts +29 -0
  159. package/dist/components/Loading/Loading.js +27 -0
  160. package/dist/components/Loading/index.d.ts +2 -0
  161. package/dist/components/LoadingScreen/LoadingScreen.d.ts +6 -0
  162. package/dist/components/LoadingScreen/LoadingScreen.js +25 -0
  163. package/dist/components/LoadingScreen/index.d.ts +1 -0
  164. package/dist/components/Logo/Logo.d.ts +7 -0
  165. package/dist/components/Logo/Logo.js +14 -0
  166. package/dist/components/Logo/index.d.ts +2 -0
  167. package/dist/components/Menu/components/Menu.d.ts +14 -0
  168. package/dist/components/Menu/components/Menu.js +27 -0
  169. package/dist/components/Menu/components/MenuButton.d.ts +5 -0
  170. package/dist/components/Menu/components/MenuButton.js +21 -0
  171. package/dist/components/Menu/components/MenuContext.d.ts +10 -0
  172. package/dist/components/Menu/components/MenuContext.js +12 -0
  173. package/dist/components/Menu/components/MenuItem.d.ts +4 -0
  174. package/dist/components/Menu/components/MenuItem.js +19 -0
  175. package/dist/components/Menu/hooks/useMenu.d.ts +9 -0
  176. package/dist/components/Menu/hooks/useMenu.js +50 -0
  177. package/dist/components/Menu/index.d.ts +2 -0
  178. package/dist/components/Modal/Modal.d.ts +55 -0
  179. package/dist/components/Modal/Modal.js +72 -0
  180. package/dist/components/Modal/ModalBody.d.ts +19 -0
  181. package/dist/components/Modal/ModalBody.js +15 -0
  182. package/dist/components/Modal/ModalContext.d.ts +7 -0
  183. package/dist/components/Modal/ModalContext.js +15 -0
  184. package/dist/components/Modal/ModalFooter.d.ts +12 -0
  185. package/dist/components/Modal/ModalFooter.js +5 -0
  186. package/dist/components/Modal/ModalHeader.d.ts +19 -0
  187. package/dist/components/Modal/ModalHeader.js +27 -0
  188. package/dist/components/Modal/ModalSubtitle.d.ts +12 -0
  189. package/dist/components/Modal/ModalSubtitle.js +5 -0
  190. package/dist/components/Modal/index.d.ts +2 -0
  191. package/dist/components/Popover/Popover.d.ts +33 -0
  192. package/dist/components/Popover/Popover.js +51 -0
  193. package/dist/components/Popover/index.d.ts +1 -0
  194. package/dist/components/Radio/Radio.d.ts +25 -0
  195. package/dist/components/Radio/Radio.js +31 -0
  196. package/dist/components/Radio/index.d.ts +2 -0
  197. package/dist/components/SearchBar/SearchBar.d.ts +51 -0
  198. package/dist/components/SearchBar/SearchBar.js +36 -0
  199. package/dist/components/SearchBar/index.d.ts +2 -0
  200. package/dist/components/Select/Select.d.ts +39 -0
  201. package/dist/components/Select/Select.js +37 -0
  202. package/dist/components/Select/SelectTrigger.d.ts +8 -0
  203. package/dist/components/Select/SelectTrigger.js +6 -0
  204. package/dist/components/Select/index.d.ts +2 -0
  205. package/dist/components/Table/components/Table.d.ts +30 -0
  206. package/dist/components/Table/components/Table.js +19 -0
  207. package/dist/components/Table/components/TableTbody.d.ts +6 -0
  208. package/dist/components/Table/components/TableTbody.js +11 -0
  209. package/dist/components/Table/components/TableTd.d.ts +4 -0
  210. package/dist/components/Table/components/TableTd.js +11 -0
  211. package/dist/components/Table/components/TableTh.d.ts +4 -0
  212. package/dist/components/Table/components/TableTh.js +11 -0
  213. package/dist/components/Table/components/TableThead.d.ts +4 -0
  214. package/dist/components/Table/components/TableThead.js +11 -0
  215. package/dist/components/Table/components/TableTr.d.ts +4 -0
  216. package/dist/components/Table/components/TableTr.js +11 -0
  217. package/dist/components/Table/index.d.ts +2 -0
  218. package/dist/components/Tabs/components/Tabs.d.ts +42 -0
  219. package/dist/components/Tabs/components/Tabs.js +45 -0
  220. package/dist/components/Tabs/components/TabsItem.d.ts +26 -0
  221. package/dist/components/Tabs/components/TabsItem.js +26 -0
  222. package/dist/components/Tabs/components/TabsList.d.ts +6 -0
  223. package/dist/components/Tabs/components/TabsList.js +24 -0
  224. package/dist/components/Tabs/components/TabsPanel.d.ts +17 -0
  225. package/dist/components/Tabs/components/TabsPanel.js +14 -0
  226. package/dist/components/Tabs/context/TabsContext.d.ts +12 -0
  227. package/dist/components/Tabs/context/TabsContext.js +12 -0
  228. package/dist/components/Tabs/hooks/useTabs.d.ts +15 -0
  229. package/dist/components/Tabs/hooks/useTabs.js +61 -0
  230. package/dist/components/Tabs/index.d.ts +2 -0
  231. package/dist/components/TextArea/TextArea.d.ts +33 -0
  232. package/dist/components/TextArea/TextArea.js +34 -0
  233. package/dist/components/TextArea/TextareaCounter.d.ts +4 -0
  234. package/dist/components/TextArea/TextareaCounter.js +8 -0
  235. package/dist/components/TextArea/index.d.ts +2 -0
  236. package/dist/components/Toolbar/Toolbar.d.ts +76 -0
  237. package/dist/components/Toolbar/Toolbar.js +78 -0
  238. package/dist/components/Toolbar/index.d.ts +1 -0
  239. package/dist/components/Tooltip/Tooltip.d.ts +22 -0
  240. package/dist/components/Tooltip/Tooltip.js +41 -0
  241. package/dist/components/Tooltip/index.d.ts +2 -0
  242. package/dist/components/Tree/components/DndTree.d.ts +3 -0
  243. package/dist/components/Tree/components/DndTree.js +61 -0
  244. package/dist/components/Tree/components/SortableTree.d.ts +9 -0
  245. package/dist/components/Tree/components/SortableTree.js +138 -0
  246. package/dist/components/Tree/components/Tree.d.ts +7 -0
  247. package/dist/components/Tree/components/Tree.js +86 -0
  248. package/dist/components/Tree/hooks/useTree.d.ts +31 -0
  249. package/dist/components/Tree/hooks/useTree.js +85 -0
  250. package/dist/components/Tree/hooks/useTreeSortable.d.ts +38 -0
  251. package/dist/components/Tree/hooks/useTreeSortable.js +202 -0
  252. package/dist/components/Tree/index.d.ts +6 -0
  253. package/dist/components/Tree/types/index.d.ts +174 -0
  254. package/dist/components/Tree/utilities/tree-sortable.d.ts +30 -0
  255. package/dist/components/Tree/utilities/tree-sortable.js +160 -0
  256. package/dist/components/Tree/utilities/tree.d.ts +34 -0
  257. package/dist/components/Tree/utilities/tree.js +44 -0
  258. package/dist/components/TreeView/TreeNode.d.ts +48 -0
  259. package/dist/components/TreeView/TreeNode.js +69 -0
  260. package/dist/components/TreeView/TreeView.d.ts +56 -0
  261. package/dist/components/TreeView/TreeView.js +37 -0
  262. package/dist/components/TreeView/hooks/useTreeView.d.ts +33 -0
  263. package/dist/components/TreeView/hooks/useTreeView.js +105 -0
  264. package/dist/components/TreeView/index.d.ts +5 -0
  265. package/dist/components/TreeView/utilities/index.d.ts +1 -0
  266. package/dist/components/TreeView/utilities/treeview.d.ts +35 -0
  267. package/dist/components/TreeView/utilities/treeview.js +177 -0
  268. package/dist/components/VisuallyHidden/VisuallyHidden.d.ts +6 -0
  269. package/dist/components/VisuallyHidden/VisuallyHidden.js +8 -0
  270. package/dist/components/VisuallyHidden/index.d.ts +1 -0
  271. package/dist/components/index.d.ts +41 -0
  272. package/dist/editor.js +58 -0
  273. package/dist/hooks/index.d.ts +39 -0
  274. package/dist/hooks/useAvatar/index.d.ts +1 -0
  275. package/dist/hooks/useAvatar/useAvatar.d.ts +6 -0
  276. package/dist/hooks/useAvatar/useAvatar.js +30 -0
  277. package/dist/hooks/useBookmark/index.d.ts +1 -0
  278. package/dist/hooks/useBookmark/useBookmark.d.ts +2 -0
  279. package/dist/hooks/useBookmark/useBookmark.js +14 -0
  280. package/dist/hooks/useBreakpoint/index.d.ts +1 -0
  281. package/dist/hooks/useBreakpoint/useBreakpoint.d.ts +20 -0
  282. package/dist/hooks/useBreakpoint/useBreakpoint.js +14 -0
  283. package/dist/hooks/useBrowserInfo/index.d.ts +1 -0
  284. package/dist/hooks/useBrowserInfo/useBrowserInfo.d.ts +9 -0
  285. package/dist/hooks/useBrowserInfo/useBrowserInfo.js +16 -0
  286. package/dist/hooks/useCantoo/index.d.ts +1 -0
  287. package/dist/hooks/useCantoo/useCantoo.d.ts +1 -0
  288. package/dist/hooks/useCantoo/useCantoo.js +18 -0
  289. package/dist/hooks/useCheckable/index.d.ts +1 -0
  290. package/dist/hooks/useCheckable/useCheckable.d.ts +9 -0
  291. package/dist/hooks/useCheckable/useCheckable.js +21 -0
  292. package/dist/hooks/useClickOutside/index.d.ts +1 -0
  293. package/dist/hooks/useClickOutside/useClickOutside.d.ts +1 -0
  294. package/dist/hooks/useClickOutside/useClickOutside.js +26 -0
  295. package/dist/hooks/useConf/index.d.ts +1 -0
  296. package/dist/hooks/useConf/useConf.d.ts +4 -0
  297. package/dist/hooks/useConf/useConf.js +13 -0
  298. package/dist/hooks/useConversation/index.d.ts +1 -0
  299. package/dist/hooks/useConversation/useConversation.d.ts +6 -0
  300. package/dist/hooks/useConversation/useConversation.js +43 -0
  301. package/dist/hooks/useCookiesConsent/index.d.ts +1 -0
  302. package/dist/hooks/useCookiesConsent/useCookiesConsent.d.ts +5 -0
  303. package/dist/hooks/useCookiesConsent/useCookiesConsent.js +29 -0
  304. package/dist/hooks/useDate/index.d.ts +2 -0
  305. package/dist/hooks/useDate/useDate.d.ts +14 -0
  306. package/dist/hooks/useDate/useDate.js +65 -0
  307. package/dist/hooks/useDebounce/index.d.ts +1 -0
  308. package/dist/hooks/useDebounce/useDebounce.d.ts +2 -0
  309. package/dist/hooks/useDebounce/useDebounce.js +15 -0
  310. package/dist/hooks/useDirectory/index.d.ts +1 -0
  311. package/dist/hooks/useDirectory/useDirectory.d.ts +6 -0
  312. package/dist/hooks/useDirectory/useDirectory.js +16 -0
  313. package/dist/hooks/useDropdown/index.d.ts +1 -0
  314. package/dist/hooks/useDropdown/useDropdown.d.ts +32 -0
  315. package/dist/hooks/useDropdown/useDropdown.js +158 -0
  316. package/dist/hooks/useDropzone/index.d.ts +1 -0
  317. package/dist/hooks/useDropzone/useDropzone.d.ts +34 -0
  318. package/dist/hooks/useDropzone/useDropzone.js +78 -0
  319. package/dist/hooks/useEdificeIcons/index.d.ts +1 -0
  320. package/dist/hooks/useEdificeIcons/useEdificeIcons.d.ts +9 -0
  321. package/dist/hooks/useEdificeIcons/useEdificeIcons.js +92 -0
  322. package/dist/hooks/useHasWorkflow/index.d.ts +1 -0
  323. package/dist/hooks/useHasWorkflow/useHasWorkflow.d.ts +1 -0
  324. package/dist/hooks/useHasWorkflow/useHasWorkflow.js +22 -0
  325. package/dist/hooks/useHeader/index.d.ts +1 -0
  326. package/dist/hooks/useHeader/useHeader.d.ts +5 -0
  327. package/dist/hooks/useHeader/useHeader.js +46 -0
  328. package/dist/hooks/useHover/index.d.ts +1 -0
  329. package/dist/hooks/useHover/useHover.d.ts +2 -0
  330. package/dist/hooks/useHover/useHover.js +22 -0
  331. package/dist/hooks/useHttpErrorToast/index.d.ts +1 -0
  332. package/dist/hooks/useHttpErrorToast/useHttpErrorToast.d.ts +3 -0
  333. package/dist/hooks/useHttpErrorToast/useHttpErrorToast.js +21 -0
  334. package/dist/hooks/useImage/index.d.ts +1 -0
  335. package/dist/hooks/useImage/useImage.d.ts +9 -0
  336. package/dist/hooks/useImage/useImage.js +18 -0
  337. package/dist/hooks/useIsAdml/index.d.ts +1 -0
  338. package/dist/hooks/useIsAdml/useIsAdml.d.ts +3 -0
  339. package/dist/hooks/useIsAdml/useIsAdml.js +18 -0
  340. package/dist/hooks/useKeyPress/index.d.ts +1 -0
  341. package/dist/hooks/useKeyPress/useKeyPress.d.ts +1 -0
  342. package/dist/hooks/useKeyPress/useKeyPress.js +14 -0
  343. package/dist/hooks/useLibraryUrl/index.d.ts +1 -0
  344. package/dist/hooks/useLibraryUrl/useLibraryUrl.d.ts +7 -0
  345. package/dist/hooks/useLibraryUrl/useLibraryUrl.js +21 -0
  346. package/dist/hooks/useMediaLibrary/index.d.ts +1 -0
  347. package/dist/hooks/useMediaLibrary/useMediaLibrary.d.ts +12 -0
  348. package/dist/hooks/useMediaLibrary/useMediaLibrary.js +58 -0
  349. package/dist/hooks/usePreferences/index.d.ts +1 -0
  350. package/dist/hooks/usePreferences/usePreferences.d.ts +4 -0
  351. package/dist/hooks/usePreferences/usePreferences.js +10 -0
  352. package/dist/hooks/useResource/index.d.ts +1 -0
  353. package/dist/hooks/useResource/useResource.d.ts +3 -0
  354. package/dist/hooks/useResource/useResource.js +25 -0
  355. package/dist/hooks/useResourceSearch/index.d.ts +1 -0
  356. package/dist/hooks/useResourceSearch/useResourceSearch.d.ts +18 -0
  357. package/dist/hooks/useResourceSearch/useResourceSearch.js +19 -0
  358. package/dist/hooks/useScrollToTop/index.d.ts +1 -0
  359. package/dist/hooks/useScrollToTop/useScrollToTop.d.ts +1 -0
  360. package/dist/hooks/useScrollToTop/useScrollToTop.js +9 -0
  361. package/dist/hooks/useSession/index.d.ts +1 -0
  362. package/dist/hooks/useSession/useSession.d.ts +1 -0
  363. package/dist/hooks/useSession/useSession.js +11 -0
  364. package/dist/hooks/useThumbnail/index.d.ts +1 -0
  365. package/dist/hooks/useThumbnail/useThumbnail.d.ts +14 -0
  366. package/dist/hooks/useThumbnail/useThumbnail.js +29 -0
  367. package/dist/hooks/useTitle/index.d.ts +1 -0
  368. package/dist/hooks/useTitle/useTitle.d.ts +1 -0
  369. package/dist/hooks/useTitle/useTitle.js +10 -0
  370. package/dist/hooks/useToast/index.d.ts +1 -0
  371. package/dist/hooks/useToast/useToast.d.ts +17 -0
  372. package/dist/hooks/useToast/useToast.js +34 -0
  373. package/dist/hooks/useToggle/index.d.ts +1 -0
  374. package/dist/hooks/useToggle/useToggle.d.ts +1 -0
  375. package/dist/hooks/useToggle/useToggle.js +10 -0
  376. package/dist/hooks/useTrapFocus/index.d.ts +1 -0
  377. package/dist/hooks/useTrapFocus/useTrapFocus.d.ts +1 -0
  378. package/dist/hooks/useTrapFocus/useTrapFocus.js +16 -0
  379. package/dist/hooks/useTrashedResource/index.d.ts +1 -0
  380. package/dist/hooks/useTrashedResource/useTrashedResource.d.ts +6 -0
  381. package/dist/hooks/useTrashedResource/useTrashedResource.js +27 -0
  382. package/dist/hooks/useUpload/index.d.ts +1 -0
  383. package/dist/hooks/useUpload/useUpload.d.ts +18 -0
  384. package/dist/hooks/useUpload/useUpload.js +106 -0
  385. package/dist/hooks/useUploadFiles/index.d.ts +1 -0
  386. package/dist/hooks/useUploadFiles/useUploadFiles.d.ts +25 -0
  387. package/dist/hooks/useUploadFiles/useUploadFiles.js +100 -0
  388. package/dist/hooks/useUser/index.d.ts +1 -0
  389. package/dist/hooks/useUser/useUser.d.ts +7 -0
  390. package/dist/hooks/useUser/useUser.js +22 -0
  391. package/dist/hooks/useWorkspaceFile/index.d.ts +1 -0
  392. package/dist/hooks/useWorkspaceFile/useWorkspaceFile.d.ts +21 -0
  393. package/dist/hooks/useWorkspaceFile/useWorkspaceFile.js +49 -0
  394. package/dist/hooks/useWorkspaceSearch/index.d.ts +1 -0
  395. package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.d.ts +9 -0
  396. package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.js +58 -0
  397. package/dist/hooks/useXitiTrackPageLoad/index.d.ts +1 -0
  398. package/dist/hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.d.ts +4 -0
  399. package/dist/hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js +28 -0
  400. package/dist/hooks/useZendeskGuide/index.d.ts +1 -0
  401. package/dist/hooks/useZendeskGuide/useZendeskGuide.d.ts +2 -0
  402. package/dist/hooks/useZendeskGuide/useZendeskGuide.js +101 -0
  403. package/dist/icons-apps.js +232 -0
  404. package/dist/icons-audience.js +28 -0
  405. package/dist/icons-nav.js +28 -0
  406. package/dist/icons.js +300 -0
  407. package/dist/index.d.ts +5 -0
  408. package/dist/index.js +236 -0
  409. package/dist/modals.js +18 -0
  410. package/dist/modules/audience/ReactionChoice.d.ts +11 -0
  411. package/dist/modules/audience/ReactionChoice.js +33 -0
  412. package/dist/modules/audience/ReactionModal.Card.d.ts +4 -0
  413. package/dist/modules/audience/ReactionModal.Card.js +33 -0
  414. package/dist/modules/audience/ReactionModal.d.ts +20 -0
  415. package/dist/modules/audience/ReactionModal.js +72 -0
  416. package/dist/modules/audience/ReactionSummary.d.ts +10 -0
  417. package/dist/modules/audience/ReactionSummary.js +27 -0
  418. package/dist/modules/audience/ViewsByProfileCard.d.ts +9 -0
  419. package/dist/modules/audience/ViewsByProfileCard.js +40 -0
  420. package/dist/modules/audience/ViewsCounter.d.ts +10 -0
  421. package/dist/modules/audience/ViewsCounter.js +18 -0
  422. package/dist/modules/audience/ViewsModal.d.ts +11 -0
  423. package/dist/modules/audience/ViewsModal.js +41 -0
  424. package/dist/modules/audience/hooks/useReactionIcons.d.ts +5 -0
  425. package/dist/modules/audience/hooks/useReactionIcons.js +45 -0
  426. package/dist/modules/audience/hooks/useReactions.d.ts +15 -0
  427. package/dist/modules/audience/hooks/useReactions.js +35 -0
  428. package/dist/modules/audience/hooks/useViews.d.ts +11 -0
  429. package/dist/modules/audience/index.d.ts +12 -0
  430. package/dist/modules/comments/components/BadgeProfile.d.ts +4 -0
  431. package/dist/modules/comments/components/BadgeProfile.js +18 -0
  432. package/dist/modules/comments/components/Comment.d.ts +7 -0
  433. package/dist/modules/comments/components/Comment.js +72 -0
  434. package/dist/modules/comments/components/CommentAvatar.d.ts +3 -0
  435. package/dist/modules/comments/components/CommentAvatar.js +17 -0
  436. package/dist/modules/comments/components/CommentDate.d.ts +4 -0
  437. package/dist/modules/comments/components/CommentDate.js +27 -0
  438. package/dist/modules/comments/components/CommentForm.d.ts +3 -0
  439. package/dist/modules/comments/components/CommentForm.js +37 -0
  440. package/dist/modules/comments/components/CommentHeader.d.ts +3 -0
  441. package/dist/modules/comments/components/CommentHeader.js +8 -0
  442. package/dist/modules/comments/components/CommentList.d.ts +1 -0
  443. package/dist/modules/comments/components/CommentList.js +22 -0
  444. package/dist/modules/comments/components/CommentTitle.d.ts +4 -0
  445. package/dist/modules/comments/components/CommentTitle.js +7 -0
  446. package/dist/modules/comments/components/TextCounter.d.ts +4 -0
  447. package/dist/modules/comments/components/TextCounter.js +8 -0
  448. package/dist/modules/comments/constants.d.ts +20 -0
  449. package/dist/modules/comments/constants.js +8 -0
  450. package/dist/modules/comments/context/Context.d.ts +16 -0
  451. package/dist/modules/comments/context/Context.js +5 -0
  452. package/dist/modules/comments/hooks/useAutosizeTextarea.d.ts +1 -0
  453. package/dist/modules/comments/hooks/useAutosizeTextarea.js +19 -0
  454. package/dist/modules/comments/hooks/useComments.d.ts +29 -0
  455. package/dist/modules/comments/hooks/useComments.js +66 -0
  456. package/dist/modules/comments/hooks/useCommentsContext.d.ts +15 -0
  457. package/dist/modules/comments/hooks/useCommentsContext.js +11 -0
  458. package/dist/modules/comments/hooks/useProfileQueries.d.ts +4 -0
  459. package/dist/modules/comments/hooks/useProfileQueries.js +26 -0
  460. package/dist/modules/comments/index.d.ts +1 -0
  461. package/dist/modules/comments/provider/CommentProvider.d.ts +3 -0
  462. package/dist/modules/comments/provider/CommentProvider.js +85 -0
  463. package/dist/modules/comments/types.d.ts +102 -0
  464. package/dist/modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.d.ts +8 -0
  465. package/dist/modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.js +135 -0
  466. package/dist/modules/editor/components/BubbleMenuEditImage/index.d.ts +1 -0
  467. package/dist/modules/editor/components/Editor/Editor.d.ts +45 -0
  468. package/dist/modules/editor/components/Editor/Editor.js +82 -0
  469. package/dist/modules/editor/components/Editor/MathsModal.d.ts +7 -0
  470. package/dist/modules/editor/components/Editor/MathsModal.js +50 -0
  471. package/dist/modules/editor/components/Editor/index.d.ts +2 -0
  472. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.DropdownMenu.d.ts +22 -0
  473. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.DropdownMenu.js +17 -0
  474. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Emoji.d.ts +14 -0
  475. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Emoji.js +54 -0
  476. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.HighlightColor.d.ts +14 -0
  477. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.HighlightColor.js +47 -0
  478. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.PlusMenu.d.ts +9 -0
  479. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.PlusMenu.js +18 -0
  480. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextColor.d.ts +14 -0
  481. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextColor.js +50 -0
  482. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextSize.d.ts +10 -0
  483. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextSize.js +62 -0
  484. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Typography.d.ts +10 -0
  485. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Typography.js +52 -0
  486. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.d.ts +10 -0
  487. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.js +331 -0
  488. package/dist/modules/editor/components/EditorToolbar/index.d.ts +1 -0
  489. package/dist/modules/editor/components/NodeView/AttachmentNodeView.d.ts +2 -0
  490. package/dist/modules/editor/components/NodeView/AttachmentNodeView.js +10 -0
  491. package/dist/modules/editor/components/NodeView/AudioNodeView.d.ts +2 -0
  492. package/dist/modules/editor/components/NodeView/AudioNodeView.js +10 -0
  493. package/dist/modules/editor/components/NodeView/ImageNodeView.d.ts +3 -0
  494. package/dist/modules/editor/components/NodeView/ImageNodeView.js +12 -0
  495. package/dist/modules/editor/components/NodeView/LinkerNodeView.d.ts +2 -0
  496. package/dist/modules/editor/components/NodeView/LinkerNodeView.js +10 -0
  497. package/dist/modules/editor/components/NodeView/VideoNodeView.d.ts +2 -0
  498. package/dist/modules/editor/components/NodeView/VideoNodeView.js +10 -0
  499. package/dist/modules/editor/components/NodeView/index.d.ts +5 -0
  500. package/dist/modules/editor/components/Renderer/AttachmentRenderer.d.ts +7 -0
  501. package/dist/modules/editor/components/Renderer/AttachmentRenderer.js +35 -0
  502. package/dist/modules/editor/components/Renderer/AudioRenderer.d.ts +7 -0
  503. package/dist/modules/editor/components/Renderer/AudioRenderer.js +11 -0
  504. package/dist/modules/editor/components/Renderer/LinkerRenderer.d.ts +9 -0
  505. package/dist/modules/editor/components/Renderer/LinkerRenderer.js +34 -0
  506. package/dist/modules/editor/components/Renderer/MediaRenderer.d.ts +3 -0
  507. package/dist/modules/editor/components/Renderer/MediaRenderer.js +70 -0
  508. package/dist/modules/editor/components/Renderer/index.d.ts +4 -0
  509. package/dist/modules/editor/components/Toolbar/LinkToolbar.TippyOptions.d.ts +2 -0
  510. package/dist/modules/editor/components/Toolbar/LinkToolbar.TippyOptions.js +8 -0
  511. package/dist/modules/editor/components/Toolbar/LinkToolbar.d.ts +15 -0
  512. package/dist/modules/editor/components/Toolbar/LinkToolbar.js +61 -0
  513. package/dist/modules/editor/components/Toolbar/TableToolbar.AddMenu.d.ts +9 -0
  514. package/dist/modules/editor/components/Toolbar/TableToolbar.AddMenu.js +33 -0
  515. package/dist/modules/editor/components/Toolbar/TableToolbar.CellColor.d.ts +13 -0
  516. package/dist/modules/editor/components/Toolbar/TableToolbar.CellColor.js +45 -0
  517. package/dist/modules/editor/components/Toolbar/TableToolbar.DelMenu.d.ts +9 -0
  518. package/dist/modules/editor/components/Toolbar/TableToolbar.DelMenu.js +31 -0
  519. package/dist/modules/editor/components/Toolbar/TableToolbar.d.ts +9 -0
  520. package/dist/modules/editor/components/Toolbar/TableToolbar.js +89 -0
  521. package/dist/modules/editor/components/Toolbar/index.d.ts +2 -0
  522. package/dist/modules/editor/components/index.d.ts +6 -0
  523. package/dist/modules/editor/hooks/index.d.ts +12 -0
  524. package/dist/modules/editor/hooks/useActionOptions.d.ts +5 -0
  525. package/dist/modules/editor/hooks/useActionOptions.js +86 -0
  526. package/dist/modules/editor/hooks/useCommentEditor.d.ts +13 -0
  527. package/dist/modules/editor/hooks/useCommentEditor.js +37 -0
  528. package/dist/modules/editor/hooks/useEditorContext.d.ts +37 -0
  529. package/dist/modules/editor/hooks/useEditorContext.js +12 -0
  530. package/dist/modules/editor/hooks/useImageModal.d.ts +31 -0
  531. package/dist/modules/editor/hooks/useImageModal.js +46 -0
  532. package/dist/modules/editor/hooks/useImageSelection.d.ts +21 -0
  533. package/dist/modules/editor/hooks/useImageSelection.js +46 -0
  534. package/dist/modules/editor/hooks/useLinkToolbar.d.ts +18 -0
  535. package/dist/modules/editor/hooks/useLinkToolbar.js +37 -0
  536. package/dist/modules/editor/hooks/useMathsModal.d.ts +17 -0
  537. package/dist/modules/editor/hooks/useMathsModal.js +17 -0
  538. package/dist/modules/editor/hooks/useMathsStyles.d.ts +1 -0
  539. package/dist/modules/editor/hooks/useMathsStyles.js +20 -0
  540. package/dist/modules/editor/hooks/useMediaLibraryEditor.d.ts +19 -0
  541. package/dist/modules/editor/hooks/useMediaLibraryEditor.js +152 -0
  542. package/dist/modules/editor/hooks/useResizeMedia.d.ts +10 -0
  543. package/dist/modules/editor/hooks/useResizeMedia.js +47 -0
  544. package/dist/modules/editor/hooks/useSpeechRecognition.d.ts +6 -0
  545. package/dist/modules/editor/hooks/useSpeechRecognition.js +21 -0
  546. package/dist/modules/editor/hooks/useSpeechSynthetisis.d.ts +12 -0
  547. package/dist/modules/editor/hooks/useSpeechSynthetisis.js +20 -0
  548. package/dist/modules/editor/hooks/useTipTapEditor.d.ts +16 -0
  549. package/dist/modules/editor/hooks/useTipTapEditor.js +86 -0
  550. package/dist/modules/editor/index.d.ts +3 -0
  551. package/dist/modules/editor/utilities/has-extension.d.ts +2 -0
  552. package/dist/modules/editor/utilities/has-extension.js +4 -0
  553. package/dist/modules/editor/utilities/has-mark.d.ts +2 -0
  554. package/dist/modules/editor/utilities/has-mark.js +4 -0
  555. package/dist/modules/editor/utilities/has-text-style.d.ts +2 -0
  556. package/dist/modules/editor/utilities/has-text-style.js +5 -0
  557. package/dist/modules/icons/components/IconAdd.d.ts +7 -0
  558. package/dist/modules/icons/components/IconAdd.js +12 -0
  559. package/dist/modules/icons/components/IconAddUser.d.ts +7 -0
  560. package/dist/modules/icons/components/IconAddUser.js +12 -0
  561. package/dist/modules/icons/components/IconAlertCircle.d.ts +7 -0
  562. package/dist/modules/icons/components/IconAlertCircle.js +13 -0
  563. package/dist/modules/icons/components/IconAlertTriangle.d.ts +7 -0
  564. package/dist/modules/icons/components/IconAlertTriangle.js +13 -0
  565. package/dist/modules/icons/components/IconAlignCenter.d.ts +7 -0
  566. package/dist/modules/icons/components/IconAlignCenter.js +12 -0
  567. package/dist/modules/icons/components/IconAlignJustify.d.ts +7 -0
  568. package/dist/modules/icons/components/IconAlignJustify.js +12 -0
  569. package/dist/modules/icons/components/IconAlignLeft.d.ts +7 -0
  570. package/dist/modules/icons/components/IconAlignLeft.js +12 -0
  571. package/dist/modules/icons/components/IconAlignRight.d.ts +7 -0
  572. package/dist/modules/icons/components/IconAlignRight.js +12 -0
  573. package/dist/modules/icons/components/IconAnswer.d.ts +7 -0
  574. package/dist/modules/icons/components/IconAnswer.js +13 -0
  575. package/dist/modules/icons/components/IconApplications.d.ts +7 -0
  576. package/dist/modules/icons/components/IconApplications.js +12 -0
  577. package/dist/modules/icons/components/IconArrowDown.d.ts +7 -0
  578. package/dist/modules/icons/components/IconArrowDown.js +13 -0
  579. package/dist/modules/icons/components/IconArrowLeft.d.ts +7 -0
  580. package/dist/modules/icons/components/IconArrowLeft.js +13 -0
  581. package/dist/modules/icons/components/IconArrowRight.d.ts +7 -0
  582. package/dist/modules/icons/components/IconArrowRight.js +13 -0
  583. package/dist/modules/icons/components/IconArrowUp.d.ts +7 -0
  584. package/dist/modules/icons/components/IconArrowUp.js +13 -0
  585. package/dist/modules/icons/components/IconBlock.d.ts +7 -0
  586. package/dist/modules/icons/components/IconBlock.js +12 -0
  587. package/dist/modules/icons/components/IconBlur.d.ts +7 -0
  588. package/dist/modules/icons/components/IconBlur.js +13 -0
  589. package/dist/modules/icons/components/IconBookmark.d.ts +7 -0
  590. package/dist/modules/icons/components/IconBookmark.js +12 -0
  591. package/dist/modules/icons/components/IconBulletList.d.ts +7 -0
  592. package/dist/modules/icons/components/IconBulletList.js +16 -0
  593. package/dist/modules/icons/components/IconBurgerMenu.d.ts +7 -0
  594. package/dist/modules/icons/components/IconBurgerMenu.js +12 -0
  595. package/dist/modules/icons/components/IconCalendar.d.ts +7 -0
  596. package/dist/modules/icons/components/IconCalendar.js +12 -0
  597. package/dist/modules/icons/components/IconCalendarLight.d.ts +7 -0
  598. package/dist/modules/icons/components/IconCalendarLight.js +12 -0
  599. package/dist/modules/icons/components/IconCamera.d.ts +7 -0
  600. package/dist/modules/icons/components/IconCamera.js +13 -0
  601. package/dist/modules/icons/components/IconCenter.d.ts +7 -0
  602. package/dist/modules/icons/components/IconCenter.js +12 -0
  603. package/dist/modules/icons/components/IconCheck.d.ts +7 -0
  604. package/dist/modules/icons/components/IconCheck.js +12 -0
  605. package/dist/modules/icons/components/IconChecklist.d.ts +7 -0
  606. package/dist/modules/icons/components/IconChecklist.js +13 -0
  607. package/dist/modules/icons/components/IconClock.d.ts +7 -0
  608. package/dist/modules/icons/components/IconClock.js +12 -0
  609. package/dist/modules/icons/components/IconClose.d.ts +7 -0
  610. package/dist/modules/icons/components/IconClose.js +13 -0
  611. package/dist/modules/icons/components/IconCloseFullScreen.d.ts +7 -0
  612. package/dist/modules/icons/components/IconCloseFullScreen.js +12 -0
  613. package/dist/modules/icons/components/IconCode.d.ts +7 -0
  614. package/dist/modules/icons/components/IconCode.js +12 -0
  615. package/dist/modules/icons/components/IconCopy.d.ts +7 -0
  616. package/dist/modules/icons/components/IconCopy.js +12 -0
  617. package/dist/modules/icons/components/IconCrop.d.ts +7 -0
  618. package/dist/modules/icons/components/IconCrop.js +13 -0
  619. package/dist/modules/icons/components/IconCut.d.ts +7 -0
  620. package/dist/modules/icons/components/IconCut.js +13 -0
  621. package/dist/modules/icons/components/IconDelete.d.ts +7 -0
  622. package/dist/modules/icons/components/IconDelete.js +12 -0
  623. package/dist/modules/icons/components/IconDeleteColor.d.ts +7 -0
  624. package/dist/modules/icons/components/IconDeleteColor.js +13 -0
  625. package/dist/modules/icons/components/IconDeleteColumn.d.ts +7 -0
  626. package/dist/modules/icons/components/IconDeleteColumn.js +12 -0
  627. package/dist/modules/icons/components/IconDeleteColumnHighlight.d.ts +7 -0
  628. package/dist/modules/icons/components/IconDeleteColumnHighlight.js +12 -0
  629. package/dist/modules/icons/components/IconDeleteRow.d.ts +7 -0
  630. package/dist/modules/icons/components/IconDeleteRow.js +12 -0
  631. package/dist/modules/icons/components/IconDeleteRowHighlight.d.ts +7 -0
  632. package/dist/modules/icons/components/IconDeleteRowHighlight.js +12 -0
  633. package/dist/modules/icons/components/IconDepositeInbox.d.ts +7 -0
  634. package/dist/modules/icons/components/IconDepositeInbox.js +13 -0
  635. package/dist/modules/icons/components/IconDownload.d.ts +7 -0
  636. package/dist/modules/icons/components/IconDownload.js +17 -0
  637. package/dist/modules/icons/components/IconEdit.d.ts +7 -0
  638. package/dist/modules/icons/components/IconEdit.js +13 -0
  639. package/dist/modules/icons/components/IconError.d.ts +7 -0
  640. package/dist/modules/icons/components/IconError.js +12 -0
  641. package/dist/modules/icons/components/IconExternalLink.d.ts +7 -0
  642. package/dist/modules/icons/components/IconExternalLink.js +13 -0
  643. package/dist/modules/icons/components/IconFiles.d.ts +7 -0
  644. package/dist/modules/icons/components/IconFiles.js +12 -0
  645. package/dist/modules/icons/components/IconFilter.d.ts +7 -0
  646. package/dist/modules/icons/components/IconFilter.js +12 -0
  647. package/dist/modules/icons/components/IconFlag.d.ts +7 -0
  648. package/dist/modules/icons/components/IconFlag.js +12 -0
  649. package/dist/modules/icons/components/IconFolder.d.ts +7 -0
  650. package/dist/modules/icons/components/IconFolder.js +12 -0
  651. package/dist/modules/icons/components/IconFolderMove.d.ts +7 -0
  652. package/dist/modules/icons/components/IconFolderMove.js +17 -0
  653. package/dist/modules/icons/components/IconForgoing.d.ts +7 -0
  654. package/dist/modules/icons/components/IconForgoing.js +12 -0
  655. package/dist/modules/icons/components/IconFullScreen.d.ts +7 -0
  656. package/dist/modules/icons/components/IconFullScreen.js +12 -0
  657. package/dist/modules/icons/components/IconGlobe.d.ts +7 -0
  658. package/dist/modules/icons/components/IconGlobe.js +12 -0
  659. package/dist/modules/icons/components/IconHeadphone.d.ts +7 -0
  660. package/dist/modules/icons/components/IconHeadphone.js +12 -0
  661. package/dist/modules/icons/components/IconHide.d.ts +7 -0
  662. package/dist/modules/icons/components/IconHide.js +13 -0
  663. package/dist/modules/icons/components/IconHighlightColumn.d.ts +7 -0
  664. package/dist/modules/icons/components/IconHighlightColumn.js +12 -0
  665. package/dist/modules/icons/components/IconHighlightRow.d.ts +7 -0
  666. package/dist/modules/icons/components/IconHighlightRow.js +12 -0
  667. package/dist/modules/icons/components/IconHome.d.ts +7 -0
  668. package/dist/modules/icons/components/IconHome.js +12 -0
  669. package/dist/modules/icons/components/IconHourglass.d.ts +7 -0
  670. package/dist/modules/icons/components/IconHourglass.js +12 -0
  671. package/dist/modules/icons/components/IconImageSizeLarge.d.ts +7 -0
  672. package/dist/modules/icons/components/IconImageSizeLarge.js +12 -0
  673. package/dist/modules/icons/components/IconImageSizeMedium.d.ts +7 -0
  674. package/dist/modules/icons/components/IconImageSizeMedium.js +12 -0
  675. package/dist/modules/icons/components/IconImageSizeSmall.d.ts +7 -0
  676. package/dist/modules/icons/components/IconImageSizeSmall.js +12 -0
  677. package/dist/modules/icons/components/IconInbox.d.ts +7 -0
  678. package/dist/modules/icons/components/IconInbox.js +12 -0
  679. package/dist/modules/icons/components/IconInfoCircle.d.ts +7 -0
  680. package/dist/modules/icons/components/IconInfoCircle.js +13 -0
  681. package/dist/modules/icons/components/IconLandscape.d.ts +7 -0
  682. package/dist/modules/icons/components/IconLandscape.js +12 -0
  683. package/dist/modules/icons/components/IconLink.d.ts +7 -0
  684. package/dist/modules/icons/components/IconLink.js +16 -0
  685. package/dist/modules/icons/components/IconListOrder.d.ts +7 -0
  686. package/dist/modules/icons/components/IconListOrder.js +12 -0
  687. package/dist/modules/icons/components/IconLoader.d.ts +7 -0
  688. package/dist/modules/icons/components/IconLoader.js +12 -0
  689. package/dist/modules/icons/components/IconLock.d.ts +7 -0
  690. package/dist/modules/icons/components/IconLock.js +12 -0
  691. package/dist/modules/icons/components/IconMail.d.ts +7 -0
  692. package/dist/modules/icons/components/IconMail.js +13 -0
  693. package/dist/modules/icons/components/IconMergeCells.d.ts +7 -0
  694. package/dist/modules/icons/components/IconMergeCells.js +13 -0
  695. package/dist/modules/icons/components/IconMessageInfo.d.ts +7 -0
  696. package/dist/modules/icons/components/IconMessageInfo.js +13 -0
  697. package/dist/modules/icons/components/IconMic.d.ts +7 -0
  698. package/dist/modules/icons/components/IconMic.js +12 -0
  699. package/dist/modules/icons/components/IconMinus.d.ts +7 -0
  700. package/dist/modules/icons/components/IconMinus.js +12 -0
  701. package/dist/modules/icons/components/IconMove.d.ts +7 -0
  702. package/dist/modules/icons/components/IconMove.js +14 -0
  703. package/dist/modules/icons/components/IconNoColors.d.ts +7 -0
  704. package/dist/modules/icons/components/IconNoColors.js +12 -0
  705. package/dist/modules/icons/components/IconOptions.d.ts +7 -0
  706. package/dist/modules/icons/components/IconOptions.js +14 -0
  707. package/dist/modules/icons/components/IconOrderedList.d.ts +7 -0
  708. package/dist/modules/icons/components/IconOrderedList.js +16 -0
  709. package/dist/modules/icons/components/IconPaperclip.d.ts +7 -0
  710. package/dist/modules/icons/components/IconPaperclip.js +12 -0
  711. package/dist/modules/icons/components/IconPause.d.ts +7 -0
  712. package/dist/modules/icons/components/IconPause.js +12 -0
  713. package/dist/modules/icons/components/IconPinOff.d.ts +7 -0
  714. package/dist/modules/icons/components/IconPinOff.js +12 -0
  715. package/dist/modules/icons/components/IconPinOn.d.ts +7 -0
  716. package/dist/modules/icons/components/IconPinOn.js +12 -0
  717. package/dist/modules/icons/components/IconPlaceholder.d.ts +7 -0
  718. package/dist/modules/icons/components/IconPlaceholder.js +16 -0
  719. package/dist/modules/icons/components/IconPlay.d.ts +7 -0
  720. package/dist/modules/icons/components/IconPlay.js +12 -0
  721. package/dist/modules/icons/components/IconPlayFilled.d.ts +7 -0
  722. package/dist/modules/icons/components/IconPlayFilled.js +12 -0
  723. package/dist/modules/icons/components/IconPlus.d.ts +7 -0
  724. package/dist/modules/icons/components/IconPlus.js +12 -0
  725. package/dist/modules/icons/components/IconPointerDefault.d.ts +7 -0
  726. package/dist/modules/icons/components/IconPointerDefault.js +12 -0
  727. package/dist/modules/icons/components/IconPointerHand.d.ts +7 -0
  728. package/dist/modules/icons/components/IconPointerHand.js +12 -0
  729. package/dist/modules/icons/components/IconPrint.d.ts +7 -0
  730. package/dist/modules/icons/components/IconPrint.js +12 -0
  731. package/dist/modules/icons/components/IconQuestion.d.ts +7 -0
  732. package/dist/modules/icons/components/IconQuestion.js +14 -0
  733. package/dist/modules/icons/components/IconRafterDown.d.ts +7 -0
  734. package/dist/modules/icons/components/IconRafterDown.js +12 -0
  735. package/dist/modules/icons/components/IconRafterLeft.d.ts +7 -0
  736. package/dist/modules/icons/components/IconRafterLeft.js +12 -0
  737. package/dist/modules/icons/components/IconRafterRight.d.ts +7 -0
  738. package/dist/modules/icons/components/IconRafterRight.js +12 -0
  739. package/dist/modules/icons/components/IconRafterUp.d.ts +7 -0
  740. package/dist/modules/icons/components/IconRafterUp.js +12 -0
  741. package/dist/modules/icons/components/IconReaction.d.ts +7 -0
  742. package/dist/modules/icons/components/IconReaction.js +12 -0
  743. package/dist/modules/icons/components/IconRecord.d.ts +7 -0
  744. package/dist/modules/icons/components/IconRecord.js +12 -0
  745. package/dist/modules/icons/components/IconRecordPause.d.ts +7 -0
  746. package/dist/modules/icons/components/IconRecordPause.js +12 -0
  747. package/dist/modules/icons/components/IconRecordStop.d.ts +7 -0
  748. package/dist/modules/icons/components/IconRecordStop.js +12 -0
  749. package/dist/modules/icons/components/IconRecordVideo.d.ts +7 -0
  750. package/dist/modules/icons/components/IconRecordVideo.js +12 -0
  751. package/dist/modules/icons/components/IconRedo.d.ts +7 -0
  752. package/dist/modules/icons/components/IconRedo.js +13 -0
  753. package/dist/modules/icons/components/IconRefresh.d.ts +7 -0
  754. package/dist/modules/icons/components/IconRefresh.js +13 -0
  755. package/dist/modules/icons/components/IconReset.d.ts +7 -0
  756. package/dist/modules/icons/components/IconReset.js +12 -0
  757. package/dist/modules/icons/components/IconRestart.d.ts +7 -0
  758. package/dist/modules/icons/components/IconRestart.js +12 -0
  759. package/dist/modules/icons/components/IconRestore.d.ts +7 -0
  760. package/dist/modules/icons/components/IconRestore.js +12 -0
  761. package/dist/modules/icons/components/IconSave.d.ts +7 -0
  762. package/dist/modules/icons/components/IconSave.js +12 -0
  763. package/dist/modules/icons/components/IconSearch.d.ts +7 -0
  764. package/dist/modules/icons/components/IconSearch.js +12 -0
  765. package/dist/modules/icons/components/IconSee.d.ts +7 -0
  766. package/dist/modules/icons/components/IconSee.js +13 -0
  767. package/dist/modules/icons/components/IconSend.d.ts +7 -0
  768. package/dist/modules/icons/components/IconSend.js +12 -0
  769. package/dist/modules/icons/components/IconSetBackground.d.ts +7 -0
  770. package/dist/modules/icons/components/IconSetBackground.js +17 -0
  771. package/dist/modules/icons/components/IconSettings.d.ts +7 -0
  772. package/dist/modules/icons/components/IconSettings.js +16 -0
  773. package/dist/modules/icons/components/IconShare.d.ts +7 -0
  774. package/dist/modules/icons/components/IconShare.js +12 -0
  775. package/dist/modules/icons/components/IconSmartphone.d.ts +7 -0
  776. package/dist/modules/icons/components/IconSmartphone.js +13 -0
  777. package/dist/modules/icons/components/IconSmiley.d.ts +7 -0
  778. package/dist/modules/icons/components/IconSmiley.js +13 -0
  779. package/dist/modules/icons/components/IconSortAscendingLetters.d.ts +7 -0
  780. package/dist/modules/icons/components/IconSortAscendingLetters.js +13 -0
  781. package/dist/modules/icons/components/IconSortDescending.d.ts +7 -0
  782. package/dist/modules/icons/components/IconSortDescending.js +13 -0
  783. package/dist/modules/icons/components/IconSortDescendingLetters.d.ts +7 -0
  784. package/dist/modules/icons/components/IconSortDescendingLetters.js +13 -0
  785. package/dist/modules/icons/components/IconSortTime.d.ts +7 -0
  786. package/dist/modules/icons/components/IconSortTime.js +14 -0
  787. package/dist/modules/icons/components/IconSpeechToText.d.ts +7 -0
  788. package/dist/modules/icons/components/IconSpeechToText.js +12 -0
  789. package/dist/modules/icons/components/IconSplitCells.d.ts +7 -0
  790. package/dist/modules/icons/components/IconSplitCells.js +13 -0
  791. package/dist/modules/icons/components/IconSquareRoot.d.ts +7 -0
  792. package/dist/modules/icons/components/IconSquareRoot.js +12 -0
  793. package/dist/modules/icons/components/IconSubscript.d.ts +7 -0
  794. package/dist/modules/icons/components/IconSubscript.js +12 -0
  795. package/dist/modules/icons/components/IconSuccessFill.d.ts +7 -0
  796. package/dist/modules/icons/components/IconSuccessFill.js +12 -0
  797. package/dist/modules/icons/components/IconSuccessOutline.d.ts +7 -0
  798. package/dist/modules/icons/components/IconSuccessOutline.js +13 -0
  799. package/dist/modules/icons/components/IconSuperscript.d.ts +7 -0
  800. package/dist/modules/icons/components/IconSuperscript.js +12 -0
  801. package/dist/modules/icons/components/IconTable.d.ts +7 -0
  802. package/dist/modules/icons/components/IconTable.js +12 -0
  803. package/dist/modules/icons/components/IconTextBold.d.ts +7 -0
  804. package/dist/modules/icons/components/IconTextBold.js +12 -0
  805. package/dist/modules/icons/components/IconTextColor.d.ts +7 -0
  806. package/dist/modules/icons/components/IconTextColor.js +16 -0
  807. package/dist/modules/icons/components/IconTextHighlight.d.ts +7 -0
  808. package/dist/modules/icons/components/IconTextHighlight.js +16 -0
  809. package/dist/modules/icons/components/IconTextItalic.d.ts +7 -0
  810. package/dist/modules/icons/components/IconTextItalic.js +12 -0
  811. package/dist/modules/icons/components/IconTextPage.d.ts +7 -0
  812. package/dist/modules/icons/components/IconTextPage.js +12 -0
  813. package/dist/modules/icons/components/IconTextSize.d.ts +7 -0
  814. package/dist/modules/icons/components/IconTextSize.js +12 -0
  815. package/dist/modules/icons/components/IconTextToSpeech.d.ts +7 -0
  816. package/dist/modules/icons/components/IconTextToSpeech.js +12 -0
  817. package/dist/modules/icons/components/IconTextTypo.d.ts +7 -0
  818. package/dist/modules/icons/components/IconTextTypo.js +12 -0
  819. package/dist/modules/icons/components/IconTextUnderline.d.ts +7 -0
  820. package/dist/modules/icons/components/IconTextUnderline.js +13 -0
  821. package/dist/modules/icons/components/IconTextVanilla.d.ts +7 -0
  822. package/dist/modules/icons/components/IconTextVanilla.js +13 -0
  823. package/dist/modules/icons/components/IconTool.d.ts +7 -0
  824. package/dist/modules/icons/components/IconTool.js +12 -0
  825. package/dist/modules/icons/components/IconTrendingUp.d.ts +7 -0
  826. package/dist/modules/icons/components/IconTrendingUp.js +16 -0
  827. package/dist/modules/icons/components/IconUndo.d.ts +7 -0
  828. package/dist/modules/icons/components/IconUndo.js +13 -0
  829. package/dist/modules/icons/components/IconUnlink.d.ts +7 -0
  830. package/dist/modules/icons/components/IconUnlink.js +13 -0
  831. package/dist/modules/icons/components/IconUnlock.d.ts +7 -0
  832. package/dist/modules/icons/components/IconUnlock.js +13 -0
  833. package/dist/modules/icons/components/IconUpload.d.ts +7 -0
  834. package/dist/modules/icons/components/IconUpload.js +18 -0
  835. package/dist/modules/icons/components/IconUser.d.ts +7 -0
  836. package/dist/modules/icons/components/IconUser.js +12 -0
  837. package/dist/modules/icons/components/IconUserSearch.d.ts +7 -0
  838. package/dist/modules/icons/components/IconUserSearch.js +13 -0
  839. package/dist/modules/icons/components/IconUsers.d.ts +7 -0
  840. package/dist/modules/icons/components/IconUsers.js +13 -0
  841. package/dist/modules/icons/components/IconVideo.d.ts +7 -0
  842. package/dist/modules/icons/components/IconVideo.js +12 -0
  843. package/dist/modules/icons/components/IconViewCalendar.d.ts +7 -0
  844. package/dist/modules/icons/components/IconViewCalendar.js +12 -0
  845. package/dist/modules/icons/components/IconViewList.d.ts +7 -0
  846. package/dist/modules/icons/components/IconViewList.js +15 -0
  847. package/dist/modules/icons/components/IconWand.d.ts +7 -0
  848. package/dist/modules/icons/components/IconWand.js +12 -0
  849. package/dist/modules/icons/components/IconWrite.d.ts +7 -0
  850. package/dist/modules/icons/components/IconWrite.js +12 -0
  851. package/dist/modules/icons/components/IconZoomIn.d.ts +7 -0
  852. package/dist/modules/icons/components/IconZoomIn.js +12 -0
  853. package/dist/modules/icons/components/IconZoomOut.d.ts +7 -0
  854. package/dist/modules/icons/components/IconZoomOut.js +12 -0
  855. package/dist/modules/icons/components/apps/IconAccount.d.ts +7 -0
  856. package/dist/modules/icons/components/apps/IconAccount.js +12 -0
  857. package/dist/modules/icons/components/apps/IconActualites.d.ts +7 -0
  858. package/dist/modules/icons/components/apps/IconActualites.js +12 -0
  859. package/dist/modules/icons/components/apps/IconAdmin.d.ts +7 -0
  860. package/dist/modules/icons/components/apps/IconAdmin.js +12 -0
  861. package/dist/modules/icons/components/apps/IconAdminPortal.d.ts +7 -0
  862. package/dist/modules/icons/components/apps/IconAdminPortal.js +12 -0
  863. package/dist/modules/icons/components/apps/IconAdmissionPostBac.d.ts +7 -0
  864. package/dist/modules/icons/components/apps/IconAdmissionPostBac.js +12 -0
  865. package/dist/modules/icons/components/apps/IconAgenda.d.ts +7 -0
  866. package/dist/modules/icons/components/apps/IconAgenda.js +12 -0
  867. package/dist/modules/icons/components/apps/IconArchive.d.ts +7 -0
  868. package/dist/modules/icons/components/apps/IconArchive.js +12 -0
  869. package/dist/modules/icons/components/apps/IconAssistance.d.ts +7 -0
  870. package/dist/modules/icons/components/apps/IconAssistance.js +12 -0
  871. package/dist/modules/icons/components/apps/IconAssr.d.ts +7 -0
  872. package/dist/modules/icons/components/apps/IconAssr.js +12 -0
  873. package/dist/modules/icons/components/apps/IconAward.d.ts +7 -0
  874. package/dist/modules/icons/components/apps/IconAward.js +12 -0
  875. package/dist/modules/icons/components/apps/IconBanquesavoir.d.ts +7 -0
  876. package/dist/modules/icons/components/apps/IconBanquesavoir.js +12 -0
  877. package/dist/modules/icons/components/apps/IconBcdi.d.ts +7 -0
  878. package/dist/modules/icons/components/apps/IconBcdi.js +12 -0
  879. package/dist/modules/icons/components/apps/IconBiblionisep.d.ts +7 -0
  880. package/dist/modules/icons/components/apps/IconBiblionisep.js +12 -0
  881. package/dist/modules/icons/components/apps/IconBlog.d.ts +7 -0
  882. package/dist/modules/icons/components/apps/IconBlog.js +12 -0
  883. package/dist/modules/icons/components/apps/IconBookmarkEmpty.d.ts +7 -0
  884. package/dist/modules/icons/components/apps/IconBookmarkEmpty.js +12 -0
  885. package/dist/modules/icons/components/apps/IconCahierDeTexte.d.ts +7 -0
  886. package/dist/modules/icons/components/apps/IconCahierDeTexte.js +12 -0
  887. package/dist/modules/icons/components/apps/IconCahierTextes.d.ts +7 -0
  888. package/dist/modules/icons/components/apps/IconCahierTextes.js +12 -0
  889. package/dist/modules/icons/components/apps/IconCalendar.d.ts +7 -0
  890. package/dist/modules/icons/components/apps/IconCalendar.js +12 -0
  891. package/dist/modules/icons/components/apps/IconCanalNumerique.d.ts +7 -0
  892. package/dist/modules/icons/components/apps/IconCanalNumerique.js +12 -0
  893. package/dist/modules/icons/components/apps/IconCcn.d.ts +7 -0
  894. package/dist/modules/icons/components/apps/IconCcn.js +12 -0
  895. package/dist/modules/icons/components/apps/IconCerise.d.ts +7 -0
  896. package/dist/modules/icons/components/apps/IconCerise.js +12 -0
  897. package/dist/modules/icons/components/apps/IconCervoprint.d.ts +7 -0
  898. package/dist/modules/icons/components/apps/IconCervoprint.js +12 -0
  899. package/dist/modules/icons/components/apps/IconCharlemagne.d.ts +7 -0
  900. package/dist/modules/icons/components/apps/IconCharlemagne.js +12 -0
  901. package/dist/modules/icons/components/apps/IconCharte.d.ts +7 -0
  902. package/dist/modules/icons/components/apps/IconCharte.js +12 -0
  903. package/dist/modules/icons/components/apps/IconChat.d.ts +7 -0
  904. package/dist/modules/icons/components/apps/IconChat.js +12 -0
  905. package/dist/modules/icons/components/apps/IconCidj.d.ts +7 -0
  906. package/dist/modules/icons/components/apps/IconCidj.js +12 -0
  907. package/dist/modules/icons/components/apps/IconCns.d.ts +7 -0
  908. package/dist/modules/icons/components/apps/IconCns.js +12 -0
  909. package/dist/modules/icons/components/apps/IconCollaborativeWall.d.ts +7 -0
  910. package/dist/modules/icons/components/apps/IconCollaborativeWall.js +12 -0
  911. package/dist/modules/icons/components/apps/IconCommunity.d.ts +7 -0
  912. package/dist/modules/icons/components/apps/IconCommunity.js +12 -0
  913. package/dist/modules/icons/components/apps/IconCompetences.d.ts +7 -0
  914. package/dist/modules/icons/components/apps/IconCompetences.js +12 -0
  915. package/dist/modules/icons/components/apps/IconConnecteurGenerique1.d.ts +7 -0
  916. package/dist/modules/icons/components/apps/IconConnecteurGenerique1.js +12 -0
  917. package/dist/modules/icons/components/apps/IconConnecteurGenerique2.d.ts +7 -0
  918. package/dist/modules/icons/components/apps/IconConnecteurGenerique2.js +12 -0
  919. package/dist/modules/icons/components/apps/IconConversation.d.ts +7 -0
  920. package/dist/modules/icons/components/apps/IconConversation.js +12 -0
  921. package/dist/modules/icons/components/apps/IconDirectory.d.ts +7 -0
  922. package/dist/modules/icons/components/apps/IconDirectory.js +12 -0
  923. package/dist/modules/icons/components/apps/IconEducagri.d.ts +7 -0
  924. package/dist/modules/icons/components/apps/IconEducagri.js +12 -0
  925. package/dist/modules/icons/components/apps/IconEdumedia.d.ts +7 -0
  926. package/dist/modules/icons/components/apps/IconEdumedia.js +12 -0
  927. package/dist/modules/icons/components/apps/IconEdumoov.d.ts +7 -0
  928. package/dist/modules/icons/components/apps/IconEdumoov.js +12 -0
  929. package/dist/modules/icons/components/apps/IconEdutheque.d.ts +7 -0
  930. package/dist/modules/icons/components/apps/IconEdutheque.js +12 -0
  931. package/dist/modules/icons/components/apps/IconElectron.d.ts +7 -0
  932. package/dist/modules/icons/components/apps/IconElectron.js +12 -0
  933. package/dist/modules/icons/components/apps/IconElyceepicardie.d.ts +7 -0
  934. package/dist/modules/icons/components/apps/IconElyceepicardie.js +12 -0
  935. package/dist/modules/icons/components/apps/IconEsidoc.d.ts +7 -0
  936. package/dist/modules/icons/components/apps/IconEsidoc.js +12 -0
  937. package/dist/modules/icons/components/apps/IconEuropress.d.ts +7 -0
  938. package/dist/modules/icons/components/apps/IconEuropress.js +12 -0
  939. package/dist/modules/icons/components/apps/IconExercizer.d.ts +7 -0
  940. package/dist/modules/icons/components/apps/IconExercizer.js +12 -0
  941. package/dist/modules/icons/components/apps/IconForms.d.ts +7 -0
  942. package/dist/modules/icons/components/apps/IconForms.js +16 -0
  943. package/dist/modules/icons/components/apps/IconForum.d.ts +7 -0
  944. package/dist/modules/icons/components/apps/IconForum.js +12 -0
  945. package/dist/modules/icons/components/apps/IconGepi.d.ts +7 -0
  946. package/dist/modules/icons/components/apps/IconGepi.js +12 -0
  947. package/dist/modules/icons/components/apps/IconGlpi.d.ts +7 -0
  948. package/dist/modules/icons/components/apps/IconGlpi.js +12 -0
  949. package/dist/modules/icons/components/apps/IconHiboutheque.d.ts +7 -0
  950. package/dist/modules/icons/components/apps/IconHiboutheque.js +12 -0
  951. package/dist/modules/icons/components/apps/IconItopstore.d.ts +7 -0
  952. package/dist/modules/icons/components/apps/IconItopstore.js +12 -0
  953. package/dist/modules/icons/components/apps/IconKne.d.ts +7 -0
  954. package/dist/modules/icons/components/apps/IconKne.js +12 -0
  955. package/dist/modules/icons/components/apps/IconLeSiteTv.d.ts +7 -0
  956. package/dist/modules/icons/components/apps/IconLeSiteTv.js +12 -0
  957. package/dist/modules/icons/components/apps/IconLemonde.d.ts +7 -0
  958. package/dist/modules/icons/components/apps/IconLemonde.js +12 -0
  959. package/dist/modules/icons/components/apps/IconLesechos.d.ts +7 -0
  960. package/dist/modules/icons/components/apps/IconLesechos.js +12 -0
  961. package/dist/modules/icons/components/apps/IconLibrary.d.ts +7 -0
  962. package/dist/modules/icons/components/apps/IconLibrary.js +12 -0
  963. package/dist/modules/icons/components/apps/IconLsu.d.ts +7 -0
  964. package/dist/modules/icons/components/apps/IconLsu.js +12 -0
  965. package/dist/modules/icons/components/apps/IconMadmagz.d.ts +7 -0
  966. package/dist/modules/icons/components/apps/IconMadmagz.js +12 -0
  967. package/dist/modules/icons/components/apps/IconMatholycee.d.ts +7 -0
  968. package/dist/modules/icons/components/apps/IconMatholycee.js +12 -0
  969. package/dist/modules/icons/components/apps/IconMaxicours.d.ts +7 -0
  970. package/dist/modules/icons/components/apps/IconMaxicours.js +12 -0
  971. package/dist/modules/icons/components/apps/IconMediacentre.d.ts +7 -0
  972. package/dist/modules/icons/components/apps/IconMediacentre.js +12 -0
  973. package/dist/modules/icons/components/apps/IconMindmap.d.ts +7 -0
  974. package/dist/modules/icons/components/apps/IconMindmap.js +12 -0
  975. package/dist/modules/icons/components/apps/IconMonorientationenligne.d.ts +7 -0
  976. package/dist/modules/icons/components/apps/IconMonorientationenligne.js +12 -0
  977. package/dist/modules/icons/components/apps/IconMonstageenligne.d.ts +7 -0
  978. package/dist/modules/icons/components/apps/IconMonstageenligne.js +12 -0
  979. package/dist/modules/icons/components/apps/IconMoodle.d.ts +7 -0
  980. package/dist/modules/icons/components/apps/IconMoodle.js +12 -0
  981. package/dist/modules/icons/components/apps/IconMuseefrancaisphoto.d.ts +7 -0
  982. package/dist/modules/icons/components/apps/IconMuseefrancaisphoto.js +12 -0
  983. package/dist/modules/icons/components/apps/IconMyNetwork.d.ts +7 -0
  984. package/dist/modules/icons/components/apps/IconMyNetwork.js +12 -0
  985. package/dist/modules/icons/components/apps/IconNetvibes.d.ts +7 -0
  986. package/dist/modules/icons/components/apps/IconNetvibes.js +12 -0
  987. package/dist/modules/icons/components/apps/IconNote.d.ts +7 -0
  988. package/dist/modules/icons/components/apps/IconNote.js +12 -0
  989. package/dist/modules/icons/components/apps/IconNotebook.d.ts +7 -0
  990. package/dist/modules/icons/components/apps/IconNotebook.js +12 -0
  991. package/dist/modules/icons/components/apps/IconNotes.d.ts +7 -0
  992. package/dist/modules/icons/components/apps/IconNotes.js +12 -0
  993. package/dist/modules/icons/components/apps/IconOnisep.d.ts +7 -0
  994. package/dist/modules/icons/components/apps/IconOnisep.js +12 -0
  995. package/dist/modules/icons/components/apps/IconOnisep2.d.ts +7 -0
  996. package/dist/modules/icons/components/apps/IconOnisep2.js +12 -0
  997. package/dist/modules/icons/components/apps/IconPad.d.ts +7 -0
  998. package/dist/modules/icons/components/apps/IconPad.js +12 -0
  999. package/dist/modules/icons/components/apps/IconPages.d.ts +7 -0
  1000. package/dist/modules/icons/components/apps/IconPages.js +12 -0
  1001. package/dist/modules/icons/components/apps/IconParametrage.d.ts +7 -0
  1002. package/dist/modules/icons/components/apps/IconParametrage.js +12 -0
  1003. package/dist/modules/icons/components/apps/IconParametrages.d.ts +7 -0
  1004. package/dist/modules/icons/components/apps/IconParametrages.js +12 -0
  1005. package/dist/modules/icons/components/apps/IconParaschool.d.ts +7 -0
  1006. package/dist/modules/icons/components/apps/IconParaschool.js +12 -0
  1007. package/dist/modules/icons/components/apps/IconParcours.d.ts +7 -0
  1008. package/dist/modules/icons/components/apps/IconParcours.js +12 -0
  1009. package/dist/modules/icons/components/apps/IconPearltrees.d.ts +7 -0
  1010. package/dist/modules/icons/components/apps/IconPearltrees.js +12 -0
  1011. package/dist/modules/icons/components/apps/IconPicardieCursus.d.ts +7 -0
  1012. package/dist/modules/icons/components/apps/IconPicardieCursus.js +12 -0
  1013. package/dist/modules/icons/components/apps/IconPlaceholder.d.ts +7 -0
  1014. package/dist/modules/icons/components/apps/IconPlaceholder.js +16 -0
  1015. package/dist/modules/icons/components/apps/IconPoll.d.ts +7 -0
  1016. package/dist/modules/icons/components/apps/IconPoll.js +12 -0
  1017. package/dist/modules/icons/components/apps/IconPresences.d.ts +7 -0
  1018. package/dist/modules/icons/components/apps/IconPresences.js +16 -0
  1019. package/dist/modules/icons/components/apps/IconProeps.d.ts +7 -0
  1020. package/dist/modules/icons/components/apps/IconProeps.js +12 -0
  1021. package/dist/modules/icons/components/apps/IconPronote.d.ts +7 -0
  1022. package/dist/modules/icons/components/apps/IconPronote.js +12 -0
  1023. package/dist/modules/icons/components/apps/IconPublic.d.ts +7 -0
  1024. package/dist/modules/icons/components/apps/IconPublic.js +12 -0
  1025. package/dist/modules/icons/components/apps/IconQwant.d.ts +7 -0
  1026. package/dist/modules/icons/components/apps/IconQwant.js +12 -0
  1027. package/dist/modules/icons/components/apps/IconQwantJunior.d.ts +7 -0
  1028. package/dist/modules/icons/components/apps/IconQwantJunior.js +12 -0
  1029. package/dist/modules/icons/components/apps/IconRack.d.ts +7 -0
  1030. package/dist/modules/icons/components/apps/IconRack.js +12 -0
  1031. package/dist/modules/icons/components/apps/IconRbs.d.ts +7 -0
  1032. package/dist/modules/icons/components/apps/IconRbs.js +12 -0
  1033. package/dist/modules/icons/components/apps/IconResidenceArtiste.d.ts +7 -0
  1034. package/dist/modules/icons/components/apps/IconResidenceArtiste.js +12 -0
  1035. package/dist/modules/icons/components/apps/IconRessourcesdepartementale91.d.ts +7 -0
  1036. package/dist/modules/icons/components/apps/IconRessourcesdepartementale91.js +12 -0
  1037. package/dist/modules/icons/components/apps/IconSacoche.d.ts +7 -0
  1038. package/dist/modules/icons/components/apps/IconSacoche.js +12 -0
  1039. package/dist/modules/icons/components/apps/IconSchoolbook.d.ts +7 -0
  1040. package/dist/modules/icons/components/apps/IconSchoolbook.js +12 -0
  1041. package/dist/modules/icons/components/apps/IconScolinfo.d.ts +7 -0
  1042. package/dist/modules/icons/components/apps/IconScolinfo.js +12 -0
  1043. package/dist/modules/icons/components/apps/IconScrapbook.d.ts +7 -0
  1044. package/dist/modules/icons/components/apps/IconScrapbook.js +12 -0
  1045. package/dist/modules/icons/components/apps/IconSearchengine.d.ts +7 -0
  1046. package/dist/modules/icons/components/apps/IconSearchengine.js +12 -0
  1047. package/dist/modules/icons/components/apps/IconSettingsClass.d.ts +7 -0
  1048. package/dist/modules/icons/components/apps/IconSettingsClass.js +12 -0
  1049. package/dist/modules/icons/components/apps/IconSharebigfiles.d.ts +7 -0
  1050. package/dist/modules/icons/components/apps/IconSharebigfiles.js +12 -0
  1051. package/dist/modules/icons/components/apps/IconStatistics.d.ts +7 -0
  1052. package/dist/modules/icons/components/apps/IconStatistics.js +12 -0
  1053. package/dist/modules/icons/components/apps/IconStats.d.ts +7 -0
  1054. package/dist/modules/icons/components/apps/IconStats.js +12 -0
  1055. package/dist/modules/icons/components/apps/IconSuitcase.d.ts +7 -0
  1056. package/dist/modules/icons/components/apps/IconSuitcase.js +12 -0
  1057. package/dist/modules/icons/components/apps/IconSupport.d.ts +7 -0
  1058. package/dist/modules/icons/components/apps/IconSupport.js +12 -0
  1059. package/dist/modules/icons/components/apps/IconTimeline.d.ts +7 -0
  1060. package/dist/modules/icons/components/apps/IconTimeline.js +12 -0
  1061. package/dist/modules/icons/components/apps/IconTimelinegenerator.d.ts +7 -0
  1062. package/dist/modules/icons/components/apps/IconTimelinegenerator.js +12 -0
  1063. package/dist/modules/icons/components/apps/IconTurboself.d.ts +7 -0
  1064. package/dist/modules/icons/components/apps/IconTurboself.js +12 -0
  1065. package/dist/modules/icons/components/apps/IconUniversalis.d.ts +7 -0
  1066. package/dist/modules/icons/components/apps/IconUniversalis.js +12 -0
  1067. package/dist/modules/icons/components/apps/IconUnstagepourtous.d.ts +7 -0
  1068. package/dist/modules/icons/components/apps/IconUnstagepourtous.js +12 -0
  1069. package/dist/modules/icons/components/apps/IconUserbook.d.ts +7 -0
  1070. package/dist/modules/icons/components/apps/IconUserbook.js +12 -0
  1071. package/dist/modules/icons/components/apps/IconVideo.d.ts +7 -0
  1072. package/dist/modules/icons/components/apps/IconVideo.js +12 -0
  1073. package/dist/modules/icons/components/apps/IconVieScolaire.d.ts +7 -0
  1074. package/dist/modules/icons/components/apps/IconVieScolaire.js +12 -0
  1075. package/dist/modules/icons/components/apps/IconVisioconf.d.ts +7 -0
  1076. package/dist/modules/icons/components/apps/IconVisioconf.js +12 -0
  1077. package/dist/modules/icons/components/apps/IconWebclasseur.d.ts +7 -0
  1078. package/dist/modules/icons/components/apps/IconWebclasseur.js +12 -0
  1079. package/dist/modules/icons/components/apps/IconWebsite.d.ts +7 -0
  1080. package/dist/modules/icons/components/apps/IconWebsite.js +12 -0
  1081. package/dist/modules/icons/components/apps/IconWiki.d.ts +7 -0
  1082. package/dist/modules/icons/components/apps/IconWiki.js +13 -0
  1083. package/dist/modules/icons/components/apps/IconWorkspace.d.ts +7 -0
  1084. package/dist/modules/icons/components/apps/IconWorkspace.js +12 -0
  1085. package/dist/modules/icons/components/apps/index.d.ts +115 -0
  1086. package/dist/modules/icons/components/audience/IconCongrats.d.ts +7 -0
  1087. package/dist/modules/icons/components/audience/IconCongrats.js +22 -0
  1088. package/dist/modules/icons/components/audience/IconCongratsCounter.d.ts +7 -0
  1089. package/dist/modules/icons/components/audience/IconCongratsCounter.js +21 -0
  1090. package/dist/modules/icons/components/audience/IconGreat.d.ts +7 -0
  1091. package/dist/modules/icons/components/audience/IconGreat.js +16 -0
  1092. package/dist/modules/icons/components/audience/IconGreatCounter.d.ts +7 -0
  1093. package/dist/modules/icons/components/audience/IconGreatCounter.js +14 -0
  1094. package/dist/modules/icons/components/audience/IconGuest.d.ts +7 -0
  1095. package/dist/modules/icons/components/audience/IconGuest.js +12 -0
  1096. package/dist/modules/icons/components/audience/IconInteresting.d.ts +7 -0
  1097. package/dist/modules/icons/components/audience/IconInteresting.js +15 -0
  1098. package/dist/modules/icons/components/audience/IconInterestingCounter.d.ts +7 -0
  1099. package/dist/modules/icons/components/audience/IconInterestingCounter.js +17 -0
  1100. package/dist/modules/icons/components/audience/IconParent.d.ts +7 -0
  1101. package/dist/modules/icons/components/audience/IconParent.js +12 -0
  1102. package/dist/modules/icons/components/audience/IconPersonnel.d.ts +7 -0
  1103. package/dist/modules/icons/components/audience/IconPersonnel.js +12 -0
  1104. package/dist/modules/icons/components/audience/IconStudent.d.ts +7 -0
  1105. package/dist/modules/icons/components/audience/IconStudent.js +20 -0
  1106. package/dist/modules/icons/components/audience/IconTeacher.d.ts +7 -0
  1107. package/dist/modules/icons/components/audience/IconTeacher.js +12 -0
  1108. package/dist/modules/icons/components/audience/IconThanks.d.ts +7 -0
  1109. package/dist/modules/icons/components/audience/IconThanks.js +18 -0
  1110. package/dist/modules/icons/components/audience/IconThanksCounter.d.ts +7 -0
  1111. package/dist/modules/icons/components/audience/IconThanksCounter.js +16 -0
  1112. package/dist/modules/icons/components/audience/index.d.ts +13 -0
  1113. package/dist/modules/icons/components/index.d.ts +149 -0
  1114. package/dist/modules/icons/components/nav/IconCommunity.d.ts +7 -0
  1115. package/dist/modules/icons/components/nav/IconCommunity.js +12 -0
  1116. package/dist/modules/icons/components/nav/IconDisconnect.d.ts +7 -0
  1117. package/dist/modules/icons/components/nav/IconDisconnect.js +12 -0
  1118. package/dist/modules/icons/components/nav/IconHome.d.ts +7 -0
  1119. package/dist/modules/icons/components/nav/IconHome.js +12 -0
  1120. package/dist/modules/icons/components/nav/IconMyApps.d.ts +7 -0
  1121. package/dist/modules/icons/components/nav/IconMyApps.js +12 -0
  1122. package/dist/modules/icons/components/nav/IconNeoAssistance.d.ts +7 -0
  1123. package/dist/modules/icons/components/nav/IconNeoAssistance.js +12 -0
  1124. package/dist/modules/icons/components/nav/IconNeoMessaging.d.ts +7 -0
  1125. package/dist/modules/icons/components/nav/IconNeoMessaging.js +12 -0
  1126. package/dist/modules/icons/components/nav/IconNewRelease.d.ts +7 -0
  1127. package/dist/modules/icons/components/nav/IconNewRelease.js +12 -0
  1128. package/dist/modules/icons/components/nav/IconOneAssistance.d.ts +7 -0
  1129. package/dist/modules/icons/components/nav/IconOneAssistance.js +12 -0
  1130. package/dist/modules/icons/components/nav/IconOneMessaging.d.ts +7 -0
  1131. package/dist/modules/icons/components/nav/IconOneMessaging.js +12 -0
  1132. package/dist/modules/icons/components/nav/IconOneProfile.d.ts +7 -0
  1133. package/dist/modules/icons/components/nav/IconOneProfile.js +13 -0
  1134. package/dist/modules/icons/components/nav/IconProfile.d.ts +7 -0
  1135. package/dist/modules/icons/components/nav/IconProfile.js +12 -0
  1136. package/dist/modules/icons/components/nav/IconSearch.d.ts +7 -0
  1137. package/dist/modules/icons/components/nav/IconSearch.js +12 -0
  1138. package/dist/modules/icons/components/nav/IconUserbook.d.ts +7 -0
  1139. package/dist/modules/icons/components/nav/IconUserbook.js +12 -0
  1140. package/dist/modules/icons/components/nav/index.d.ts +13 -0
  1141. package/dist/modules/modals/OnboardingModal/OnboardingModal.d.ts +42 -0
  1142. package/dist/modules/modals/OnboardingModal/OnboardingModal.js +58 -0
  1143. package/dist/modules/modals/OnboardingModal/index.d.ts +1 -0
  1144. package/dist/modules/modals/OnboardingModal/useOnboardingModal.d.ts +6 -0
  1145. package/dist/modules/modals/OnboardingModal/useOnboardingModal.js +30 -0
  1146. package/dist/modules/modals/PublishModal/PublishModal.d.ts +9 -0
  1147. package/dist/modules/modals/PublishModal/PublishModal.js +120 -0
  1148. package/dist/modules/modals/PublishModal/components/ActivitiesDropdown.d.ts +7 -0
  1149. package/dist/modules/modals/PublishModal/components/ActivitiesDropdown.js +29 -0
  1150. package/dist/modules/modals/PublishModal/components/AgeSelect.d.ts +8 -0
  1151. package/dist/modules/modals/PublishModal/components/AgeSelect.js +20 -0
  1152. package/dist/modules/modals/PublishModal/components/LangSelect.d.ts +5 -0
  1153. package/dist/modules/modals/PublishModal/components/LangSelect.js +19 -0
  1154. package/dist/modules/modals/PublishModal/components/PublishModalFooter.d.ts +1 -0
  1155. package/dist/modules/modals/PublishModal/components/PublishModalFooter.js +23 -0
  1156. package/dist/modules/modals/PublishModal/components/SubjectsDropdown.d.ts +7 -0
  1157. package/dist/modules/modals/PublishModal/components/SubjectsDropdown.js +29 -0
  1158. package/dist/modules/modals/PublishModal/components/ToastError.d.ts +5 -0
  1159. package/dist/modules/modals/PublishModal/components/ToastError.js +24 -0
  1160. package/dist/modules/modals/PublishModal/components/ToastSuccess.d.ts +4 -0
  1161. package/dist/modules/modals/PublishModal/components/ToastSuccess.js +18 -0
  1162. package/dist/modules/modals/PublishModal/constants/ageOptions.d.ts +1 -0
  1163. package/dist/modules/modals/PublishModal/constants/ageOptions.js +4 -0
  1164. package/dist/modules/modals/PublishModal/hooks/useActivitiesOptions.d.ts +4 -0
  1165. package/dist/modules/modals/PublishModal/hooks/useActivitiesOptions.js +34 -0
  1166. package/dist/modules/modals/PublishModal/hooks/useLanguageOptions.d.ts +4 -0
  1167. package/dist/modules/modals/PublishModal/hooks/useLanguageOptions.js +43 -0
  1168. package/dist/modules/modals/PublishModal/hooks/usePublishModal.d.ts +38 -0
  1169. package/dist/modules/modals/PublishModal/hooks/usePublishModal.js +106 -0
  1170. package/dist/modules/modals/PublishModal/hooks/useSubjectsOptions.d.ts +4 -0
  1171. package/dist/modules/modals/PublishModal/hooks/useSubjectsOptions.js +118 -0
  1172. package/dist/modules/modals/PublishModal/index.d.ts +1 -0
  1173. package/dist/modules/modals/ResourceModal/ResourceModal.d.ts +30 -0
  1174. package/dist/modules/modals/ResourceModal/ResourceModal.js +155 -0
  1175. package/dist/modules/modals/ResourceModal/apps/BlogPublic.d.ts +13 -0
  1176. package/dist/modules/modals/ResourceModal/apps/BlogPublic.js +62 -0
  1177. package/dist/modules/modals/ResourceModal/hooks/useSlug.d.ts +17 -0
  1178. package/dist/modules/modals/ResourceModal/hooks/useSlug.js +41 -0
  1179. package/dist/modules/modals/ResourceModal/hooks/useThumb.d.ts +11 -0
  1180. package/dist/modules/modals/ResourceModal/hooks/useThumb.js +17 -0
  1181. package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.d.ts +7 -0
  1182. package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.js +12 -0
  1183. package/dist/modules/modals/ResourceModal/index.d.ts +3 -0
  1184. package/dist/modules/modals/ShareModal/ShareBookmark.d.ts +8 -0
  1185. package/dist/modules/modals/ShareModal/ShareBookmark.js +22 -0
  1186. package/dist/modules/modals/ShareModal/ShareBookmarkLine.d.ts +9 -0
  1187. package/dist/modules/modals/ShareModal/ShareBookmarkLine.js +49 -0
  1188. package/dist/modules/modals/ShareModal/ShareModal.d.ts +41 -0
  1189. package/dist/modules/modals/ShareModal/ShareModal.js +130 -0
  1190. package/dist/modules/modals/ShareModal/apps/ShareBlog.d.ts +8 -0
  1191. package/dist/modules/modals/ShareModal/apps/ShareBlog.js +43 -0
  1192. package/dist/modules/modals/ShareModal/hooks/useSearch.d.ts +24 -0
  1193. package/dist/modules/modals/ShareModal/hooks/useSearch.js +178 -0
  1194. package/dist/modules/modals/ShareModal/hooks/useShare.d.ts +54 -0
  1195. package/dist/modules/modals/ShareModal/hooks/useShare.js +192 -0
  1196. package/dist/modules/modals/ShareModal/hooks/useShareBookmark.d.ts +23 -0
  1197. package/dist/modules/modals/ShareModal/hooks/useShareBookmark.js +67 -0
  1198. package/dist/modules/modals/ShareModal/hooks/useShareMutation.d.ts +13 -0
  1199. package/dist/modules/modals/ShareModal/hooks/useShareMutation.js +15 -0
  1200. package/dist/modules/modals/ShareModal/index.d.ts +3 -0
  1201. package/dist/modules/modals/ShareModal/utils/hasRight.d.ts +2 -0
  1202. package/dist/modules/modals/ShareModal/utils/hasRight.js +4 -0
  1203. package/dist/modules/modals/ShareModal/utils/showShareRightLine.d.ts +2 -0
  1204. package/dist/modules/modals/ShareModal/utils/showShareRightLine.js +4 -0
  1205. package/dist/modules/modals/index.d.ts +4 -0
  1206. package/dist/modules/multimedia/AudioRecorder/AudioRecorder.d.ts +12 -0
  1207. package/dist/modules/multimedia/AudioRecorder/AudioRecorder.js +49 -0
  1208. package/dist/modules/multimedia/AudioRecorder/AudioRecorderTimer.d.ts +10 -0
  1209. package/dist/modules/multimedia/AudioRecorder/AudioRecorderTimer.js +26 -0
  1210. package/dist/modules/multimedia/AudioRecorder/index.d.ts +1 -0
  1211. package/dist/modules/multimedia/AudioRecorder/useAudioRecorder.d.ts +16 -0
  1212. package/dist/modules/multimedia/AudioRecorder/useAudioRecorder.js +314 -0
  1213. package/dist/modules/multimedia/Embed/Embed.d.ts +5 -0
  1214. package/dist/modules/multimedia/Embed/Embed.js +32 -0
  1215. package/dist/modules/multimedia/Embed/index.d.ts +2 -0
  1216. package/dist/modules/multimedia/FileCard/FileCard._.d.ts +17 -0
  1217. package/dist/modules/multimedia/FileCard/FileCard.d.ts +13 -0
  1218. package/dist/modules/multimedia/FileCard/FileCard.js +94 -0
  1219. package/dist/modules/multimedia/FileCard/FileIcon.d.ts +6 -0
  1220. package/dist/modules/multimedia/FileCard/FileIcon.js +15 -0
  1221. package/dist/modules/multimedia/FileCard/index.d.ts +2 -0
  1222. package/dist/modules/multimedia/ImageEditor/components/ImageEditor.d.ts +27 -0
  1223. package/dist/modules/multimedia/ImageEditor/components/ImageEditor.js +116 -0
  1224. package/dist/modules/multimedia/ImageEditor/components/ImageEditorToolbar.d.ts +7 -0
  1225. package/dist/modules/multimedia/ImageEditor/components/ImageEditorToolbar.js +72 -0
  1226. package/dist/modules/multimedia/ImageEditor/effects/blur.d.ts +19 -0
  1227. package/dist/modules/multimedia/ImageEditor/effects/blur.js +72 -0
  1228. package/dist/modules/multimedia/ImageEditor/effects/crop.d.ts +28 -0
  1229. package/dist/modules/multimedia/ImageEditor/effects/crop.js +155 -0
  1230. package/dist/modules/multimedia/ImageEditor/effects/misc.d.ts +154 -0
  1231. package/dist/modules/multimedia/ImageEditor/effects/misc.js +162 -0
  1232. package/dist/modules/multimedia/ImageEditor/effects/resize.d.ts +25 -0
  1233. package/dist/modules/multimedia/ImageEditor/effects/resize.js +157 -0
  1234. package/dist/modules/multimedia/ImageEditor/effects/rotate.d.ts +8 -0
  1235. package/dist/modules/multimedia/ImageEditor/effects/rotate.js +33 -0
  1236. package/dist/modules/multimedia/ImageEditor/hooks/useHistoryTool.d.ts +32 -0
  1237. package/dist/modules/multimedia/ImageEditor/hooks/useHistoryTool.js +66 -0
  1238. package/dist/modules/multimedia/ImageEditor/hooks/useImageEditor.d.ts +29 -0
  1239. package/dist/modules/multimedia/ImageEditor/hooks/useImageEditor.js +76 -0
  1240. package/dist/modules/multimedia/ImageEditor/hooks/useImageEffects.d.ts +23 -0
  1241. package/dist/modules/multimedia/ImageEditor/hooks/useImageEffects.js +52 -0
  1242. package/dist/modules/multimedia/ImageEditor/index.d.ts +1 -0
  1243. package/dist/modules/multimedia/ImageEditor/utilities/aggregate.d.ts +9 -0
  1244. package/dist/modules/multimedia/ImageEditor/utilities/aggregate.js +13 -0
  1245. package/dist/modules/multimedia/ImageEditor/utilities/debounceAggregate.d.ts +10 -0
  1246. package/dist/modules/multimedia/ImagePicker/ImagePicker.d.ts +46 -0
  1247. package/dist/modules/multimedia/ImagePicker/ImagePicker.js +40 -0
  1248. package/dist/modules/multimedia/ImagePicker/index.d.ts +2 -0
  1249. package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.d.ts +28 -0
  1250. package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.js +45 -0
  1251. package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.d.ts +37 -0
  1252. package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.js +129 -0
  1253. package/dist/modules/multimedia/Linker/index.d.ts +4 -0
  1254. package/dist/modules/multimedia/LinkerCard/LinkerCard._.d.ts +8 -0
  1255. package/dist/modules/multimedia/LinkerCard/LinkerCard.d.ts +13 -0
  1256. package/dist/modules/multimedia/LinkerCard/LinkerCard.js +38 -0
  1257. package/dist/modules/multimedia/LinkerCard/index.d.ts +2 -0
  1258. package/dist/modules/multimedia/MediaLibrary/MediaLibrary.d.ts +84 -0
  1259. package/dist/modules/multimedia/MediaLibrary/MediaLibrary.js +217 -0
  1260. package/dist/modules/multimedia/MediaLibrary/MediaLibraryContext.d.ts +60 -0
  1261. package/dist/modules/multimedia/MediaLibrary/MediaLibraryContext.js +12 -0
  1262. package/dist/modules/multimedia/MediaLibrary/index.d.ts +3 -0
  1263. package/dist/modules/multimedia/MediaLibrary/innertabs/Audio.d.ts +1 -0
  1264. package/dist/modules/multimedia/MediaLibrary/innertabs/Audio.js +19 -0
  1265. package/dist/modules/multimedia/MediaLibrary/innertabs/ExternalLink.d.ts +6 -0
  1266. package/dist/modules/multimedia/MediaLibrary/innertabs/ExternalLink.js +17 -0
  1267. package/dist/modules/multimedia/MediaLibrary/innertabs/Iframe.d.ts +1 -0
  1268. package/dist/modules/multimedia/MediaLibrary/innertabs/Iframe.js +14 -0
  1269. package/dist/modules/multimedia/MediaLibrary/innertabs/InternalLink.d.ts +11 -0
  1270. package/dist/modules/multimedia/MediaLibrary/innertabs/InternalLink.js +35 -0
  1271. package/dist/modules/multimedia/MediaLibrary/innertabs/Upload.d.ts +1 -0
  1272. package/dist/modules/multimedia/MediaLibrary/innertabs/Upload.js +34 -0
  1273. package/dist/modules/multimedia/MediaLibrary/innertabs/Video.d.ts +1 -0
  1274. package/dist/modules/multimedia/MediaLibrary/innertabs/Video.js +22 -0
  1275. package/dist/modules/multimedia/MediaLibrary/innertabs/VideoEmbedder.d.ts +1 -0
  1276. package/dist/modules/multimedia/MediaLibrary/innertabs/VideoEmbedder.js +15 -0
  1277. package/dist/modules/multimedia/MediaLibrary/innertabs/Workspace.d.ts +1 -0
  1278. package/dist/modules/multimedia/MediaLibrary/innertabs/Workspace.js +31 -0
  1279. package/dist/modules/multimedia/MediaLibrary/innertabs/index.d.ts +10 -0
  1280. package/dist/modules/multimedia/MediaLibrary/innertabs/index.js +21 -0
  1281. package/dist/modules/multimedia/UploadCard/UploadCard._.d.ts +9 -0
  1282. package/dist/modules/multimedia/UploadCard/UploadCard.d.ts +43 -0
  1283. package/dist/modules/multimedia/UploadCard/UploadCard.js +75 -0
  1284. package/dist/modules/multimedia/UploadCard/index.d.ts +2 -0
  1285. package/dist/modules/multimedia/UploadFiles/UploadFiles.d.ts +9 -0
  1286. package/dist/modules/multimedia/UploadFiles/UploadFiles.js +56 -0
  1287. package/dist/modules/multimedia/UploadFiles/index.d.ts +2 -0
  1288. package/dist/modules/multimedia/VideoEmbed/VideoEmbed.d.ts +6 -0
  1289. package/dist/modules/multimedia/VideoEmbed/VideoEmbed.js +76 -0
  1290. package/dist/modules/multimedia/VideoEmbed/index.d.ts +1 -0
  1291. package/dist/modules/multimedia/VideoRecorder/VideoRecorder.d.ts +14 -0
  1292. package/dist/modules/multimedia/VideoRecorder/VideoRecorder.js +265 -0
  1293. package/dist/modules/multimedia/VideoRecorder/index.d.ts +1 -0
  1294. package/dist/modules/multimedia/Workspace/Workspace.d.ts +33 -0
  1295. package/dist/modules/multimedia/Workspace/Workspace.js +172 -0
  1296. package/dist/modules/multimedia/Workspace/index.d.ts +2 -0
  1297. package/dist/modules/multimedia/index.d.ts +7 -0
  1298. package/dist/modules/widgets/BookmarkedApps/BookmarkedApps.d.ts +8 -0
  1299. package/dist/modules/widgets/BookmarkedApps/index.d.ts +2 -0
  1300. package/dist/modules/widgets/Widget/Widget.d.ts +17 -0
  1301. package/dist/modules/widgets/Widget/index.d.ts +2 -0
  1302. package/dist/modules/widgets/index.d.ts +2 -0
  1303. package/dist/multimedia.js +18 -0
  1304. package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.d.ts +26 -0
  1305. package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.js +5 -0
  1306. package/dist/providers/EdificeClientProvider/EdificeClientProvider.d.ts +9 -0
  1307. package/dist/providers/EdificeClientProvider/EdificeClientProvider.hook.d.ts +1 -0
  1308. package/dist/providers/EdificeClientProvider/EdificeClientProvider.hook.js +11 -0
  1309. package/dist/providers/EdificeClientProvider/EdificeClientProvider.js +54 -0
  1310. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.context.d.ts +10 -0
  1311. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.context.js +5 -0
  1312. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.d.ts +2 -0
  1313. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.hook.d.ts +1 -0
  1314. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.hook.js +11 -0
  1315. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.js +46 -0
  1316. package/dist/providers/MockedDataProvider/MockedDataProvider.d.ts +28 -0
  1317. package/dist/providers/MockedDataProvider/MockedDataProvider.js +9 -0
  1318. package/dist/providers/MockedDataProvider/index.d.ts +1 -0
  1319. package/dist/providers/index.d.ts +6 -0
  1320. package/dist/types/index.d.ts +3 -0
  1321. package/dist/types/size.d.ts +1 -0
  1322. package/dist/types/status.d.ts +1 -0
  1323. package/dist/types/treedata.d.ts +30 -0
  1324. package/dist/utilities/check-user-rights/check-user-rights.d.ts +11 -0
  1325. package/dist/utilities/check-user-rights/check-user-rights.js +46 -0
  1326. package/dist/utilities/check-user-rights/index.d.ts +1 -0
  1327. package/dist/utilities/emptyscreen-mapping/emptyscreen-mapping.d.ts +6 -0
  1328. package/dist/utilities/emptyscreen-mapping/emptyscreen-mapping.js +49 -0
  1329. package/dist/utilities/emptyscreen-mapping/index.d.ts +1 -0
  1330. package/dist/utilities/index.d.ts +3 -0
  1331. package/dist/utilities/refs/index.d.ts +1 -0
  1332. package/dist/utilities/refs/ref.d.ts +5 -0
  1333. package/dist/utilities/refs/ref.js +14 -0
  1334. package/package.json +177 -0
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconUniversalis = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M12.94 16.96c-.48-.03-.94.36-.92.96 0 .48.03.57.41.82.92.6 1.93-.77 1.16-1.52a.9.9 0 0 0-.65-.26m-10.3 0c-.28 0-.36.16-.1.24.25.1.22 1.37-.04 1.51-.14.07-.1.1.27.1.26 0 .36-.03.28-.08-.1-.07-.14-.26-.12-.62l.05-.5.53.64c.3.37.58.63.63.6s.07-.4.07-.84c0-.48.05-.84.14-.91.1-.1.03-.15-.31-.12-.39 0-.4 0-.22.14.15.1.2.24.15.63l-.03.48-.53-.63c-.38-.48-.57-.65-.76-.65zm4.07 0c-.24 0-.43.04-.43.12 0 .04.04.1.1.1.18 0 .76.88.76 1.17 0 .12-.1.29-.2.36-.14.07-.06.1.37.1.4 0 .48-.03.34-.1a.54.54 0 0 1-.2-.36c0-.29.6-1.18.77-1.18a.1.1 0 0 0 .1-.1c0-.07-.17-.11-.36-.11-.22 0-.39.04-.39.12 0 .04.05.1.12.1.05 0 .03.14-.1.3l-.18.32-.27-.3c-.14-.16-.19-.28-.12-.3.27-.1.1-.24-.31-.24m7.77 0c-.3 0-.53.04-.53.12 0 .04.05.1.12.1.16 0 .14 1.5-.03 1.56-.07.04.08.07.34.07.31 0 .43-.03.36-.08-.17-.1-.29-.62-.17-.64 1.28-.12 1.18-1.13-.1-1.13zm2.5 0c-.44 0-.75.04-.75.12 0 .04.05.1.1.1.14 0-.6 1.34-.84 1.5-.15.1-.1.13.26.13.29 0 .39-.03.29-.1-.22-.12.02-.5.31-.5.15 0 .2.07.2.24 0 .14-.05.26-.13.29-.07.04.22.07.65.07.68 0 .77-.03.85-.22.1-.26-.05-.38-.2-.17-.04.12-.21.2-.4.2-.3 0-.34-.05-.34-.32 0-.24.05-.31.21-.31.12 0 .22.05.22.1 0 .07.05.12.12.12.05 0 .1-.17.1-.37s.04-.38.12-.4c.04-.03.07-.15.02-.27-.05-.2-.14-.22-.8-.22zm1.56 0c-.58 0-.6.02-.43.19.26.29.26 1.42 0 1.56-.15.07-.03.1.53.1.64 0 .77-.03 1-.24.27-.27.37-.75.2-1.13-.1-.3-.65-.48-1.3-.48m1.9 0c-.43 0-.43.02-.29.19.22.24.2 1.44-.02 1.56-.1.07.14.1.7.1.47 0 .81-.03.74-.08-.22-.07-.17-.3.07-.43.29-.14.7.05.63.31-.05.17 0 .2.3.2.37 0 .4 0 .25-.17-.1-.1-.31-.53-.48-.94s-.34-.74-.36-.74c-.05 0-.27.4-.5.89-.3.62-.47.86-.59.84-.14-.03-.19-.2-.21-.77 0-.48.02-.75.1-.75.04 0 .11-.04.11-.1s-.21-.11-.45-.11m-9.81.02c-.46 0-.48 0-.31.12.14.12.16.29.16.82s-.02.7-.16.8c-.15.06 0 .09.62.09.77 0 .84 0 .9-.22.06-.31-.03-.38-.2-.17-.07.12-.29.2-.48.2h-.34v-.72c0-.58.02-.73.17-.73.07 0 .14-.04.14-.1s-.21-.11-.5-.09m-1.2 0c-.6 0-.94.27-1.04.74-.1.46.1.87.48 1.06.15.08.41.12.58.08.39-.05.74-.34.65-.49-.05-.07-.12-.04-.2.05-.23.31-.57.31-.86.05-.31-.31-.36-.72-.12-1.08a.63.63 0 0 1 .96.02l.17.22v-.32c0-.3 0-.3-.5-.33zm-8.25 0c-.27 0-.44.02-.44.07 0 .07.05.12.12.12.15 0 .15 1.37-.02 1.52-.1.1.05.12.63.12.6 0 .79-.03.84-.17.12-.29.07-.39-.12-.2a1 1 0 0 1-.56.18c-.3 0-.33-.05-.33-.32s.02-.31.31-.31c.17 0 .34.05.36.12.05.07.07-.02.07-.22 0-.26-.02-.33-.12-.24a.62.62 0 0 1-.38.15c-.2 0-.24-.07-.24-.32 0-.28.02-.3.34-.3.19 0 .4.06.48.16.14.17.16.17.12-.07-.03-.24-.08-.27-.75-.3h-.31zm4.38 0c-.56 0-.87.2-1.01.67-.12.46.1 1.01.45 1.16.34.14.84.04 1.1-.2.27-.26.15-.4-.14-.16-.1.1-.21.12-.26.1-.05-.06-.07-.03-.07.04 0 .2-.22.14-.5-.14s-.35-.72-.1-1.06a.63.63 0 0 1 .96.02l.17.22v-.31c0-.3-.03-.32-.49-.34h-.12zm13.27.17c.07 0 .2.05.34.12.33.19.43.58.26.98-.12.3-.21.37-.48.37h-.34v-.73c0-.52.03-.74.22-.74m-1.59.02c.36 0 .44.15.27.41-.22.31-.53.27-.53-.1 0-.26.05-.3.26-.3zm-4.33 0c.15 0 .3.05.39.12.19.2.14 1.06-.05 1.25-.29.3-.58.2-.8-.24-.14-.24-.09-.77.13-.98.07-.1.19-.15.33-.15m1.78.03c.08 0 .15.02.22.12.14.12.14.21.07.33-.2.3-.34.27-.43-.02-.05-.27.02-.43.14-.43m1.83.3c.02-.01.02.06.02.23s-.04.26-.14.26c-.14 0-.14-.05-.05-.24.1-.17.15-.24.17-.24zm5.43.13v.02c0 .08.05.2.08.3.04.09 0 .14-.17.14-.12 0-.22-.03-.22-.08 0-.12.24-.4.32-.38zm-6.63 1.97-.03.02c-.04.05-.24.08-.5.05-.39-.05-.43-.02-.63.15-.36.36-.29.77.2 1.03.62.39.79.53.79.7 0 .38-.55.45-.87.1-.12-.13-.19-.27-.19-.34 0-.05-.05-.08-.07-.05-.05.02-.07.2-.07.4v.37l.58.02c.55.03.6 0 .79-.17.14-.12.2-.24.2-.4 0-.39-.06-.46-.54-.75-.74-.43-.84-.62-.5-.84.14-.1.19-.1.36-.03a.9.9 0 0 1 .34.34c.16.36.19.36.19-.17 0-.29-.03-.4-.05-.43m7.7 0-.03.02c-.05.05-.24.08-.53.05-.43-.05-.43-.05-.63.2-.1.11-.19.28-.19.4 0 .22.39.6.87.9.4.21.46.47.17.67-.3.16-.75-.08-.85-.46-.07-.27-.14-.14-.16.29v.36l.57.02c.68.03.85-.07.97-.45.1-.36-.05-.58-.65-.97-.58-.36-.7-.55-.39-.74.12-.07.22-.1.36-.02.24.07.39.26.39.43 0 .07.05.14.07.17.05.02.07-.15.07-.44 0-.3 0-.43-.05-.43zm-19.99.05c-.7 0-.96.07-.6.17l.2.04-.03.87c-.03.8-.05.87-.2.99a.76.76 0 0 1-.48.14c-.45 0-.55-.2-.57-1.03-.03-.7.05-1.04.21-1.04.08 0 .12-.04.12-.07 0-.1-.98-.1-1.03 0-.02.03.02.07.12.07.14.03.17.08.2.92.04.93.09 1.15.38 1.27.1.05.33.07.55.1.36 0 .46-.03.65-.22l.24-.21.02-.9c.03-.89.03-.89.2-.93.09-.03.23 0 .36.07.16.12.16.12.14 1.03-.02.84-.02.9-.17.99-.1.02-.14.1-.12.12.07.07.8.05.84-.03.03-.04-.02-.07-.1-.07-.2 0-.23-.1-.2-.89l.02-.72.7.9c.4.47.74.86.76.86.05 0 .07-.5.07-1.13 0-1.04 0-1.1.15-1.13.07-.03.14-.07.14-.12 0-.07-.77-.07-.82.02-.02.03.03.07.1.07.22 0 .22.08.2.85v.67l-.68-.84-.7-.82zm3.22 0c-.48 0-.77.1-.43.14.17.03.17.05.2 1.06.02.96.02 1.01-.13 1.06-.1.02-.14.07-.14.1 0 .04.21.07.5.07.48 0 .65-.1.34-.2-.12-.02-.15-.1-.15-1.03s.03-1 .15-1.03c.31-.1.12-.17-.34-.17m1.06 0c-.48 0-.65.07-.36.17.07.02.24.29.43.74l.48 1.1c.1.22.22.42.24.4.05 0 .27-.49.5-1.06.22-.56.47-1.06.51-1.11.05-.07.17-.1.3-.1l.2.03v1.03c0 1.04 0 1.04-.14 1.06-.1.02-.14.05-.12.1s.44.07.92.07c.98 0 .94.02 1.08-.56.05-.19.05-.19-.2.08-.23.24-.28.26-.66.26h-.39v-.94h.36c.29 0 .36.03.39.15.1.29.16.14.16-.3 0-.45-.07-.52-.19-.23-.07.14-.14.17-.4.17h-.32v-.85h.43c.39 0 .44 0 .5.17.13.27.22.22.2-.1l-.02-.26H9.9c-1.2-.02-1.61.02-1.23.14.1.05.12.1.1.17l-.32.8-.26.67-.22-.5c-.4-.9-.43-1.02-.29-1.14.2-.14.15-.16-.38-.16zm13.54 0c-.48 0-.65.1-.31.17l.19.04-.03 1c-.02.9-.02.95-.19 1.05-.07.02-.12.1-.1.12s.25.05.49.05c.48 0 .6-.08.36-.17-.15-.1-.15-.12-.15-1.06 0-.91 0-.96.15-1.03.26-.12.12-.17-.41-.17m-2.21 0c-.2 0-.34.02-.37.05s.03.07.1.12c.17.07.17.12.17 1.03 0 .94 0 .96-.17 1.03-.07.05-.14.1-.14.12 0 .05.4.08.91.08h.92l.12-.34c.04-.2.1-.36.07-.39-.03 0-.12.08-.24.22-.15.17-.27.24-.53.27-.5.04-.55 0-.55-.97 0-.81.07-1.08.26-1.08.05 0 .1-.05.1-.07 0-.05-.36-.07-.65-.07m-6.79 0c-.36 0-.52.07-.26.14l.17.05v.99c0 .96 0 .98-.15 1.08-.1.02-.14.1-.12.12.08.07 1.01.05 1.01-.03 0-.02-.07-.07-.14-.12-.14-.04-.17-.12-.2-.48-.02-.57.15-.55.63.15.39.5.39.53.7.53s.4-.1.17-.2a3.6 3.6 0 0 1-.87-.96c0-.02.1-.07.2-.1.21-.04.33-.26.3-.6-.04-.38-.28-.5-1-.55-.17-.02-.32-.02-.44-.02m5.08.02c-.05 0-.29.5-.55 1.1-.32.73-.5 1.1-.6 1.12-.08.02-.1.07-.08.12.03.07.75.1.75.02 0-.02-.07-.1-.12-.14-.1-.08-.12-.12-.05-.34l.1-.27h.91l.07.27c.07.21.07.26-.02.34-.2.14-.15.19.34.19.45 0 .6-.07.36-.22-.08-.02-.22-.26-.34-.5-.1-.27-.31-.75-.46-1.09-.14-.36-.29-.62-.31-.6m-4.76.2h.21c.24 0 .48.21.48.43s-.04.31-.26.4a.64.64 0 0 1-.29.08c-.14 0-.14-.02-.14-.46zm4.66.4.15.32c.04.16.14.33.14.4.02.05-.05.08-.29.08-.17 0-.31 0-.31-.03l.14-.4zM5.65 1.81v6.7c0 6.4.02 6.71.46 7.15.4.43.74.45 6.18.45 5.02 0 5.77-.04 6.13-.38.39-.34.4-.87.4-7.14V1.8h-1.99v12.5H7.67V1.81zm2.91 0v11.4h7.38v-2.46h-4.71V8.52l2.07-.05 2.07-.08V6.17L13.3 6.1l-2.07-.05v-2h4.47V1.81z" })
9
+ ] });
10
+ export {
11
+ SvgIconUniversalis as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconUnstagepourtous: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconUnstagepourtous;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconUnstagepourtous = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M13.59 22.2c-.08-.03-.12-.07-.12-.1 0-.05.07-.05.14-.02.1.02.17.07.17.1 0 .04-.02.07-.02.07zm-.15-.41c.03-.1.05-.17.07-.17 0 0 .03.07.03.17 0 .07-.03.14-.07.14s-.05-.07-.03-.14m.17.07c0-.05.05-.07.1-.07.02 0 .07 0 .07.02s-.05.05-.07.1c-.05.02-.1 0-.1-.05m.05-.21c-.1-.1-.05-.17.1-.15.12.05.12.03-.03-.1-.12-.1-.17-.23-.17-.57-.02-.46-.04-.53-.33-.55-.15-.03-.22.02-.3.14-.04.12-.14.24-.2.26-.1.08-.13.05-.06-.16a.95.95 0 0 1 .24-.36.8.8 0 0 0 .17-.27c0-.1 0-.07.07.02.05.17.05.17.08 0 0-.1-.05-.19-.08-.21a.37.37 0 0 1-.1-.24v-.17l-.11.2c-.12.18-.32.23-.24.04.02-.05.02-.12 0-.14-.05-.05-.1.1-.15.29s-.12.3-.19.3c-.05-.02-.1.03-.1.06 0 .07.1.12.22.07.07-.03.2.26.15.36-.03.02-.12.05-.24.05-.15 0-.2-.05-.24-.34-.03-.2-.08-.36-.08-.39-.07-.12-.5.24-.5.41 0 .15-.22.32-.39.32-.02 0-.04-.12-.04-.3 0-.2.1-.33.38-.6.2-.19.36-.38.36-.43 0-.07.05-.1.07-.04.05.02.1-.1.1-.34v-.39l-.27.34c-.12.2-.26.34-.28.34s0-.05.04-.1c.05-.05.1-.12.1-.17s-.07.03-.17.15-.21.19-.29.17c-.12-.05-.12-.03 0 .04.12.1.12.15.05.22-.12.12-.26.1-.31-.02-.03-.08-.07-.08-.17.02-.07.05-.14.07-.2.05-.02-.03-.04.1-.02.26.03.34-.02.41-.53.99-.28.34-.33.36-.45.29-.12-.1-.15-.1-.22.02-.29.39-.38.03-.38-1.44v-1.1l-.2.2c-.1.15-.1.18-.02.15a14 14 0 0 0-.89.84c-.31.32-.7.63-.84.75s-.24.26-.24.36c0 .14-.05.2-.24.2-.14 0-.24-.03-.24-.1s.05-.1.17-.08c.12.03.14 0 .14-.12 0-.1.03-.16.07-.14.2.05.99-1.2.87-1.32-.07-.08-.87.81-.87.98 0 .07-.02.15-.07.15a.6.6 0 0 0-.2.14c-.09.07-.11.1-.11 0 0-.05-.07 0-.14.1-.1.12-.17.33-.17.53s-.05.3-.1.33c-.05 0-.17.03-.24.05-.14.07-.2-.1-.26-.94-.03-.33-.08-.6-.1-.6s-.17.1-.31.2c-.3.23-.32.21-.1-.13.1-.12.15-.24.1-.24s-.12-.07-.15-.16c-.04-.17-.33-.5-.38-.44 0 0-.05.2-.07.39l-.05.36c0 .02-.07.02-.17 0-.14 0-.17-.07-.2-.5a2.2 2.2 0 0 0-.11-.66c-.03-.1-.07-.3-.07-.5s-.08-.6-.17-.91c-.27-1.09-.27-1.04 0-1.09.14-.02.24-.1.24-.14 0-.07.07-.14.14-.2s.1-.06.05-.06c-.07-.03-.1-.12-.1-.32 0-.21-.02-.26-.1-.17s-.06.1-.04 0c.02-.07.1-.12.2-.1.06.03.11 0 .06-.02-.04-.07.1-.28.2-.28.04 0 .07.1.02.19-.02.1.07-.03.24-.27.14-.24.24-.45.22-.5-.05-.03-.05-.2-.03-.36.03-.2 0-.32-.05-.32s-.1-.07-.12-.16l-.04-.17-.17.19c-.15.17-.17.17-.36.05-.12-.05-.36-.1-.53-.1-.24.03-.3 0-.27-.1.03-.04 0-.11-.04-.11-.12-.05.14-1.04.3-1.16.08-.05.27-.1.42-.1.38 0 .65.27.65.63 0 .2.04.34.29.53.14.17.3.26.38.24s.17-.05.24-.05c.12 0 .14-.36.02-.43-.04-.03-.07-.22-.07-.39 0-.65.6-.91 1.04-.45.29.29.29.55-.05.86-.36.36-.36.46.02.53.2.03.36.12.41.2s.07.47.07.88c0 .68-.02.77-.16.85-.12.07-.15.12-.05.21.14.17.38.96.38 1.25 0 .12-.07.41-.12.6-.07.24-.12.65-.1 1.1 0 .4.03.66.05.56l.12-.26c.1-.15.82-.63.97-.63.1 0 .29-.26.21-.34a2.2 2.2 0 0 1-.07-.5c-.02-.24-.07-.55-.07-.65-.03-.12-.07-.62-.1-1.13-.02-.67 0-.94.07-.94s.08-.02 0-.07-.1-.2-.1-.31c0-.36-.14-.34-.33.05-.14.3-.14.4-.1.6.05.12.08.21.03.21s-.07.05-.07.12c0 .08.05.12.1.12.07 0 .07.03 0 .1-.15.14-.27-.03-.22-.27.02-.12 0-.21-.03-.19-.12.07-.02-.6.12-.89.1-.19.1-.26.03-.36-.22-.26.4-.91.89-.91.19 0 .21-.03.21-.27 0-.21-.02-.26-.12-.24-.1.05-.12-.02-.12-.21 0-.58.48-.82.85-.41.16.16.19.26.16.55s-.02.31.1.29c.12-.05.14-.07.07-.2a1.2 1.2 0 0 1-.07-.5c0-.29.05-.38.22-.5.24-.2.55-.17.72.04.14.2.19.65.12.9-.08.16-.05.23.07.33.21.17.29.17.29.03 0-.08.19-.22.48-.34.26-.12.46-.24.46-.31 0-.05.04-.1.12-.12s.07-.08-.03-.17c-.14-.17-.05-.3.22-.27.21.03.33.22.14.22-.1 0-.12.02-.07.14.05.07.07.17.05.22-.05.12.53.38.6.26.1-.16.65-.53.74-.5.05.02.2 0 .3-.03.16-.07.23-.04.45.2s.34.4.2.31c-.08-.05-.06.89.02.96.02.03.1.05.12.05.04 0 .1.17.12.38 0 .2 0 .37-.05.34-.03-.02-.07.03-.1.12-.05.12-.02.15.05.07s.12 0 .22.24c.04.2.14.41.21.5.12.15.31.56.31.63 0 .03-.04.1-.12.17-.1.1-.07.12.3.12s.38 0 .35.17l-.16.7c-.05.29-.12.72-.12.98s-.05.7-.1.99c-.1.43-.12.5-.29.53s-.17.02-.12-.65c.03-.39.05-.72.07-.77.08-.07-.02-.58-.1-.5-.02.02-.06.3-.09.64-.12.94-.14 1.06-.34 1.06-.14 0-.14-.02-.12-.38.08-.5-.04-.53-.16-.08-.1.39-.1.5-.1.75 0 .17.02.17.17.12q.15-.105.21 0c.1.12-.26.91-.52 1.22-.1.1-.17.27-.17.44 0 .45-.1.62-.27.48zm-7.46-1.5c.12.12.05-1.32-.07-1.92L6 17.56l-.03.77c0 .72 0 .77.12.67.12-.07.12-.05.08.22-.08.36-.1.45-.2.4-.02-.02-.04.1-.04.3.02.4.02.4.14.28.07-.05.14-.07.14-.05zm4.19-.76c0-.15-.22-.05-.39.16-.26.39-.21.48.1.17.17-.14.29-.29.29-.34zm3.12.1c-.02-.08-.04-.03-.04.09 0 .1.02.14.04.1.03-.08.03-.15 0-.2zm-8.2-.63a13 13 0 0 0-.24-1.37c-.19-.77-.19-.8-.26-.49-.05.3.05 1.13.22 1.69.04.12.07.31.04.38-.02.22.1.5.2.46.04-.05.07-.29.04-.67m8.2.19c-.02-.05-.04 0-.04.1s.02.09.04.04c.03-.07.03-.12 0-.14m-3.22-.9c0-.16-.12-.76-.21-1.03-.05-.16-.17.7-.12.92.02.12 0 .19-.05.19s-.07.17-.07.4v.42l.24-.36c.12-.2.21-.44.21-.53zm2.62.49c0-.17-.19-1.01-.24-1.06-.04-.07-.02.87.05 1.01.02.12.2.15.2.05zm-8.53-.48c-.05-.2-.1-.34-.12-.31s0 .21.02.4c.02.24.07.34.12.32.05-.05.05-.22-.02-.41m6.97.36c-.02-.03-.07-.05-.1-.03-.12.08-.1.1.03.1.07 0 .1-.02.07-.07m-2.36-.27c.03-.04 0-.1-.02-.1a.1.1 0 0 0-.1.1c0 .08.03.12.05.12 0 0 .05-.04.07-.12m2.2-.36c.04.03.06 0 .02-.04-.05-.12-.2-.05-.2.1 0 .06.03.04.05 0q.045-.12.12-.06zm-2.3-.29c.03.1.03-.45-.02-.77-.02-.16-.14.39-.14.68 0 .14.02.17.07.1.05-.1.07-.1.1 0zm2.15-.04c-.03-.08-.07-.12-.07-.1-.03.02-.03.07 0 .12.07.15.12.12.07-.02m.84 0c.02 0 .02-.12.02-.32-.02-.67-.05-.72-.14-.24-.07.41-.07.87.02.6.03-.04.05-.07.1-.04m3.22-.94c-.02-.1-.05 0-.05.2s.03.26.05.16zM4.95 15.7c.03-.12-.02-.27-.07-.32-.1-.07-.1-.12-.02-.17.07-.02.07-.07.02-.1s-.12-.01-.17.06c-.1.14-.1.43.03.48.07.02.1.1.07.21-.05.1-.02.15.02.12s.1-.14.12-.29zm8.1-1.45c0-.02-.02-.04-.06-.02s-.08.1-.08.12c0 .05.03.07.08.05s.07-.1.07-.15zm1.28-.38c0-.03-.05-.07-.1-.07-.02 0-.07.04-.07.07 0 .05.05.1.08.1a.1.1 0 0 0 .1-.1zm.24-.1a.2.2 0 0 0-.1-.17c-.02-.02-.07.03-.07.12 0 .08.05.15.08.15a.1.1 0 0 0 .1-.1zm-2.07-.33c.12-.15.12-.15-.02-.05-.07.07-.12.14-.12.19s0 .07.02.05c0 0 .08-.1.12-.2zm-.36-.46c.03-.07 0-.15-.07-.2-.07-.07-.1-.04-.1.1.03.22.1.27.17.1m-3.07-.41c.02-.05.02-.12-.03-.14s-.07.02-.07.1c0 .18.02.2.1.04m4.73-.34c.05-.04 0-.07-.07-.04-.12.04-.14.12-.05.12.05 0 .1-.05.12-.08M9.21 21.5c-.07-.07-.07-.12.07-.21.2-.15.36-.1.41.1.07.23-.31.33-.48.11m3.85-.02c0-.08.26-.24.36-.24s-.05.14-.2.24c-.11.04-.16.04-.16 0m7.26-.34c-.12-.05-.14-.14-.1-.34.03-.14 0-.38-.04-.55s-.05-.36-.03-.4a22.4 22.4 0 0 0 .03-3.09c-.05.1-.08.39-.08.68-.02.4-.04.57-.16.72s-.17.33-.17.62c0 .3-.03.41-.12.43-.17.08-.22 0-.24-.43-.03-.21-.07-.43-.12-.43-.1-.07-.1-.36 0-.36.21 0 .24-.31.07-1.06-.1-.6-.12-.84-.07-1.01.12-.34.12-.77-.03-.77-.19 0-.28-.34-.24-1.1.03-.85.12-1.16.34-1.2.2-.05.36-.42.29-.63-.12-.36.48-.94.99-.94.26 0 .67.36.74.67.03.24-.12.63-.31.75-.15.07-.15.07 0 .07.07 0 .17.1.21.22.08.14.05.26-.07.55-.14.34-.17.36-.17.17 0-.12-.04-.27-.12-.32a.8.8 0 0 1-.14-.24c-.02-.1-.1-.12-.24-.07-.14.03-.14.03-.07-.07.05-.05.1-.17.1-.27s.07-.21.16-.26c.17-.12.2-.34.03-.34-.08 0-.1-.02-.08-.07s0-.07-.04-.07c-.08 0-.1.07-.1.34 0 .14-.07.16-.22.02-.04-.1-.04-.12.05-.17.12-.05.12-.07.03-.12-.1-.07-.1-.1 0-.14a.13.13 0 0 0 .04-.17c-.07-.12-.26.2-.26.43 0 .08-.07.27-.14.39-.15.24-.34 1-.22.89.1-.07.26.1.22.21-.05.17.12.22.26.1.1-.1.1-.12-.05-.17-.1-.02-.17-.1-.17-.17 0-.14.08-.14.27.03.12.1.17.12.2.05.02-.05.06-.1.11-.1s.05.02.03.07c-.03.05-.03.07.02.07.14 0 .1.32-.07.58l-.2.27.2-.17c.17-.15.17-.15.12 0-.05.12-.03.12.05.07.1-.05.1-.05 0 .07-.12.15-.2.2-.12.05.04-.05.02-.07 0-.05-.05.03-.08.27-.05.53.02.43.02.48.12.34.12-.24.29-.15.24.14-.05.15-.03.24.05.24s.07.03 0 .1c-.1.12-.08.12.02.12.17 0 .17.19-.07 1.06-.17.6-.22.96-.24 2.14-.07 2.02-.07 1.97-.15 2.09-.07.1-.12.12-.29 0m-.63-2.79c0-.02-.04-.05-.12-.07s-.1-.03-.07.02c.05.08.2.12.2.05zm.2-4.11c.12-.14.19-.31.16-.34-.07-.14-.14-.12-.43.15-.24.19-.26.24-.17.36.15.17.22.14.44-.17m-7.6 6.4c.02-.05.1-.05.17-.03.04.03.02.05-.05.05-.1 0-.15 0-.12-.03zm4.95-1.45-.02-1.56.02-.46-.07.46c-.02.26-.07.84-.07 1.27 0 .72-.07.99-.24.99s-.46-1.54-.36-1.92c.02-.1-.03-.41-.12-.7-.2-.63-.2-.63-.03-.55.15.04.15.02 0-.1-.14-.17-.16-.24-.04-1.18.07-.72.02-.98-.22-.89-.05.03-.1 0-.1-.07s-.07-.12-.12-.12c-.07 0-.12-.07-.12-.17 0-.17 0-.17.08-.02s.07.14.12-.03c.02-.07.14-.19.24-.24.21-.1.28-.45.19-.8-.1-.3.02-.26.17.1.04.13.16.32.26.39.14.12.14.12-.05.24-.1.07-.24.14-.31.14s-.17.03-.2.08c-.02.04 0 .07.06.07s.14.05.19.12c.07.1.17.05.65-.3.33-.2.62-.38.65-.38.12 0 .1.39 0 .44-.05.02-.17.24-.3.45-.16.37-.16.41-.04.3.14-.15.14-.15.14.09 0 .12-.02.22-.05.2-.04-.06-.38.45-.38.54 0 .03.12-.02.24-.12.24-.16.24-.16.17-.02-.15.27-.12.34.12.29.12 0 .29 0 .38.02.12.05.1.08-.14.2l-.31.12.28.1c.32.11.34.14.12.88-.1.41-.16.96-.19 1.85l-.05 1.28s-.07 0-.14-.03-.17 0-.2.05c-.16.24-.2-.02-.2-1zm-5.43-.29c0-.02.02-.04.07-.1.05-.02.07 0 .07.06s-.02.07-.07.07-.07 0-.07-.03m5.99-3.99c0-.05-.03-.07-.08-.05-.12.08-.1-.07.03-.16.1-.08.12-.08.14.04.03.1.03.2-.02.22s-.08 0-.08-.05zm-2.07-.14c-.08-.07-.15-.27-.22-.41l-.07-.27.14.2c.36.43.48.89.15.48m2.4-.39c-.24-.12-.34-.29-.2-.36.1-.07.54.3.49.41-.02.05-.1.05-.29-.05m-13.78-.02c-.05-.05-.02-.12.03-.17.1-.1.16.03.1.17-.06.07-.08.07-.13 0m16.84 0c0-.05-.05-.07-.13-.07-.14 0-.1-.2.08-.22.07-.02.12.05.14.17s.02.2-.02.2c-.03 0-.08-.03-.08-.08zm-17.75-.22c0-.05.05-.12.12-.19.12-.07.12-.07.1.05-.03.17-.22.29-.22.14m11.59-.33c0-.05.07-.08.17-.03.12.03.16.03.12-.05-.03-.04-.03-.07.04-.07.05 0 .08.03.05.1-.05.12-.38.17-.38.05m3-.17c0-.12-.12-.3-.3-.46-.34-.31-.37-.5-.08-.87.17-.21.2-.72.05-.86a.36.36 0 0 0-.22-.1c-.38 0-.53.75-.21 1.04.14.16.14.16 0 .12-.12-.03-.2.02-.32.3-.16.35-.33.54-.33.37 0-.05.02-.1.07-.12s.07-.1.07-.12c0-.05-.02-.07-.07-.05s-.07.03-.07-.05c0-.04-.1-.07-.32-.02-.38.05-.43-.07-.1-.2.18-.04.27-.14.3-.28.12-.6.53-1.13.86-1.13.27 0 .5.2.63.48.05.17.07.31.05.31-.05 0-.03.08.02.2.07.16.07.24 0 .36-.07.1-.07.16-.02.19s.07.1.07.17c0 .04-.03.1-.08.07-.1-.07-.1.05 0 .14.1.12.17.58.08.65-.05.03-.08-.05-.08-.14m-3.05-.08c-.02-.07-.02-.07.05-.04.14.1.05-.5-.12-.63-.12-.07-.14-.12-.05-.26.05-.08.07-.2.05-.27-.05-.17.2-.34.34-.24.16.1.36.65.26.7-.05.02-.07-.03-.07-.12 0-.17-.02-.17-.1-.07-.04.1-.07.1-.14 0s-.07-.1-.07.02c0 .07.05.12.12.12.05 0 .1.05.1.1s-.05.07-.1.04c-.1-.02-.1.03-.05.24.05.17.07.32.07.34 0 .1-.21.15-.29.07m2.26-1.37c-.05-.07-.07-.11-.05-.11l.17-.05c.12-.05.15-.03.1.07-.05.14-.05.14.07.05s.12-.1.1 0c-.05.16-.27.19-.39.04m-5.67-.5c0-.24.21-.55.4-.55.27 0 .6.38.49.55-.03.07-.08.05-.1-.1-.05-.14-.12-.19-.26-.21-.27-.03-.44.1-.48.36-.03.2-.03.2-.05-.05m5.6.1c0-.05.1-.1.27-.1.16.02.28.05.28.1s-.12.1-.28.1c-.17.02-.27-.03-.27-.1m-15.92-.6-.58-.2c-.07-.07.53-5.4.63-5.46.02-.04 22.65-1.37 22.67-1.34s-.43 5.38-.45 5.4c-.03.03-4.67.32-10.32.66-5.67.33-10.48.65-10.72.67-.44.05-.44.05-.44.24 0 .24-.07.24-.8.02zM3.39 9.5c.07-.5.07-.55.02-.55-.02 0-.07.12-.12.29l-.04.29-.08-.3c-.04-.26-.16-.4-.16-.19 0 .15.21.73.29.73.02 0 .07-.12.1-.27zm.48.15c.05-.2-.1-.5-.21-.48-.15.02-.22.3-.15.5.05.14.31.12.36-.02m-.24-.2c0-.1.02-.16.07-.16.03 0 .07.07.07.16s-.04.17-.07.17c-.05 0-.07-.07-.07-.17m.7.17v-.29c0-.14-.05-.24-.1-.24s-.05.08-.02.22c.07.36-.05.38-.15.05L4 9.04l-.02.3a1 1 0 0 0 .05.33c.07.05.33.02.3-.05m.46-.02c.02-.05-.05-.17-.15-.24-.1-.1-.12-.15-.02-.1.07.03.12 0 .12-.05 0-.1-.22-.16-.3-.07-.06.05-.04.12.08.24.17.17.2.32.05.2-.1-.08-.12-.08-.12.02 0 .12.29.12.34 0m.7-.2c0-.38-.15-.5-.34-.28-.1.12-.08.12.04.07.1-.03.17-.03.17.02s-.05.07-.1.07a.16.16 0 0 0-.14.1c-.05.14.03.24.22.24.12-.02.14-.05.14-.22zm-.22.1c-.03-.05-.03-.1.02-.12.02-.02.07.02.07.07 0 .12-.05.15-.1.05zm.43-.21c0-.15-.03-.27-.07-.27-.08 0-.1.27-.03.43s.1.12.1-.16m.48 0c0-.3-.07-.56-.14-.56-.03 0-.05.05-.03.1s-.02.12-.1.14c-.09.03-.14.07-.14.2 0 .28.07.4.24.38.15-.03.17-.05.17-.27zm-.22.16C5.9 9.38 5.9 9.1 6 9.1c.02 0 .05.07.05.2 0 .21 0 .23-.08.16zm.68.05c.02-.05 0-.1-.05-.12-.03-.02-.05 0-.05.05 0 .02-.05.07-.07.07-.05 0-.07-.05-.07-.12 0-.05.04-.1.12-.1.12 0 .14-.02.1-.14-.1-.24-.32-.22-.34.02a.7.7 0 0 0 0 .32c.04.1.28.12.36.02m-.24-.36c0-.02.02-.05.07-.05.02 0 .07.03.07.05 0 .05-.05.07-.07.07-.05 0-.07-.02-.07-.07m.48.14L6.9 9c.02-.08 0-.1-.05-.1-.1 0-.12.07-.12.29 0 .17.03.31.07.31s.08-.1.08-.21zm.77-.1c-.03-.3-.17-.6-.3-.6-.06 0-.06.03 0 .1.06.08.06.12 0 .15-.09.07-.06.19.03.17.07-.03.12-.03.12.02 0 .02-.05.07-.12.07-.1 0-.14.2-.05.3.03.01.12.04.2.01.12 0 .14-.04.12-.21zm-.22.08c0-.07.03-.12.07-.12.03 0 .08.05.08.07 0 .05-.05.1-.08.12-.04.03-.07-.02-.07-.07m.8-.1c-.03-.3-.08-.45-.17-.38-.08.02-.05.31.02.55.07.2.14.08.14-.16zm.33-.3c.1-.08.02-.13-.12-.08-.12.05-.14.27-.07.48.05.1.07.07.1-.12 0-.12.04-.26.1-.29zm.43.2c.03-.18 0-.28-.07-.3-.17-.08-.31.1-.26.3.04.27.07.3.21.27.08 0 .12-.1.12-.26zm-.21.18c-.08-.08-.05-.36.02-.36.05 0 .07.1.07.21 0 .2 0 .22-.1.15zm.72-.22c0-.14-.02-.29-.07-.31-.03-.03-.07.07-.07.24s-.03.26-.05.24c-.05-.03-.07-.15-.07-.24 0-.12-.05-.22-.08-.22-.07 0-.1.27-.02.46.02.05.1.1.2.1.14 0 .16-.03.16-.27m.38.12c.05-.24.05-.5-.02-.43-.05.02-.07.12-.1.19-.02.14-.04.12-.04 0 0-.1-.05-.17-.08-.17-.1 0-.1.07 0 .34s.17.29.24.07m.48 0c.03-.05.03-.1 0-.12s-.07 0-.07.05c-.02.05-.07.07-.1.05-.11-.07-.07-.17.08-.17s.17-.12.07-.27c-.07-.14-.31-.07-.34.08-.04.24.05.45.2.45.07 0 .14-.02.16-.07m-.24-.34c0-.04.03-.07.08-.07.02 0 .07.03.07.07s-.05.08-.07.08c-.05 0-.08-.03-.08-.08m.49.22c0-.12.02-.24.04-.31.03-.05-.02-.1-.07-.1-.1 0-.12.07-.12.31 0 .17.05.3.07.3.05 0 .08-.1.08-.2m.72-.02c.07-.24.04-.5-.03-.44-.02.05-.07.12-.1.22-.02.12-.02.12-.04-.02 0-.1-.03-.17-.07-.17-.08 0-.08.07.02.33.07.27.17.3.22.08m.48.02c.07-.2-.08-.5-.22-.48-.12.02-.2.34-.12.5.05.15.29.12.34-.02m-.24-.2c0-.09.04-.16.07-.16.05 0 .07.07.07.17s-.02.19-.07.19c-.03 0-.07-.1-.07-.2m.55.15c-.05-.05-.07-.19-.05-.31.03-.1.03-.22-.02-.24-.1-.07-.2.12-.12.26a.7.7 0 0 1 .07.27c0 .07.02.14.1.14.1 0 .1-.02.02-.12m.29-.14c0-.12.02-.24.07-.24.02 0 .07.1.07.21 0 .22.12.32.31.24.05-.02.08-.07.05-.12-.05-.04-.05-.07-.07 0-.05.12-.17.1-.17-.02 0-.05.08-.1.15-.1.12 0 .12-.02.07-.14-.05-.14-.1-.17-.34-.17h-.29v.3c0 .16.03.3.08.3s.07-.12.07-.26m.26-.17c0-.02.05-.07.08-.07.04 0 .07.05.07.07 0 .05-.03.07-.08.07-.02 0-.07-.02-.07-.07m2.2.31c.02-.05.02-.24 0-.4-.06-.3-.08-.32-.2-.3-.2.03-.24.32-.12.63.07.2.26.24.31.07zm-.22-.02c-.03-.05 0-.07.04-.07.03 0 .08.02.08.07 0 .02-.03.07-.05.07l-.08-.07zm-.03-.39c0-.1.03-.16.07-.16.03 0 .08.07.08.16s-.05.17-.08.17c-.04 0-.07-.07-.07-.17m-1.03.34c0-.07-.05-.17-.12-.24-.12-.12-.12-.14 0-.1.1.05.12.03.1-.04-.05-.15-.27-.15-.32-.03-.02.07.02.17.12.24s.12.15.1.17c-.05.02-.1 0-.12-.05 0-.05-.05-.07-.08-.02-.07.07.03.19.17.19.07 0 .15-.05.15-.12m.29-.22c0-.3-.08-.45-.17-.38-.05.02-.03.31.04.55.05.2.15.07.13-.17m.52.05c0-.38-.16-.53-.36-.29-.07.1-.07.1.08.05.1-.02.14-.02.14.02s-.03.08-.1.08c-.12 0-.17.1-.12.24.03.07.1.1.2.1.14 0 .16-.06.16-.2m-.24.07c-.02-.02 0-.07.05-.1.03-.02.05 0 .05.06 0 .12-.02.14-.1.04M5.7 8.76s-.03-.03-.07-.03c-.03 0-.08.05-.08.07 0 .05.05.05.08.03.04-.03.07-.05.07-.07m9.62 0c0-.1-.03-.1-.12-.03-.07.07-.1.07-.1-.02 0-.07.05-.12.1-.12.07 0 .12-.05.1-.15-.03-.24-.3-.21-.32.05a.6.6 0 0 0 0 .3c.07.14.34.11.34-.03m-.3-.3c0-.04.03-.07.08-.07s.07.03.07.08c0 .02-.02.07-.07.07s-.07-.05-.07-.07zm1 .3c.07-.1-.03-.77-.1-.77-.02 0-.05.02-.05.1 0 .04-.05.09-.12.11-.1.05-.14.46-.05.56.08.07.3.04.32 0m-.22-.22c0-.12.02-.22.07-.22.02 0 .05.08.05.17s-.03.2-.05.22c-.05.02-.07-.05-.07-.17m.67.07c0-.07 0-.1-.1-.02-.07.07-.09.07-.09-.03 0-.04.05-.1.1-.1.14 0 .14-.28 0-.33-.05 0-.08-.07-.05-.12.02-.07 0-.1-.05-.1-.07 0-.17.56-.12.73.05.14.31.12.31-.03m-.26-.29c0-.04.02-.07.07-.07.02 0 .07.03.07.07 0 .03-.05.08-.07.08-.05 0-.07-.05-.07-.08m.74.3c.03-.08 0-.1-.12-.06-.12.03-.14.03-.14-.14 0-.14.02-.17.12-.14.05.02.1.02.07-.05-.05-.12-.29-.1-.31.05-.05.26.05.48.21.45.08-.02.15-.07.17-.12zm.41-.25c0-.24-.05-.29-.14-.29-.12 0-.15.05-.17.2-.02.26.02.38.2.38.11 0 .14-.02.11-.29m-.19.15a.6.6 0 0 0-.05-.22c-.02-.07 0-.12.05-.12.1 0 .17.29.07.36-.05.07-.07.05-.07-.02m.7-.17c0-.17-.03-.32-.08-.32s-.07.15-.07.3c0 .16-.02.26-.07.23a.6.6 0 0 1-.07-.29c0-.16-.02-.24-.05-.19-.05.05-.05.2-.02.34.02.2.05.24.19.24s.17-.03.17-.31m.38-.1c.03-.31.03-.31-.07-.14-.07.14-.1.14-.1.04 0-.04-.04-.12-.1-.12s-.04.08.06.44c.07.24.21.1.21-.22m.5.22c.03-.1 0-.1-.06-.03-.1.08-.12.08-.17.03-.03-.05.02-.1.1-.12.16-.05.19-.3.04-.36-.17-.05-.31.12-.26.38.02.2.07.24.16.22s.17-.07.2-.12zm-.26-.3c0-.01.03-.06.07-.06.03 0 .08.05.08.07 0 .05-.05.07-.08.07-.04 0-.07-.02-.07-.07zm.58-.13c.07 0 .12.07.12.14 0 .22.07.36.17.36s.1-.02.02-.12c-.05-.05-.07-.2-.05-.31.05-.2-.04-.36-.14-.22a.26.26 0 0 1-.14.05c-.03.02-.1.02-.15.02-.07.03-.1.3-.02.48.05.1.07.05.07-.14.02-.17.07-.27.12-.27zm.8.36c.02-.1 0-.1-.08-.03-.1.07-.12.07-.17.03-.02-.05.03-.1.1-.13.17-.04.2-.28.05-.33-.17-.07-.32.12-.27.36.03.2.07.24.17.22s.17-.08.2-.12m-.27-.3c0-.02.02-.07.07-.07.02 0 .07.05.07.08 0 .04-.05.07-.07.07-.05 0-.07-.03-.07-.07zm-10.46.13c.1-.08.1-.24.05-.85l-.05-.76-.34.02c-.43.05-.48.14-.4.72.04.43.14.55.4.53.1-.02.14 0 .14.1 0 .07-.04.12-.1.12s-.09-.03-.09-.08c0-.02-.07-.04-.14-.04-.2 0-.2.16 0 .29.17.12.36.1.53-.05m-.41-.58a1.8 1.8 0 0 1-.07-.4c-.03-.27 0-.35.1-.37.14-.02.23.6.09.75-.05.04-.1.04-.12.02m-4.9.55c.11-.07.14-.16.14-.53 0-.24-.03-.57-.05-.79-.02-.29-.05-.36-.17-.36s-.14.05-.12.74l.03.75h-.17c-.15 0-.17-.05-.22-.31a6 6 0 0 1-.05-.7c0-.39-.02-.41-.19-.41s-.17 0-.12.4c.1 1.11.1 1.11.27 1.23.19.12.45.12.64-.02zm18.3-.07c.4-.26.47-1.23.09-1.61-.17-.17-.17-.2-.02-.29.1-.1.12-.2.12-.58 0-.43 0-.45-.22-.67-.24-.2-.27-.2-.7-.17-.4.03-.45.05-.65.24a.7.7 0 0 0-.19.53v.3l.24-.03c.22-.03.24-.05.24-.22 0-.38.53-.55.72-.26.22.3.05.81-.31.81-.1 0-.12.05-.12.2 0 .16.02.21.2.24.26.04.38.19.45.53.05.4-.07.64-.36.67s-.41-.07-.48-.34c-.03-.2-.08-.2-.27-.2-.2.03-.22.06-.2.25.08.7.78.99 1.45.6zM4.44 7.82c0-.6 0-.6.1-.6.12 0 .19.21.19.62 0 .36.05.43.19.34.14-.07.05-1.03-.1-1.15-.1-.05-.62-.05-.7.02-.02 0 0 .26.03.6.02.53.05.6.17.6s.14-.05.12-.43m1.97.2c.22-.23.15-.42-.21-.66-.2-.12-.22-.19-.15-.24.05-.05.07-.05.1 0 .04.1.31.12.31.03 0-.2-.1-.27-.36-.27-.2 0-.29.02-.34.12-.12.22-.05.36.24.55.15.08.24.2.24.24 0 .15-.17.15-.24 0-.05-.14-.24-.12-.24.03 0 .29.44.4.65.19zm4.79-.13c-.03-.22-.03-.24.12-.22.1.03.21-.02.28-.1.1-.09.12-.18.08-.57-.05-.46-.17-.67-.39-.58a1 1 0 0 1-.31.05l-.2-.02.05.5c.1 1.1.12 1.16.27 1.16.12 0 .14-.03.1-.22m0-.43a1.4 1.4 0 0 1-.05-.44c0-.26.02-.36.1-.36.19 0 .23.75.07.82-.05 0-.1 0-.12-.02m-3.95.53c.03-.05-.02-.1-.07-.12-.12-.08-.24-.87-.12-.87.05 0 .07-.05.07-.1s-.02-.1-.05-.1c-.04 0-.07-.06-.1-.14s-.06-.14-.11-.14-.1.07-.12.14-.07.15-.1.15c-.02 0-.07.05-.07.14 0 .07.05.12.07.1s.07.17.12.43c.03.24.05.48.07.5.05.08.36.08.41 0zm.96-.08c.05 0 0-.98-.07-1.1-.05-.1-.53-.1-.65 0-.12.12-.1.34.03.34.07 0 .12-.05.14-.1.07-.15.24-.15.24 0 0 .05-.1.14-.24.2-.2.06-.24.13-.24.28 0 .34.12.46.43.4l.37-.02zm-.48-.24c-.07-.14 0-.24.15-.24.07 0 .1.05.07.15-.02.17-.17.24-.22.1zm2.38.03a.6.6 0 0 0 .15-.2c0-.14-.15-.14-.3-.02-.16.2-.26.2-.26-.02 0-.15.03-.17.24-.17s.24-.02.24-.22c0-.36-.12-.48-.4-.48-.22 0-.3.05-.37.15-.1.16-.02.74.08.98.1.17.45.15.62-.02m-.48-.75c.03-.07.08-.12.15-.12.05 0 .1.05.12.12.02.1-.03.12-.12.12-.12 0-.15-.02-.15-.12m3 .53c.1-.1.13-.2.08-.5-.05-.5-.12-.6-.46-.58-.16.02-.26.07-.3.2-.1.2-.03.88.11.95.17.12.43.08.58-.07zm-.4-.1a3 3 0 0 1-.05-.7c0-.04.05-.09.1-.09.12 0 .21.36.17.63-.03.16-.15.26-.22.16m1.52.13c.04-.03 0-1.18-.08-1.25 0 0-.07 0-.12.02-.1.05-.12.14-.1.55 0 .39 0 .48-.09.48-.07 0-.12-.12-.17-.5-.04-.43-.07-.48-.19-.48s-.12.02-.07.53c.02.29.07.57.12.62.02.05.17.07.34.05zm.45-.5c-.02-.4 0-.49.1-.49.07 0 .1-.05.1-.17s-.03-.17-.08-.12c-.05.03-.17.05-.29.03h-.19l.05.45c.05.68.07.8.22.77.1-.02.1-.1.1-.48zm1.54.28c.02-.05 0-.1-.05-.12-.12-.07-.24-.84-.12-.84.03 0 .08-.05.08-.12 0-.05-.03-.1-.08-.1-.02 0-.07-.07-.1-.14 0-.08-.07-.15-.11-.15-.03 0-.1.07-.1.15-.02.07-.07.14-.12.14-.02 0-.05.07-.05.14s.03.12.05.1c.05-.02.1.17.12.43s.07.48.07.5c.05.1.36.08.41 0zm.91-.07c.1-.12.1-.22.08-.53-.05-.48-.15-.6-.46-.58-.2.02-.27.07-.34.22-.1.21 0 .86.12.96.17.1.46.07.6-.07m-.4-.12c-.03-.05-.08-.5-.05-.7 0-.05.05-.07.1-.07.11 0 .21.34.16.62-.02.15-.17.24-.21.15m1.41.04c.08 0 .03-1.15-.04-1.22 0 0-.08 0-.12.02-.1.03-.12.12-.1.53 0 .41-.02.5-.1.5s-.12-.11-.16-.5c-.05-.43-.08-.5-.2-.5s-.14.02-.1.53c.03.3.1.57.13.62.05.07.19.1.36.07l.34-.05zm.92-.1c.19-.2.14-.4-.22-.64-.19-.12-.21-.2-.17-.24.08-.07.1-.07.12 0 .05.1.32.12.32.02 0-.19-.12-.28-.36-.28-.2 0-.3.04-.34.14-.12.2-.05.36.24.53.12.1.24.21.24.26 0 .15-.2.15-.24 0s-.24-.12-.24.03c0 .29.43.4.65.19zm4.71-1.29c.12-.12.12-.34 0-.34-.07 0-.12.05-.12.12 0 .15-.22.1-.26-.07-.03-.1.02-.12.24-.12s.24 0 .24-.21c0-.3-.12-.41-.39-.41-.31 0-.4.19-.34.62.03.17.08.36.12.41.08.1.41.1.5 0zm-.38-.72c0-.05.04-.1.1-.1s.09.05.09.1c0 .07-.05.12-.1.12s-.1-.05-.1-.12z" })
9
+ ] });
10
+ export {
11
+ SvgIconUnstagepourtous as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconUserbook: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconUserbook;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconUserbook = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M0 24.58V.53h24.05v4.28h-2.62V7.1h2.62v4.28h-2.62v2.35h2.62V18h-2.62v2.3h2.62v4.29H0zm4.64-6.85h12.12V14l-4.5-2.67q.9-.46 1.4-1.3t.53-1.85q0-1.4-1.01-2.43T10.7 4.72 8.25 5.75 7.24 8.18q0 1.03.53 1.85t1.4 1.3L4.63 14v3.73z" })
9
+ ] });
10
+ export {
11
+ SvgIconUserbook as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconVideo: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconVideo;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconVideo = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 26 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M5.15 22v-1.72q0-.34-.25-.6t-.6-.25H2.57q-.33 0-.6.24t-.26.6v1.74q0 .33.26.6t.6.26H4.3q.34 0 .6-.26t.24-.6zm0-5.14v-1.73q0-.34-.25-.6t-.6-.27H2.57q-.33 0-.6.27t-.26.6v1.73q0 .34.26.6t.6.24H4.3q.34 0 .6-.24t.24-.6zm0-5.17v-1.7q0-.37-.25-.6t-.6-.27H2.57q-.33 0-.6.26t-.26.6v1.71q0 .36.26.6t.6.27H4.3q.34 0 .6-.27t.24-.6zM18.9 22.01v-6.88q0-.34-.26-.6t-.6-.27H7.71q-.34 0-.6.27t-.24.6V22q0 .33.24.6t.6.26h10.32q.36 0 .6-.26t.26-.6zM5.15 6.54v-1.7q0-.36-.24-.63t-.6-.24H2.56q-.33 0-.6.24t-.26.63v1.7q0 .34.26.6t.6.27H4.3q.34 0 .6-.27t.24-.6zm18.9 15.47v-1.74q0-.33-.27-.6t-.6-.24h-1.7q-.37 0-.6.24t-.27.6v1.74q0 .33.26.6t.6.26h1.71q.36 0 .6-.26t.27-.6M18.9 11.69V4.84q0-.36-.26-.63t-.6-.24H7.71q-.34 0-.6.24t-.24.63v6.85q0 .36.24.6t.6.27h10.32q.36 0 .6-.27t.26-.6zm5.15 5.17v-1.73q0-.34-.27-.6t-.6-.27h-1.7q-.37 0-.6.27t-.27.6v1.73q0 .34.26.6t.6.24h1.71q.36 0 .6-.24t.27-.6m0-5.17v-1.7q0-.37-.27-.6t-.6-.27h-1.7q-.37 0-.6.26t-.27.6v1.71q0 .36.26.6t.6.27h1.71q.36 0 .6-.27t.27-.6m0-5.15v-1.7q0-.36-.27-.63t-.6-.24h-1.7q-.37 0-.6.24t-.27.63v1.7q0 .34.26.6t.6.27h1.71q.36 0 .6-.27t.27-.6m1.7-2.14v18.04q0 .89-.62 1.51t-1.52.63H2.14q-.87 0-1.52-.63T0 22.44V4.4q0-.89.62-1.51t1.52-.65H23.6q.9 0 1.52.65t.62 1.51z" })
9
+ ] });
10
+ export {
11
+ SvgIconVideo as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconVieScolaire: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconVieScolaire;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconVieScolaire = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M1.42 22.4c-.2-.42-.22-4.12-.07-10.57l.21-9.93 10.58-.07c8.3-.05 10.58 0 10.68.29.29.94.41 19.84.14 20.34-.28.56-.64.56-10.77.56H1.71l-.3-.63zm15.32-7.42c0-2.8-.08-3.27-.56-3.7-.5-.46-.57-.46-1.3 0-.98.65-2.9.65-3.94-.02-.8-.53-.8-.53-1.32.12-.46.55-.53 1.15-.53 3.75v3.08h7.65zm4.52 0c0-3.05-.27-3.84-1.13-3.29-.53.34-1.88.36-2.5.02-.44-.24-.46.03-.39 2.99l.1 3.22h3.92zM6.73 17.1l1.78-.02v-2.72c0-2.65.03-2.74.87-3.58.8-.8.84-.92.43-1.33-.4-.38-.53-.36-1.4.48-.98.97-1.32.94-1.32-.14 0-.39.17-.65.44-.65.64 0 1.56-1.06 1.56-1.8 0-1.06-1.03-2.17-2.02-2.17-.96 0-2.24 1.08-2.24 1.93 0 .7 1.04 2.04 1.59 2.04.24 0 .39.29.39.84 0 1.08-.17 1.06-1.35-.07L4.5 9l-.53.67c-.48.58-.56 1.13-.56 4.11v3.44l.77-.05c.44-.02 1.59-.07 2.55-.07m13.42-6.57c.39-.72.12-1.58-.62-1.97-1.23-.67-2.55.6-1.98 1.88.41.91 2.12.96 2.6.1zm-5.38-.76A2.24 2.24 0 0 0 14 6.33c-1-.46-1.64-.39-2.43.24-1.42 1.13-1.2 3.15.36 3.8 1.15.5 2.14.29 2.84-.6" })
9
+ ] });
10
+ export {
11
+ SvgIconVieScolaire as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconVisioconf: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconVisioconf;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconVisioconf = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M7.85 4.15c.08 0 .14.15.14.34v15.5c0 .18-.06.34-.14.34s-.14-.16-.14-.34V4.49c0-.19.06-.34.14-.34m.09 5.59v.01a.14.14 0 0 1-.14.14H1.54a.14.14 0 0 1-.14-.14v-.01c0-.08.07-.14.14-.14H7.8c.08 0 .14.06.14.14m-.13 5.18v.01a.14.14 0 0 1-.13.14H1.4a.14.14 0 0 1-.13-.14v-.01c0-.08.06-.14.13-.14h6.27c.07 0 .13.06.13.14zM2.6 19.65l.03-.24a2.1 2.1 0 0 1 .89-1.36c.33.31.72.48 1.17.48s.84-.17 1.17-.48l.2.16c.4.35.64.8.7 1.33l.02.11v.13H2.6zm2.19-4.05.24.05a1.25 1.25 0 1 1-1.57 1.43 1.25 1.25 0 0 1 .97-1.45l.16-.03zm4.97 3.46.08-.63a5.52 5.52 0 0 1 2.34-3.6c.87.82 1.9 1.26 3.1 1.26s2.22-.43 3.1-1.27c.18.14.36.27.53.42a5.46 5.46 0 0 1 1.86 3.54l.04.28v.35H9.74v-.35zm5.78-10.7c.22.04.44.07.66.13a3.32 3.32 0 0 1 2.38 2.84 3.31 3.31 0 0 1-6.56.93 3.31 3.31 0 0 1 2.57-3.83l.43-.08h.52zM2.58 14.64l.04-.24a2.1 2.1 0 0 1 .88-1.36c.33.3.72.47 1.17.47q.675 0 1.17-.48l.2.16c.4.36.64.8.7 1.34l.02.1v.14H2.58zm2.19-4.05.25.05a1.25 1.25 0 1 1-1.58 1.42 1.25 1.25 0 0 1 .97-1.44c.05-.02.1-.02.16-.03zM2.59 9.48l.03-.24a2.1 2.1 0 0 1 .89-1.36c.33.31.72.48 1.17.48s.84-.17 1.17-.48l.2.16c.4.35.64.8.7 1.33l.02.11v.13H2.6v-.13zm2.19-4.05.25.05a1.25 1.25 0 1 1-1.58 1.43 1.25 1.25 0 0 1 .97-1.45l.16-.03zm19.24-.07v13.62a2.01 2.01 0 0 1-2 2h-6.8c0 1.07.8 1.97.8 2.4a.8.8 0 0 1-.8.8H8.8a.8.8 0 0 1-.8-.8c0-.46.8-1.31.8-2.4H2a2 2 0 0 1-2-2V5.36c0-1.1.9-2 2-2h20.02a2 2 0 0 1 2 2m-1.6 13.41V5.47c0-.27-.19-.5-.4-.5H2c-.22 0-.4.23-.4.5v13.3c0 .27.18.51.4.51h20.02c.21 0 .4-.24.4-.51M12.01 2.95a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2m0-1.94c.05 0 .09.04.09.08s-.04.09-.09.09c-.04 0-.08-.04-.08-.09s.04-.08.08-.08m0 .34a.5.5 0 1 1 0 1.01.5.5 0 0 1 0-1.01m0 .76c.14 0 .25-.12.25-.26a.25.25 0 1 0-.25.26m.73.78a1.26 1.26 0 0 1-1.46 0l-.2.3a.17.17 0 0 0 .14.27h1.58a.17.17 0 0 0 .14-.26z" })
9
+ ] });
10
+ export {
11
+ SvgIconVisioconf as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconWebclasseur: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconWebclasseur;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconWebclasseur = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M17.58 22.66a9.5 9.5 0 0 1-.15-2.12v-1.95l-1.37.07c-1.1.08-1.37.15-1.37.48 0 .85 1.1 1.2 2.1.68.36-.2.43-.2.36.04-.15.49-1.28.94-1.9.8-1.5-.39-2-2.33-.9-3.44.9-.89 2.27-.67 2.75.43l.3.72v-.86c.03-.82.47-1.18.83-.63.1.17.26.17.55 0 .67-.36 1.13-.26 1.73.34 1.42 1.42-.1 4.33-1.73 3.3-.26-.17-.36 0-.46.96-.1 1.08-.38 1.53-.74 1.17zm2.21-2.72c.53-.53.48-2.29-.07-2.6-.58-.29-.6-.29-1.03.12-.51.53-.49 2.28.04 2.6s.65.29 1.06-.12m-3.27-1.83c0-.34-.5-.99-.8-.99-.36 0-1.03.6-1.03.92 0 .12.41.21.92.21s.91-.07.91-.14M3.46 20.54c-.77-.31-1.08-.87-1.05-1.9.02-1.88 1.92-2.62 3.24-1.3.6.6.67.82.58 1.54a2.64 2.64 0 0 1-.55 1.23c-.49.48-1.6.7-2.22.43m1.57-.75c.45-.64.45-1.53 0-2.16-.44-.65-.87-.65-1.47-.02-.39.36-.46.64-.36 1.25.24 1.44 1.15 1.92 1.83.93m1.65.82c-.1-.1-.16-1-.16-2.07 0-1.51.07-1.87.36-1.87.17 0 .33.1.33.24s.12.14.44 0c.62-.36 1.3-.32 1.7.12.3.29.37.72.32 2-.1 1.82-.5 2.18-.6.47-.1-1.85-.22-2.16-.85-2.16-.72 0-1.03.74-.96 2.19.05.98-.19 1.44-.57 1.08zm3.35-.14c-.07-.2-.1-1.09-.05-2.02.05-1.4.14-1.69.48-1.76.36-.07.39.12.34 1.93-.05 1.32-.17 2.02-.36 2.06-.15.08-.34-.04-.41-.21m1.32.12c-.29-.1-.4-.75-.14-.75.04 0 .3.1.52.22.53.29 1.16.07 1.16-.36 0-.17-.34-.48-.75-.68-1.2-.62-1.37-1.15-.62-1.9.55-.55 1.54-.6 1.73-.12.2.5-.07.68-.48.34-.31-.24-.43-.24-.72.05-.32.34-.27.4.57.96.68.43.94.75.94 1.13 0 .91-1.22 1.52-2.2 1.1zM15.39 13a7.3 7.3 0 0 1-1.51-.91l-.49-.46-.29.82-.26.82-2.74-.15-.82-1.54-.82-1.56-.77 1.61-.8 1.64-2.76-.15L2.4 8.47A52 52 0 0 1 .58 3.03l-.08-.8h3.18L4.7 4.92c.55 1.47 1.06 2.67 1.13 2.67s.46-.68.87-1.47c.7-1.44.74-1.5 1.58-1.5 1.13 0 1.45.3 2.26 1.93l.68 1.35.57-1.59c.34-.86.82-2.14 1.09-2.86l.48-1.32 2.76.02c3.27 0 4.11.3 5.5 1.88A5.38 5.38 0 0 1 23.12 8a5.48 5.48 0 0 1-7.72 5zm3.73-3.15c1.7-1.6.74-4.66-1.47-4.66-2.48 0-3.37 3.75-1.18 4.97.77.46 2 .3 2.65-.3z" })
9
+ ] });
10
+ export {
11
+ SvgIconWebclasseur as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconWebsite: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconWebsite;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconWebsite = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M17.55 14.61c0 1.01.28 1.41 1.03 1.41 1.68 0 2.74-2.13 2.74-5.67 0-5.43-3.94-8.02-8.88-8.02-5.07 0-9.68 3.4-9.68 9.83 0 6.14 4.03 9.49 10.23 9.49 2.1 0 3.52-.23 5.68-.95l.46 1.93c-2.13.69-4.41.89-6.17.89C4.83 23.52.48 19.05.48 12.16.48 5.21 5.52.5 12.48.5c7.23 0 11.06 4.32 11.06 9.62 0 4.5-1.41 7.93-5.85 7.93-2.02 0-3.34-.8-3.52-2.6-.51 2-1.9 2.6-3.77 2.6-2.51 0-4.62-1.93-4.62-5.82 0-3.92 1.85-6.34 5.17-6.34 1.75 0 2.85.69 3.34 1.78l.83-1.52h2.43v8.47zM14 10.81a2.12 2.12 0 0 0-2.16-2.25c-1.07 0-2.25.86-2.25 3.4 0 2.02.9 3.14 2.25 3.14.95 0 2.16-.6 2.16-2.27V10.8z" })
9
+ ] });
10
+ export {
11
+ SvgIconWebsite as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconWiki: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconWiki;
@@ -0,0 +1,13 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconWiki = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M7.64 14.568c-.82 0-1.533.09-2.114.202a.583.583 0 1 1-.22-1.145 12.3 12.3 0 0 1 2.334-.224c.922 0 1.726.1 2.377.223a.583.583 0 0 1-.216 1.146 11.6 11.6 0 0 0-2.161-.202m-2.114-4.454c.58-.112 1.294-.202 2.114-.202.837 0 1.568.09 2.16.203a.583.583 0 0 0 .217-1.146 13 13 0 0 0-2.377-.223c-.906 0-1.694.1-2.334.223a.583.583 0 1 0 .22 1.145" }),
9
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M16.595 3.72a18.4 18.4 0 0 1 4.841.62.6.6 0 0 1 .446.58v1.437h.324c.314 0 .569.254.569.568V20.64a.57.57 0 0 1-.71.551 19.8 19.8 0 0 0-5.08-.604h-.001a20 20 0 0 0-4.734.604.6.6 0 0 1-.237.01 29 29 0 0 0-4.742-.43 29.5 29.5 0 0 0-5.254.43.57.57 0 0 1-.666-.561V6.925c0-.314.255-.568.569-.568h.392V4.92a.6.6 0 0 1 .458-.583 20 20 0 0 1 4.539-.566c1.93-.022 3.562.243 4.778.53a18.5 18.5 0 0 1 4.508-.58Zm-5.101 1.677a18.6 18.6 0 0 0-4.172-.426h-.001a18.8 18.8 0 0 0-3.81.426V18.84c1.073-.203 2.35-.36 3.796-.379a20 20 0 0 1 4.187.376zm1.2 13.402a18.6 18.6 0 0 1 3.938-.468c1.61-.014 2.988.206 4.05.463V5.387c-.455-.108-.97-.21-1.54-.293v5.45c0 .32-.33.527-.617.387l-1.26-.61a.41.41 0 0 0-.387.005l-1.059.566a.432.432 0 0 1-.633-.381V4.986c-.956.083-1.795.235-2.492.4V18.8Z" })
10
+ ] });
11
+ export {
12
+ SvgIconWiki as default
13
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconWorkspace: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconWorkspace;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconWorkspace = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 23 24", width: "24", height: "24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M22.34 8.68v9.45q0 1.23-.89 2.12t-2.12.89H3.01q-1.23 0-2.12-.89T0 18.13V5.25q0-1.23.9-2.12t2.12-.9h4.3q1.23 0 2.12.9t.89 2.12v.43h9.01q1.23 0 2.12.89t.89 2.11z" })
9
+ ] });
10
+ export {
11
+ SvgIconWorkspace as default
12
+ };
@@ -0,0 +1,115 @@
1
+ export { default as IconAccount } from './IconAccount';
2
+ export { default as IconActualites } from './IconActualites';
3
+ export { default as IconAdminPortal } from './IconAdminPortal';
4
+ export { default as IconAdmin } from './IconAdmin';
5
+ export { default as IconAdmissionPostBac } from './IconAdmissionPostBac';
6
+ export { default as IconAgenda } from './IconAgenda';
7
+ export { default as IconArchive } from './IconArchive';
8
+ export { default as IconAssistance } from './IconAssistance';
9
+ export { default as IconAssr } from './IconAssr';
10
+ export { default as IconAward } from './IconAward';
11
+ export { default as IconBanquesavoir } from './IconBanquesavoir';
12
+ export { default as IconBcdi } from './IconBcdi';
13
+ export { default as IconBiblionisep } from './IconBiblionisep';
14
+ export { default as IconBlog } from './IconBlog';
15
+ export { default as IconBookmarkEmpty } from './IconBookmarkEmpty';
16
+ export { default as IconCahierDeTexte } from './IconCahierDeTexte';
17
+ export { default as IconCahierTextes } from './IconCahierTextes';
18
+ export { default as IconCalendar } from './IconCalendar';
19
+ export { default as IconCanalNumerique } from './IconCanalNumerique';
20
+ export { default as IconCcn } from './IconCcn';
21
+ export { default as IconCerise } from './IconCerise';
22
+ export { default as IconCervoprint } from './IconCervoprint';
23
+ export { default as IconCharlemagne } from './IconCharlemagne';
24
+ export { default as IconCharte } from './IconCharte';
25
+ export { default as IconChat } from './IconChat';
26
+ export { default as IconCidj } from './IconCidj';
27
+ export { default as IconCns } from './IconCns';
28
+ export { default as IconCollaborativeWall } from './IconCollaborativeWall';
29
+ export { default as IconCommunity } from './IconCommunity';
30
+ export { default as IconCompetences } from './IconCompetences';
31
+ export { default as IconConnecteurGenerique1 } from './IconConnecteurGenerique1';
32
+ export { default as IconConnecteurGenerique2 } from './IconConnecteurGenerique2';
33
+ export { default as IconConversation } from './IconConversation';
34
+ export { default as IconDirectory } from './IconDirectory';
35
+ export { default as IconEducagri } from './IconEducagri';
36
+ export { default as IconEdumedia } from './IconEdumedia';
37
+ export { default as IconEdumoov } from './IconEdumoov';
38
+ export { default as IconEdutheque } from './IconEdutheque';
39
+ export { default as IconElectron } from './IconElectron';
40
+ export { default as IconElyceepicardie } from './IconElyceepicardie';
41
+ export { default as IconEsidoc } from './IconEsidoc';
42
+ export { default as IconEuropress } from './IconEuropress';
43
+ export { default as IconExercizer } from './IconExercizer';
44
+ export { default as IconForms } from './IconForms';
45
+ export { default as IconForum } from './IconForum';
46
+ export { default as IconGepi } from './IconGepi';
47
+ export { default as IconGlpi } from './IconGlpi';
48
+ export { default as IconHiboutheque } from './IconHiboutheque';
49
+ export { default as IconItopstore } from './IconItopstore';
50
+ export { default as IconKne } from './IconKne';
51
+ export { default as IconLeSiteTv } from './IconLeSiteTv';
52
+ export { default as IconLemonde } from './IconLemonde';
53
+ export { default as IconLesechos } from './IconLesechos';
54
+ export { default as IconLibrary } from './IconLibrary';
55
+ export { default as IconLsu } from './IconLsu';
56
+ export { default as IconMadmagz } from './IconMadmagz';
57
+ export { default as IconMatholycee } from './IconMatholycee';
58
+ export { default as IconMaxicours } from './IconMaxicours';
59
+ export { default as IconMediacentre } from './IconMediacentre';
60
+ export { default as IconMindmap } from './IconMindmap';
61
+ export { default as IconMonorientationenligne } from './IconMonorientationenligne';
62
+ export { default as IconMonstageenligne } from './IconMonstageenligne';
63
+ export { default as IconMoodle } from './IconMoodle';
64
+ export { default as IconMuseefrancaisphoto } from './IconMuseefrancaisphoto';
65
+ export { default as IconMyNetwork } from './IconMyNetwork';
66
+ export { default as IconNetvibes } from './IconNetvibes';
67
+ export { default as IconNote } from './IconNote';
68
+ export { default as IconNotebook } from './IconNotebook';
69
+ export { default as IconNotes } from './IconNotes';
70
+ export { default as IconOnisep } from './IconOnisep';
71
+ export { default as IconOnisep2 } from './IconOnisep2';
72
+ export { default as IconPad } from './IconPad';
73
+ export { default as IconPages } from './IconPages';
74
+ export { default as IconParametrage } from './IconParametrage';
75
+ export { default as IconParametrages } from './IconParametrages';
76
+ export { default as IconParaschool } from './IconParaschool';
77
+ export { default as IconParcours } from './IconParcours';
78
+ export { default as IconPearltrees } from './IconPearltrees';
79
+ export { default as IconPicardieCursus } from './IconPicardieCursus';
80
+ export { default as IconPlaceholder } from './IconPlaceholder';
81
+ export { default as IconPoll } from './IconPoll';
82
+ export { default as IconPresences } from './IconPresences';
83
+ export { default as IconProeps } from './IconProeps';
84
+ export { default as IconPronote } from './IconPronote';
85
+ export { default as IconPublic } from './IconPublic';
86
+ export { default as IconQwantJunior } from './IconQwantJunior';
87
+ export { default as IconQwant } from './IconQwant';
88
+ export { default as IconRack } from './IconRack';
89
+ export { default as IconRbs } from './IconRbs';
90
+ export { default as IconResidenceArtiste } from './IconResidenceArtiste';
91
+ export { default as IconRessourcesdepartementale91 } from './IconRessourcesdepartementale91';
92
+ export { default as IconSacoche } from './IconSacoche';
93
+ export { default as IconSchoolbook } from './IconSchoolbook';
94
+ export { default as IconScolinfo } from './IconScolinfo';
95
+ export { default as IconScrapbook } from './IconScrapbook';
96
+ export { default as IconSearchengine } from './IconSearchengine';
97
+ export { default as IconSettingsClass } from './IconSettingsClass';
98
+ export { default as IconSharebigfiles } from './IconSharebigfiles';
99
+ export { default as IconStatistics } from './IconStatistics';
100
+ export { default as IconStats } from './IconStats';
101
+ export { default as IconSuitcase } from './IconSuitcase';
102
+ export { default as IconSupport } from './IconSupport';
103
+ export { default as IconTimeline } from './IconTimeline';
104
+ export { default as IconTimelinegenerator } from './IconTimelinegenerator';
105
+ export { default as IconTurboself } from './IconTurboself';
106
+ export { default as IconUniversalis } from './IconUniversalis';
107
+ export { default as IconUnstagepourtous } from './IconUnstagepourtous';
108
+ export { default as IconUserbook } from './IconUserbook';
109
+ export { default as IconVideo } from './IconVideo';
110
+ export { default as IconVieScolaire } from './IconVieScolaire';
111
+ export { default as IconVisioconf } from './IconVisioconf';
112
+ export { default as IconWebclasseur } from './IconWebclasseur';
113
+ export { default as IconWebsite } from './IconWebsite';
114
+ export { default as IconWiki } from './IconWiki';
115
+ export { default as IconWorkspace } from './IconWorkspace';
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconCongrats: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconCongrats;
@@ -0,0 +1,22 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconCongrats = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsxs("g", { clipPath: "url(#icon-congrats_svg__a)", children: [
9
+ /* @__PURE__ */ jsx("path", { fill: "#5AC235", d: "M21.283 14.477a25.5 25.5 0 0 0-2.684-5.022 2.3 2.3 0 0 0-.34-.388L15.894 6.89a1.07 1.07 0 0 0-.94-.266 1.07 1.07 0 0 0-.771.6 1.8 1.8 0 0 0-.175.84l-3.933-3.624a1.552 1.552 0 0 0-2.598 1.09l-.038-.033a1.52 1.52 0 0 0-1.11-.409 1.53 1.53 0 0 0-1.079.5 1.54 1.54 0 0 0-.41 1.11v.085a1.4 1.4 0 0 0-.541-.074 1.5 1.5 0 0 0-1.074.5 1.57 1.57 0 0 0-.409 1.11c.016.415.192.797.5 1.074l.717.659a1.56 1.56 0 0 0-1.073.61c-.473.628-.362 1.558.244 2.116l5.537 5.101c.32.298.665.574 1.026.818l1.637 1.122c.255.175.52.334.786.483l1.988 1.079a5.2 5.2 0 0 0 2.476.632c1.52 0 3.013-.67 4.028-1.913a5.18 5.18 0 0 0 .6-5.622" }),
10
+ /* @__PURE__ */ jsx("path", { fill: "#C8E4AF", d: "M11.632 14.716 5.766 9.312A1.284 1.284 0 0 1 5.69 7.5a1.284 1.284 0 0 1 1.812-.075l6.042 5.601-5.144-4.772a1.284 1.284 0 0 1-.074-1.812 1.284 1.284 0 0 1 1.812-.074l5.867 5.404 1.286 1.185-2.28-2.099a1.535 1.535 0 0 1-.345-1.785.82.82 0 0 1 1.296-.25l2.365 2.179c.112.106.213.217.303.345q.334.486.67 1.02a25 25 0 0 1 1.987 3.943 4.922 4.922 0 0 1-6.728 6.573l-1.987-1.078a10 10 0 0 1-.765-.468l-1.637-1.12a9 9 0 0 1-1-.793L3.64 14.323c-.494-.457-.616-1.222-.213-1.759a1.283 1.283 0 0 1 1.898-.175l4.245 3.895.303.276-6.121-5.622a1.284 1.284 0 0 1-.075-1.812A1.284 1.284 0 0 1 5.49 9.05l6 5.527" }),
11
+ /* @__PURE__ */ jsx("path", { stroke: "#C8E4AF", strokeMiterlimit: 10, d: "M11.632 14.716 5.766 9.312A1.284 1.284 0 0 1 5.69 7.5a1.284 1.284 0 0 1 1.812-.075l6.042 5.601-5.144-4.772a1.284 1.284 0 0 1-.074-1.812 1.284 1.284 0 0 1 1.812-.074l5.867 5.404 1.286 1.185-2.28-2.099a1.535 1.535 0 0 1-.345-1.785.82.82 0 0 1 1.296-.25l2.365 2.179c.112.106.213.217.303.345q.334.486.67 1.02a25 25 0 0 1 1.987 3.943 4.922 4.922 0 0 1-6.728 6.573l-1.987-1.078a10 10 0 0 1-.765-.468l-1.637-1.12a9 9 0 0 1-1-.793L3.64 14.323c-.494-.457-.616-1.222-.213-1.759a1.283 1.283 0 0 1 1.898-.175l4.245 3.895.303.276-6.121-5.622a1.284 1.284 0 0 1-.075-1.812A1.284 1.284 0 0 1 5.49 9.05l6 5.527" }),
12
+ /* @__PURE__ */ jsx("path", { fill: "#5AC235", d: "M21.772 16.109a25.8 25.8 0 0 0-2.716-5.075 3 3 0 0 0-.377-.436L16.314 8.42a1.353 1.353 0 0 0-2.136.41 1.8 1.8 0 0 0-.144.403L10.49 5.964a1.813 1.813 0 0 0-2.965.813 1.82 1.82 0 0 0-2.232.351c-.266.292-.43.659-.468 1.047a1.813 1.813 0 0 0-1.552.574 1.813 1.813 0 0 0 .106 2.561l.357.33a1.8 1.8 0 0 0-.75.584c-.552.733-.43 1.818.277 2.471L8.8 19.797c.33.303.685.59 1.057.845l1.637 1.12q.4.272.808.495l1.987 1.079a5.45 5.45 0 0 0 6.84-1.35c1.365-1.68 1.615-4.001.642-5.888zM14.8 22.41l-1.988-1.079a8 8 0 0 1-.717-.44l-1.637-1.122a8 8 0 0 1-.935-.744l-5.538-5.101c-.308-.287-.377-.75-.148-1.047a.75.75 0 0 1 .531-.303h.07c.19 0 .371.069.51.202l4.548 4.171c.213.197.553.181.75-.032a.534.534 0 0 0-.033-.749l-6.121-5.622a.72.72 0 0 1-.24-.52.73.73 0 0 1 .197-.538.72.72 0 0 1 .516-.239.7.7 0 0 1 .542.197l.175.16c.032.037.07.068.106.106l5.867 5.404a.55.55 0 0 0 .383.138.53.53 0 0 0 .34-.92l-.101-.09s-.032-.037-.053-.053L6.053 8.876a.756.756 0 0 1 .01-1.01.754.754 0 0 1 1.063-.042l6.037 5.601a.523.523 0 0 0 .749-.026.53.53 0 0 0-.027-.755L8.736 7.872a.72.72 0 0 1-.239-.52.78.78 0 0 1 .197-.543.761.761 0 0 1 1.063-.042l7.152 6.59a.57.57 0 0 0 .383.143.53.53 0 0 0 .335-.92l-2.28-2.104a1.01 1.01 0 0 1-.229-1.17.28.28 0 0 1 .202-.159c.09-.016.18.011.25.07l2.365 2.178c.09.08.16.165.223.255a24.64 24.64 0 0 1 2.62 4.905 4.389 4.389 0 0 1-6.005 5.861z" }),
13
+ /* @__PURE__ */ jsx("path", { fill: "#C8E4AF", stroke: "#C8E4AF", strokeMiterlimit: 10, d: "M4.4.932V.92C4.214.554 3.916.358 3.55.379a.98.98 0 0 0-.84.622c-.122.335-.021.685.282.972 0 0 1.53 1.265 1.557 1.292.069.063.159.095.25.095a.4.4 0 0 0 .238-.08.38.38 0 0 0 .133-.467L4.39.937z" }),
14
+ /* @__PURE__ */ jsx("path", { fill: "#5AC235", d: "M2.588 3.27c-.266-.271-.675-.335-1.042-.165-.366.17-.579.526-.542.898.016.25.128.479.314.649.17.154.388.239.632.239h.07c.052-.01.201-.016.376-.021.776-.027 1.058-.048 1.138-.213a.43.43 0 0 0 .08-.255.4.4 0 0 0-.128-.287l-.893-.845zM7.12.012a.94.94 0 0 0-.802 1.074c.016.053.027.202.048.377.085.77.128 1.052.298 1.116a.4.4 0 0 0 .218.064h.042a.4.4 0 0 0 .276-.149l.776-.956c.25-.287.282-.702.085-1.053-.196-.35-.563-.536-.935-.473z" }),
15
+ /* @__PURE__ */ jsx("path", { fill: "#C8E4AF", stroke: "#C8E4AF", strokeMiterlimit: 10, d: "M21.665 3.376c.26-.313.314-.675.15-.993a.97.97 0 0 0-.91-.505c-.356.026-.632.265-.77.659l-.532 1.955a.38.38 0 0 0 .192.452.4.4 0 0 0 .196.053.36.36 0 0 0 .282-.128l1.387-1.482.01-.01z" }),
16
+ /* @__PURE__ */ jsx("path", { fill: "#5AC235", d: "M17.451 1.564a.939.939 0 0 0-.388 1.286c.032.053.101.191.181.35.345.686.478.936.659.936q.039.009.085.01a.41.41 0 0 0 .388-.276l.398-1.163a.91.91 0 0 0-.281-1.015c-.303-.26-.718-.309-1.042-.123zM23.62 5.48a.943.943 0 0 0-1.312-.287c-.048.038-.18.117-.335.208-.659.393-.898.547-.882.728a.41.41 0 0 0 .303.446l1.19.314c.08.02.165.037.245.037a.93.93 0 0 0 .75-.393c.238-.325.254-.74.047-1.047z" })
17
+ ] }),
18
+ /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-congrats_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
19
+ ] });
20
+ export {
21
+ SvgIconCongrats as default
22
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconCongratsCounter: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconCongratsCounter;
@@ -0,0 +1,21 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconCongratsCounter = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "#C8E4AF", d: "M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12" }),
9
+ /* @__PURE__ */ jsx("path", { fill: "#4E9019", d: "M17.736 13.37a16.4 16.4 0 0 0-1.73-3.237 1.5 1.5 0 0 0-.218-.25L14.264 8.48a.69.69 0 0 0-.606-.171.69.69 0 0 0-.497.387c-.082.175-.12.36-.113.541L10.514 6.9a1 1 0 0 0-1.675.703l-.024-.021a.98.98 0 0 0-.716-.264.98.98 0 0 0-.695.322 1 1 0 0 0-.264.716v.055a.9.9 0 0 0-.349-.048.97.97 0 0 0-.692.322 1 1 0 0 0-.263.715.97.97 0 0 0 .322.692l.462.425c-.274.03-.524.171-.692.394-.305.404-.233 1.003.158 1.363l3.568 3.288c.206.191.428.37.661.527l1.055.723c.164.112.336.215.507.311l1.28.695a3.33 3.33 0 0 0 1.596.408 3.35 3.35 0 0 0 2.596-1.233c.84-1.03.987-2.459.387-3.623" }),
10
+ /* @__PURE__ */ jsx("path", { fill: "#fff", d: "m11.517 13.524-3.78-3.483a.827.827 0 0 1 1.12-1.216l3.893 3.61L9.435 9.36a.827.827 0 0 1 1.12-1.216l3.78 3.483.83.763-1.47-1.352a.99.99 0 0 1-.222-1.15.53.53 0 0 1 .835-.162l1.524 1.404c.072.069.137.14.195.223q.216.314.432.657c.551.887.966 1.75 1.28 2.542a3.172 3.172 0 0 1-4.336 4.236l-1.28-.695a6 6 0 0 1-.493-.302l-1.055-.722a6 6 0 0 1-.643-.51L6.366 13.27c-.318-.295-.397-.788-.137-1.134a.826.826 0 0 1 1.223-.113l2.736 2.51.196.178-3.946-3.623a.827.827 0 0 1 1.12-1.216l3.867 3.562" }),
11
+ /* @__PURE__ */ jsx("path", { fill: "#5AC235", d: "M18.051 14.421a16.6 16.6 0 0 0-1.75-3.27q-.103-.149-.243-.281l-1.524-1.404a.872.872 0 0 0-1.376.264 1.2 1.2 0 0 0-.093.26l-2.284-2.106a1.168 1.168 0 0 0-1.911.524 1.17 1.17 0 0 0-1.74.9 1.168 1.168 0 0 0-.932 2.02l.23.213a1.2 1.2 0 0 0-.483.377c-.356.473-.277 1.171.178 1.592l3.569 3.288c.212.195.442.38.681.545l1.055.722q.258.175.52.319l1.281.695a3.51 3.51 0 0 0 4.408-.87c.88-1.082 1.041-2.579.414-3.795zm-4.493 4.062-1.28-.695a5 5 0 0 1-.463-.285l-1.055-.722a5 5 0 0 1-.602-.48l-3.569-3.287c-.199-.185-.243-.483-.096-.675a.49.49 0 0 1 .343-.195h.044a.47.47 0 0 1 .329.13l2.931 2.688a.345.345 0 0 0 .483-.02.344.344 0 0 0-.02-.483l-3.945-3.623a.46.46 0 0 1-.155-.336.47.47 0 0 1 .127-.346.46.46 0 0 1 .332-.154.46.46 0 0 1 .35.127l.113.102c.02.025.044.045.068.069l3.781 3.483c.069.061.16.092.247.089a.341.341 0 0 0 .219-.592l-.065-.059s-.02-.024-.035-.034L7.921 9.76a.486.486 0 0 1 .692-.678l3.89 3.61a.337.337 0 0 0 .483-.017.342.342 0 0 0-.017-.486L9.651 9.112a.46.46 0 0 1-.154-.336.5.5 0 0 1 .126-.349.49.49 0 0 1 .685-.027l4.61 4.246a.37.37 0 0 0 .246.093.341.341 0 0 0 .216-.593l-1.47-1.356a.65.65 0 0 1-.146-.753.18.18 0 0 1 .13-.103.2.2 0 0 1 .16.045l1.525 1.404a1 1 0 0 1 .144.164 15.88 15.88 0 0 1 1.688 3.161 2.828 2.828 0 0 1-3.87 3.777z" }),
12
+ /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M6.856 4.64v-.006c-.12-.237-.311-.363-.548-.35a.63.63 0 0 0-.54.4c-.08.217-.015.443.18.628 0 0 .987.815 1.004.832a.24.24 0 0 0 .161.061.26.26 0 0 0 .154-.05.246.246 0 0 0 .086-.302l-.504-1.21z" }),
13
+ /* @__PURE__ */ jsx("path", { fill: "#5AC235", d: "M5.688 6.15a.58.58 0 0 0-.67-.105.58.58 0 0 0-.35.578c.01.161.082.308.202.418.11.1.25.154.407.154h.045c.034-.007.13-.01.243-.014.5-.017.682-.03.733-.136a.28.28 0 0 0 .051-.165.25.25 0 0 0-.082-.185l-.575-.544z" }),
14
+ /* @__PURE__ */ jsx("path", { fill: "#4E9019", d: "M8.61 4.048a.605.605 0 0 0-.518.692c.01.034.018.13.031.243.055.497.083.678.192.72a.25.25 0 0 0 .14.04h.028a.27.27 0 0 0 .178-.096l.5-.616a.59.59 0 0 0 .055-.678.58.58 0 0 0-.603-.305z" }),
15
+ /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M17.983 6.22c.168-.203.202-.436.096-.641a.63.63 0 0 0-.586-.325c-.23.017-.407.17-.496.424l-.343 1.26a.245.245 0 0 0 .123.292.25.25 0 0 0 .127.034.23.23 0 0 0 .182-.082l.893-.956.007-.007z" }),
16
+ /* @__PURE__ */ jsx("path", { fill: "#5AC235", d: "M15.267 5.051a.606.606 0 0 0-.25.829c.02.034.065.123.117.226.222.442.308.603.424.603q.025.006.055.007c.11 0 .212-.069.25-.178l.257-.75a.59.59 0 0 0-.182-.654.58.58 0 0 0-.67-.08z" }),
17
+ /* @__PURE__ */ jsx("path", { fill: "#4E9019", d: "M19.243 7.572a.61.61 0 0 0-.846-.185c-.03.024-.116.075-.215.134-.425.253-.58.352-.569.469a.263.263 0 0 0 .195.287l.767.202a.6.6 0 0 0 .158.024.6.6 0 0 0 .483-.253.58.58 0 0 0 .03-.675z" })
18
+ ] });
19
+ export {
20
+ SvgIconCongratsCounter as default
21
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconGreat: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconGreat;
@@ -0,0 +1,16 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconGreat = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsxs("g", { clipPath: "url(#icon-great_svg__a)", children: [
9
+ /* @__PURE__ */ jsx("path", { fill: "#FFB6C0", stroke: "#FFB6C0", strokeMiterlimit: 10, d: "m13.002 1.275 2.654 5.617c.162.345.475.584.842.64l5.935.899c.92.138 1.288 1.32.62 1.991l-4.298 4.373c-.264.27-.385.653-.325 1.036l1.012 6.17c.156.955-.801 1.683-1.626 1.231l-5.308-2.915a1.1 1.1 0 0 0-1.041 0l-5.309 2.915c-.818.452-1.781-.276-1.625-1.231l1.012-6.17c.06-.377-.06-.766-.325-1.036L.922 10.422c-.662-.678-.295-1.853.62-1.991l5.935-.899c.367-.056.68-.295.842-.64l2.654-5.617a1.102 1.102 0 0 1 2.01 0z" }),
10
+ /* @__PURE__ */ jsx("path", { fill: "#FF3A55", d: "M23.48 10.875a1.83 1.83 0 0 0 .433-1.841c-.204-.653-.734-1.125-1.39-1.225l-5.934-.898a.53.53 0 0 1-.392-.296L13.543 1C13.248.383 12.66 0 12.003 0s-1.252.383-1.547.999L7.802 6.615a.53.53 0 0 1-.392.296l-5.934.898c-.65.1-1.186.565-1.39 1.225a1.84 1.84 0 0 0 .433 1.84l4.291 4.373c.12.126.18.302.15.478l-1.01 6.169c-.109.679.15 1.35.686 1.76.3.225.65.345 1.01.345.278 0 .555-.076.801-.208l5.309-2.915a.5.5 0 0 1 .481 0l5.309 2.915c.583.32 1.276.27 1.811-.138.536-.402.795-1.08.686-1.759l-1.01-6.17a.54.54 0 0 1 .15-.477zM18.11 22.673l-5.308-2.915a1.66 1.66 0 0 0-1.601 0l-5.308 2.915c-.18.1-.38.082-.548-.038a.53.53 0 0 1-.205-.527l1.011-6.17a1.85 1.85 0 0 0-.493-1.59L1.362 9.977a.55.55 0 0 1-.133-.552.5.5 0 0 1 .422-.365l5.934-.898a1.75 1.75 0 0 0 1.3-.98l2.654-5.617a.517.517 0 0 1 .927 0l2.654 5.617c.253.527.734.898 1.294.98l5.934.898a.51.51 0 0 1 .422.365.54.54 0 0 1-.133.552L18.34 14.35a1.85 1.85 0 0 0-.494 1.59l1.012 6.169a.54.54 0 0 1-.205.527.5.5 0 0 1-.548.044z" })
11
+ ] }),
12
+ /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-great_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
13
+ ] });
14
+ export {
15
+ SvgIconGreat as default
16
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconGreatCounter: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconGreatCounter;
@@ -0,0 +1,14 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconGreatCounter = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "#FFB6C0", d: "M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12" }),
9
+ /* @__PURE__ */ jsx("path", { fill: "#fff", d: "m12.527 6.291 1.51 3.062c.093.188.271.318.48.349l3.377.49c.524.075.733.719.353 1.085L15.8 13.661a.64.64 0 0 0-.185.565l.576 3.363a.637.637 0 0 1-.925.671l-3.02-1.589a.65.65 0 0 0-.593 0l-3.02 1.59a.637.637 0 0 1-.925-.672l.575-3.363a.64.64 0 0 0-.185-.565l-2.445-2.384a.637.637 0 0 1 .353-1.085l3.377-.49a.64.64 0 0 0 .479-.35l1.51-3.061a.639.639 0 0 1 1.144 0z" }),
10
+ /* @__PURE__ */ jsx("path", { fill: "#FF3A55", d: "M18.486 11.52a.97.97 0 0 0 .247-1.003.98.98 0 0 0-.791-.668l-3.377-.49a.3.3 0 0 1-.223-.16l-1.51-3.062a.981.981 0 0 0-1.757 0l-1.51 3.061a.3.3 0 0 1-.223.161l-3.376.49a.98.98 0 0 0-.791.668.97.97 0 0 0 .246 1.003l2.442 2.384a.3.3 0 0 1 .086.26l-.576 3.363a.979.979 0 0 0 1.421 1.034l3.021-1.589a.3.3 0 0 1 .274 0l3.02 1.59a.97.97 0 0 0 1.031-.076.98.98 0 0 0 .39-.959l-.575-3.363a.29.29 0 0 1 .086-.26zm-3.055 6.432-3.02-1.59a.98.98 0 0 0-.911 0l-3.02 1.59a.29.29 0 0 1-.312-.02.28.28 0 0 1-.117-.288l.576-3.363a.98.98 0 0 0-.281-.867L5.9 11.031a.29.29 0 0 1-.076-.302.28.28 0 0 1 .24-.198l3.377-.49a.99.99 0 0 0 .74-.534l1.51-3.062c.102-.209.424-.209.527 0l1.51 3.062c.144.287.418.49.737.534l3.376.49c.117.017.203.089.24.198.034.11.01.22-.075.302l-2.445 2.383a.98.98 0 0 0-.281.867l.575 3.363a.29.29 0 0 1-.116.287.29.29 0 0 1-.312.024z" })
11
+ ] });
12
+ export {
13
+ SvgIconGreatCounter as default
14
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconGuest: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconGuest;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconGuest = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M11.999 17.571q-1.476 0-2.847.482a8.4 8.4 0 0 0-2.557 1.46.5.5 0 0 0 .106.246q.087.109.192.14h10.204a.4.4 0 0 0 .192-.14.5.5 0 0 0 .106-.247 7.8 7.8 0 0 0-2.528-1.46 8.7 8.7 0 0 0-2.868-.48m0-1.399q1.694 0 3.18.515t2.74 1.445V4.409a.3.3 0 0 0-.096-.212.3.3 0 0 0-.212-.096H6.388a.3.3 0 0 0-.211.096.3.3 0 0 0-.096.212v13.723q1.254-.93 2.74-1.445a9.6 9.6 0 0 1 3.178-.515m0-3.452q-.73 0-1.25-.52a1.7 1.7 0 0 1-.52-1.251 1.7 1.7 0 0 1 .521-1.25q.522-.52 1.251-.52.73 0 1.25.521.52.522.52 1.252a1.7 1.7 0 0 1-.522 1.249q-.52.52-1.25.52m-5.613 8.578q-.709 0-1.206-.498a1.64 1.64 0 0 1-.498-1.207V4.407q0-.71.498-1.207a1.64 1.64 0 0 1 1.206-.498h11.227q.71 0 1.207.498t.498 1.207v15.186q0 .71-.498 1.207a1.64 1.64 0 0 1-1.207.498zm5.617-7.179q1.318 0 2.242-.927a3.06 3.06 0 0 0 .924-2.245q0-1.318-.927-2.242a3.06 3.06 0 0 0-2.245-.924q-1.318 0-2.242.927a3.06 3.06 0 0 0-.924 2.245q0 1.318.926 2.242a3.06 3.06 0 0 0 2.246.924" })
9
+ ] });
10
+ export {
11
+ SvgIconGuest as default
12
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconInteresting: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconInteresting;
@@ -0,0 +1,15 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconInteresting = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
+ /* @__PURE__ */ jsx("path", { fill: "#FAEA9C", d: "M19.5 8.042A7.447 7.447 0 0 0 11.752.601C7.945.748 4.789 3.873 4.61 7.68a7.4 7.4 0 0 0 1.805 5.231c.927 1.075 1.498 2.407 1.498 3.826v.448h7.909c0-1.535.65-2.966 1.688-4.09a7.4 7.4 0 0 0 1.99-5.059z" }),
9
+ /* @__PURE__ */ jsx("path", { fill: "#D1AF00", d: "M17.628 2.246C16.038.717 13.93-.07 11.728.005c-4.133.16-7.522 3.524-7.719 7.65a8.04 8.04 0 0 0 1.947 5.655c.871 1.007 1.35 2.229 1.35 3.432v.449c0 .331.27.601.602.601h7.908c.332 0 .602-.27.602-.601 0-1.308.547-2.616 1.529-3.678a8 8 0 0 0 2.149-5.465c0-2.21-.878-4.267-2.468-5.802M8.51 16.589c-.037-1.443-.62-2.886-1.646-4.07a6.8 6.8 0 0 1-1.658-4.815c.166-3.512 3.052-6.367 6.57-6.502 1.88-.086 3.654.596 5.017 1.903a6.78 6.78 0 0 1 2.1 4.937c0 1.732-.651 3.377-1.83 4.648-1.038 1.117-1.676 2.493-1.824 3.899H8.504z" }),
10
+ /* @__PURE__ */ jsx("path", { fill: "#D1AF00", d: "M15.823 16.46H7.914a.603.603 0 0 0-.602.602v2.382A4.56 4.56 0 0 0 11.868 24a4.56 4.56 0 0 0 4.556-4.556v-2.382a.603.603 0 0 0-.601-.602" }),
11
+ /* @__PURE__ */ jsx("path", { fill: "#D1AF00", d: "M13.784 18.124h-.902l.049-7.055H11.23v7.049h-.903v-7.049H9.314c-.387-.012-.915-.11-1.37-.497-.484-.411-.785-1.075-.803-1.768-.019-.639.208-1.216.632-1.615.675-.639 1.774-.762 2.56-.283.24.148.442.344.608.577.19.277.289.614.289.964v1.726h1.707l.012-1.707c0-.62.32-1.179.817-1.455.712-.387 1.522-.178 2.014.196.479.362.78 1.001.804 1.695s-.233 1.338-.682 1.725c-.331.283-.767.442-1.27.448h-.799l-.049 7.055zM9.26 7.508c-.313 0-.639.11-.866.332-.233.22-.362.552-.35.939.012.436.197.866.485 1.105.258.221.577.277.805.283h.994V8.44a.76.76 0 0 0-.135-.454 1.1 1.1 0 0 0-.331-.32 1.13 1.13 0 0 0-.602-.159m5.323.19a.73.73 0 0 0-.368.092c-.221.123-.362.387-.362.682l-.013 1.7h.786c.197 0 .48-.042.694-.226.24-.21.38-.596.368-1.014-.012-.43-.178-.804-.448-1.006a1.13 1.13 0 0 0-.657-.222z" })
12
+ ] });
13
+ export {
14
+ SvgIconInteresting as default
15
+ };
@@ -0,0 +1,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconInterestingCounter: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconInterestingCounter;