@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,7 @@
1
+ import { SVGProps } from 'react';
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgIconElectron: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconElectron;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconElectron = ({
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: "M19.5 24.58c-3.63 0-8.2-2.33-11.93-6.06C1.78 12.7-.17 5.5 3.15 2.17A6.07 6.07 0 0 1 7.53.53c3.63 0 8.2 2.34 11.92 6.06 5.8 5.82 7.75 13.01 4.4 16.35a5.97 5.97 0 0 1-4.35 1.64M7.53 2.55c-1.28 0-2.26.34-2.96 1.04-2.43 2.45-.41 8.65 4.42 13.51 3.37 3.37 7.39 5.46 10.51 5.46 1.28 0 2.26-.34 2.94-1.04 2.45-2.45.43-8.65-4.4-13.5-3.37-3.38-7.39-5.47-10.51-5.47m0 22.03c-1.8 0-3.3-.58-4.36-1.64C-.17 19.6 1.78 12.41 7.58 6.6 11.3 2.86 15.88.53 19.5.53c1.8 0 3.3.58 4.36 1.64 3.34 3.34 1.39 10.53-4.4 16.35-3.73 3.73-8.3 6.06-11.93 6.06M19.5 2.55c-3.12 0-7.14 2.1-10.5 5.46-4.84 4.86-6.86 11.06-4.43 13.51.7.7 1.68 1.04 2.96 1.04 3.12 0 7.14-2.1 10.5-5.46 4.84-4.88 6.86-11.06 4.4-13.51-.67-.7-1.65-1.04-2.93-1.04" })
9
+ ] });
10
+ export {
11
+ SvgIconElectron 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 SvgIconElyceepicardie: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconElyceepicardie;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconElyceepicardie = ({
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 20.23-.19-.17a.9.9 0 0 1 0-.5c.07-.13.41-.25.63-.25.33 0 .43-.12.24-.29-.08-.07-.17-.07-.36-.07-.15.03-.32.05-.37.07-.07.03-.1.03-.1-.1 0-.14.1-.16.51-.16.3 0 .36 0 .48.12.15.12.15.12.17.75l.03.62h-.15c-.07 0-.12-.02-.12-.07s-.05-.05-.21.02c-.27.12-.36.12-.56.03m.63-.24c.12-.08.14-.12.14-.32v-.21l-.24.02c-.36.05-.48.12-.5.29-.03.27.29.36.6.22m2.38.28c-.5-.12-.6-1.08-.14-1.41.12-.1.16-.12.45-.1l.32.02v-.29c0-.28 0-.28.12-.28h.12v2.04h-.12c-.1 0-.12-.03-.12-.07 0-.08-.03-.08-.12-.03a.82.82 0 0 1-.5.12zm.43-.28.2-.08v-.45c0-.41-.03-.46-.13-.48-.24-.05-.4-.03-.55.12s-.14.16-.12.45c.03.46.22.6.6.44m-7.35-.73v-.98l.16-.03c.07 0 .3 0 .46.03.29.02.36.05.5.19.15.17.17.2.15.43-.05.39-.31.6-.77.6h-.22l-.02.36c0 .37 0 .37-.14.39h-.15zm.9-.14c.15-.17.15-.34 0-.5-.09-.1-.16-.12-.38-.12h-.24v.81l.27-.02c.19-.02.29-.07.36-.17zm.73.38v-.74h.24v1.5h-.24v-.75zm.94.68c-.2-.1-.3-.34-.3-.65 0-.34.06-.48.25-.65.14-.1.21-.12.43-.12.34 0 .48.05.48.22 0 .12 0 .12-.14.04-.24-.12-.48-.1-.65.05-.1.1-.12.17-.12.43s.02.32.12.44c.17.14.4.14.65.05.14-.1.14-.08.14.04a.2.2 0 0 1-.1.17c-.14.07-.6.05-.76-.02m2.86-.68c0-.72 0-.74.1-.74.07 0 .11.02.14.1.02.1.02.1.14.02a.6.6 0 0 1 .32-.1c.16 0 .19 0 .19.12.02.12 0 .12-.12.12a.6.6 0 0 0-.34.05l-.17.07-.02.56c0 .5-.03.53-.12.55-.12 0-.12 0-.12-.74zm2.86 0v-.74h.24v1.5h-.24v-.75zm.87.58c-.34-.29-.32-.89 0-1.18.14-.12.21-.14.43-.14.12 0 .29.02.36.05.17.07.29.29.29.5v.2h-.53c-.29 0-.53.02-.53.02-.07.12.07.38.22.46.17.1.48.1.65 0s.19-.1.19.04c0 .15-.22.22-.6.22-.27 0-.31-.02-.48-.17m.84-.84c0-.29-.46-.4-.7-.2-.07.08-.12.18-.12.22 0 .08.05.1.41.1.39 0 .4-.02.4-.12zm-8.37-.86c0-.1.02-.12.12-.12s.12.02.12.11c0 .1-.02.12-.12.12s-.12-.02-.12-.11m6.66 0c0-.1.03-.12.12-.12s.12.02.12.11c0 .1-.02.12-.12.12s-.12-.02-.12-.11m-15.6-.39a6.99 6.99 0 0 1-6.01-5.77c-.1-.6-.1-1.76 0-2.36A7.06 7.06 0 0 1 5.76 4.2c.6-.12 2.19-.12 2.79.02 1.37.29 2.48.9 3.49 1.9a6.78 6.78 0 0 1 1.94 3.7A6.97 6.97 0 0 1 6.33 18zm1.46-2.74c1.42-.17 2.65-1.15 3.4-2.65.18-.43.26-.6.26-.84.02-.26.02-.31-.07-.4-.15-.15-.39-.15-.51 0-.05.04-.2.23-.29.45-.53 1.06-1.13 1.64-2 1.9-.48.14-1.39.1-1.92-.07a3 3 0 0 1-1.75-1.59 3.15 3.15 0 0 1-.36-2.33c.24-.9.6-1.37 1.3-1.7.33-.18.45-.2.84-.22s.5 0 .79.12c.7.26 1.35.86 1.32 1.22-.02.15-.07.22-1.49 1.16-.82.55-1.51 1.05-1.56 1.1-.14.17-.12.39.07.55.12.12.17.15.31.12.12-.02.87-.5 2.24-1.41 2.07-1.38 2.26-1.52 2.36-1.69.12-.24-.6-1.18-1.33-1.68-.6-.41-1.4-.65-2.06-.65s-1.37.22-2.1.65a3.85 3.85 0 0 0-1.73 1.83 3.97 3.97 0 0 0 .75 4.83c.8.8 1.75 1.23 3.05 1.35zm7.34 2.67s.07-.22.19-.46l.19-.43-.43-1.06-.46-1.06h.17c.07-.02.17-.02.19 0s.22.39.38.8c.2.43.34.79.37.79l.36-.8.31-.79h.22l.19-.02-.17.38c-.07.22-.39.92-.65 1.54l-.48 1.13h-.2c-.11 0-.18 0-.18-.02m2.8-.77c-.4-.1-.66-.36-.76-.82-.14-.65.14-1.25.67-1.44.22-.08.8-.03.99.07.12.05.14.07.14.26v.24l-.14-.12c-.36-.24-.82-.24-1.06 0-.26.27-.31.87-.12 1.2.2.32.63.4 1.06.17a1 1 0 0 1 .26-.12v.22c-.02.2-.04.22-.21.27-.27.1-.63.12-.82.07zm2.2-.03a.9.9 0 0 1-.65-.43c-.12-.2-.12-.26-.12-.67s0-.48.14-.7c.2-.31.5-.48.92-.48.57 0 .89.29.93.89l.03.31h-1.66v.15c0 .4.38.7.89.65.17-.03.38-.08.5-.15l.22-.1-.02.22c0 .2-.03.22-.2.27a2 2 0 0 1-.98.05zm.86-1.46-.02-.15c0-.05-.07-.14-.15-.21-.26-.27-.81-.2-1 .14-.17.29-.17.31.55.31.57 0 .67-.02.62-.1zm1.66 1.49c-.26-.07-.45-.17-.6-.36-.17-.22-.24-.46-.21-.92.02-.31.04-.4.16-.57a1 1 0 0 1 .9-.46c.57 0 .9.29.96.91l.04.3h-.86c-.99 0-.97 0-.75.4.24.46.8.53 1.5.17.02-.03.04.07.04.17 0 .21-.05.26-.5.36-.27.05-.41.05-.68 0m.82-1.52c0-.14-.12-.38-.24-.43-.17-.1-.55-.07-.74.05a.77.77 0 0 0-.32.48s.3.02.65.02c.63 0 .65 0 .65-.12m-9.71 1.5a15 15 0 0 1-.05-1.6V14h.4v3.15h-.16c-.1 0-.17-.03-.2-.03zm6.46-2.65c0-.03.08-.2.17-.39l.2-.36h.2c.13 0 .23.03.23.05l-.27.36c-.2.3-.29.36-.39.36z" })
9
+ ] });
10
+ export {
11
+ SvgIconElyceepicardie 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 SvgIconEsidoc: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconEsidoc;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconEsidoc = ({
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.02 1.37-5.29.1c-3.7.05-5.33.12-5.45.24-.58.46-.99 4.02-.75 6.4.36 3.5 1.88 7.67 3.51 9.57.48.55.53.57 1.06.5 1.32-.21 9.4-2.79 10.05-3.22.17-.1.07-.31-.48-1.2-2.12-3.4-2.64-5.41-2.64-9.86V1.37zm-4.5.73c1.93 0 3.62.04 3.69.16.07.1.12 1.1.12 2.26 0 3.42.43 5.15 2.11 8.32l.92 1.71-.46.27c-.24.14-.55.26-.67.26s-.58.14-1.01.29c-.46.14-1.95.62-3.35 1.03-2.78.85-3.6 1.01-4.1.85-.6-.2-1.9-2.53-2.6-4.65-.68-2.02-.82-3.29-.85-6.46 0-3.03.05-3.5.6-3.78.27-.14 3.13-.24 5.6-.26m-.79 2.5c-.86 0-1.32.26-2.09 1.05a6.37 6.37 0 0 0-1.78 3.4 3.6 3.6 0 0 1-.43 1.24c-.24.32-.26.44-.12.68.07.17.2.29.27.29s.79.62 1.58 1.37c.9.82 1.59 1.37 1.76 1.37s.38.07.48.14c.34.22 1.8.15 2.55-.12 1.6-.55 2.81-2.26 2.38-3.31-.34-.8-.87-.7-2.17.48-.81.7-1.44.86-2.14.55-.6-.29-.7-.58-.26-.75.2-.07.43-.14.53-.14.29 0 1.73-1.01 2.3-1.61.85-.87.97-2 .34-3.2-.14-.29-.33-.55-.45-.6-.1-.05-.2-.17-.2-.26 0-.27-.12-.32-1.49-.49-.4-.04-.77-.1-1.05-.1zm.53.7c.3 0 .58.04.85.14C14.6 6 15.13 7.3 14.3 8.5c-.5.75-1.3 1.3-2.65 1.86-.6.26-1.15.5-1.22.57-.2.2-.03.53.48.92.58.43 1.22.62 2.04.62.87 0 1.42-.31 2-1.13.7-1.03 1.27-.7.7.41a3.46 3.46 0 0 1-1.64 1.54c-.5.17-2.07.2-2.62.03-.63-.2-.99-.46-1.97-1.38-.53-.5-1.1-.96-1.28-1.03-.38-.12-.38-.24 0-.4.27-.13.34-.3.44-1.04.14-1.28.3-1.76.74-2.48a3.79 3.79 0 0 1 2.94-1.7zm-.21.86c-.7 0-1.42.48-1.83 1.27-.39.77-.55 2.1-.31 2.4.21.25.45.2 1.78-.45 1.17-.6 1.51-.99 1.6-1.92.06-.58.03-.72-.23-.94a1.58 1.58 0 0 0-1.01-.36m-.1.77c.41.02.82.21.82.43 0 .29-.9 1.27-1.37 1.52-.65.33-.75.26-.75-.49.03-.76.39-1.3 1.04-1.44.07-.02.17-.02.26-.02M4.06 17.46l-.1.53c-.26 1.35.25 4.04.92 5.03.17.21.39.38.5.38.49 0 3.25-.89 3.32-1.08.03-.1-.11-.58-.33-1.06a5.35 5.35 0 0 1-.46-2.3l-.07-1.43-1.9-.02zm8.44.41c-.07 0-.12.1-.14.22-.05.16 0 .24.12.19.22-.07.26-.36.05-.41 0-.02 0-.02-.03 0m3.01.17c-.07 0-.14.17-.17.36-.05.31-.17.4-.8.62-.9.32-1.39.82-1.39 1.5 0 .7.12.93.6 1.13.44.19.99.14 1.28-.1.1-.07.26-.12.36-.1.14.05.2-.31.22-1.68.02-1.06 0-1.73-.1-1.73m-10.44.43c.1-.02.08.05-.04.2-.22.26-.49.28-.41.04.04-.1.19-.2.33-.24zm5.97.29c-.27-.02-.92.58-.92.82 0 .07.24.43.56.8.72.86.72 1.05-.07 1.05-.58 0-.75.12-.53.34.14.14.57.1 1.08-.12.62-.27.62-.63 0-1.4-.63-.72-.63-.94-.03-.94.24 0 .5-.04.56-.1.12-.11-.34-.45-.65-.45m-4.81.14c.17-.02.33.05.5.2.44.45.2 1.03-.65 1.56-.43.29-.5.4-.38.55.29.36.67.39 1.08.1.22-.17.46-.3.48-.3.17 0 .1.42-.12.63-.31.32-1.06.27-1.59-.12-.86-.57-.89-1.42-.12-2.18.3-.3.56-.44.8-.44m6.27.12c-.24 0-.3.39-.3 1.6 0 .78.04 1.1.13 1 .2-.2.37-2.6.17-2.6m5.2 0c-.55 0-.75.08-1.03.37-.63.62-.34 1.87.52 2.26.92.38 1.64-.27 1.64-1.52 0-.87-.24-1.1-1.13-1.1zm3.05.03c-.4 0-.81.02-.91.1-.48.3-.63 1.68-.24 2.25.17.27.34.32.98.3.68 0 .73-.03.34-.13-.53-.12-1.13-.5-1.22-.8-.1-.26.19-.95.53-1.27.14-.12.48-.28.77-.33.48-.1.48-.12-.24-.12zm-14.79.26c-.21 0-.55.46-.55.8 0 .38.34.45.82.12.48-.36.34-.92-.27-.92m11.79 0c.19 0 .38.05.48.17.29.27.21 1.44-.07 1.7-.36.34-.82.3-1.2-.09-.46-.48-.46-1.1.02-1.49.21-.2.5-.29.77-.29m-3.03.03h.1l.47.04v.8c0 .46-.07.89-.19 1.03-.24.32-1 .3-1.3-.05-.6-.67 0-1.82.92-1.82m-5.44.96c-.14 0-.29.07-.33.14s.1.15.33.15c.27 0 .41-.08.36-.15s-.21-.14-.36-.14" })
9
+ ] });
10
+ export {
11
+ SvgIconEsidoc 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 SvgIconEuropress: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconEuropress;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconEuropress = ({
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.47 23.57-.2-.12a.43.43 0 0 0-.21-.1H.94V1.61h10.82c5.96 0 10.87.03 10.9.05.04 0 .06.07.06.15s.03.12.08.12c.02 0 .1.04.12.12.04.12.07 21.2 0 21.4 0 .05-.08.1-.17.12-.17.05-21.19.02-21.28 0m21.16-11.09V1.68H.99V23.3h21.64zm-10.17 0V4.31l.33.02c.72.07 1.78.39 2.62.8a8 8 0 0 1 2.89 2.35c.39.48.46.63.77 1.2a7.3 7.3 0 0 1 .89 3.61l.02.9-2.93.02c-1.61 0-2.98 0-3.05-.03h-.1v7.5h-1.44zm5.4-.74c0-.15-.09-.68-.2-1.04a8.2 8.2 0 0 0-.7-1.51l-.3-.39a6.36 6.36 0 0 0-2.33-1.87c-.48-.22-.43-.46-.43 2.38v2.48h1.97c1.61 0 2 0 2-.05zm-7.35 8.85a10 10 0 0 1-1.61-.46 8 8 0 0 1-2.55-1.56c-.24-.2-.8-.8-1.13-1.23a17 17 0 0 1-.82-1.42c0-.02-.07-.14-.12-.29a9 9 0 0 1-.48-1.58c-.1-.44-.1-.65-.1-1.54 0-.65.03-1.16.05-1.37A8.94 8.94 0 0 1 5.3 7.53a8.3 8.3 0 0 1 4.54-3l.75-.15c.14 0 .34-.05.41-.07l.17-.03v2.14l-.22.03a6.3 6.3 0 0 0-5.17 5.24c0 .1.03.1 2.7.1h2.69v.67c.02.36.02.67 0 .7 0 .02-1.23.02-2.7.02-2.11 0-2.69.02-2.69.07.03.31.24 1.15.46 1.61.05.1.07.22.07.22a6.54 6.54 0 0 0 2.12 2.43c.77.5 1.58.84 2.33.96l.4.05v2.11l-.2-.02-.44-.03z" })
9
+ ] });
10
+ export {
11
+ SvgIconEuropress 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 SvgIconExercizer: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconExercizer;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconExercizer = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 31 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: "m8.59 22.44 5.14-2.58v-4.23L8.6 17.84v4.6zm-.87-6.1 5.43-2.32-5.43-2.33-5.41 2.33zm14.62 6.1 5.15-2.58v-4.23l-5.15 2.21zm-.87-6.1 5.42-2.32-5.41-2.33-5.44 2.33zm-6-3.93 5.14-2.21V6.62l-5.15 2.2v3.6zm-.87-5.1 5.9-2.51-5.9-2.56-5.92 2.55zm14.6 6.95v5.6q0 .49-.25.9t-.7.62l-6 3q-.34.2-.78.2t-.77-.2l-6-3q-.08-.02-.1-.05-.03.03-.1.05l-6.01 3q-.34.2-.77.2t-.75-.2l-6-3q-.47-.22-.7-.62t-.27-.9v-5.6q0-.5.29-.93t.77-.63l5.82-2.5V4.84q0-.53.29-.97t.74-.62L13.92.68q.32-.15.68-.15t.67.15l6.01 2.57q.48.22.77.62t.29.96v5.37l5.82 2.5q.48.2.77.63t.26.93z" })
9
+ ] });
10
+ export {
11
+ SvgIconExercizer 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 SvgIconForms: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconForms;
@@ -0,0 +1,16 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconForms = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", 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__ */ jsxs("g", { fill: "currentColor", clipPath: "url(#icon-forms_svg__a)", children: [
9
+ /* @__PURE__ */ jsx("path", { d: "M13.615 5.36v-.008zM18.35 2.4H8.356c-.954 0-1.73.776-1.73 1.73v13.914c0 .954.776 1.73 1.73 1.73h9.994c.953 0 1.73-.776 1.73-1.73V4.13c0-.954-.776-1.73-1.73-1.73m-.508 2.95v.01zm-5.48 9.98-1.63 1.631a.577.577 0 0 1-.815 0l-.815-.815a.577.577 0 0 1 .815-.816l.408.408 1.223-1.223a.577.577 0 0 1 .815.816Zm0-4.613-1.63 1.631a.577.577 0 0 1-.815 0l-.815-.815a.577.577 0 0 1 .815-.815l.408.408 1.223-1.223a.577.577 0 0 1 .815.815Zm0-4.612-1.63 1.63a.577.577 0 0 1-.815 0l-.815-.815a.577.577 0 0 1 .815-.815l.408.408 1.223-1.223a.577.577 0 0 1 .815.815Zm1.253-.746v-.008zm3.87 10.991h-3.074a.576.576 0 1 1 0-1.152h3.075a.576.576 0 1 1 0 1.152Zm.004-4.628h-3.075a.576.576 0 1 1 0-1.153h3.075a.576.576 0 1 1 0 1.153m.19-4.601h-3.076a.576.576 0 0 1 0-1.153h3.075a.577.577 0 0 1 0 1.153Z" }),
10
+ /* @__PURE__ */ jsx("path", { d: "M5.473 18.044V4.805a1.73 1.73 0 0 0-1.153 1.63V20.35c0 .954.776 1.73 1.73 1.73h9.994c.751 0 1.392-.482 1.63-1.153H8.356a2.886 2.886 0 0 1-2.883-2.883" })
11
+ ] }),
12
+ /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-forms_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
13
+ ] });
14
+ export {
15
+ SvgIconForms 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 SvgIconForum: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconForum;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconForum = ({
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: "M18.9 10.85q0 1.85-1.27 3.44t-3.44 2.5-4.74.91q-1.15 0-2.36-.22-1.68 1.18-3.72 1.74-.5.12-1.16.21h-.05q-.14 0-.28-.12t-.15-.29q-.02-.02-.02-.07t.02-.1.03-.07l.02-.07.05-.07.05-.07.07-.07.05-.05.3-.34q.24-.27.37-.38t.29-.41.34-.5.26-.61q-1.66-.96-2.6-2.36t-.96-3q0-1.88 1.28-3.47t3.43-2.5 4.74-.91 4.74.91 3.44 2.5 1.27 3.47m5.15 3.41q0 1.61-.97 3.03t-2.6 2.36q.13.34.27.6t.34.5.31.4.34.4.31.34l.05.04.07.08q.03.02.05.07t.05.07l.02.07.03.07.02.1-.02.07q-.05.2-.17.32t-.29.1q-.67-.1-1.15-.23-2.07-.55-3.76-1.73-1.2.22-2.35.22-3.63 0-6.33-1.78.77.07 1.18.07 2.16 0 4.14-.6t3.56-1.73q1.65-1.25 2.57-2.86t.89-3.4q0-1.03-.32-2.04 1.74.94 2.75 2.38t1 3.08z" })
9
+ ] });
10
+ export {
11
+ SvgIconForum 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 SvgIconGepi: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconGepi;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconGepi = ({
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: "M4.02 23.86a4.76 4.76 0 0 1-2.46-1.57 5.5 5.5 0 0 1-.86-1.82C.58 19.94.58 5.1.7 4.57s.5-1.35.86-1.8a4.66 4.66 0 0 1 2.55-1.61c.53-.12 15.37-.12 15.9 0 .91.19 1.97.84 2.55 1.6.36.46.74 1.28.86 1.81.05.27.07 2.67.07 7.94 0 5.29-.02 7.7-.07 7.96a4.8 4.8 0 0 1-1.6 2.55c-.47.36-1.28.74-1.81.86-.56.12-15.51.1-16-.02zm12-2.07c.93-.14 1.9-.36 2.38-.55l.38-.15v-4.25c0-3.37-.02-4.26-.1-4.28-.04-.03-.98-.03-2.09-.03l-2 .03.87.65c.46.36 1.01.74 1.18.84.2.1.36.24.41.29s.07.98.1 2.62v2.52l-.36.15c-1.11.36-1.5.43-2.84.43-.77 0-1.5-.03-1.83-.1-2.91-.5-4.62-2.04-5.3-4.78a6.9 6.9 0 0 1-.16-2.12c0-1 .02-1.63.1-1.95a7.06 7.06 0 0 1 2.02-3.63q2.34-2.235 6.27-1.95c1.04.05 1.73.22 2.86.63l.85.26c.02-.02-.12-.52-.32-1.13l-.33-1.05-.44-.15a13.4 13.4 0 0 0-6.1-.21A8.81 8.81 0 0 0 4.9 9.7c-1 3.05-.57 6.8 1.06 8.97 1.3 1.73 3.35 2.83 5.9 3.2.93.11 3.17.07 4.15-.08z" })
9
+ ] });
10
+ export {
11
+ SvgIconGepi 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 SvgIconGlpi: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconGlpi;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconGlpi = ({
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: "M9.5 6.5c-.43 0-.9 0-1.25.02l-1.13.12c-.12.02-.36.05-.55.1-1.28.19-2.84.7-3.51 1.13C2.24 8.4 1.4 9.12 1.4 9.3c0 .05-.08.14-.27.36-.1.1-.21.34-.4.8a4.6 4.6 0 0 0-.15 2.35c.29 1.28 1.32 2.4 2.84 3.1.57.27.72.32 1.4.48.18.05.33.12.35.15 0 .05-.43.36-.91.6l-.8.43-.7.39c-.07.05-.14.1-.14.14 0 .03.05.05.12.05s.12-.03.12-.05c0-.05.05-.07.1-.07.12 0 .74-.27 1.59-.65l1.13-.5.65-.27.4.07c.5.1 2.55.22 3.61.22h.75l.02-.41c0-.22-.02-.46-.05-.53-.07-.12-.05-.12-1.47-.26-.62-.05-.93-.12-.93-.17 0-.03.16-.15.33-.3 1.5-1.05 2.14-1.7 2.62-2.64.73-1.44-.28-2.18-2.54-1.9-1.06.12-2.72.53-3.2.75-.07.05-.15.1-.15.14 0 .12.24.15 1.69.15 1.42 0 1.58.02 1.85.26.17.17.2.6.05 1.04-.22.6-.94 1.44-1.66 2.02-.32.24-.34.24-.63.21a4.5 4.5 0 0 1-1.51-.65 3.36 3.36 0 0 1-1.52-2.7 3.3 3.3 0 0 1 1.28-3.04 6.2 6.2 0 0 1 2.76-1.2c.48-.13 1.8-.22 2.55-.17.7.04.72 0 .67-.53-.02-.24-.07-.34-.16-.39-.17-.05-.85-.1-1.6-.1zm9.33 4.2c-.67 0-1.32 0-1.42.08-.12.04-.12.14-.12 2.52 0 2.02.02 2.48.1 2.53.02.04.24.1.43.12.6.1.58.12.55-1.09v-1l1.08-.03 1.11-.05.39-.19c.33-.2.38-.24.52-.55.17-.41.24-.72.17-.82a.6.6 0 0 1-.05-.24c-.07-.43-.64-1.01-1.2-1.18-.19-.07-.89-.1-1.56-.1m-5.5 0c-.35 0-.32.2-.3 2.63v2.47l.17.07c.1.08.6.1 1.8.1h1.66l.03-.2c.05-.26-.1-.52-.3-.57a10 10 0 0 0-1.24 0c-.84.03-1.1.03-1.16-.05-.02-.04-.04-.77-.04-2.04 0-1.06-.03-2-.03-2.07 0-.21-.17-.34-.45-.34h-.15zm9.54 0c-.17 0-.31.03-.36.08-.07.04-.07.7-.07 2.52v2.48l.12.1c.1.04.24.09.43.07l.31-.03V13.4c0-1.9-.02-2.53-.07-2.6s-.22-.1-.36-.1m-3.73.75c.36 0 .75.02.91.05.12.04.3.14.39.24.29.36.14.98-.27 1.2a8.3 8.3 0 0 1-1.73.12c-.07-.03-.1-.15-.07-.77 0-.39.03-.74.05-.8.02-.02.36-.04.72-.04" })
9
+ ] });
10
+ export {
11
+ SvgIconGlpi 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 SvgIconHiboutheque: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconHiboutheque;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconHiboutheque = ({
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: "M15.16 9.05a.74.74 0 0 1 0-1.47c.4 0 .74.33.74.73s-.33.74-.74.74m-4.25-1.47a.74.74 0 1 0 0 1.47.74.74 0 0 0 0-1.47m12.77 13.17-.75.86c-.18.22-1.3-.08-1.77-.72-1.27-1.81-3.95-2.92-5.32-3.4a.5.5 0 0 1-.18.03h-1a.62.62 0 0 1-.62-.59 4.8 4.8 0 0 1-2 .02c0 .06-.02.1-.04.16a6.2 6.2 0 0 1 3.78 2.96c1.61 2.97-5.03 2.31-6.2 2.17a.8.8 0 0 1-.37-.13c-.62-.4-2.44-1.95.62-4.98a.6.6 0 0 1-.05-.24v-.75c0-.09.02-.17.05-.24a7.23 7.23 0 0 1-2.52-5.66A7.6 7.6 0 0 1 8.75 5.7c-.11-.94-.43-4.47 2.04-1.74a4.88 4.88 0 0 1 4.67.14c2.51-2.73 2.08 1.15 1.97 1.9a7.66 7.66 0 0 1 1.25 4.24c0 2.33-.98 4.39-2.46 5.61a.6.6 0 0 1 .07.3v.5c.18.04.36.1.53.2l4.36 1.96c-.25-.23-.42-.42-.42-.42s-1.17-2.09.65-4.43 2.08 2.28 1.98 4.75c-.01.52-.15.81-.34.94l.14.06.02.01c.69.4.66.82.47 1.03M12.8 8.51a2.17 2.17 0 1 0-4.34 0 2.17 2.17 0 0 0 4.34 0m.94 2.39h-1.4l.7 1.22zm1.72-.15a2.24 2.24 0 1 0 0-4.47 2.24 2.24 0 0 0 0 4.47M3.94 17.73c.96.71 3.31-.53 2.4-4.43s-4.86 2.6-2.4 4.43m-3 3.77c.53.87 2.92 2.08 3.4.82.7-1.85-4.2-2.13-3.4-.82" })
9
+ ] });
10
+ export {
11
+ SvgIconHiboutheque 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 SvgIconItopstore: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconItopstore;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconItopstore = ({
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: "M2.77 4.72V15c0 .02-.03.05-.08.05a.05.05 0 0 1-.04-.05V9.33H.6v5.87h23.11V9.35L7.43 9.27v5.72c0 .03-.02.05-.07.05a.05.05 0 0 1-.05-.05V9.26L7.26 7l-.05-2.28H2.76zm2.6 1.56h.11c.58.07.87.58.6 1.06-.26.55-.77.57-1.1.07-.36-.53-.12-1.1.38-1.13zm-.6 2.3a1 1 0 0 1 .42.15c.53.31.6.92.24 2.33-.28 1.2-.21 1.52.32 1.52.5 0 .5.22 0 .43-.5.24-1.18.24-1.42 0-.27-.24-.24-1.13.05-2.33.26-1.18.19-1.54-.34-1.44-.55.1-.43-.17.2-.48.23-.1.38-.17.52-.17zm10.67 1.26c.4 0 .77.05 1.08.17.31.1.58.26.8.45.23.22.4.46.52.77.12.3.17.65.17 1.01 0 .39-.05.75-.17 1.04a2.18 2.18 0 0 1-1.34 1.22 3.37 3.37 0 0 1-2.12 0 2.5 2.5 0 0 1-.82-.48c-.21-.2-.38-.46-.5-.74a2.71 2.71 0 0 1 0-2.04c.12-.3.29-.56.5-.78a3.06 3.06 0 0 1 1.88-.63zm-7.53.1h4.71v.55h-2v4.08h-.71V10.5h-2zm11.28 0h1.49c.34 0 .63.02.84.07.24.04.46.12.63.21.21.12.36.27.48.43.12.2.17.41.17.68 0 .21-.03.4-.12.57-.08.17-.2.34-.37.46-.19.17-.4.3-.67.36s-.58.12-.98.12h-.75v1.73h-.72V9.93zm-3.75.43c-.55 0-.99.17-1.32.5-.32.32-.49.77-.49 1.37 0 .63.17 1.09.5 1.4.32.34.75.5 1.3.5s1-.16 1.33-.5c.34-.31.48-.77.48-1.4 0-.6-.14-1.05-.48-1.37-.31-.33-.74-.5-1.32-.5m4.47.1v1.84h.63c.3 0 .55-.02.72-.07.19-.04.33-.12.45-.21a.77.77 0 0 0 .34-.68.7.7 0 0 0-.12-.4c-.05-.13-.17-.22-.29-.3s-.26-.12-.4-.14a4 4 0 0 0-.58-.05h-.75zm-5.7 5.04v.44h-.17v.21h.17v.8c0 .19.05.3.12.4q.15.12.36.12c.05 0 .1 0 .15-.02.07 0 .12 0 .16-.02v-.22h-.02l-.1.02c-.04 0-.07.03-.12.03-.07 0-.11-.03-.16-.03-.03-.02-.05-.04-.07-.1-.03-.02-.05-.06-.05-.11v-.87H15v-.21h-.53v-.44h-.27zm1.68.39c-.21 0-.38.07-.5.21s-.2.34-.2.58.08.46.2.58c.12.14.29.21.5.21s.39-.07.51-.21c.14-.12.2-.34.2-.58s-.06-.43-.2-.58a.62.62 0 0 0-.5-.21zm2.91 0a.7.7 0 0 0-.52.21.9.9 0 0 0-.2.6c0 .24.08.44.22.58.12.12.34.2.58.2.1 0 .19 0 .29-.03l.26-.1v-.28h-.02a.46.46 0 0 1-.22.12.8.8 0 0 1-.31.07l-.22-.03c-.07-.02-.12-.07-.17-.12-.04-.02-.1-.1-.12-.17a.6.6 0 0 1-.04-.24h1.13v-.12c0-.24-.05-.4-.17-.52s-.27-.17-.48-.17zm-5.5 0c-.1 0-.2.02-.27.05a.36.36 0 0 0-.19.1c-.07.04-.1.09-.12.14s-.05.12-.05.16c0 .12.03.2.1.27.05.07.14.12.26.14.05.03.12.03.17.05l.15.02c.1.03.16.05.19.08s.05.07.05.14-.03.12-.1.17a.64.64 0 0 1-.27.05c-.07 0-.16-.03-.26-.05-.12-.05-.2-.1-.29-.15v.3c.05.02.14.04.24.09.07.02.2.02.29.02.22 0 .36-.04.48-.12.12-.1.17-.21.17-.36 0-.1-.03-.19-.1-.26a.7.7 0 0 0-.26-.12c-.05-.03-.1-.03-.15-.05-.07 0-.12 0-.16-.02l-.2-.08c-.02-.02-.04-.07-.04-.14s.02-.12.1-.17c.06-.02.14-.05.23-.05.07 0 .17.03.27.05l.24.12h.02v-.26l-.24-.08a1 1 0 0 0-.26-.04m3.7.05v1.51h.24v-1.08l.22-.15c.07-.02.14-.04.24-.04h.12c.02.02.07.02.12.02v-.26h-.2c-.07 0-.14 0-.21.04-.1.03-.17.1-.29.17v-.21zm1.8.16c.12 0 .24.03.3.1.07.07.09.2.11.31h-.89a.55.55 0 0 1 .15-.29c.1-.1.19-.12.34-.12zm-2.9 0c.14 0 .23.05.33.15.07.1.1.24.1.43s-.03.34-.1.43c-.1.1-.19.15-.34.15-.12 0-.24-.05-.3-.15s-.13-.24-.13-.43c0-.2.05-.34.12-.43s.2-.15.31-.15zm5.74.37c-.12 0-.24.04-.31.14a.6.6 0 0 0 0 .72c.07.09.2.15.31.15.15 0 .24-.05.31-.15.1-.1.12-.21.12-.36s-.02-.27-.12-.36a.33.33 0 0 0-.3-.15zm1.16 0c-.05 0-.12.02-.17.04s-.1.05-.14.1v-.12h-.15v.96h.15v-.72l.14-.07c.02-.03.07-.03.12-.03h.1l.07.08.02.07v.67h.17v-.67c-.02 0-.02-.03-.02-.05l.14-.07a.3.3 0 0 1 .12-.03h.12c.02.03.05.05.05.08.02.02.02.04.02.07v.67h.17v-.62c0-.12-.03-.2-.07-.27a.32.32 0 0 0-.24-.1c-.05 0-.12.03-.17.05s-.1.05-.17.12c-.02-.04-.05-.1-.1-.12s-.1-.04-.16-.04m-2.02 0c-.15 0-.27.04-.34.14-.1.1-.14.21-.14.36 0 .07.02.14.04.22s.05.12.1.14c.02.05.07.07.14.1.05.02.12.04.2.04l.14-.02.14-.07v-.17l-.04.02-.08.05c-.02 0-.04.03-.1.03-.02.02-.04.02-.09.02a.3.3 0 0 1-.21-.1c-.05-.07-.08-.14-.08-.26s.03-.22.08-.27a.3.3 0 0 1 .21-.1l.17.03c.05.03.1.05.14.1v-.17l-.14-.07c-.05 0-.1-.03-.14-.03zm.86.14c.1 0 .15.02.2.1.04.04.07.14.07.26s-.03.22-.08.27c-.04.07-.1.1-.19.1a.22.22 0 0 1-.19-.1c-.05-.05-.07-.15-.07-.27s.02-.22.07-.27c.05-.07.12-.1.2-.1zm-1.85.6v.24h.22v-.24z" })
9
+ ] });
10
+ export {
11
+ SvgIconItopstore 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 SvgIconKne: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconKne;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconKne = ({
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.75 1.59v20.85H22.6V12.22H12.07V1.59zm7.03 2.62c.04 0 .16.07.29.15.19.14.12.24-1.09 1.39l-1.3 1.23L8.15 8.5c1.52 1.6 1.56 1.66.9 1.74-.27.02-.44-.12-1.52-1.3a67 67 0 0 0-1.5-1.61L5.76 7v3.32H5.4c-.22 0-.41-.05-.44-.12s-.04-1.45-.02-3.03l.02-2.89h.75l.05 1.35L5.79 7l.22-.22c.77-.8 2.7-2.57 2.77-2.57M1.9 12.03h9.96v.07H1.9zm16.69.3c.17 0 .21.35.1.49-.08.07-.46.36-.9.63-.84.5-.93.52-1 .33a7.3 7.3 0 0 1 1.8-1.44zm-6.6.06h.13v9.8H12v-9.8zm3.86 2.26h3.17v.53H16.7v2.09h2.33v.53H16.7v2.43h2.74v.52h-3.58v-6.1zm-6.28.05h.24v6l-.29.03c-.26.03-.31 0-2.11-1.92-.39-.41-.85-.92-1.04-1.16-.19-.21-.6-.67-.91-.98-.31-.34-.55-.63-.55-.68s-.05-.1-.1-.1c-.07 0-.12.95-.14 2.41l-.03 2.4-.26.03c-.15.03-.32 0-.34-.04-.05-.03-.07-1.38-.07-2.94 0-2.16.02-2.9.12-2.96.33-.21.55-.07 1.42.9.5.55 1.25 1.34 1.66 1.77s.84.94.98 1.1c.17.2.43.49.6.66l.32.31.02-2.3c.02-1.3.07-2.36.14-2.44.05-.07.2-.12.34-.1z" })
9
+ ] });
10
+ export {
11
+ SvgIconKne 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 SvgIconLeSiteTv: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconLeSiteTv;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconLeSiteTv = ({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 25 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: "M3.9 2.55c-.03 0-.05.05-.05.07 0 .05.62.8.8.97.04.02.28.3.57.65s.55.62.58.64c.21.2 1.05 1.25 1.03 1.28-.02 0-1.42.02-3.1.02s-3.1.03-3.15.03C.5 6.25.5 6.45.5 7.84c0 1.47 0 1.59.1 1.61.04.03 1.53.05 3.31.05h3.25l.02.12c0 .12-.24.4-1.3 1.47-1.87 1.9-2.07 2.11-2.04 2.14s.96.04 2.09.04h2.04l.97-.98c1.37-1.4 3.36-3.49 3.84-3.97.22-.22.39-.46.39-.5 0-.03-1.18-1.23-2.6-2.67l-2.6-2.6zM.46 14.98v7h.62v-7.04H.77c-.2-.03-.29 0-.31.04m9.52-.02v.89c.02.05.14.05.34.05l.3-.03v-.93h-.3c-.2-.03-.32 0-.34.02m2 .46-.3.21.03.58c0 .31-.02.6-.05.6 0 .03-.1.05-.19.05-.27.05-.29.07-.27.36.05.27.12.34.34.34.1 0 .15.02.15.04.02.05.02.8 0 1.64 0 1.88.04 2.28.33 2.57.2.2.39.24.84.2.24-.03.3-.08.24-.41-.04-.32-.14-.44-.4-.44-.15 0-.2-.02-.24-.12-.05-.16-.08-3.44-.03-3.48.03-.03.12-.03.24-.03.3.03.34-.05.39-.34.02-.21 0-.24-.12-.28-.08-.05-.2-.05-.27-.05-.24.05-.26 0-.29-.84 0-.53-.02-.8-.07-.82-.02 0-.2.1-.34.21zm8.22 0-.27.21v.58c0 .31 0 .6-.02.6-.02.03-.1.05-.2.05-.26.05-.28.07-.26.36.03.27.1.34.34.34.07 0 .14.02.14.04v1.64c0 1.88.05 2.28.32 2.57.19.2.4.24.84.2.26-.03.29-.08.24-.41-.05-.32-.15-.44-.39-.44-.16 0-.19-.02-.24-.12-.07-.16-.1-3.44-.04-3.48.02-.03.14-.03.24-.03.28.03.36-.05.38-.34.02-.21.02-.24-.1-.28-.07-.05-.19-.05-.26-.05-.27.05-.29 0-.29-.84 0-.53-.05-.8-.07-.82-.05 0-.2.1-.36.21zM3.08 16.84c-.63.24-1.06.93-1.2 2.02-.08.5-.08.67 0 1.17.07.48.12.7.28 1.06.2.41.77.92 1.01.92.08 0 .2.02.27.04.1.08.22.08.5 0 .7-.12 1.01-.4 1.35-1.22.05-.1.1-.24.1-.3 0-.09-.17-.18-.43-.18-.2 0-.22.02-.32.26-.24.6-.48.77-1.13.75-.26-.03-.65-.36-.82-.75-.12-.31-.21-.89-.12-.94.05-.02.68-.04 1.42-.04l1.35.02.02-.14c.03-.08.05-.32.03-.56-.05-1.3-.77-2.23-1.73-2.2-.2 0-.44.04-.58.09m.94.67c.38.17.65.58.7 1.1.02.2 0 .27-.05.27H2.6c-.05 0-.08-.07-.05-.31.07-.5.36-.9.82-1.08.24-.1.33-.1.65.02m2.86-.67c-.5.19-.85.72-.85 1.34 0 .39.1.65.34.97.17.21.46.36 1.16.62.89.34 1.1.63.84 1.15-.12.32-.36.44-.75.44-.36 0-.77-.17-.77-.32 0-.04-.02-.1-.04-.14-.05-.02-.1-.17-.15-.29-.05-.21-.05-.24-.26-.24-.32-.02-.44.07-.37.39.05.45.37.93.73 1.15.21.12.91.24 1.05.14.1-.02.2-.04.27-.04.12 0 .48-.22.62-.39.2-.24.3-.4.39-.82.1-.38.1-.38 0-.72-.1-.26-.17-.4-.39-.62-.14-.15-.28-.27-.33-.27-.03 0-.15-.05-.27-.1-.1-.04-.24-.11-.31-.16a.9.9 0 0 0-.24-.05c-.12 0-.6-.29-.72-.43-.24-.3-.12-.77.21-.94.24-.12.53-.12.7-.02.24.1.43.33.43.48 0 .07.05.16.1.24.1.12.12.12.39.04.16-.04.26-.1.24-.16l-.05-.3a1.2 1.2 0 0 0-.84-.95 1.82 1.82 0 0 0-1.13 0m7.76 0c-.52.24-.86.67-1.08 1.41a6.1 6.1 0 0 0 .05 2.6c0 .05.05.12.1.17.04.02.07.1.07.14 0 .12.29.41.58.65.45.34 1.27.34 1.77 0 .27-.14.6-.57.6-.7 0-.04.05-.11.1-.19.05-.04.07-.19.07-.3 0-.23-.1-.3-.43-.25-.14 0-.2.02-.22.14-.02.17-.21.49-.43.68-.14.14-.19.17-.53.17-.31 0-.38-.03-.55-.15-.39-.29-.58-.7-.63-1.22 0-.27 0-.37.08-.37h1.34c1.23.03 1.3 0 1.4-.1.07-.06.1-.16.07-.35l-.07-.58a2.05 2.05 0 0 0-.24-.82 2 2 0 0 1-.1-.21c-.1-.2-.53-.6-.8-.72a1.6 1.6 0 0 0-1.15 0m.9.64c.43.2.67.58.74 1.09.02.24 0 .31-.05.31H14.2c-.12 0-.1-.4.02-.67.17-.36.43-.63.72-.72.32-.12.34-.12.6 0zm-5.49-.6c-.05.03-.07.58-.07 2.53 0 1.37.02 2.52.05 2.55.05.05.48.02.55-.05.07-.05.07-4.93.03-4.98s-.46-.1-.56-.05m11.71 0c-.24.03-.24.08-.14.37.05.1.1.33.17.52.04.2.12.46.14.6l.17.6.33 1.26.17.62.17.55.07.37c0 .16.22.24.53.21.24 0 .24 0 .36-.31.05-.17.12-.46.2-.65.11-.53.3-1.2.48-1.83.02-.17.12-.46.16-.65.2-.8.27-.98.34-1.25.12-.38.1-.45-.24-.43-.14.02-.29.02-.29.02-.07 0-.21.44-.21.56 0 .07-.05.24-.1.38s-.12.41-.17.6c-.07.32-.14.6-.34 1.33-.16.7-.26.96-.3.96-.03-.03-.08-.07-.08-.15 0-.12-.1-.45-.27-1.05a22 22 0 0 1-.33-1.3l-.17-.56c-.02-.14-.07-.3-.07-.4 0-.15-.22-.41-.31-.41zm-3.85 4.21c-.04.1 0 .77.05.84.07.05.5.08.6.03.1-.1.15-.84.05-.9-.14-.09-.65-.06-.7.03" })
9
+ ] });
10
+ export {
11
+ SvgIconLeSiteTv 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 SvgIconLemonde: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconLemonde;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconLemonde = ({
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: "M4.71 2.02c-.14.03-.4.27-.8.8-.88 1.22-.86 2 .13 2.35.17.05.82 0 1.47-.1.98-.14 1.25-.11 1.44.03.2.17.21.68.2 4.48-.06 4.2-.06 4.25-.4 4.73-.6.82-.16.77 1.23-.12 1.9-1.22 1.83-1.03 1.93-5.55l.07-3.75.5-.27.53-.29.58.48c.31.27.62.6.67.77.05.2.07 3.1.07 6.47l.03 6.18 1.13-.58a5.2 5.2 0 0 0 1.3-.86c.1-.2.14-2.33.14-6.04V5.01l.53-.32c.26-.17.58-.31.65-.31.21 0 2.43 1.35 2.43 1.47 0 .07-.1.16-.22.21s-.4.39-.62.75l-.39.67-.05 4.4c-.02 2.84.03 4.57.12 4.9.15.46 1.04 1.28 1.42 1.28.17 0 2.29-1.22 2.58-1.49.12-.1.12-.24.04-.36-.1-.17-.19-.17-.5-.02-.5.21-.92.1-1.01-.32-.05-.19-.07-2.47-.05-5.07.05-5.44.05-5.39 1.27-6.16.75-.45.8-.5.6-.82-.11-.14-.21-.14-.57.05-.67.34-1.1.3-2.17-.33-1.68-.97-1.41-.97-2.76-.1l-1.37.84c-.1.05-.67-.29-1.3-.77-1.01-.77-1.13-.84-1.42-.67-1.06.67-2.1 1.27-2.24 1.27-.07 0-.14-.1-.14-.21s-.2-.44-.4-.68c-.6-.67-1.38-.72-2.85-.14-1.34.5-1.94.58-1.94.2 0-.15.1-.4.21-.56.27-.36.27-.58 0-.7zM2.77 3.8s-.08.07-.12.24c-.12.22-.22.48-.22.58-.03.29.55.89.89.96.17.05.36.07.38.1.05 0-.1-.15-.3-.32-.47-.38-.73-1.03-.63-1.46.02-.05.02-.1 0-.1m13.27 1.18s-.02 0-.02.02c-.05.05.1.2.3.34l.7.43c.34.22.65.27.65.1a5 5 0 0 0-1.63-.89M10.87 5c-.14 0-.1.2.22.46l.4.31v6.38c0 4.18.05 6.34.15 6.34s.12-2.18.1-6.49l-.03-6.5-.4-.3c-.2-.15-.35-.2-.44-.2m-4.6.41c-.09 0-.09.08.03.27.1.19.14 1.54.12 4.25-.02 2.63 0 3.9.1 3.8s.14-1.68.14-4.2c0-3.83-.02-4.07-.27-4.12h-.11zm10.5 2.2c-.03 0-.03.02-.06.04-.12.29-.16 1.73-.19 4.93 0 4.98 0 4.95.92 5.6.79.56.9.34.16-.31l-.72-.63v-5c0-3.5-.02-4.64-.12-4.64zm-9.6 7.74c-.2 0-.41 0-.72.02-1.16.05-1.4.12-2.48.65-1.28.65-2.67 1.75-2.53 2.02.08.1.48-.05 1.23-.43 1.83-.94 3.51-.94 4.4-.03l.5.5 1.45-.84c1.44-.81 1.56-.93 1.32-1.32-.1-.14-.2-.14-.5.07-.39.27-.41.24-1.25-.21-.63-.34-.85-.44-1.42-.44zm-1.69 2.01c-.17 0-.1.08.2.2.24.12.57.36.72.57.28.39.36.44.52.3.3-.32-.76-1.09-1.44-1.06zm1.01 1.9s-.04.03-.07.08l-.1.1c.03.02 0 .06-.04.14-.1.14-.1.33 0 .4.04.05.19.08.36.05H7c.1.03.1 1.85-.03 2.02-.04.07-.07.15-.04.17s-.03.05-.08.05c-.28 0-1.2.55-1.13.67.05.07.15.05.24-.02.15-.12.44-.22.73-.22.21 0 .28.03.36.15l.12.14.31-.22c.17-.1.34-.19.38-.19s.05-.02 0-.1c-.07-.11-.1-.11-.19-.04-.07.02-.14.02-.29-.05a.7.7 0 0 0-.3-.12c-.06 0 .04-.1.2-.2.17-.11.34-.26.37-.33.05-.07.07-.48.07-.94 0-.77 0-.82.1-.86s.14-.05.26.04l.12.15v1.42c0 .8.02 1.44.02 1.44.1 0 .58-.29.6-.36.03-.05.03-.67.03-1.37 0-1.2 0-1.28.12-1.32.07-.05.17-.03.38.07l.27.14-.14.17-.12.17v2.21l.14.14.17.15.29-.17c.16-.1.31-.14.31-.14.02.02.02-.03.05-.08 0-.14-.1-.19-.17-.12-.05.05-.07.05-.14 0-.05-.04-.08-.3-.08-1.08 0-1.13.05-1.37.32-1.47.14-.07.16-.19.07-.24-.03-.02-.1 0-.15.03-.12.07-.16.05-.45-.1l-.32-.19-.28.17c-.32.2-.41.24-.39.12.02-.03 0-.05-.02-.03-.05.03-.15-.02-.24-.12l-.2-.14-.26.17-.27.14-.12-.14c-.16-.2-.3-.2-.74-.05-.2.07-.34.1-.34.1-.02-.03 0-.08.03-.15.04-.1.04-.14 0-.19-.03-.02-.05-.05-.08-.05m9.67.17-.36.22c-.34.2-.36.22-.27.26.08.08.1.08.17 0s.1-.07.22 0c.1.05.19.12.21.2.12.24.08.29-.53.65-.33.19-.6.38-.6.43s.03.05.1.05c.12-.03.12 0 .12.62v.67l.34.22c.19.12.36.22.38.22l.55-.32c.37-.21.51-.31.46-.36-.02-.05-.07-.07-.12-.05-.07.03-.07-.12-.1-1.13 0-1.27 0-1.3-.38-1.53l-.2-.15zm-12.77.03h-.12c-.26 0-.43.1-.7.31-.3.29-.36.67-.21 1.5.1.42.1.64 0 .86-.05.12.02.12.26 0 .41-.22.48-.53.32-1.54-.08-.44-.08-.48.02-.68.12-.24.29-.3.5-.19.17.1.2.22.05.36-.21.24-.02.24.34.03l.34-.24-.15-.15a.9.9 0 0 0-.65-.26m17.99.07c-.27 0-.36.02-.55.17a.77.77 0 0 0-.39.72c0 .14-.02.17-.14.19-.15 0-.17.02-.17.22-.03.19-.03.19.14.19h.17v1.97h.6v-1.97h.65v.89c0 .48-.02.94 0 .98 0 .08.05.1.29.1h.31v-.77c0-.72 0-.77.12-.91.1-.12.22-.2.39-.22.21-.05.21-.05.24-.24.02-.36 0-.39-.27-.29-.14.05-.29.15-.36.2l-.12.11v-.29h-1.27l.04-.16c.03-.1.05-.22.1-.3.05-.09.24-.11.36-.02.07.05.63-.26.58-.33-.1-.12-.41-.24-.72-.24m-18.06.2c-.05 0-.03.04.05.13s.14.15.19.12c.05-.04-.12-.26-.24-.26zm2.76 0c-.07 0-.07.28 0 .35.05.05.12.07.17.07.07 0 .07-.02-.02-.14-.1-.07-.12-.14-.12-.22.02-.04.02-.07-.03-.07zm9.74.2c-.04 0-.04.06.08.15.07.1.14.2.14.22 0 .05.02.07.05.07.1 0 .04-.17-.08-.31a.24.24 0 0 0-.19-.12zm-6.75.03V20c-.05 0 .02.07.14.14s.24.12.27.1c.02-.03-.05-.1-.17-.17-.1-.05-.2-.1-.24-.1zM7.93 20c-.1 0-.07.1.03.14.07.02.07.24.07 1.47 0 .91.02 1.44.07 1.44.03 0 .05-.5.05-1.44 0-1.23-.02-1.45-.1-1.52-.04-.05-.1-.1-.12-.1zm-1 .07c-.05.02-.05.26-.05.98.02.6.05.97.07.94.07-.05.07-1.85.02-1.9-.02 0-.02-.02-.02-.02zm-4.72.05c-.02 0-.02.02-.05.07-.07.14-.07.77 0 1 .03.1.08.35.08.54s.02.33.04.33c.1 0 .1-.28.03-.77-.05-.26-.1-.64-.1-.79.03-.26.03-.38 0-.38m10.97.3-.24.15c-.34.2-.39.27-.36.39.02.07.04.07.1.02.02-.05.04-.05.09.05.05.07.05.43.05 1.06-.03.62 0 .96.02.96.07 0 .05-2.02-.02-2.12-.05-.04-.05-.07 0-.07.12 0 .16.34.16 1.2 0 .5.03.92.05.92s.15-.05.24-.12l.24-.12v-.87c.03-1.03.08-1.13.36-.86.15.14.15.14.15.93v.8l.14.12c.1.07.12.14.1.14s-.12-.07-.2-.14c-.11-.15-.11-.2-.16-.96 0-.7-.03-.82-.1-.9-.07-.02-.12-.02-.14 0s0 .08.05.1c.07.05.1.15.1.8 0 .84.04 1 .26 1.1.14.05.19.05.53-.14.19-.1.33-.22.33-.24 0-.1-.1-.12-.16-.07-.03.02-.1.04-.12.02-.08-.02-.08-.2-.08-.89v-.87l-.26-.19-.24-.19-.58.34-.14-.17-.17-.17zm5.07 0-.53.3c-.31.17-.55.36-.55.4s.05.08.12.06c.1-.03.1 0 .1.67 0 .4 0 .72.02.74a6 6 0 0 0 .63.39 3 3 0 0 0 .77-.5c0-.1-.15-.1-.34 0-.15.09-.17.06-.34-.08-.17-.12-.19-.17-.19-.36 0-.22.02-.24.26-.41.15-.1.3-.14.34-.12s.05 0 .03-.02.02-.1.12-.15.16-.12.16-.17-.12-.21-.29-.38c-.16-.17-.3-.31-.3-.34v-.02zm-6.73.06c-.07 0-.22.07-.55.26-.3.2-.51.36-.49.39 0 0 .03.31 0 .67 0 .65.05.89.22.96l.27.17c.19.12.36.17.3.07a3 3 0 0 0-.33-.21l-.31-.24a5.3 5.3 0 0 1 .02-1.4c.03 0 .05.22.07.7v.72l.36.21.34.22.53-.31c.31-.17.55-.34.55-.39s-.04-.07-.12-.04c-.1.02-.1 0-.1-.68v-.7l-.2-.11c-.13-.08-.22-.15-.2-.2.02-.02 0-.02-.02 0s-.12 0-.2-.04c-.04-.05-.1-.08-.14-.05m-6.78 0H4.7l-.04.02a.4.4 0 0 1-.17.07l-.34.22c-.2.1-.36.21-.4.24-.13.05-.08.2.04.14.1-.02.12 0 .12.68v.7l.31.2c.17.15.31.25.34.25.1 0 .82-.5.77-.55-.05-.08-.17-.08-.31.02-.12.1-.15.1-.34-.02-.17-.12-.2-.15-.2-.41 0-.3.06-.34.2-.32.02.03.02 0 .02-.02s.17-.17.39-.29l.38-.22-.12-.12c-.07-.07-.21-.24-.36-.38s-.19-.22-.26-.22zm4.47.07c-.02.02-.05.48-.05 1.13 0 1.06 0 1.08.12 1.22.07.08.2.15.24.15.1 0 .1-.03-.07-.17l-.2-.14V21.6c0-.7 0-1.06-.04-1.06zm6.95.17c.02 0 .02 0 .02.02 0 .05-.02.07-.07.1s-.07 0-.07-.03c.02-.04.07-.1.12-.1zm-.22.12H16c.02.02.05.38.05.8 0 1.03.1 1 .12 0v-.8l.02.84v.82l-.21-.12-.17-.12v-.65c.02-.53.05-.77.14-.77zm2 0 .14.19c.1.12.17.22.17.24 0 .05-.07.12-.17.17l-.14.1zM4.5 20.9l.16.14c.1.1.17.2.17.22 0 .05-.07.1-.16.14l-.15.1v-.31l-.02-.3zm6.78.02.21.1.2.12v.67c0 .39-.03.68-.05.68s-.12-.05-.22-.12l-.17-.12v-.68c0-.36 0-.65.03-.65m.07.12c-.05 0-.05.05.07.15s.12.12.1.65c0 .36 0 .55.05.55s.07-.22.07-.6c0-.58-.03-.6-.15-.7zm-6.78.05v.05c0 .05 0 .1.02.12.05.05.12.05.12 0 0-.02-.02-.1-.07-.12-.02-.02-.05-.05-.07-.05m13.44.03c-.02 0-.02.02 0 .1.02.04.07.09.12.09.07 0 .07-.03 0-.12-.07-.05-.1-.1-.12-.07m-14.21.12c-.07 0-.07.04-.05.81 0 .32.02.6.05.63.02.05.02.1.02.12-.02 0-.02.02.03 0s.16.02.29.1c.16.12.3.16.3.12 0 0-.11-.1-.28-.22l-.31-.2v-.67c0-.43-.03-.7-.05-.7zm13.47.02c-.05 0-.05.31-.05.7.02.53.05.7.1.77.04.04.11.1.14.1s.1.04.17.09c.1.1.3.17.3.1 0 0-.11-.1-.28-.2-.14-.1-.29-.21-.31-.26a4 4 0 0 1-.05-.72c.02-.34 0-.58-.03-.58zm-2.14.07h-.03a5.6 5.6 0 0 0-.02 1.28l.31.24c.17.1.31.19.36.19.07 0 .1-.12 0-.12a.8.8 0 0 1-.33-.2l-.27-.16v-.65c0-.39 0-.58-.02-.58m4.42.9a.36.36 0 0 0-.36.3c-.03.27 0 .34.17.44.21.1.19.1.36-.03.19-.1.26-.29.17-.5-.05-.15-.2-.2-.34-.22zm-16.8.02c-.23 0-.47.04-.61.12a2 2 0 0 1-.24.12c-.05-.03-.43.4-.43.45 0 .08.04.05.29-.07.5-.24 1-.24 1.25 0 .12.1.12.1.36-.05a.7.7 0 0 1 .26-.14c.03.02.05-.02.05-.1-.02-.07-.05-.12-.12-.12s-.2-.04-.27-.1c-.12-.09-.33-.11-.55-.11zm-.08.52c-.12 0-.12 0 .05.12.19.15.26.17.26.1s-.19-.21-.31-.21zm4.06 0c-.12 0-.12 0-.02.05.07.03.14.1.2.17.02.05.06.1.09.07.14-.1-.05-.29-.27-.29" })
9
+ ] });
10
+ export {
11
+ SvgIconLemonde 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 SvgIconLesechos: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconLesechos;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconLesechos = ({
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: "M21.43 2.29c-.5 0-.85.4-1.13 1.37 0 .05-.12.1-.24.1-.17 0-.22.04-.22.16 0 .15.05.17.22.17.24 0 .24-.17-.03 2.14-.12.96-.17 1.13-.31 1.15a.3.3 0 0 1-.24-.12c-.1-.16-.41-.16-.48 0-.05.12-.99.12-7.74.12h-7.7v.44h7.72c4.93 0 7.77.02 7.84.1.21.11.6.09.84-.03.1-.05.43-.07.72-.07.53.02.55 0 .55-.22 0-.2-.04-.21-.38-.21h-.39l.12-.34c.08-.2.17-.84.24-1.44.2-1.47.2-1.5.44-1.52.33-.07.57.02.57.2 0 .09-.12.64-.26 1.2l-.27 1.08c0 .03.17.04.36.02l.37-.02.19-.6c.19-.65.5-1.3.65-1.4.04-.02.16 0 .24.07.14.07.21.07.36-.07.31-.27.19-.72-.2-.72-.09 0-.3.14-.48.31-.26.3-.28.3-.24.1.17-.53.17-.5-.16-.5-.2 0-.46.04-.63.07-.17.04-.29.04-.29 0 0-.03-.1-.08-.21-.08-.2 0-.22-.02-.17-.31.14-.91.2-.99.38-.6.12.29.32.36.48.22.34-.3 0-.77-.52-.77m-7.94.1c-.24 0-1.03.19-1.08.3-.03.08.05.1.14.1s.2.05.22.1c.05.05 0 .74-.1 1.56-.12 1.16-.17 1.44-.24 1.37-.1-.07-.19-.04-.36.1-.48.38-.72.2-.72-.58 0-.57.2-1.15.36-1.15.05 0 .2.1.31.19.17.14.24.17.36.1a.34.34 0 0 0 0-.58c-.6-.43-1.63.26-1.77 1.2-.03.22-.1.39-.15.39s-.19.16-.29.33c-.21.39-.43.48-.91.44-.34-.05-.39-.17-.29-1.01l.07-.56.36.03c.32.02.36.07.39.26 0 .17.07.24.17.24.12 0 .16-.1.21-.53.03-.29.05-.62.05-.74 0-.27-.24-.24-.31.02-.05.27-.27.39-.6.39h-.24l.07-.53.05-.7c0-.12.07-.14.36-.14.45 0 .65.1.72.4.02.17.1.27.17.27.12 0 .14-.1.14-.5v-.53h-1.3c-1.1 0-1.3.02-1.3.14 0 .07.05.12.12.12.3 0 .31.2.15 1.7-.15 1.45-.24 1.76-.5 1.76-.06 0-.13.08-.13.15 0 .1.2.12 1.37.1l1.35-.03.12-.39c.05-.21.1-.33.1-.24.02.08.11.27.23.41.37.41.9.36 1.45-.14l.24-.24v.65l.31-.05c.2-.05.36-.07.39-.1l.1-.64c.04-.49.11-.68.33-1 .31-.42.55-.52.48-.18a8.2 8.2 0 0 0-.2 1.8c.1.24.42.22.8-.07l.36-.27.27.27c.67.58 1.63.1 1.92-1.01l.1-.31.48.4c.46.39.55.65.29.7-.1.03-.3-.07-.43-.21-.32-.27-.56-.2-.6.16-.03.3.26.5.72.5.26 0 .38-.06.67-.33.24-.24.34-.4.34-.6 0-.4-.08-.5-.53-.84-.24-.17-.44-.36-.44-.43 0-.22.2-.24.46-.05.29.21.5.12.5-.22 0-.57-1-.45-1.37.15l-.14.24-.1-.24a.84.84 0 0 0-.4-.41c-.82-.39-1.78.43-1.8 1.54 0 .33-.03.43-.18.5-.19.1-.19.1-.14-.24.05-.21.1-.65.12-.98.05-.53.02-.65-.1-.75-.19-.17-.53-.07-.93.31l-.37.34.12-1.06c.08-.6.1-1.1.05-1.13 0-.02-.02-.02-.07-.02m-11.18.33c-.65 0-.82.02-.82.12 0 .07.07.14.17.17.21.07.21.34.05 1.95-.15 1.2-.22 1.4-.5 1.4-.08 0-.15.04-.15.11 0 .12.19.15 1.22.15h1.25l.07-.32c.05-.29.22-.43.22-.19 0 .07.1.22.22.34.16.14.26.19.6.14.24-.02.5-.14.7-.26.16-.15.28-.2.28-.15 0 .2.41.44.72.44.3 0 .41-.08.7-.34.24-.24.31-.41.31-.6 0-.41-.04-.5-.5-.84-.24-.17-.43-.37-.43-.44 0-.21.19-.24.43-.05.29.2.39.2.53-.07.05-.14.05-.21-.1-.36-.48-.46-1.4.1-1.4.87 0 .24.1.33.78.89.21.17.21.43 0 .48-.07.02-.27-.07-.41-.2-.15-.14-.34-.21-.39-.19-.07.03-.16.03-.19-.02s-.17 0-.31.12c-.31.27-.63.29-.77.05-.14-.3-.1-.43.36-.65.63-.31.87-.58.87-.94 0-.55-.58-.74-1.23-.4-.48.23-.87.88-.87 1.44 0 .12-.02.19-.07.19-.05-.03-.19.14-.33.33-.24.32-.34.37-.58.37-.17 0-.31-.05-.34-.12-.02-.05.03-.77.12-1.57.15-1.42.2-1.58.5-1.58.05 0 .1-.08.1-.15 0-.1-.14-.12-.82-.12zm2.64 1.42c.2 0 .22.46.03.67-.1.1-.24.22-.32.24-.12.07-.14.05-.14-.1 0-.28.27-.81.43-.81m11.23.02c.1 0 .2.05.27.2.14.3.1 1.39-.1 1.68-.31.48-.57.12-.57-.75 0-.65.19-1.1.4-1.13m3.2 1.52a.6.6 0 0 0-.21.07c-.3.17-.34.48-.15.7.2.19.46.21.65.02.24-.21.22-.53-.05-.7-.12-.07-.16-.1-.24-.1zM12.1 8.2c-1.57 0-3.18.46-4.6 1.42a7.98 7.98 0 0 0-3.3 7.72 8.32 8.32 0 0 0 6.19 6.57c.4.1.62.16.65.19h1.83l1.13-.3a9.3 9.3 0 0 0 3.7-2.08 7.98 7.98 0 0 0-.07-11.23A7.8 7.8 0 0 0 12.1 8.2m-.08.99c1.64 0 1.9.05 2.96.55a6.97 6.97 0 0 1 3.87 8.08 7.06 7.06 0 0 1-3.87 4.7c-.8.35-1.32.45-2.7.5-.93.02-1.9 0-2.13-.1-6.23-2.07-6.9-10.32-1.1-13.15 1.07-.53 1.32-.58 2.97-.58m0 .36c-1.37 0-1.78.07-2.64.48-4.16 1.95-5.32 7.17-2.26 10.44a6 6 0 0 0 2.72 1.92c1.3.48 3.8.39 4.95-.2 5.22-2.61 5.22-9.59 0-12.09-1.03-.5-1.32-.55-2.77-.55m-2.16 2.79c.55-.02 1.1.1 1.49.34l.55.33v2.72c0 2.48-.02 2.72-.29 2.57a6.2 6.2 0 0 0-1.44-.19c-.62-.05-1.37 0-1.66.1l-.53.19v-5.56l.63-.26c.38-.17.82-.24 1.25-.24m4.4 0c.8 0 1.56.22 1.83.6.07.1.14 1.4.14 2.86 0 2.46-.02 2.65-.31 2.5a6.2 6.2 0 0 0-1.44-.19c-.63-.05-1.38 0-1.66.1l-.53.19v-5.56l.62-.26c.39-.17.9-.24 1.35-.24m-7.1 1.32.05 2.65.08 2.64h1.87c1.13 0 1.88.07 1.88.2 0 .09.48.16 1.08.16.58 0 1.06-.07 1.06-.17 0-.12.72-.19 1.8-.19h1.78l.05-2.64.07-2.65.03 2.74.04 2.74h-1.68c-1.35 0-1.7.05-1.78.27-.1.2-.43.26-1.47.26-1.08 0-1.34-.04-1.34-.26s-.32-.27-1.8-.27h-1.8l.03-2.74z" })
9
+ ] });
10
+ export {
11
+ SvgIconLesechos 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 SvgIconLibrary: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconLibrary;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconLibrary = ({
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: "M24.02 12.14c0 3.2-1.24 6.22-3.51 8.5s-5.3 3.51-8.5 3.51A12.03 12.03 0 0 1 12 .11c1.38 0 2.37.23 3.65.68.25.08.48.18.67.26l.08.03a1 1 0 0 1 .06.04.76.76 0 0 1 .29.26.73.73 0 0 1 .13.45.78.78 0 0 1-.76.79.7.7 0 0 1-.34-.1 26 26 0 0 0-.66-.25 8.6 8.6 0 0 0-3.13-.6 10.46 10.46 0 1 0 10.47 10.47c0-1.72-.37-3.1-1.18-4.62a14 14 0 0 1-.2-.36L21.03 7 21 6.96l-.03-.03-.01-.04-.04-.06-.14-.24-.04.14a.73.73 0 0 1-.89.53.73.73 0 0 1-.45-.34.76.76 0 0 1-.07-.55l.46-1.76a.78.78 0 0 1 .36-.49.87.87 0 0 1 .63-.06l1.75.56a.73.73 0 0 1 .47.9v.01a.73.73 0 0 1-.72.5c.17.3.32.59.4.77a10.9 10.9 0 0 1 1.35 5.33zm-4.18-8.96a1.38 1.38 0 1 1-2.76 0 1.38 1.38 0 0 1 2.76 0m-7.78 1.44c-2.62 0-5.15 2.02-5.15 4.9 0 3.5 2.48 4.4 2.76 6.68h4.77c.29-2.28 2.76-3.17 2.76-6.68 0-2.88-2.53-4.9-5.14-4.9m-.48 1.1c.28-.02.52.12.5.4a.45.45 0 0 1-.4.45 3.21 3.21 0 0 0-2.84 3.2c0 .32.05.64.14.94.09.22-.05.5-.27.57s-.5-.09-.55-.32a4 4 0 0 1-.18-1.2 4.08 4.08 0 0 1 3.6-4.04M9.7 17.05v.85h4.72v-.85zm0 1.71v.43c0 .5.4.86.85.86h3a.86.86 0 0 0 .87-.86v-.43zm1.5 1.72a.86.86 0 1 0 1.71 0z" })
9
+ ] });
10
+ export {
11
+ SvgIconLibrary 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 SvgIconLsu: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconLsu;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconLsu = ({
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: "M6.76 12.33h10.23c.3 0 .54-.24.54-.54V7.03c0-.3-.24-.55-.54-.55H6.76c-.3 0-.54.24-.54.54v4.77c0 .3.24.54.54.54m.7-4.22c0-.3.24-.54.54-.54h7.74c.3 0 .54.24.54.54v2.54c0 .3-.24.55-.54.55H8a.54.54 0 0 1-.54-.55zm8.34 11.73c0 .28-.23.51-.52.51h-6.8a.52.52 0 1 1 .04-1.03h6.76c.29 0 .52.23.52.51zm0-2.5c0 .29-.23.52-.52.52H8.52a.51.51 0 0 1-.56-.52.52.52 0 0 1 .56-.5h6.76c.29 0 .52.22.52.5m0-2.49c0 .29-.23.52-.52.52H8.52a.51.51 0 0 1-.56-.52.52.52 0 0 1 .56-.51h6.76c.29 0 .52.23.52.51m3.71-11.43h-.97l.02-1.72a.54.54 0 0 0-.63-.54l-2.18.34V.34a.54.54 0 0 0-.71-.51L4.27 3.2c-.4.13-.68.5-.68.93v18.73c0 .53.43.97.97.97h14.95c.54 0 .98-.43.98-.97V4.4a.97.97 0 0 0-.98-.98m-2.25-1v.98H12.5zm-2.54-1.35v.76l-3.96.54zm4.38 21.55H4.75V4.7H19.1z" })
9
+ ] });
10
+ export {
11
+ SvgIconLsu 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 SvgIconMadmagz: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconMadmagz;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconMadmagz = ({
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: "M22.87 1.32a7.7 7.7 0 0 1-1.37.14c-.58.03-1.23.06-1.4.08a35 35 0 0 0-2.14.12c-.1.03-2.33.15-4.93.24-1.03.03-1.87.07-1.9.1 0 .02-.65.07-1.42.1s-1.42.04-1.44.07c-.05.02-.4.07-.87.1-2.52.09-3.75.16-3.8.2-.02 0-.67.06-1.41.08L.72 2.6c0 .02-.02.02-.02.02H.67c-.02 0-.02 0-.02.03v.5c-.03.89-.03 3.2-.03 9.52 0 6.06 0 8.5.03 9.43v1.47s0 .02.02.02H.8v.07h.5c.27 0 .51-.02.56-.05.02-.02.48-.07 1.01-.07.53-.02 1.3-.07 1.7-.1l1.33-.07c.31 0 .58-.02.62-.04.03-.03.87-.08 1.98-.1 1.05-.02 1.9-.05 1.9-.07s.67-.07 1.46-.1c.8-.02 1.45-.05 1.45-.07s.62-.07 1.37-.1c.77-.02 1.42-.04 1.46-.07s.49-.07.94-.07c.46 0 .84-.02.87-.05 0-.02.65-.07 1.42-.1.8 0 1.44-.04 1.46-.07.05-.02.6-.04 1.23-.07.65 0 1.2-.02 1.25-.02v-.12h.07V1.49s0-.02-.02-.02h-.2v-.1c-.02-.02-.14-.04-.28-.04zm-16 4.1.05.14c.05.1.08.24.08.33 0 .12 0 .22.04.22.03 0 .05.2.08.46s.07.5.1.53c.04.07.16.91.2 1.46 0 .24.06.44.08.44s.05.24.07.5c.03.29.07.53.1.53s.05.22.07.48c.02.27.07.48.1.48s.07.22.07.46c.02.26.07.5.1.55.04.1.23 1.42.23 1.7 0 .1 0 .18.05.18.03 0 .08.24.1.5l.05.5.07-.71.12-.82c.05-.12.14-.77.21-1.28.03-.14.05-.28.08-.3.02-.06.07-.4.1-.78.02-.4.04-.74.06-.77s.08-.29.1-.55c.02-.29.05-.5.07-.5s.07-.22.1-.49c0-.29.05-.53.07-.57a.64.64 0 0 0 .07-.32c.07-.55.2-1.27.24-1.34 0-.05.05-.3.07-.56l.05-.45h3.25v14.11h-2.3l-.02-4.28a687 687 0 0 0-.05-3.97c0 .17-.02.32-.07.32-.02 0-.05.24-.07.55s-.07.55-.1.55c-.02-.02-.05.15-.05.39-.02.38-.04.67-.16 1.35-.05.16-.1.52-.12.79l-.12.58c-.02.05-.08.3-.08.57-.02.3-.07.5-.1.5s-.04.25-.06.56c-.03.29-.08.6-.1.67-.02.05-.07.3-.07.5l-.07.66-.05.26h-1.1c-1.3.03-1.23.05-1.3-.62 0-.24-.05-.46-.08-.46-.02-.02-.07-.24-.1-.48s-.04-.46-.07-.48a2.6 2.6 0 0 1-.07-.7 3 3 0 0 0-.1-.67c-.04-.02-.07-.17-.07-.29 0-.14-.02-.26-.04-.26s-.08-.22-.1-.49c-.02-.26-.05-.48-.07-.48s-.07-.21-.1-.45a2.2 2.2 0 0 0-.07-.5A8 8 0 0 1 6 12.15c-.05-.48-.07-.7-.1-.8l-.05 4.04-.02 4.16H4.78c-.79.03-1.05 0-1.05-.05-.03-.04-.03-3.22-.03-7.07l.03-7h1.56l1.59-.02zm13.6.16V6.6c0 .92-.03 1.01-.13 1.25-.07.15-.12.31-.12.34 0 .05-.02.07-.04.07s-.05.02-.03.07c.03.03 0 .05-.02.07s-.07.1-.1.2c-.02.14-.14.43-.36.86l-.1.22c0 .02-.04.14-.1.24-.04.12-.09.26-.09.31s-.02.1-.05.1c-.02.02-.07.17-.12.29-.04.14-.1.26-.12.26s-.04.05-.04.1-.1.26-.2.5c-.12.24-.21.46-.21.48 0 .05-.05.2-.34.82l-.17.41-.14.31-.05.15c-.02.05-.12.26-.19.48-.07.2-.17.4-.22.48-.04.05-.07.14-.07.2s-.05.18-.12.3c-.19.41-.29.65-.29.7 0 .03-.05.15-.1.27l-.23.5-.2.46-.12.34v.14h2.02l2.05.02v1.93h-3.18c-1.75 0-3.2-.03-3.22-.03-.02-.02-.02-.48-.02-1 0-.78.02-1.02.07-1.09s.1-.17.1-.21c0-.08.02-.12.04-.12s.08-.03.08-.05a1 1 0 0 1 .1-.32l.11-.26.1-.29c.12-.22.2-.43.2-.5l.13-.27c.08-.12.15-.31.17-.4s.05-.18.07-.18c.03 0 .08-.12.12-.26.03-.15.15-.43.27-.67.1-.24.2-.46.2-.5s.02-.1.04-.1c.05 0 .07-.05.07-.1s.05-.17.1-.24.1-.15.07-.17v-.02l.02-.08c0-.03.05-.14.12-.28.2-.44.22-.5.2-.56l.04-.1c.03 0 .1-.16.17-.33s.15-.36.2-.43c.02-.05.07-.24.14-.39.05-.17.14-.36.19-.46l.17-.4c.05-.15.1-.24.12-.24s.05-.05.05-.1.02-.14.07-.22c.02-.07.07-.16.07-.21.02-.05.1-.27.22-.48.1-.22.16-.41.16-.44-.02-.04 0-.07.03-.1.05-.02.07-.09.1-.18l.04-.15h-1.92c-1.06 0-1.95-.02-1.97-.05s-.05-.45-.03-.96v-.91h3.1l3.08-.03z" })
9
+ ] });
10
+ export {
11
+ SvgIconMadmagz 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 SvgIconMatholycee: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconMatholycee;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconMatholycee = ({
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.1 21.52c-.08-.02-.08-.07-.05-.57.02-.46.02-.55-.03-.5-.02.02-.05.11-.05.28L7 21h-.55l-.03-.32c-.05-.36.03-.52.27-.72l.16-.12-.14-.1c-.1-.09-.12-.14-.14-.43 0-.19-.08-.43-.15-.6-.05-.14-.12-.31-.12-.36s-.02-.12-.07-.14c-.05-.03-.94-2.07-.99-2.31-.02-.07.12-.1.9-.1h.93l.1.27a8.4 8.4 0 0 1 .38 1.2s.12-.24.22-.58l.21-.57-.33-.12a3 3 0 0 1-.48-.27l-.2-.14.39-.75.58-1.15.19-.41.4-.12c.25-.07.42-.14.42-.17-.03-.02-.39.07-.68.2l-.12.02v-2.67l.12-.12c.1-.12.24-.14 1.57-.2l1.46-.02-3.1-.04-.02-.24c-.07-.8-.1-1.13-.05-1.23l.31-3.05c.15-1.62.3-3.01.3-3.13l.02-.2h3.07l.05.18c.03.12.1.93.2 1.85.09.89.23 2.35.35 3.24.15 1.35.2 1.66.34 2.12.07.29.15.6.15.67 0 .17.07.96.16 1.66l.05.36h.41c.36 0 .39.03.29.12a.9.9 0 0 1-.41.1c-.29 0-.29.02-.26.14l.07.44c.02.38.02.38-.72.45l-.58.03-.1-.24a1.4 1.4 0 0 1-.07-.44c.03-.21.03-.24-.12-.21-.07 0-.12.02-.07.02.05.03.07.17.07.5.03.25.03.49 0 .51 0 .05-.17.07-.36.07h-.36l-.02-.5-.03-.48-.31.05c-.39.07-.7.16-.55.16.21.03.07.17-.17.17-.2-.02-.22-.02-.1-.07.2-.12-.2-.02-.5.12-.58.24-.8.8-.5 1.3.28.53 1.2.96 2.5 1.18.52.07.6.07.42 0-.19-.1 1.62-.08 1.93 0 .58.16 1.59-.05 2.36-.5.16-.1.16-.13.12-.2-.12-.14-.05-.24.21-.24l.24-.02c.1 0 .3-.41.3-.56 0-.17-.15-.48-.2-.38-.03.02 0 .05.02.05s.03.02.03.07c-.05.1-.15.1-.15-.03 0-.1-.12-.19-.21-.19l.02.2c.02.12.03.2 0 .26-.05.1-.86.14-1.13.07-.2-.05-.21-.07-.24-.26v-.2h-.84v-1.3l.02-1.27.94-.02c1.28-.03 1.47.04 1.13.38-.12.1-.24.12-.6.12-.65 0-.65 0-.65.53 0 .46.03.5.12.36.05-.07.05-.07 0-.05-.07.05-.07 0-.07-.16v-.22h.55c.36 0 .5.02.46.07-.07.07-.07.07.02.05.05-.02.15-.05.22-.05s.12-.05.14-.2c.05-.26.15-.2.12.08 0 .03.05.05.12.03.08-.05.34-.08.56-.1.4-.05.5-.02.96.22h.05c-.05-.05-.05-8.95-.03-9.6l.03-.43h2.2v1.75c0 1.95 0 2.02.25 2.14.07.03.12 0 .17-.17.07-.19.07-.38.07-1.9V2.46l.29-.05c.4-.07 1.7-.07 1.82-.02l.12.07v4.69c0 2.6-.02 4.76-.02 4.83-.02.1-.14.12-.96.12-.58 0-.96-.04-1.06-.1l-.17-.06v-.6c0-.65-.02-.63.41-.75.3-.1.3-.1.32-.31v-.24l-.73-.1v-.43c0-.46-.02-.53-.19-.53-.1 0-.14.38-.12.89.03.26.03.36-.02.4-.03 0-.07.22-.12.44-.05.36-.07.65-.05 1.92v1.5l-.1.04c-.12.05-1.1 0-1.1-.07 0-.02-.03-1.2-.03-2.62 0-2.98-.07-2.64.58-2.64.24 0 .43-.03.43-.08 0-.02.03-.12.03-.19.02-.1-.03-.1-.5-.1-.8 0-.73-.23-.7 2.67 0 1.3 0 2.31-.03 2.26s-.02 0-.02.12c0 .32-.2.63-.58.99-.22.2-.4.34-.43.34s-.03.05.02.19l.05.2c-.02.04-1.15.28-1.18.23-.02 0-.21.05-.46.15l-.4.16 1.27.03c.7 0 1.4.02 1.54.05l.24.04v.46c0 .27 0 .48-.03.5l-.77.05-.74.05-.05.27c-.02.16-.02.3 0 .33 0 .03.34.08.72.1.68.05.68.05.72.22.05.1.05.33.05.48 0 .38-.05.38-.84.4h-.63v.25c-.02.14-.02.26 0 .26.03.02.05.12.05.24 0 .22 0 .22.24.27l.24.04-.02.27v.29l-.27.02c-.24.05-.26.05-.07.07.34.03.39.08.39.36v.27l-.32-.05c-.16-.02-.5-.05-.74-.05h-.46v-.33c0-.3 0-.34.1-.34h.1l-.1-.1a.64.64 0 0 1-.12-.31l-.03-.4c-.02-.15-.02-.15-.02.04 0 .22-.02.26-.12.26s-.1 0-.02.05c.1.03.12.27.04.36-.02.03-.02.08 0 .12s.05.22.05.39v.29l-.5-.05c-.72-.07-.7-.05-.7-.63 0-.26.02-.45.05-.45s.02-.7.02-1.9c0-1.71.03-1.9.07-1.97.08-.05.05-.05-.07-.03-.07.03-.31.07-.5.15-.22.04-.36.1-.32.1.22.02.46.69.46 1.24 0 .58.07.53-1.08.53h-1.04v-.4c0-.25-.02-.54-.04-.68-.05-.22-.08-.24-.17-.24a.46.46 0 0 0-.24.07l-.1.07v1.64c-.02 1.6-.02 1.66-.12 1.78-.1.14-.1.14 0 .14.05 0 .07.05.07.22v.24h-.3c-.47 0-.92-.27-.78-.46.03-.02.03-.12 0-.29-.02-.14-.02-.6-.02-.99v-.72h-1.01v-.55c0-.29.02-.7.05-.87l.07-.36-.17-.02c-.34-.12-.36-.1-.62.55l-.46 1.01c-.12.22-.2.39-.17.39.07 0 .07.19-.02.33-.05.08-.08.2-.1.3-.02.16-.05.19-.2.19l-.16.02.17.05.14.05v1.1l-.29.03c-.26.02-.26.02-.3.24-.08.52-.23.21-.23-.49v-.4l.39-.05-.22-.03c-.16 0-.19 0-.24.17-.02.12-.04.46-.04.8 0 .57 0 .57-.1.57-.05 0-.1.05-.1.07 0 .1-.24.1-.38.03zm4.47-1.2c.02-.04 0-.07-.03-.07s-.07.03-.1.07c0 .05 0 .08.06.08.02 0 .07-.03.07-.08M7.3 19.24c-.02-.24-.05-.22-.05.05 0 .12.03.21.05.19s.02-.12 0-.24m4.02-2.6a2.3 2.3 0 0 0-.58 0c-.17 0-.02.03.29.03s.46-.03.29-.03m1.08-.07a.26.26 0 0 0-.2 0c-.07 0-.02.03.08.03.12 0 .17-.03.12-.03m-3.1-.07c-.05-.03-.1-.03-.12 0s0 .02.07.02.07-.02.05-.02m3.67 0c-.04-.03-.1-.03-.12 0s0 .02.08.02c.07 0 .1-.02.04-.02M9 16.43c-.04-.03-.12-.03-.14 0-.05 0-.02.02.07.02.07 0 .1-.02.07-.02m4.48 0c-.05-.03-.1-.03-.12 0-.03 0 0 .02.07.02s.1-.02.05-.02m-4.81-.1H8.5c-.02.03 0 .05.08.05.1 0 .11-.03.07-.05zm5.2.03a.07.07 0 0 0-.1 0c-.03 0 0 .02.04.02s.08-.02.05-.02zm-5.52-.13c-.07-.02-.16-.04-.24-.04s-.07 0 .03.04c.07.05.17.08.21.08.1 0 .1-.03 0-.08m5.82.03c-.02-.03-.07 0-.07.02-.02.03 0 .03.05.03s.05-.03.02-.05m-.84-.36a4.4 4.4 0 0 0-.8 0c-.2 0-.02.02.42.02s.62-.02.38-.02m2.53-.07c-.03-.03-.08-.03-.08 0-.02.02 0 .04.05.04s.05-.02.03-.04M9.2 12.94a.15.15 0 0 0-.15 0c-.05 0 0 .02.07.02s.12-.02.08-.02m.28-.1h-.14c-.05.03 0 .05.07.05.1 0 .12-.02.07-.05m1.74 0h-.17c-.03.03 0 .05.1.05s.11-.02.07-.05m-1.38-.07h-.16c-.05.03 0 .05.1.05s.11-.02.07-.05zm.8-.12c.24-.05.36-.1.31-.1-.12-.02-.14-.04-.17-.3l-.02-.32-.2.02c-.23 0-.42.22-.42.5 0 .15-.03.22-.08.25-.14.07.17.05.58-.05m1.83.05h-.24c-.08.02 0 .02.12.02.14 0 .19 0 .12-.02m2.86-.14c-.03-.03-.05-.03-.07 0 0 .02.02.04.04.04.05 0 .08-.02.03-.04m-3.56-1.11c0-1.1-.02-1.44-.1-1.44 0 0-.02.55-.02 1.22v1.23l-.14.02c-.1.03-.08.03.07.05h.19zm.72.96c-.07-.02-.2-.02-.27 0s0 .02.15.02c.14 0 .2 0 .12-.02m-1.9-3c0-.03-.02-.75-.1-1.62-.04-.84-.12-1.54-.12-1.54s-.07.63-.11 1.4c-.08.74-.15 1.44-.15 1.56-.02.17-.02.2.07.24.1.03.39 0 .41-.04m7.8 11.7c-.1-.16-.13-.52-.06-.6.03-.04.03-.1 0-.19-.07-.21-.04-.26.15-.43.19-.2.67-.22.77-.07.02.07.05-.34.05-1.8 0-1.04 0-1.95.02-2.05l.02-.17h1.62c.89 0 1.73.03 1.85.05l.24.05v.46c0 .45 0 .45-.12.5-.08.02-.41.05-.75.05-.6 0-.65.02-.67.14-.03.07-.05.22-.05.34 0 .14.02.17.22.21.1.03.43.05.7.05h.47l.08.27.04.5c-.02.3-.07.32-.86.34-.5 0-.6.02-.63.12-.04.2-.02.4 0 .4s.05.1.05.22c0 .22.03.22.22.27l.21.05v.57l-.24.03c-.16 0-.19 0-.1.02.42.07.44.1.44.39v.26l-.31-.04c-.17-.05-.53-.05-.8-.05l-.45.02v-.34c0-.24.02-.3.07-.33l.1-.05-.1-.1c-.05-.07-.07-.19-.07-.38 0-.15-.03-.22-.03-.15-.02.08-.07.15-.14.15s-.1 0 0 .05c.1.02.1.02.05.26q-.045.18 0 .24c.02.03.04.17.04.34v.31l-.52-.05c-.41-.02-.53-.02-.53.05 0 .1-.08.12-.6.22-.08.02-.1-.03-.1-.15-.02-.24-.1-.21-.14.03-.05.21-.05.21-.15 0zm.69-.4h-.29c-.05.02 0 .04.17.04.14 0 .21-.02.12-.04m3.3.45c-.08-.1-.08-.16-.08-.5 0-.2 0-.43-.02-.48-.03-.1.02-.17.17-.3.16-.13.24-.16.5-.13l.29.02v.89l-.31.05-.3.02.34.03c.3 0 .37.04.39.12.05.21.02.24-.24.28l-.34.1c-.1.05-.12 0-.14-.22l-.05-.24-.07.24c-.05.24-.05.24-.14.12M8.1 20.95c0-.17.03-.17.22-.17.17 0 .2 0 .2.17 0 .19-.03.19-.2.19-.2 0-.22 0-.22-.2zm-5.14-.3c0-.18 0-.33.02-.33s.05-.1.05-.21c0-.15-.02-.22-.07-.22s-.05.1-.05.43v.46h-.24c-.22 0-.24-.02-.29-.17s-.05-.14-.1-.05c-.04.15-.72.24-.93.12-.2-.1-.24-.21-.15-.45.05-.15.07-.46.07-2.12 0-1.08 0-2.04.03-2.14l.02-.17 1.04.03h1.03v1.58c0 1.5 0 1.6.07 1.6.1 0 .2.13.22.28 0 .05-.05.12-.17.2-.17.06-.1.06.6.11.53.03.77.07.8.12 0 .05.04.07.1.07.14 0 .18.22.18.68v.38h-.64c-.37.03-.77.03-.9.03s-.21.02-.21.04c0 .05-.12.08-.24.08h-.24v-.34zm-1.08-1.5c0-.17 0-.17-.15-.08s-.12.22.03.22c.1 0 .12-.05.12-.15zm8.77 1.65a1.8 1.8 0 0 1-.38-.26c-.27-.24-.34-.5-.39-1.35l-.02-.65.53.03.5.02.03 1.15c0 .65-.03 1.18-.03 1.16zm1.73-.05c-.04-.3 0-1.2.05-1.22.03-.03.05.02.05.12 0 .24.1.34.29.26.1-.02.17-.04.2-.07.04-.07 0-.26-.1-.26-.05 0-.08-.05-.08-.41v-.41h.68v.38c0 .3.02.37.07.37.07 0 .07-.05.07-.27-.02-.22 0-.29.07-.4s.17-.15.67-.15c.51 0 .56.02.56.14 0 .24-.05.46-.1.46-.02 0-.05.02-.05.07.03.02 0 .22-.02.4-.07.35-.07.35-.24.3-.12-.03-.14-.03-.14.07 0 .14-.17.39-.34.46a.55.55 0 0 0-.22.19.33.33 0 0 1-.26.14c-.17 0-.2-.02-.2-.21v-.2l-.09.2c-.12.19-.14.21-.48.21-.36 0-.36-.02-.39-.16zm-10-6.08c-.1-.17-.12-.21-.12-1.1v-.92h1.1v.9c0 .47-.02.98-.04 1.07-.05.22-.05.22-.46.22-.33 0-.4-.02-.48-.17m18.59-.05c-.1-.04-.1-.07-.07-.81v-1.43h2.23v.57l-.02.82-.02.24h-1.33l.03.24c.02.41 0 .43-.39.41-.2 0-.38-.02-.43-.05zm-15.51-.14c-.03-.03-.03-.46-.03-.99v-.96h.94c.53 0 .99.02 1.01.07.03.03.03.22.03.48l-.03.46-.29.24c-.16.14-.36.36-.43.5l-.1.25h-.55c-.29 0-.53 0-.55-.05m-.87-.27c-.12-.12-.21-.16-.53-.19L3.68 14v-.2c0-.09-.07-.67-.17-1.27-.12-.89-.17-1.25-.2-2.06a6.8 6.8 0 0 0-.2-2.05L2.97 8v.34c0 .3 0 .36-.1.4-.11.08-1.8.08-1.82 0-.03-.02-.05-5.55-.03-6.34 0-.1.49-.12 1.88-.03l.91.05.17 1.5c.36 3.17.36 3.17.41 1.84.03-.36.05-.77.07-.89l.15-1.25.12-1.03.12-.12c.12-.1.36-.12 1.42-.14 1.03-.03 1.27 0 1.27.07.03.53 0 6.18-.02 6.2-.03.07-1.45.12-1.66.05l-.24-.05v-.84l-.03.38c-.02.22-.04.41-.07.46 0 .03-.17.07-.33.07-.49.05-.49.3 0 .32h.24l-.03.24c-.05.3-.17.55-.31.62-.31.12-.27.31.05.31.21 0 .24.03.24.15-.03.07-.1.84-.2 1.73-.26 2.57-.24 2.36-.36 2.36-.04 0-.16-.08-.24-.17zm.03-4.56c.02-.1-.1-.15-.48-.15-.3 0-.34.03-.34.1 0 .1.05.12.38.12.22 0 .41-.03.44-.07M1.44 14.2l-.19-.1-.02-2.32c0-1.28-.03-2.36 0-2.38 0-.03.43-.05.98-.05h.99v2.88h-.96l-.05.34a8 8 0 0 0-.05.82c0 .29 0 .55-.02.6-.05.12-.32.31-.41.31-.03 0-.15-.05-.27-.1m7.24-.26c0-.12.2-.36.41-.48.12-.07.31-.12.5-.12.34 0 .37.02.27.43l-.02.24h-.58c-.34 0-.58-.02-.58-.07m-1.18-.5c0-.15.08-.17.17-.1.07.05.07.07.03.07-.03 0-.1.02-.12.05s-.08 0-.08-.03zm.22-.46.07-.96c.05-.41.07-.68.1-.65.02 0 .07.24.12.5.04.41.07.53.02.94-.05.46-.05.46-.2.46s-.14 0-.11-.3zm-2.14-.94c-.03-.02-.03-.74-.03-1.56V8.97h.94c.56 0 .94.03.96.07 0 .05.03.72.03 1.54v1.47l-.94.02c-.5 0-.94 0-.96-.02zm10.87-.67-.1-.17h-1.92l-.05-.27c-.02-.14-.07-.28-.07-.33s.24-.07.67-.07c.36 0 .67-.03.72-.05s.05-.17.05-.68c0-.4.02-.62.05-.62.05 0 .05-.07.02-.27-.02-.16-.05-.67-.07-1.13l-.02-.86v1.2c0 .65-.03 1.4-.03 1.66l-.02.46h-1.44l.02-2.02c0-1.13.02-2.34.05-2.67l.02-.65-.2-.07c-.11-.05-.3-.1-.42-.12-.15-.03-.34-.1-.44-.12l-.19-.1V2.31h4.67l.04.65.03 1.04c0 .4 0 .43-.15.55-.1.1-.28.14-.6.17l-.48.04v4.21l-.07.05-.29.1-.21.07h.57v1.2c0 .65 0 1.18-.02 1.18s-.07-.07-.12-.2m-8.56-.3a3.8 3.8 0 0 1 .02-.93l.1.39c.04.29.07.38.02.5-.07.2-.1.2-.14.05z" })
9
+ ] });
10
+ export {
11
+ SvgIconMatholycee 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 SvgIconMaxicours: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconMaxicours;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconMaxicours = ({
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: "M4.62 23.04c-.3-.27-.36-.4-.34-.72.02-.39.24-.53 1.25-.94.48-.2.31-.29-.58-.36l-.77-.07.44-.3c.57-.35.91-.33 1.37.08.31.29.4.48.45.99.12 1.37-.89 2.09-1.82 1.32m1.25-.55c.16-.32.07-.6-.2-.6-.3 0-.93.36-.93.52 0 .39.91.44 1.13.08m5.43.67c-1.13-.48-1.18-2.14-.07-2.6.6-.24.89-.21 1.25.15.36.38.24.67-.2.43-.4-.22-.98-.17-1.12.12-.22.38-.15 1.06.12 1.3.24.21.29.21.86.02.72-.21.9-.1.44.34-.41.36-.8.43-1.28.24m5.84.07c-.45-.17-.79-.67-.93-1.32-.12-.67-.05-1.35.16-1.47.2-.14.34.24.34 1.04 0 .67.03.79.31.96.24.17.39.19.65.1s.34-.22.41-.73c.12-.89.22-1.17.34-1.17.22 0 .29.84.14 1.46-.21.87-.84 1.37-1.42 1.13m4.86-.02c-.29-.1-.48-.32-.48-.5 0-.06.27-.1.6-.1.48 0 .63-.05.63-.17s-.15-.27-.34-.34c-.46-.17-.89-.58-.89-.86 0-.22.65-.85.91-.85.34 0 .82.24.82.41 0 .15-.16.22-.53.24-.64.05-.72.27-.19.53.63.31.84.55.84.92 0 .57-.74.96-1.37.72m-18.54-.05c-.04-.05-.07-.4-.07-.82v-.72l-.38.43c-.58.65-.99.58-1.3-.24-.07-.19-.12-.07-.22.46-.17.9-.26.99-.43.39-.27-.94-.1-2.4.24-2.2.07.03.34.42.62.83l.5.72.37-.53c.43-.6.72-.87.84-.77.17.1.27 1.15.2 1.85-.1.65-.17.77-.37.6m4.88-.43-.48-.5-.33.43c-.2.24-.46.45-.58.45-.27 0-.22-.24.21-.82l.3-.38-.37-.6a4 4 0 0 1-.38-.7c0-.24.38-.05.72.34.4.5.58.48 1.06-.05.24-.26.57-.36.57-.14 0 .07-.16.3-.38.55-.2.22-.36.46-.36.5s.17.3.36.5c.36.44.5.92.24.92-.07 0-.34-.24-.58-.5m1.26.31a6.5 6.5 0 0 1 0-2.36c.19-.19.3.3.3 1.25 0 1.06-.14 1.57-.3 1.1zm3.94-.22c-.48-.5-.55-1.03-.17-1.66.48-.79 1.4-.96 1.95-.36.4.44.53.87.38 1.4-.19.74-.55 1.03-1.17 1.03-.46 0-.63-.07-1-.4zm1.51-.38c.17-.17.3-.46.3-.63 0-.36-.49-.93-.8-.93s-.94.7-.94 1.05c0 .41.4.8.82.8.17 0 .45-.12.62-.3zm4.04.46a7.4 7.4 0 0 1-.1-1.33v-.98l.85.02c1.25.05 1.59.48 1.1 1.4-.16.36-.16.4 0 .6.49.53.03.7-.55.19-.5-.41-.82-.41-.91.07-.1.46-.27.46-.39.02zm1.37-1.09c.24-.24.24-.48 0-.67-.38-.34-1.15.2-.96.67.1.24.7.24.96 0m-13.32-3.8c-.02-.07-.1-.62-.14-1.2l-.1-1.03-2.84-.15v-2.45l1.42-.07 1.42-.05L7 9.3c.02-2.07.1-3.95.14-4.16l.07-.39h2.2c1.2 0 2.88.02 3.77.07l1.56.07-.1.34c-.14.48-.12 1.4.05 1.44.07.03.15-.62.22-2.11.02-1.18.1-2.21.14-2.3.07-.25.84-.61 1.25-.61.82 0 1.25.7 1.35 2.12l.07.98H19c1.6 0 1.8.12 1.87 1.2.05.68.03.77-.26 1.09-.34.3-.36.3-1.64.26l-1.27-.05-.03 3.47c0 3.82-.07 4.4-.65 4.8-.3.24-.5.27-3.84.3l-3.5.04-.04 1.13-.02 1.13-1.2.05c-.92.02-1.23-.02-1.28-.14zm7.7-3.75c0-.55 0-.57-.12-.21-.1.33-.05.8.1.8.02 0 .04-.27.02-.59m.02-4.04v-2.9H9.72l-.1.38c-.02.21-.07 1.51-.07 2.9v2.5l2.57.06c1.4 0 2.6 0 2.65-.03s.1-1.32.1-2.9zm-6.06.1c0-.2-.8-.22-.91-.02-.05.07 0 .21.12.3.24.18.8-.02.8-.28zm1.25-4.16c0-.22-.07-.46-.12-.55-.1-.15-.12.02-.12.55 0 .5.03.67.12.55.05-.12.12-.36.12-.55m8.06-.22c0-.19-.1-.46-.22-.58-.2-.19-.2-.14-.2.68s0 .84.2.55c.12-.17.22-.46.22-.65" })
9
+ ] });
10
+ export {
11
+ SvgIconMaxicours 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 SvgIconMediacentre: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconMediacentre;
@@ -0,0 +1,12 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const SvgIconMediacentre = ({
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.024 6a1.8 1.8 0 0 0-.556.085c-1.017.31-.995 1.59-.522 2.4l5.174 8.848c.627 1.073 1.63 1.59 2.465.987 1.089-.784-.015-2.407-.309-2.901l-4.507-7.97c-.336-.594-.827-1.436-1.746-1.449zm-4.598.043c-.799 0-1.442.54-1.442 1.21v.008q-.028.234 0 .49v3.13a1.5 1.5 0 0 0-.449-.068c-.416 0-.815.172-1.109.48-.294.306-.46.722-.46 1.156s.166.85.46 1.156c.294.307.693.48 1.109.48q.23 0 .45-.07V17.3c0 .67.642 1.21 1.44 1.21.8 0 1.442-.54 1.442-1.21v-4.31l2.484 4.372c.614 1.08 1.765 1.517 2.569.874.856-.685-.002-2.296-.279-2.793L10.3 7.573a5.2 5.2 0 0 0-.61-.906c-.244-.374-.718-.626-1.264-.626zm-3.002.222q-.207 0-.398.083-.19.082-.337.235c-.096.1-.173.22-.225.351a1.12 1.12 0 0 0 .225 1.18q.147.152.337.236a1 1 0 0 0 1.132-.235 1.124 1.124 0 0 0 0-1.532q-.145-.151-.337-.235a1 1 0 0 0-.397-.083m12.063 1.53a.92.92 0 0 0-.662.287 1 1 0 0 0-.274.69c0 .26.098.508.274.69a.903.903 0 0 0 1.325 0 1.013 1.013 0 0 0 0-1.381.903.903 0 0 0-.662-.286M5.183 15.38c-.155 0-.309.032-.453.094a1.2 1.2 0 0 0-.383.267 1.2 1.2 0 0 0-.257.4 1.28 1.28 0 0 0 .257 1.346 1.142 1.142 0 0 0 1.29.268q.216-.096.383-.268c.11-.115.197-.251.257-.4a1.28 1.28 0 0 0-.257-1.346 1.2 1.2 0 0 0-.384-.267 1.1 1.1 0 0 0-.453-.094" })
9
+ ] });
10
+ export {
11
+ SvgIconMediacentre 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 SvgIconMindmap: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgIconMindmap;