@mantine/tiptap 7.8.1 → 7.9.0

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 (49) hide show
  1. package/cjs/RichTextEditor.cjs +7 -10
  2. package/cjs/RichTextEditor.cjs.map +1 -1
  3. package/cjs/RichTextEditorContent/RichTextEditorContent.cjs +14 -18
  4. package/cjs/RichTextEditorContent/RichTextEditorContent.cjs.map +1 -1
  5. package/cjs/RichTextEditorControl/RichTextEditorColorControl.cjs +7 -10
  6. package/cjs/RichTextEditorControl/RichTextEditorColorControl.cjs.map +1 -1
  7. package/cjs/RichTextEditorControl/RichTextEditorColorPickerControl.cjs +82 -73
  8. package/cjs/RichTextEditorControl/RichTextEditorColorPickerControl.cjs.map +1 -1
  9. package/cjs/RichTextEditorControl/RichTextEditorControl.cjs +6 -9
  10. package/cjs/RichTextEditorControl/RichTextEditorControl.cjs.map +1 -1
  11. package/cjs/RichTextEditorControl/RichTextEditorLinkControl.cjs +65 -63
  12. package/cjs/RichTextEditorControl/RichTextEditorLinkControl.cjs.map +1 -1
  13. package/cjs/RichTextEditorControl/controls.cjs +32 -36
  14. package/cjs/RichTextEditorControl/controls.cjs.map +1 -1
  15. package/cjs/RichTextEditorControlsGroup/RichTextEditorControlsGroup.cjs +2 -6
  16. package/cjs/RichTextEditorControlsGroup/RichTextEditorControlsGroup.cjs.map +1 -1
  17. package/cjs/RichTextEditorToolbar/RichTextEditorToolbar.cjs +2 -6
  18. package/cjs/RichTextEditorToolbar/RichTextEditorToolbar.cjs.map +1 -1
  19. package/cjs/icons/Icons.cjs +258 -42
  20. package/cjs/icons/Icons.cjs.map +1 -1
  21. package/esm/RichTextEditor.mjs +6 -5
  22. package/esm/RichTextEditor.mjs.map +1 -1
  23. package/esm/RichTextEditorContent/RichTextEditorContent.mjs +14 -14
  24. package/esm/RichTextEditorContent/RichTextEditorContent.mjs.map +1 -1
  25. package/esm/RichTextEditorControl/RichTextEditorColorControl.mjs +6 -5
  26. package/esm/RichTextEditorControl/RichTextEditorColorControl.mjs.map +1 -1
  27. package/esm/RichTextEditorControl/RichTextEditorColorPickerControl.mjs +80 -67
  28. package/esm/RichTextEditorControl/RichTextEditorColorPickerControl.mjs.map +1 -1
  29. package/esm/RichTextEditorControl/RichTextEditorControl.mjs +5 -4
  30. package/esm/RichTextEditorControl/RichTextEditorControl.mjs.map +1 -1
  31. package/esm/RichTextEditorControl/RichTextEditorLinkControl.mjs +64 -58
  32. package/esm/RichTextEditorControl/RichTextEditorLinkControl.mjs.map +1 -1
  33. package/esm/RichTextEditorControl/controls.mjs +32 -32
  34. package/esm/RichTextEditorControl/controls.mjs.map +1 -1
  35. package/esm/RichTextEditorControlsGroup/RichTextEditorControlsGroup.mjs +2 -2
  36. package/esm/RichTextEditorControlsGroup/RichTextEditorControlsGroup.mjs.map +1 -1
  37. package/esm/RichTextEditorToolbar/RichTextEditorToolbar.mjs +2 -2
  38. package/esm/RichTextEditorToolbar/RichTextEditorToolbar.mjs.map +1 -1
  39. package/esm/icons/Icons.mjs +258 -38
  40. package/esm/icons/Icons.mjs.map +1 -1
  41. package/lib/RichTextEditor.context.d.ts +1 -1
  42. package/lib/RichTextEditor.d.ts +0 -1
  43. package/lib/RichTextEditorControl/RichTextEditorColorControl.d.ts +1 -2
  44. package/lib/RichTextEditorControl/RichTextEditorColorPickerControl.d.ts +1 -2
  45. package/lib/RichTextEditorControl/RichTextEditorControl.d.ts +2 -3
  46. package/lib/RichTextEditorControl/controls.d.ts +31 -32
  47. package/lib/RichTextEditorToolbar/RichTextEditorToolbar.d.ts +0 -1
  48. package/lib/icons/Icons.d.ts +37 -38
  49. package/package.json +5 -5
@@ -1,8 +1,8 @@
1
1
  'use client';
2
- import React from 'react';
2
+ import { jsxs, jsx } from 'react/jsx-runtime';
3
3
 
4
4
  function IconBase(props) {
5
- return /* @__PURE__ */ React.createElement(
5
+ return /* @__PURE__ */ jsx(
6
6
  "svg",
7
7
  {
8
8
  ...props,
@@ -17,112 +17,332 @@ function IconBase(props) {
17
17
  );
18
18
  }
19
19
  function IconBold(props) {
20
- 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" }));
20
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
21
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
22
+ /* @__PURE__ */ jsx("path", { d: "M7 5h6a3.5 3.5 0 0 1 0 7h-6z" }),
23
+ /* @__PURE__ */ jsx("path", { d: "M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7" })
24
+ ] });
21
25
  }
22
26
  function IconItalic(props) {
23
- 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" }));
27
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
28
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
29
+ /* @__PURE__ */ jsx("path", { d: "M11 5l6 0" }),
30
+ /* @__PURE__ */ jsx("path", { d: "M7 19l6 0" }),
31
+ /* @__PURE__ */ jsx("path", { d: "M14 5l-4 14" })
32
+ ] });
24
33
  }
25
34
  function IconUnderline(props) {
26
- 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" }));
35
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
36
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
37
+ /* @__PURE__ */ jsx("path", { d: "M7 5v5a5 5 0 0 0 10 0v-5" }),
38
+ /* @__PURE__ */ jsx("path", { d: "M5 19h14" })
39
+ ] });
27
40
  }
28
41
  function IconStrikethrough(props) {
29
- 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" }));
42
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
43
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
44
+ /* @__PURE__ */ jsx("path", { d: "M5 12l14 0" }),
45
+ /* @__PURE__ */ 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" })
46
+ ] });
30
47
  }
31
48
  function IconClearFormatting(props) {
32
- 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" }));
49
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
50
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
51
+ /* @__PURE__ */ jsx("path", { d: "M17 15l4 4m0 -4l-4 4" }),
52
+ /* @__PURE__ */ jsx("path", { d: "M7 6v-1h11v1" }),
53
+ /* @__PURE__ */ jsx("path", { d: "M7 19l4 0" }),
54
+ /* @__PURE__ */ jsx("path", { d: "M13 5l-4 14" })
55
+ ] });
33
56
  }
34
57
  function IconH1(props) {
35
- 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" }));
58
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
59
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
60
+ /* @__PURE__ */ jsx("path", { d: "M19 18v-8l-2 2" }),
61
+ /* @__PURE__ */ jsx("path", { d: "M4 6v12" }),
62
+ /* @__PURE__ */ jsx("path", { d: "M12 6v12" }),
63
+ /* @__PURE__ */ jsx("path", { d: "M11 18h2" }),
64
+ /* @__PURE__ */ jsx("path", { d: "M3 18h2" }),
65
+ /* @__PURE__ */ jsx("path", { d: "M4 12h8" }),
66
+ /* @__PURE__ */ jsx("path", { d: "M3 6h2" }),
67
+ /* @__PURE__ */ jsx("path", { d: "M11 6h2" })
68
+ ] });
36
69
  }
37
70
  function IconH2(props) {
38
- 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" }));
71
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
72
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
73
+ /* @__PURE__ */ jsx("path", { d: "M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0" }),
74
+ /* @__PURE__ */ jsx("path", { d: "M4 6v12" }),
75
+ /* @__PURE__ */ jsx("path", { d: "M12 6v12" }),
76
+ /* @__PURE__ */ jsx("path", { d: "M11 18h2" }),
77
+ /* @__PURE__ */ jsx("path", { d: "M3 18h2" }),
78
+ /* @__PURE__ */ jsx("path", { d: "M4 12h8" }),
79
+ /* @__PURE__ */ jsx("path", { d: "M3 6h2" }),
80
+ /* @__PURE__ */ jsx("path", { d: "M11 6h2" })
81
+ ] });
39
82
  }
40
83
  function IconH3(props) {
41
- 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" }));
84
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
85
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
86
+ /* @__PURE__ */ jsx("path", { d: "M19 14a2 2 0 1 0 -2 -2" }),
87
+ /* @__PURE__ */ jsx("path", { d: "M17 16a2 2 0 1 0 2 -2" }),
88
+ /* @__PURE__ */ jsx("path", { d: "M4 6v12" }),
89
+ /* @__PURE__ */ jsx("path", { d: "M12 6v12" }),
90
+ /* @__PURE__ */ jsx("path", { d: "M11 18h2" }),
91
+ /* @__PURE__ */ jsx("path", { d: "M3 18h2" }),
92
+ /* @__PURE__ */ jsx("path", { d: "M4 12h8" }),
93
+ /* @__PURE__ */ jsx("path", { d: "M3 6h2" }),
94
+ /* @__PURE__ */ jsx("path", { d: "M11 6h2" })
95
+ ] });
42
96
  }
43
97
  function IconH4(props) {
44
- 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" }));
98
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
99
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
100
+ /* @__PURE__ */ jsx("path", { d: "M20 18v-8l-4 6h5" }),
101
+ /* @__PURE__ */ jsx("path", { d: "M4 6v12" }),
102
+ /* @__PURE__ */ jsx("path", { d: "M12 6v12" }),
103
+ /* @__PURE__ */ jsx("path", { d: "M11 18h2" }),
104
+ /* @__PURE__ */ jsx("path", { d: "M3 18h2" }),
105
+ /* @__PURE__ */ jsx("path", { d: "M4 12h8" }),
106
+ /* @__PURE__ */ jsx("path", { d: "M3 6h2" }),
107
+ /* @__PURE__ */ jsx("path", { d: "M11 6h2" })
108
+ ] });
45
109
  }
46
110
  function IconH5(props) {
47
- 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" }));
111
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
112
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
113
+ /* @__PURE__ */ jsx("path", { d: "M17 18h2a2 2 0 1 0 0 -4h-2v-4h4" }),
114
+ /* @__PURE__ */ jsx("path", { d: "M4 6v12" }),
115
+ /* @__PURE__ */ jsx("path", { d: "M12 6v12" }),
116
+ /* @__PURE__ */ jsx("path", { d: "M11 18h2" }),
117
+ /* @__PURE__ */ jsx("path", { d: "M3 18h2" }),
118
+ /* @__PURE__ */ jsx("path", { d: "M4 12h8" }),
119
+ /* @__PURE__ */ jsx("path", { d: "M3 6h2" }),
120
+ /* @__PURE__ */ jsx("path", { d: "M11 6h2" })
121
+ ] });
48
122
  }
49
123
  function IconH6(props) {
50
- 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" }));
124
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
125
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
126
+ /* @__PURE__ */ jsx("path", { d: "M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z" }),
127
+ /* @__PURE__ */ jsx("path", { d: "M21 12a2 2 0 1 0 -4 0v4" }),
128
+ /* @__PURE__ */ jsx("path", { d: "M4 6v12" }),
129
+ /* @__PURE__ */ jsx("path", { d: "M12 6v12" }),
130
+ /* @__PURE__ */ jsx("path", { d: "M11 18h2" }),
131
+ /* @__PURE__ */ jsx("path", { d: "M3 18h2" }),
132
+ /* @__PURE__ */ jsx("path", { d: "M4 12h8" }),
133
+ /* @__PURE__ */ jsx("path", { d: "M3 6h2" }),
134
+ /* @__PURE__ */ jsx("path", { d: "M11 6h2" })
135
+ ] });
51
136
  }
52
137
  function IconList(props) {
53
- 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" }));
138
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
139
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
140
+ /* @__PURE__ */ jsx("path", { d: "M9 6l11 0" }),
141
+ /* @__PURE__ */ jsx("path", { d: "M9 12l11 0" }),
142
+ /* @__PURE__ */ jsx("path", { d: "M9 18l11 0" }),
143
+ /* @__PURE__ */ jsx("path", { d: "M5 6l0 .01" }),
144
+ /* @__PURE__ */ jsx("path", { d: "M5 12l0 .01" }),
145
+ /* @__PURE__ */ jsx("path", { d: "M5 18l0 .01" })
146
+ ] });
54
147
  }
55
148
  function IconListNumbers(props) {
56
- 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" }));
149
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
150
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
151
+ /* @__PURE__ */ jsx("path", { d: "M11 6h9" }),
152
+ /* @__PURE__ */ jsx("path", { d: "M11 12h9" }),
153
+ /* @__PURE__ */ jsx("path", { d: "M12 18h8" }),
154
+ /* @__PURE__ */ jsx("path", { d: "M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4" }),
155
+ /* @__PURE__ */ jsx("path", { d: "M6 10v-6l-2 2" })
156
+ ] });
57
157
  }
58
158
  function IconUnlink(props) {
59
- 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" }));
159
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
160
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
161
+ /* @__PURE__ */ jsx("path", { d: "M17 22v-2" }),
162
+ /* @__PURE__ */ jsx("path", { d: "M9 15l6 -6" }),
163
+ /* @__PURE__ */ jsx("path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" }),
164
+ /* @__PURE__ */ 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" }),
165
+ /* @__PURE__ */ jsx("path", { d: "M20 17h2" }),
166
+ /* @__PURE__ */ jsx("path", { d: "M2 7h2" }),
167
+ /* @__PURE__ */ jsx("path", { d: "M7 2v2" })
168
+ ] });
60
169
  }
61
170
  function IconBlockquote(props) {
62
- 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" }));
171
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
172
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
173
+ /* @__PURE__ */ jsx("path", { d: "M6 15h15" }),
174
+ /* @__PURE__ */ jsx("path", { d: "M21 19h-15" }),
175
+ /* @__PURE__ */ jsx("path", { d: "M15 11h6" }),
176
+ /* @__PURE__ */ jsx("path", { d: "M21 7h-6" }),
177
+ /* @__PURE__ */ jsx("path", { d: "M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2" }),
178
+ /* @__PURE__ */ jsx("path", { d: "M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2" })
179
+ ] });
63
180
  }
64
181
  function IconAlignLeft(props) {
65
- 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" }));
182
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
183
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
184
+ /* @__PURE__ */ jsx("path", { d: "M4 6l16 0" }),
185
+ /* @__PURE__ */ jsx("path", { d: "M4 12l10 0" }),
186
+ /* @__PURE__ */ jsx("path", { d: "M4 18l14 0" })
187
+ ] });
66
188
  }
67
189
  function IconAlignRight(props) {
68
- 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" }));
190
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
191
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
192
+ /* @__PURE__ */ jsx("path", { d: "M4 6l16 0" }),
193
+ /* @__PURE__ */ jsx("path", { d: "M10 12l10 0" }),
194
+ /* @__PURE__ */ jsx("path", { d: "M6 18l14 0" })
195
+ ] });
69
196
  }
70
197
  function IconAlignCenter(props) {
71
- 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" }));
198
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
199
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
200
+ /* @__PURE__ */ jsx("path", { d: "M4 6l16 0" }),
201
+ /* @__PURE__ */ jsx("path", { d: "M8 12l8 0" }),
202
+ /* @__PURE__ */ jsx("path", { d: "M6 18l12 0" })
203
+ ] });
72
204
  }
73
205
  function IconAlignJustified(props) {
74
- 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" }));
206
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
207
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
208
+ /* @__PURE__ */ jsx("path", { d: "M4 6l16 0" }),
209
+ /* @__PURE__ */ jsx("path", { d: "M4 12l16 0" }),
210
+ /* @__PURE__ */ jsx("path", { d: "M4 18l12 0" })
211
+ ] });
75
212
  }
76
213
  function IconSubscript(props) {
77
- 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" }));
214
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
215
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
216
+ /* @__PURE__ */ jsx("path", { d: "M5 7l8 10m-8 0l8 -10" }),
217
+ /* @__PURE__ */ jsx("path", { d: "M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" })
218
+ ] });
78
219
  }
79
220
  function IconSuperscript(props) {
80
- 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" }));
221
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
222
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
223
+ /* @__PURE__ */ jsx("path", { d: "M5 7l8 10m-8 0l8 -10" }),
224
+ /* @__PURE__ */ jsx("path", { d: "M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" })
225
+ ] });
81
226
  }
82
227
  function IconCode(props) {
83
- 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" }));
228
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
229
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
230
+ /* @__PURE__ */ jsx("path", { d: "M7 8l-4 4l4 4" }),
231
+ /* @__PURE__ */ jsx("path", { d: "M17 8l4 4l-4 4" }),
232
+ /* @__PURE__ */ jsx("path", { d: "M14 4l-4 16" })
233
+ ] });
84
234
  }
85
235
  function IconHighlight(props) {
86
- 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" }));
236
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
237
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
238
+ /* @__PURE__ */ jsx("path", { d: "M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4" }),
239
+ /* @__PURE__ */ jsx("path", { d: "M12.5 5.5l4 4" }),
240
+ /* @__PURE__ */ jsx("path", { d: "M4.5 13.5l4 4" }),
241
+ /* @__PURE__ */ jsx("path", { d: "M21 15v4h-8l4 -4z" })
242
+ ] });
87
243
  }
88
244
  function IconLineDashed(props) {
89
- 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" }));
245
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
246
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
247
+ /* @__PURE__ */ jsx("path", { d: "M5 12h2" }),
248
+ /* @__PURE__ */ jsx("path", { d: "M17 12h2" }),
249
+ /* @__PURE__ */ jsx("path", { d: "M11 12h2" })
250
+ ] });
90
251
  }
91
252
  function IconCircleOff(props) {
92
- 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" }));
253
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
254
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
255
+ /* @__PURE__ */ 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" }),
256
+ /* @__PURE__ */ jsx("path", { d: "M3 3l18 18" })
257
+ ] });
93
258
  }
94
259
  function IconColorPicker(props) {
95
- 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" }));
260
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
261
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
262
+ /* @__PURE__ */ jsx("path", { d: "M11 7l6 6" }),
263
+ /* @__PURE__ */ 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" })
264
+ ] });
96
265
  }
97
266
  function IconX(props) {
98
- 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" }));
267
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
268
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
269
+ /* @__PURE__ */ jsx("path", { d: "M18 6l-12 12" }),
270
+ /* @__PURE__ */ jsx("path", { d: "M6 6l12 12" })
271
+ ] });
99
272
  }
100
273
  function IconPalette(props) {
101
- 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" }));
274
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
275
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
276
+ /* @__PURE__ */ 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" }),
277
+ /* @__PURE__ */ jsx("path", { d: "M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
278
+ /* @__PURE__ */ jsx("path", { d: "M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
279
+ /* @__PURE__ */ jsx("path", { d: "M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" })
280
+ ] });
102
281
  }
103
282
  function IconCheck(props) {
104
- 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" }));
283
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
284
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
285
+ /* @__PURE__ */ jsx("path", { d: "M5 12l5 5l10 -10" })
286
+ ] });
105
287
  }
106
288
  function IconLink(props) {
107
- 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" }));
289
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
290
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
291
+ /* @__PURE__ */ jsx("path", { d: "M9 15l6 -6" }),
292
+ /* @__PURE__ */ jsx("path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" }),
293
+ /* @__PURE__ */ 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" })
294
+ ] });
108
295
  }
109
296
  function IconExternalLink(props) {
110
- 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" }));
297
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
298
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
299
+ /* @__PURE__ */ 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" }),
300
+ /* @__PURE__ */ jsx("path", { d: "M11 13l9 -9" }),
301
+ /* @__PURE__ */ jsx("path", { d: "M15 4h5v5" })
302
+ ] });
111
303
  }
112
304
  function IconArrowBackUp(props) {
113
- 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" }));
305
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
306
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
307
+ /* @__PURE__ */ jsx("path", { d: "M9 14l-4 -4l4 -4" }),
308
+ /* @__PURE__ */ jsx("path", { d: "M5 10h11a4 4 0 1 1 0 8h-1" })
309
+ ] });
114
310
  }
115
311
  function IconArrowForwardUp(props) {
116
- 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" }));
312
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
313
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
314
+ /* @__PURE__ */ jsx("path", { d: "M15 14l4 -4l-4 -4" }),
315
+ /* @__PURE__ */ jsx("path", { d: "M19 10h-11a4 4 0 1 0 0 8h1" })
316
+ ] });
117
317
  }
118
318
  function IconListCheck(props) {
119
- 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" }));
319
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
320
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
321
+ /* @__PURE__ */ jsx("path", { d: "M3.5 5.5l1.5 1.5l2.5 -2.5" }),
322
+ /* @__PURE__ */ jsx("path", { d: "M3.5 11.5l1.5 1.5l2.5 -2.5" }),
323
+ /* @__PURE__ */ jsx("path", { d: "M3.5 17.5l1.5 1.5l2.5 -2.5" }),
324
+ /* @__PURE__ */ jsx("path", { d: "M11 6l9 0" }),
325
+ /* @__PURE__ */ jsx("path", { d: "M11 12l9 0" }),
326
+ /* @__PURE__ */ jsx("path", { d: "M11 18l9 0" })
327
+ ] });
120
328
  }
121
329
  function IconIndentIncrease(props) {
122
- 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" }));
330
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
331
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
332
+ /* @__PURE__ */ jsx("path", { d: "M20 6l-11 0" }),
333
+ /* @__PURE__ */ jsx("path", { d: "M20 12l-7 0" }),
334
+ /* @__PURE__ */ jsx("path", { d: "M20 18l-11 0" }),
335
+ /* @__PURE__ */ jsx("path", { d: "M4 8l4 4l-4 4" })
336
+ ] });
123
337
  }
124
338
  function IconIndentDecrease(props) {
125
- 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" }));
339
+ return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
340
+ /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
341
+ /* @__PURE__ */ jsx("path", { d: "M20 6l-7 0" }),
342
+ /* @__PURE__ */ jsx("path", { d: "M20 12l-9 0" }),
343
+ /* @__PURE__ */ jsx("path", { d: "M20 18l-7 0" }),
344
+ /* @__PURE__ */ jsx("path", { d: "M8 8l-4 4l4 4" })
345
+ ] });
126
346
  }
127
347
 
128
348
  export { IconAlignCenter, IconAlignJustified, IconAlignLeft, IconAlignRight, IconArrowBackUp, IconArrowForwardUp, IconBase, IconBlockquote, IconBold, IconCheck, IconCircleOff, IconClearFormatting, IconCode, IconColorPicker, IconExternalLink, IconH1, IconH2, IconH3, IconH4, IconH5, IconH6, IconHighlight, IconIndentDecrease, IconIndentIncrease, IconItalic, IconLineDashed, IconLink, IconList, IconListCheck, IconListNumbers, IconPalette, IconStrikethrough, IconSubscript, IconSuperscript, IconUnderline, IconUnlink, IconX };