@mantine/tiptap 7.13.5-alpha.1 → 7.13.5

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 (83) hide show
  1. package/cjs/RichTextEditor.cjs +108 -0
  2. package/cjs/RichTextEditor.cjs.map +1 -0
  3. package/cjs/RichTextEditor.context.cjs +10 -0
  4. package/cjs/RichTextEditor.context.cjs.map +1 -0
  5. package/cjs/RichTextEditor.module.css.cjs +7 -0
  6. package/cjs/RichTextEditor.module.css.cjs.map +1 -0
  7. package/cjs/RichTextEditorContent/RichTextEditorContent.cjs +48 -0
  8. package/cjs/RichTextEditorContent/RichTextEditorContent.cjs.map +1 -0
  9. package/cjs/RichTextEditorControl/RichTextEditorColorControl.cjs +32 -0
  10. package/cjs/RichTextEditorControl/RichTextEditorColorControl.cjs.map +1 -0
  11. package/cjs/RichTextEditorControl/RichTextEditorColorPickerControl.cjs +134 -0
  12. package/cjs/RichTextEditorControl/RichTextEditorColorPickerControl.cjs.map +1 -0
  13. package/cjs/RichTextEditorControl/RichTextEditorControl.cjs +85 -0
  14. package/cjs/RichTextEditorControl/RichTextEditorControl.cjs.map +1 -0
  15. package/cjs/RichTextEditorControl/RichTextEditorLinkControl.cjs +138 -0
  16. package/cjs/RichTextEditorControl/RichTextEditorLinkControl.cjs.map +1 -0
  17. package/cjs/RichTextEditorControl/controls.cjs +218 -0
  18. package/cjs/RichTextEditorControl/controls.cjs.map +1 -0
  19. package/cjs/RichTextEditorControlsGroup/RichTextEditorControlsGroup.cjs +29 -0
  20. package/cjs/RichTextEditorControlsGroup/RichTextEditorControlsGroup.cjs.map +1 -0
  21. package/cjs/RichTextEditorToolbar/RichTextEditorToolbar.cjs +29 -0
  22. package/cjs/RichTextEditorToolbar/RichTextEditorToolbar.cjs.map +1 -0
  23. package/cjs/extensions/Link.cjs +20 -0
  24. package/cjs/extensions/Link.cjs.map +1 -0
  25. package/cjs/extensions/TaskList.cjs +24 -0
  26. package/cjs/extensions/TaskList.cjs.map +1 -0
  27. package/cjs/icons/Icons.cjs +387 -0
  28. package/cjs/icons/Icons.cjs.map +1 -0
  29. package/cjs/index.cjs +60 -0
  30. package/cjs/index.cjs.map +1 -0
  31. package/cjs/labels.cjs +57 -0
  32. package/cjs/labels.cjs.map +1 -0
  33. package/esm/RichTextEditor.context.mjs +7 -0
  34. package/esm/RichTextEditor.context.mjs.map +1 -0
  35. package/esm/RichTextEditor.mjs +106 -0
  36. package/esm/RichTextEditor.mjs.map +1 -0
  37. package/esm/RichTextEditor.module.css.mjs +5 -0
  38. package/esm/RichTextEditor.module.css.mjs.map +1 -0
  39. package/esm/RichTextEditorContent/RichTextEditorContent.mjs +46 -0
  40. package/esm/RichTextEditorContent/RichTextEditorContent.mjs.map +1 -0
  41. package/esm/RichTextEditorControl/RichTextEditorColorControl.mjs +30 -0
  42. package/esm/RichTextEditorControl/RichTextEditorColorControl.mjs.map +1 -0
  43. package/esm/RichTextEditorControl/RichTextEditorColorPickerControl.mjs +132 -0
  44. package/esm/RichTextEditorControl/RichTextEditorColorPickerControl.mjs.map +1 -0
  45. package/esm/RichTextEditorControl/RichTextEditorControl.mjs +81 -0
  46. package/esm/RichTextEditorControl/RichTextEditorControl.mjs.map +1 -0
  47. package/esm/RichTextEditorControl/RichTextEditorLinkControl.mjs +136 -0
  48. package/esm/RichTextEditorControl/RichTextEditorLinkControl.mjs.map +1 -0
  49. package/esm/RichTextEditorControl/controls.mjs +186 -0
  50. package/esm/RichTextEditorControl/controls.mjs.map +1 -0
  51. package/esm/RichTextEditorControlsGroup/RichTextEditorControlsGroup.mjs +27 -0
  52. package/esm/RichTextEditorControlsGroup/RichTextEditorControlsGroup.mjs.map +1 -0
  53. package/esm/RichTextEditorToolbar/RichTextEditorToolbar.mjs +27 -0
  54. package/esm/RichTextEditorToolbar/RichTextEditorToolbar.mjs.map +1 -0
  55. package/esm/extensions/Link.mjs +14 -0
  56. package/esm/extensions/Link.mjs.map +1 -0
  57. package/esm/extensions/TaskList.mjs +22 -0
  58. package/esm/extensions/TaskList.mjs.map +1 -0
  59. package/esm/icons/Icons.mjs +349 -0
  60. package/esm/icons/Icons.mjs.map +1 -0
  61. package/esm/index.mjs +13 -0
  62. package/esm/index.mjs.map +1 -0
  63. package/esm/labels.mjs +55 -0
  64. package/esm/labels.mjs.map +1 -0
  65. package/lib/RichTextEditor.context.d.ts +17 -0
  66. package/lib/RichTextEditor.d.ts +111 -0
  67. package/lib/RichTextEditorContent/RichTextEditorContent.d.ts +16 -0
  68. package/lib/RichTextEditorControl/RichTextEditorColorControl.d.ts +6 -0
  69. package/lib/RichTextEditorControl/RichTextEditorColorPickerControl.d.ts +10 -0
  70. package/lib/RichTextEditorControl/RichTextEditorControl.d.ts +43 -0
  71. package/lib/RichTextEditorControl/RichTextEditorLinkControl.d.ts +23 -0
  72. package/lib/RichTextEditorControl/controls.d.ts +31 -0
  73. package/lib/RichTextEditorControl/index.d.ts +4 -0
  74. package/lib/RichTextEditorControlsGroup/RichTextEditorControlsGroup.d.ts +16 -0
  75. package/lib/RichTextEditorToolbar/RichTextEditorToolbar.d.ts +20 -0
  76. package/lib/extensions/Link.d.ts +1 -0
  77. package/lib/extensions/TaskList.d.ts +1 -0
  78. package/lib/extensions/index.d.ts +2 -0
  79. package/lib/icons/Icons.d.ts +40 -0
  80. package/lib/index.d.mts +16 -0
  81. package/lib/index.d.ts +16 -0
  82. package/lib/labels.d.ts +93 -0
  83. package/package.json +3 -3
@@ -0,0 +1,29 @@
1
+ 'use client';
2
+ 'use strict';
3
+
4
+ var jsxRuntime = require('react/jsx-runtime');
5
+ var core = require('@mantine/core');
6
+ var RichTextEditor_context = require('../RichTextEditor.context.cjs');
7
+ var RichTextEditor_module = require('../RichTextEditor.module.css.cjs');
8
+
9
+ const defaultProps = {};
10
+ const RichTextEditorToolbar = core.factory((_props, ref) => {
11
+ const props = core.useProps("RichTextEditorToolbar", defaultProps, _props);
12
+ const { classNames, className, style, styles, vars, sticky, stickyOffset, mod, ...others } = props;
13
+ const ctx = RichTextEditor_context.useRichTextEditorContext();
14
+ return /* @__PURE__ */ jsxRuntime.jsx(
15
+ core.Box,
16
+ {
17
+ ref,
18
+ mod: [{ sticky }, mod],
19
+ ...ctx.getStyles("toolbar", { className, style, styles, classNames }),
20
+ ...others,
21
+ __vars: { "--rte-sticky-offset": core.rem(stickyOffset) }
22
+ }
23
+ );
24
+ });
25
+ RichTextEditorToolbar.classes = RichTextEditor_module;
26
+ RichTextEditorToolbar.displayName = "@mantine/tiptap/RichTextEditorToolbar";
27
+
28
+ exports.RichTextEditorToolbar = RichTextEditorToolbar;
29
+ //# sourceMappingURL=RichTextEditorToolbar.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RichTextEditorToolbar.cjs","sources":["../../src/RichTextEditorToolbar/RichTextEditorToolbar.tsx"],"sourcesContent":["import {\n Box,\n BoxProps,\n CompoundStylesApiProps,\n ElementProps,\n factory,\n Factory,\n rem,\n useProps,\n} from '@mantine/core';\nimport { useRichTextEditorContext } from '../RichTextEditor.context';\nimport classes from '../RichTextEditor.module.css';\n\nexport type RichTextEditorToolbarStylesNames = 'toolbar';\n\nexport interface RichTextEditorToolbarProps\n extends BoxProps,\n CompoundStylesApiProps<RichTextEditorToolbarFactory>,\n ElementProps<'div'> {\n /** Determines whether `position: sticky` styles should be added to the toolbar, `false` by default */\n sticky?: boolean;\n\n /** Sets top style to offset elements with fixed position, `0` by default */\n stickyOffset?: React.CSSProperties['top'];\n}\n\nexport type RichTextEditorToolbarFactory = Factory<{\n props: RichTextEditorToolbarProps;\n ref: HTMLDivElement;\n stylesNames: RichTextEditorToolbarStylesNames;\n compound: true;\n}>;\n\nconst defaultProps: Partial<RichTextEditorToolbarProps> = {};\n\nexport const RichTextEditorToolbar = factory<RichTextEditorToolbarFactory>((_props, ref) => {\n const props = useProps('RichTextEditorToolbar', defaultProps, _props);\n const { classNames, className, style, styles, vars, sticky, stickyOffset, mod, ...others } =\n props;\n const ctx = useRichTextEditorContext();\n\n return (\n <Box\n ref={ref}\n mod={[{ sticky }, mod]}\n {...ctx.getStyles('toolbar', { className, style, styles, classNames })}\n {...others}\n __vars={{ '--rte-sticky-offset': rem(stickyOffset) }}\n />\n );\n});\n\nRichTextEditorToolbar.classes = classes;\nRichTextEditorToolbar.displayName = '@mantine/tiptap/RichTextEditorToolbar';\n"],"names":["factory","useProps","useRichTextEditorContext","jsx","Box","rem","classes"],"mappings":"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"}
@@ -0,0 +1,20 @@
1
+ 'use client';
2
+ 'use strict';
3
+
4
+ var TipTapLink = require('@tiptap/extension-link');
5
+
6
+ function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
7
+
8
+ var TipTapLink__default = /*#__PURE__*/_interopDefault(TipTapLink);
9
+
10
+ const Link = TipTapLink__default.default.extend({
11
+ addKeyboardShortcuts: () => ({
12
+ "Mod-k": () => {
13
+ window.dispatchEvent(new Event("edit-link"));
14
+ return true;
15
+ }
16
+ })
17
+ }).configure({ openOnClick: false });
18
+
19
+ exports.Link = Link;
20
+ //# sourceMappingURL=Link.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Link.cjs","sources":["../../src/extensions/Link.ts"],"sourcesContent":["import TipTapLink from '@tiptap/extension-link';\n\nexport const Link = TipTapLink.extend({\n addKeyboardShortcuts: () => ({\n 'Mod-k': () => {\n window.dispatchEvent(new Event('edit-link'));\n return true;\n },\n }),\n}).configure({ openOnClick: false });\n"],"names":["TipTapLink"],"mappings":";;;;;;;;;AAEY,CAAA,CAAA,CAAA,CAAA,CAAA,CAAC,CAAI,CAAA,CAAA,CAAA,CAAA,CAAA,CAAGA,CAAU,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAC,MAAM,CAAC,CAAA;AACtC,CAAE,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAoB,EAAE,CAAO,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA;AAC/B,CAAI,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAO,EAAE,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA;AACnB,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAC,CAAa,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAC,IAAI,CAAK,CAAA,CAAA,CAAA,CAAA,CAAC,CAAW,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAC,CAAC,CAAA;AAClD,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,OAAO,CAAI,CAAA,CAAA,CAAA,CAAA;AACjB,CAAA,CAAA,CAAA,CAAA,CAAA;AACA,CAAG,CAAA,CAAA,CAAA;AACH,CAAC,CAAC,CAAC,CAAS,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAC,EAAE,CAAW,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAE,KAAK,CAAE,CAAA,CAAA,CAAA;;"}
@@ -0,0 +1,24 @@
1
+ 'use client';
2
+ 'use strict';
3
+
4
+ var RichTextEditor_module = require('../RichTextEditor.module.css.cjs');
5
+
6
+ const getTaskListExtension = (TipTapTaskList) => TipTapTaskList.extend({
7
+ addKeyboardShortcuts: () => ({
8
+ "Mod-[": ({ editor }) => {
9
+ editor.chain().focus().liftListItem("taskItem").run();
10
+ return true;
11
+ },
12
+ "Mod-]": ({ editor }) => {
13
+ editor.chain().focus().sinkListItem("taskItem").run();
14
+ return true;
15
+ }
16
+ })
17
+ }).configure({
18
+ HTMLAttributes: {
19
+ class: `${RichTextEditor_module.taskList} mantine-RichTextEditor-taskList`
20
+ }
21
+ });
22
+
23
+ exports.getTaskListExtension = getTaskListExtension;
24
+ //# sourceMappingURL=TaskList.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TaskList.cjs","sources":["../../src/extensions/TaskList.ts"],"sourcesContent":["import classes from '../RichTextEditor.module.css';\n\nexport const getTaskListExtension = <T>(TipTapTaskList: T): T =>\n (TipTapTaskList as any)\n .extend({\n addKeyboardShortcuts: () => ({\n 'Mod-[': ({ editor }: any) => {\n editor.chain().focus().liftListItem('taskItem').run();\n return true;\n },\n 'Mod-]': ({ editor }: any) => {\n editor.chain().focus().sinkListItem('taskItem').run();\n return true;\n },\n }),\n })\n .configure({\n HTMLAttributes: {\n class: `${classes.taskList} mantine-RichTextEditor-taskList`,\n },\n });\n"],"names":["classes"],"mappings":";;;;;AAEY,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAoB,GAAG,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAc,KAAK,CAAc,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAC,MAAM,CAAC,CAAA;AAC9E,CAAE,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAoB,EAAE,CAAO,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA;AAC/B,CAAA,CAAA,CAAA,CAAI,OAAO,CAAE,CAAA,CAAC,CAAE,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,EAAE,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA;AAC7B,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAC,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAE,CAAC,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAE,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAY,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAC,CAAC,GAAG,CAAE,CAAA,CAAA;AAC3D,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,OAAO,CAAI,CAAA,CAAA,CAAA,CAAA;AACjB,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA;AACL,CAAA,CAAA,CAAA,CAAI,OAAO,CAAE,CAAA,CAAC,CAAE,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,EAAE,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA;AAC7B,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,CAAM,CAAA,CAAA,CAAA,CAAA,CAAA,CAAC,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAE,CAAC,CAAK,CAAA,CAAA,CAAA,CAAA,CAAA,CAAE,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAY,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAU,CAAC,CAAC,GAAG,CAAE,CAAA,CAAA;AAC3D,CAAA,CAAA,CAAA,CAAA,CAAA,CAAM,OAAO,CAAI,CAAA,CAAA,CAAA,CAAA;AACjB,CAAA,CAAA,CAAA,CAAA,CAAA;AACA,CAAG,CAAA,CAAA,CAAA;AACH,CAAC,CAAC,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAS,CAAC,CAAA;AACb,CAAA,CAAE,cAAc,CAAE,CAAA,CAAA;AAClB,CAAI,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAK,EAAE,CAAC,CAAA,CAAEA,qBAAO,CAAC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAQ,CAAC,CAAgC,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA,CAAA;AAC/D,CAAA,CAAA,CAAA;AACA,CAAC,CAAA,CAAA;;"}
@@ -0,0 +1,387 @@
1
+ 'use client';
2
+ 'use strict';
3
+
4
+ var jsxRuntime = require('react/jsx-runtime');
5
+
6
+ function IconBase(props) {
7
+ return /* @__PURE__ */ jsxRuntime.jsx(
8
+ "svg",
9
+ {
10
+ ...props,
11
+ xmlns: "http://www.w3.org/2000/svg",
12
+ viewBox: "0 0 24 24",
13
+ strokeWidth: "1.5",
14
+ stroke: "currentColor",
15
+ fill: "none",
16
+ strokeLinecap: "round",
17
+ strokeLinejoin: "round"
18
+ }
19
+ );
20
+ }
21
+ function IconBold(props) {
22
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
23
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
24
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 5h6a3.5 3.5 0 0 1 0 7h-6z" }),
25
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7" })
26
+ ] });
27
+ }
28
+ function IconItalic(props) {
29
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
30
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
31
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 5l6 0" }),
32
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 19l6 0" }),
33
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 5l-4 14" })
34
+ ] });
35
+ }
36
+ function IconUnderline(props) {
37
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
38
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
39
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 5v5a5 5 0 0 0 10 0v-5" }),
40
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 19h14" })
41
+ ] });
42
+ }
43
+ function IconStrikethrough(props) {
44
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
45
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
46
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 12l14 0" }),
47
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5" })
48
+ ] });
49
+ }
50
+ function IconClearFormatting(props) {
51
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
52
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
53
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 15l4 4m0 -4l-4 4" }),
54
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 6v-1h11v1" }),
55
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 19l4 0" }),
56
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 5l-4 14" })
57
+ ] });
58
+ }
59
+ function IconH1(props) {
60
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
61
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
62
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 18v-8l-2 2" }),
63
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6v12" }),
64
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v12" }),
65
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18h2" }),
66
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 18h2" }),
67
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h8" }),
68
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6h2" }),
69
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h2" })
70
+ ] });
71
+ }
72
+ function IconH2(props) {
73
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
74
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
75
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0" }),
76
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6v12" }),
77
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v12" }),
78
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18h2" }),
79
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 18h2" }),
80
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h8" }),
81
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6h2" }),
82
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h2" })
83
+ ] });
84
+ }
85
+ function IconH3(props) {
86
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
87
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
88
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 14a2 2 0 1 0 -2 -2" }),
89
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 16a2 2 0 1 0 2 -2" }),
90
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6v12" }),
91
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v12" }),
92
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18h2" }),
93
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 18h2" }),
94
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h8" }),
95
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6h2" }),
96
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h2" })
97
+ ] });
98
+ }
99
+ function IconH4(props) {
100
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
101
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
102
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 18v-8l-4 6h5" }),
103
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6v12" }),
104
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v12" }),
105
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18h2" }),
106
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 18h2" }),
107
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h8" }),
108
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6h2" }),
109
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h2" })
110
+ ] });
111
+ }
112
+ function IconH5(props) {
113
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
114
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
115
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 18h2a2 2 0 1 0 0 -4h-2v-4h4" }),
116
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6v12" }),
117
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v12" }),
118
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18h2" }),
119
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 18h2" }),
120
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h8" }),
121
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6h2" }),
122
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h2" })
123
+ ] });
124
+ }
125
+ function IconH6(props) {
126
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
127
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
128
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z" }),
129
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 12a2 2 0 1 0 -4 0v4" }),
130
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6v12" }),
131
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v12" }),
132
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18h2" }),
133
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 18h2" }),
134
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h8" }),
135
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6h2" }),
136
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h2" })
137
+ ] });
138
+ }
139
+ function IconList(props) {
140
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
141
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
142
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 6l11 0" }),
143
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 12l11 0" }),
144
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 18l11 0" }),
145
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 6l0 .01" }),
146
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 12l0 .01" }),
147
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 18l0 .01" })
148
+ ] });
149
+ }
150
+ function IconListNumbers(props) {
151
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
152
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
153
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h9" }),
154
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 12h9" }),
155
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 18h8" }),
156
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4" }),
157
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 10v-6l-2 2" })
158
+ ] });
159
+ }
160
+ function IconUnlink(props) {
161
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
162
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
163
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 22v-2" }),
164
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 15l6 -6" }),
165
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" }),
166
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" }),
167
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 17h2" }),
168
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 7h2" }),
169
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 2v2" })
170
+ ] });
171
+ }
172
+ function IconBlockquote(props) {
173
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
174
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
175
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 15h15" }),
176
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 19h-15" }),
177
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 11h6" }),
178
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 7h-6" }),
179
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2" }),
180
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2" })
181
+ ] });
182
+ }
183
+ function IconAlignLeft(props) {
184
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
185
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
186
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6l16 0" }),
187
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12l10 0" }),
188
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 18l14 0" })
189
+ ] });
190
+ }
191
+ function IconAlignRight(props) {
192
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
193
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
194
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6l16 0" }),
195
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 12l10 0" }),
196
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 18l14 0" })
197
+ ] });
198
+ }
199
+ function IconAlignCenter(props) {
200
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
201
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
202
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6l16 0" }),
203
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 12l8 0" }),
204
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 18l12 0" })
205
+ ] });
206
+ }
207
+ function IconAlignJustified(props) {
208
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
209
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
210
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6l16 0" }),
211
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12l16 0" }),
212
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 18l12 0" })
213
+ ] });
214
+ }
215
+ function IconSubscript(props) {
216
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
217
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
218
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 7l8 10m-8 0l8 -10" }),
219
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" })
220
+ ] });
221
+ }
222
+ function IconSuperscript(props) {
223
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
224
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
225
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 7l8 10m-8 0l8 -10" }),
226
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" })
227
+ ] });
228
+ }
229
+ function IconCode(props) {
230
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
231
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
232
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 8l-4 4l4 4" }),
233
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 8l4 4l-4 4" }),
234
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 4l-4 16" })
235
+ ] });
236
+ }
237
+ function IconHighlight(props) {
238
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
239
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
240
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4" }),
241
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 5.5l4 4" }),
242
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.5 13.5l4 4" }),
243
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 15v4h-8l4 -4z" })
244
+ ] });
245
+ }
246
+ function IconLineDashed(props) {
247
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
248
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
249
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 12h2" }),
250
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 12h2" }),
251
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 12h2" })
252
+ ] });
253
+ }
254
+ function IconCircleOff(props) {
255
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
256
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
257
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73" }),
258
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 3l18 18" })
259
+ ] });
260
+ }
261
+ function IconColorPicker(props) {
262
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
263
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
264
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 7l6 6" }),
265
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z" })
266
+ ] });
267
+ }
268
+ function IconX(props) {
269
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
270
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
271
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 6l-12 12" }),
272
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 6l12 12" })
273
+ ] });
274
+ }
275
+ function IconPalette(props) {
276
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
277
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
278
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 21a9 9 0 0 1 0 -18c4.97 0 9 3.582 9 8c0 1.06 -.474 2.078 -1.318 2.828c-.844 .75 -1.989 1.172 -3.182 1.172h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25" }),
279
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
280
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
281
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" })
282
+ ] });
283
+ }
284
+ function IconCheck(props) {
285
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
286
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
287
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 12l5 5l10 -10" })
288
+ ] });
289
+ }
290
+ function IconLink(props) {
291
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
292
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
293
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 15l6 -6" }),
294
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" }),
295
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" })
296
+ ] });
297
+ }
298
+ function IconExternalLink(props) {
299
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
300
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
301
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6" }),
302
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 13l9 -9" }),
303
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 4h5v5" })
304
+ ] });
305
+ }
306
+ function IconArrowBackUp(props) {
307
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
308
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
309
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 14l-4 -4l4 -4" }),
310
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 10h11a4 4 0 1 1 0 8h-1" })
311
+ ] });
312
+ }
313
+ function IconArrowForwardUp(props) {
314
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
315
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
316
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 14l4 -4l-4 -4" }),
317
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 10h-11a4 4 0 1 0 0 8h1" })
318
+ ] });
319
+ }
320
+ function IconListCheck(props) {
321
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
322
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
323
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.5 5.5l1.5 1.5l2.5 -2.5" }),
324
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.5 11.5l1.5 1.5l2.5 -2.5" }),
325
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.5 17.5l1.5 1.5l2.5 -2.5" }),
326
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6l9 0" }),
327
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 12l9 0" }),
328
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18l9 0" })
329
+ ] });
330
+ }
331
+ function IconIndentIncrease(props) {
332
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
333
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
334
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 6l-11 0" }),
335
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 12l-7 0" }),
336
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 18l-11 0" }),
337
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 8l4 4l-4 4" })
338
+ ] });
339
+ }
340
+ function IconIndentDecrease(props) {
341
+ return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
342
+ /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
343
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 6l-7 0" }),
344
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 12l-9 0" }),
345
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 18l-7 0" }),
346
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 8l-4 4l4 4" })
347
+ ] });
348
+ }
349
+
350
+ exports.IconAlignCenter = IconAlignCenter;
351
+ exports.IconAlignJustified = IconAlignJustified;
352
+ exports.IconAlignLeft = IconAlignLeft;
353
+ exports.IconAlignRight = IconAlignRight;
354
+ exports.IconArrowBackUp = IconArrowBackUp;
355
+ exports.IconArrowForwardUp = IconArrowForwardUp;
356
+ exports.IconBase = IconBase;
357
+ exports.IconBlockquote = IconBlockquote;
358
+ exports.IconBold = IconBold;
359
+ exports.IconCheck = IconCheck;
360
+ exports.IconCircleOff = IconCircleOff;
361
+ exports.IconClearFormatting = IconClearFormatting;
362
+ exports.IconCode = IconCode;
363
+ exports.IconColorPicker = IconColorPicker;
364
+ exports.IconExternalLink = IconExternalLink;
365
+ exports.IconH1 = IconH1;
366
+ exports.IconH2 = IconH2;
367
+ exports.IconH3 = IconH3;
368
+ exports.IconH4 = IconH4;
369
+ exports.IconH5 = IconH5;
370
+ exports.IconH6 = IconH6;
371
+ exports.IconHighlight = IconHighlight;
372
+ exports.IconIndentDecrease = IconIndentDecrease;
373
+ exports.IconIndentIncrease = IconIndentIncrease;
374
+ exports.IconItalic = IconItalic;
375
+ exports.IconLineDashed = IconLineDashed;
376
+ exports.IconLink = IconLink;
377
+ exports.IconList = IconList;
378
+ exports.IconListCheck = IconListCheck;
379
+ exports.IconListNumbers = IconListNumbers;
380
+ exports.IconPalette = IconPalette;
381
+ exports.IconStrikethrough = IconStrikethrough;
382
+ exports.IconSubscript = IconSubscript;
383
+ exports.IconSuperscript = IconSuperscript;
384
+ exports.IconUnderline = IconUnderline;
385
+ exports.IconUnlink = IconUnlink;
386
+ exports.IconX = IconX;
387
+ //# sourceMappingURL=Icons.cjs.map