@mantine/tiptap 7.6.0-alpha.1 → 7.6.1

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 (37) hide show
  1. package/cjs/RichTextEditor.cjs +6 -2
  2. package/cjs/RichTextEditor.cjs.map +1 -1
  3. package/cjs/RichTextEditorContent/RichTextEditorContent.cjs +7 -3
  4. package/cjs/RichTextEditorContent/RichTextEditorContent.cjs.map +1 -1
  5. package/cjs/RichTextEditorControl/RichTextEditorColorControl.cjs +6 -2
  6. package/cjs/RichTextEditorControl/RichTextEditorColorControl.cjs.map +1 -1
  7. package/cjs/RichTextEditorControl/RichTextEditorColorPickerControl.cjs +18 -14
  8. package/cjs/RichTextEditorControl/RichTextEditorColorPickerControl.cjs.map +1 -1
  9. package/cjs/RichTextEditorControl/RichTextEditorControl.cjs +7 -3
  10. package/cjs/RichTextEditorControl/RichTextEditorControl.cjs.map +1 -1
  11. package/cjs/RichTextEditorControl/RichTextEditorLinkControl.cjs +13 -9
  12. package/cjs/RichTextEditorControl/RichTextEditorLinkControl.cjs.map +1 -1
  13. package/cjs/RichTextEditorControl/controls.cjs +35 -31
  14. package/cjs/RichTextEditorControl/controls.cjs.map +1 -1
  15. package/cjs/RichTextEditorControlsGroup/RichTextEditorControlsGroup.cjs +5 -1
  16. package/cjs/RichTextEditorControlsGroup/RichTextEditorControlsGroup.cjs.map +1 -1
  17. package/cjs/RichTextEditorToolbar/RichTextEditorToolbar.cjs +5 -1
  18. package/cjs/RichTextEditorToolbar/RichTextEditorToolbar.cjs.map +1 -1
  19. package/cjs/extensions/Link.cjs +5 -1
  20. package/cjs/extensions/Link.cjs.map +1 -1
  21. package/cjs/extensions/TaskList.cjs +2 -3
  22. package/cjs/extensions/TaskList.cjs.map +1 -1
  23. package/cjs/icons/Icons.cjs +41 -37
  24. package/cjs/icons/Icons.cjs.map +1 -1
  25. package/cjs/index.cjs +1 -1
  26. package/esm/RichTextEditorControl/RichTextEditorLinkControl.mjs +1 -1
  27. package/esm/RichTextEditorControl/RichTextEditorLinkControl.mjs.map +1 -1
  28. package/esm/extensions/TaskList.mjs +2 -3
  29. package/esm/extensions/TaskList.mjs.map +1 -1
  30. package/esm/index.mjs +1 -1
  31. package/lib/extensions/TaskList.d.ts +1 -1
  32. package/lib/extensions/index.d.ts +1 -1
  33. package/lib/index.d.mts +2 -2
  34. package/lib/index.d.ts +2 -2
  35. package/package.json +6 -6
  36. package/styles.css +398 -1
  37. package/styles.layer.css +399 -1
@@ -3,8 +3,12 @@
3
3
 
4
4
  var React = require('react');
5
5
 
6
+ function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
7
+
8
+ var React__default = /*#__PURE__*/_interopDefault(React);
9
+
6
10
  function IconBase(props) {
7
- return /* @__PURE__ */ React.createElement(
11
+ return /* @__PURE__ */ React__default.default.createElement(
8
12
  "svg",
9
13
  {
10
14
  ...props,
@@ -19,112 +23,112 @@ function IconBase(props) {
19
23
  );
20
24
  }
21
25
  function IconBold(props) {
22
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M7 5h6a3.5 3.5 0 0 1 0 7h-6z" }), /* @__PURE__ */ React.createElement("path", { d: "M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7" }));
26
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M7 5h6a3.5 3.5 0 0 1 0 7h-6z" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7" }));
23
27
  }
24
28
  function IconItalic(props) {
25
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M11 5l6 0" }), /* @__PURE__ */ React.createElement("path", { d: "M7 19l6 0" }), /* @__PURE__ */ React.createElement("path", { d: "M14 5l-4 14" }));
29
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 5l6 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M7 19l6 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M14 5l-4 14" }));
26
30
  }
27
31
  function IconUnderline(props) {
28
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M7 5v5a5 5 0 0 0 10 0v-5" }), /* @__PURE__ */ React.createElement("path", { d: "M5 19h14" }));
32
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M7 5v5a5 5 0 0 0 10 0v-5" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M5 19h14" }));
29
33
  }
30
34
  function IconStrikethrough(props) {
31
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M5 12l14 0" }), /* @__PURE__ */ React.createElement("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" }));
35
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M5 12l14 0" }), /* @__PURE__ */ React__default.default.createElement("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" }));
32
36
  }
33
37
  function IconClearFormatting(props) {
34
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M17 15l4 4m0 -4l-4 4" }), /* @__PURE__ */ React.createElement("path", { d: "M7 6v-1h11v1" }), /* @__PURE__ */ React.createElement("path", { d: "M7 19l4 0" }), /* @__PURE__ */ React.createElement("path", { d: "M13 5l-4 14" }));
38
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M17 15l4 4m0 -4l-4 4" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M7 6v-1h11v1" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M7 19l4 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M13 5l-4 14" }));
35
39
  }
36
40
  function IconH1(props) {
37
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M19 18v-8l-2 2" }), /* @__PURE__ */ React.createElement("path", { d: "M4 6v12" }), /* @__PURE__ */ React.createElement("path", { d: "M12 6v12" }), /* @__PURE__ */ React.createElement("path", { d: "M11 18h2" }), /* @__PURE__ */ React.createElement("path", { d: "M3 18h2" }), /* @__PURE__ */ React.createElement("path", { d: "M4 12h8" }), /* @__PURE__ */ React.createElement("path", { d: "M3 6h2" }), /* @__PURE__ */ React.createElement("path", { d: "M11 6h2" }));
41
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M19 18v-8l-2 2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 6v12" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M12 6v12" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 18h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 18h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 12h8" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 6h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 6h2" }));
38
42
  }
39
43
  function IconH2(props) {
40
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0" }), /* @__PURE__ */ React.createElement("path", { d: "M4 6v12" }), /* @__PURE__ */ React.createElement("path", { d: "M12 6v12" }), /* @__PURE__ */ React.createElement("path", { d: "M11 18h2" }), /* @__PURE__ */ React.createElement("path", { d: "M3 18h2" }), /* @__PURE__ */ React.createElement("path", { d: "M4 12h8" }), /* @__PURE__ */ React.createElement("path", { d: "M3 6h2" }), /* @__PURE__ */ React.createElement("path", { d: "M11 6h2" }));
44
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 6v12" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M12 6v12" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 18h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 18h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 12h8" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 6h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 6h2" }));
41
45
  }
42
46
  function IconH3(props) {
43
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M19 14a2 2 0 1 0 -2 -2" }), /* @__PURE__ */ React.createElement("path", { d: "M17 16a2 2 0 1 0 2 -2" }), /* @__PURE__ */ React.createElement("path", { d: "M4 6v12" }), /* @__PURE__ */ React.createElement("path", { d: "M12 6v12" }), /* @__PURE__ */ React.createElement("path", { d: "M11 18h2" }), /* @__PURE__ */ React.createElement("path", { d: "M3 18h2" }), /* @__PURE__ */ React.createElement("path", { d: "M4 12h8" }), /* @__PURE__ */ React.createElement("path", { d: "M3 6h2" }), /* @__PURE__ */ React.createElement("path", { d: "M11 6h2" }));
47
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M19 14a2 2 0 1 0 -2 -2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M17 16a2 2 0 1 0 2 -2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 6v12" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M12 6v12" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 18h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 18h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 12h8" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 6h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 6h2" }));
44
48
  }
45
49
  function IconH4(props) {
46
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M20 18v-8l-4 6h5" }), /* @__PURE__ */ React.createElement("path", { d: "M4 6v12" }), /* @__PURE__ */ React.createElement("path", { d: "M12 6v12" }), /* @__PURE__ */ React.createElement("path", { d: "M11 18h2" }), /* @__PURE__ */ React.createElement("path", { d: "M3 18h2" }), /* @__PURE__ */ React.createElement("path", { d: "M4 12h8" }), /* @__PURE__ */ React.createElement("path", { d: "M3 6h2" }), /* @__PURE__ */ React.createElement("path", { d: "M11 6h2" }));
50
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M20 18v-8l-4 6h5" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 6v12" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M12 6v12" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 18h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 18h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 12h8" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 6h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 6h2" }));
47
51
  }
48
52
  function IconH5(props) {
49
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M17 18h2a2 2 0 1 0 0 -4h-2v-4h4" }), /* @__PURE__ */ React.createElement("path", { d: "M4 6v12" }), /* @__PURE__ */ React.createElement("path", { d: "M12 6v12" }), /* @__PURE__ */ React.createElement("path", { d: "M11 18h2" }), /* @__PURE__ */ React.createElement("path", { d: "M3 18h2" }), /* @__PURE__ */ React.createElement("path", { d: "M4 12h8" }), /* @__PURE__ */ React.createElement("path", { d: "M3 6h2" }), /* @__PURE__ */ React.createElement("path", { d: "M11 6h2" }));
53
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M17 18h2a2 2 0 1 0 0 -4h-2v-4h4" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 6v12" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M12 6v12" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 18h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 18h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 12h8" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 6h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 6h2" }));
50
54
  }
51
55
  function IconH6(props) {
52
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z" }), /* @__PURE__ */ React.createElement("path", { d: "M21 12a2 2 0 1 0 -4 0v4" }), /* @__PURE__ */ React.createElement("path", { d: "M4 6v12" }), /* @__PURE__ */ React.createElement("path", { d: "M12 6v12" }), /* @__PURE__ */ React.createElement("path", { d: "M11 18h2" }), /* @__PURE__ */ React.createElement("path", { d: "M3 18h2" }), /* @__PURE__ */ React.createElement("path", { d: "M4 12h8" }), /* @__PURE__ */ React.createElement("path", { d: "M3 6h2" }), /* @__PURE__ */ React.createElement("path", { d: "M11 6h2" }));
56
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M21 12a2 2 0 1 0 -4 0v4" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 6v12" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M12 6v12" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 18h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 18h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 12h8" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 6h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 6h2" }));
53
57
  }
54
58
  function IconList(props) {
55
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M9 6l11 0" }), /* @__PURE__ */ React.createElement("path", { d: "M9 12l11 0" }), /* @__PURE__ */ React.createElement("path", { d: "M9 18l11 0" }), /* @__PURE__ */ React.createElement("path", { d: "M5 6l0 .01" }), /* @__PURE__ */ React.createElement("path", { d: "M5 12l0 .01" }), /* @__PURE__ */ React.createElement("path", { d: "M5 18l0 .01" }));
59
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M9 6l11 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M9 12l11 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M9 18l11 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M5 6l0 .01" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M5 12l0 .01" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M5 18l0 .01" }));
56
60
  }
57
61
  function IconListNumbers(props) {
58
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M11 6h9" }), /* @__PURE__ */ React.createElement("path", { d: "M11 12h9" }), /* @__PURE__ */ React.createElement("path", { d: "M12 18h8" }), /* @__PURE__ */ React.createElement("path", { d: "M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4" }), /* @__PURE__ */ React.createElement("path", { d: "M6 10v-6l-2 2" }));
62
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 6h9" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 12h9" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M12 18h8" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M6 10v-6l-2 2" }));
59
63
  }
60
64
  function IconUnlink(props) {
61
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M17 22v-2" }), /* @__PURE__ */ React.createElement("path", { d: "M9 15l6 -6" }), /* @__PURE__ */ React.createElement("path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" }), /* @__PURE__ */ React.createElement("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" }), /* @__PURE__ */ React.createElement("path", { d: "M20 17h2" }), /* @__PURE__ */ React.createElement("path", { d: "M2 7h2" }), /* @__PURE__ */ React.createElement("path", { d: "M7 2v2" }));
65
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M17 22v-2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M9 15l6 -6" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" }), /* @__PURE__ */ React__default.default.createElement("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" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M20 17h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M2 7h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M7 2v2" }));
62
66
  }
63
67
  function IconBlockquote(props) {
64
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M6 15h15" }), /* @__PURE__ */ React.createElement("path", { d: "M21 19h-15" }), /* @__PURE__ */ React.createElement("path", { d: "M15 11h6" }), /* @__PURE__ */ React.createElement("path", { d: "M21 7h-6" }), /* @__PURE__ */ React.createElement("path", { d: "M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2" }), /* @__PURE__ */ React.createElement("path", { d: "M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2" }));
68
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M6 15h15" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M21 19h-15" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M15 11h6" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M21 7h-6" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2" }));
65
69
  }
66
70
  function IconAlignLeft(props) {
67
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M4 6l16 0" }), /* @__PURE__ */ React.createElement("path", { d: "M4 12l10 0" }), /* @__PURE__ */ React.createElement("path", { d: "M4 18l14 0" }));
71
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 6l16 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 12l10 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 18l14 0" }));
68
72
  }
69
73
  function IconAlignRight(props) {
70
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M4 6l16 0" }), /* @__PURE__ */ React.createElement("path", { d: "M10 12l10 0" }), /* @__PURE__ */ React.createElement("path", { d: "M6 18l14 0" }));
74
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 6l16 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M10 12l10 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M6 18l14 0" }));
71
75
  }
72
76
  function IconAlignCenter(props) {
73
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M4 6l16 0" }), /* @__PURE__ */ React.createElement("path", { d: "M8 12l8 0" }), /* @__PURE__ */ React.createElement("path", { d: "M6 18l12 0" }));
77
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 6l16 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M8 12l8 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M6 18l12 0" }));
74
78
  }
75
79
  function IconAlignJustified(props) {
76
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M4 6l16 0" }), /* @__PURE__ */ React.createElement("path", { d: "M4 12l16 0" }), /* @__PURE__ */ React.createElement("path", { d: "M4 18l12 0" }));
80
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 6l16 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 12l16 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 18l12 0" }));
77
81
  }
78
82
  function IconSubscript(props) {
79
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M5 7l8 10m-8 0l8 -10" }), /* @__PURE__ */ React.createElement("path", { d: "M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" }));
83
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M5 7l8 10m-8 0l8 -10" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" }));
80
84
  }
81
85
  function IconSuperscript(props) {
82
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M5 7l8 10m-8 0l8 -10" }), /* @__PURE__ */ React.createElement("path", { d: "M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" }));
86
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M5 7l8 10m-8 0l8 -10" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" }));
83
87
  }
84
88
  function IconCode(props) {
85
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M7 8l-4 4l4 4" }), /* @__PURE__ */ React.createElement("path", { d: "M17 8l4 4l-4 4" }), /* @__PURE__ */ React.createElement("path", { d: "M14 4l-4 16" }));
89
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M7 8l-4 4l4 4" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M17 8l4 4l-4 4" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M14 4l-4 16" }));
86
90
  }
87
91
  function IconHighlight(props) {
88
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4" }), /* @__PURE__ */ React.createElement("path", { d: "M12.5 5.5l4 4" }), /* @__PURE__ */ React.createElement("path", { d: "M4.5 13.5l4 4" }), /* @__PURE__ */ React.createElement("path", { d: "M21 15v4h-8l4 -4z" }));
92
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M12.5 5.5l4 4" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4.5 13.5l4 4" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M21 15v4h-8l4 -4z" }));
89
93
  }
90
94
  function IconLineDashed(props) {
91
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M5 12h2" }), /* @__PURE__ */ React.createElement("path", { d: "M17 12h2" }), /* @__PURE__ */ React.createElement("path", { d: "M11 12h2" }));
95
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M5 12h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M17 12h2" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 12h2" }));
92
96
  }
93
97
  function IconCircleOff(props) {
94
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("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" }), /* @__PURE__ */ React.createElement("path", { d: "M3 3l18 18" }));
98
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("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" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3 3l18 18" }));
95
99
  }
96
100
  function IconColorPicker(props) {
97
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M11 7l6 6" }), /* @__PURE__ */ React.createElement("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" }));
101
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 7l6 6" }), /* @__PURE__ */ React__default.default.createElement("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" }));
98
102
  }
99
103
  function IconX(props) {
100
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M18 6l-12 12" }), /* @__PURE__ */ React.createElement("path", { d: "M6 6l12 12" }));
104
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M18 6l-12 12" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M6 6l12 12" }));
101
105
  }
102
106
  function IconPalette(props) {
103
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("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" }), /* @__PURE__ */ React.createElement("path", { d: "M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }), /* @__PURE__ */ React.createElement("path", { d: "M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }), /* @__PURE__ */ React.createElement("path", { d: "M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }));
107
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("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" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }));
104
108
  }
105
109
  function IconCheck(props) {
106
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M5 12l5 5l10 -10" }));
110
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M5 12l5 5l10 -10" }));
107
111
  }
108
112
  function IconLink(props) {
109
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M9 15l6 -6" }), /* @__PURE__ */ React.createElement("path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" }), /* @__PURE__ */ React.createElement("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" }));
113
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M9 15l6 -6" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" }), /* @__PURE__ */ React__default.default.createElement("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" }));
110
114
  }
111
115
  function IconExternalLink(props) {
112
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6" }), /* @__PURE__ */ React.createElement("path", { d: "M11 13l9 -9" }), /* @__PURE__ */ React.createElement("path", { d: "M15 4h5v5" }));
116
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 13l9 -9" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M15 4h5v5" }));
113
117
  }
114
118
  function IconArrowBackUp(props) {
115
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M9 14l-4 -4l4 -4" }), /* @__PURE__ */ React.createElement("path", { d: "M5 10h11a4 4 0 1 1 0 8h-1" }));
119
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M9 14l-4 -4l4 -4" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M5 10h11a4 4 0 1 1 0 8h-1" }));
116
120
  }
117
121
  function IconArrowForwardUp(props) {
118
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M15 14l4 -4l-4 -4" }), /* @__PURE__ */ React.createElement("path", { d: "M19 10h-11a4 4 0 1 0 0 8h1" }));
122
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M15 14l4 -4l-4 -4" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M19 10h-11a4 4 0 1 0 0 8h1" }));
119
123
  }
120
124
  function IconListCheck(props) {
121
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M3.5 5.5l1.5 1.5l2.5 -2.5" }), /* @__PURE__ */ React.createElement("path", { d: "M3.5 11.5l1.5 1.5l2.5 -2.5" }), /* @__PURE__ */ React.createElement("path", { d: "M3.5 17.5l1.5 1.5l2.5 -2.5" }), /* @__PURE__ */ React.createElement("path", { d: "M11 6l9 0" }), /* @__PURE__ */ React.createElement("path", { d: "M11 12l9 0" }), /* @__PURE__ */ React.createElement("path", { d: "M11 18l9 0" }));
125
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3.5 5.5l1.5 1.5l2.5 -2.5" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3.5 11.5l1.5 1.5l2.5 -2.5" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M3.5 17.5l1.5 1.5l2.5 -2.5" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 6l9 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 12l9 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M11 18l9 0" }));
122
126
  }
123
127
  function IconIndentIncrease(props) {
124
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M20 6l-11 0" }), /* @__PURE__ */ React.createElement("path", { d: "M20 12l-7 0" }), /* @__PURE__ */ React.createElement("path", { d: "M20 18l-11 0" }), /* @__PURE__ */ React.createElement("path", { d: "M4 8l4 4l-4 4" }));
128
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M20 6l-11 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M20 12l-7 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M20 18l-11 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M4 8l4 4l-4 4" }));
125
129
  }
126
130
  function IconIndentDecrease(props) {
127
- return /* @__PURE__ */ React.createElement(IconBase, { ...props }, /* @__PURE__ */ React.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M20 6l-7 0" }), /* @__PURE__ */ React.createElement("path", { d: "M20 12l-9 0" }), /* @__PURE__ */ React.createElement("path", { d: "M20 18l-7 0" }), /* @__PURE__ */ React.createElement("path", { d: "M8 8l-4 4l4 4" }));
131
+ return /* @__PURE__ */ React__default.default.createElement(IconBase, { ...props }, /* @__PURE__ */ React__default.default.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M20 6l-7 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M20 12l-9 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M20 18l-7 0" }), /* @__PURE__ */ React__default.default.createElement("path", { d: "M8 8l-4 4l4 4" }));
128
132
  }
129
133
 
130
134
  exports.IconAlignCenter = IconAlignCenter;