@mantine/tiptap 7.8.0 → 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.
- package/cjs/RichTextEditor.cjs +7 -10
- package/cjs/RichTextEditor.cjs.map +1 -1
- package/cjs/RichTextEditorContent/RichTextEditorContent.cjs +14 -18
- package/cjs/RichTextEditorContent/RichTextEditorContent.cjs.map +1 -1
- package/cjs/RichTextEditorControl/RichTextEditorColorControl.cjs +7 -10
- package/cjs/RichTextEditorControl/RichTextEditorColorControl.cjs.map +1 -1
- package/cjs/RichTextEditorControl/RichTextEditorColorPickerControl.cjs +82 -73
- package/cjs/RichTextEditorControl/RichTextEditorColorPickerControl.cjs.map +1 -1
- package/cjs/RichTextEditorControl/RichTextEditorControl.cjs +6 -9
- package/cjs/RichTextEditorControl/RichTextEditorControl.cjs.map +1 -1
- package/cjs/RichTextEditorControl/RichTextEditorLinkControl.cjs +65 -63
- package/cjs/RichTextEditorControl/RichTextEditorLinkControl.cjs.map +1 -1
- package/cjs/RichTextEditorControl/controls.cjs +32 -36
- package/cjs/RichTextEditorControl/controls.cjs.map +1 -1
- package/cjs/RichTextEditorControlsGroup/RichTextEditorControlsGroup.cjs +2 -6
- package/cjs/RichTextEditorControlsGroup/RichTextEditorControlsGroup.cjs.map +1 -1
- package/cjs/RichTextEditorToolbar/RichTextEditorToolbar.cjs +2 -6
- package/cjs/RichTextEditorToolbar/RichTextEditorToolbar.cjs.map +1 -1
- package/cjs/icons/Icons.cjs +258 -42
- package/cjs/icons/Icons.cjs.map +1 -1
- package/esm/RichTextEditor.mjs +6 -5
- package/esm/RichTextEditor.mjs.map +1 -1
- package/esm/RichTextEditorContent/RichTextEditorContent.mjs +14 -14
- package/esm/RichTextEditorContent/RichTextEditorContent.mjs.map +1 -1
- package/esm/RichTextEditorControl/RichTextEditorColorControl.mjs +6 -5
- package/esm/RichTextEditorControl/RichTextEditorColorControl.mjs.map +1 -1
- package/esm/RichTextEditorControl/RichTextEditorColorPickerControl.mjs +80 -67
- package/esm/RichTextEditorControl/RichTextEditorColorPickerControl.mjs.map +1 -1
- package/esm/RichTextEditorControl/RichTextEditorControl.mjs +5 -4
- package/esm/RichTextEditorControl/RichTextEditorControl.mjs.map +1 -1
- package/esm/RichTextEditorControl/RichTextEditorLinkControl.mjs +64 -58
- package/esm/RichTextEditorControl/RichTextEditorLinkControl.mjs.map +1 -1
- package/esm/RichTextEditorControl/controls.mjs +32 -32
- package/esm/RichTextEditorControl/controls.mjs.map +1 -1
- package/esm/RichTextEditorControlsGroup/RichTextEditorControlsGroup.mjs +2 -2
- package/esm/RichTextEditorControlsGroup/RichTextEditorControlsGroup.mjs.map +1 -1
- package/esm/RichTextEditorToolbar/RichTextEditorToolbar.mjs +2 -2
- package/esm/RichTextEditorToolbar/RichTextEditorToolbar.mjs.map +1 -1
- package/esm/icons/Icons.mjs +258 -38
- package/esm/icons/Icons.mjs.map +1 -1
- package/lib/RichTextEditor.context.d.ts +1 -1
- package/lib/RichTextEditor.d.ts +0 -1
- package/lib/RichTextEditorControl/RichTextEditorColorControl.d.ts +1 -2
- package/lib/RichTextEditorControl/RichTextEditorColorPickerControl.d.ts +1 -2
- package/lib/RichTextEditorControl/RichTextEditorControl.d.ts +2 -3
- package/lib/RichTextEditorControl/controls.d.ts +31 -32
- package/lib/RichTextEditorToolbar/RichTextEditorToolbar.d.ts +0 -1
- package/lib/icons/Icons.d.ts +37 -38
- package/package.json +5 -5
package/cjs/icons/Icons.cjs
CHANGED
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
|
|
6
|
-
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
7
|
-
|
|
8
|
-
var React__default = /*#__PURE__*/_interopDefault(React);
|
|
4
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
9
5
|
|
|
10
6
|
function IconBase(props) {
|
|
11
|
-
return /* @__PURE__ */
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
12
8
|
"svg",
|
|
13
9
|
{
|
|
14
10
|
...props,
|
|
@@ -23,112 +19,332 @@ function IconBase(props) {
|
|
|
23
19
|
);
|
|
24
20
|
}
|
|
25
21
|
function IconBold(props) {
|
|
26
|
-
return /* @__PURE__ */
|
|
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
27
|
}
|
|
28
28
|
function IconItalic(props) {
|
|
29
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
30
35
|
}
|
|
31
36
|
function IconUnderline(props) {
|
|
32
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
33
42
|
}
|
|
34
43
|
function IconStrikethrough(props) {
|
|
35
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
36
49
|
}
|
|
37
50
|
function IconClearFormatting(props) {
|
|
38
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
39
58
|
}
|
|
40
59
|
function IconH1(props) {
|
|
41
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
42
71
|
}
|
|
43
72
|
function IconH2(props) {
|
|
44
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
45
84
|
}
|
|
46
85
|
function IconH3(props) {
|
|
47
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
48
98
|
}
|
|
49
99
|
function IconH4(props) {
|
|
50
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
51
111
|
}
|
|
52
112
|
function IconH5(props) {
|
|
53
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
54
124
|
}
|
|
55
125
|
function IconH6(props) {
|
|
56
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
57
138
|
}
|
|
58
139
|
function IconList(props) {
|
|
59
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
60
149
|
}
|
|
61
150
|
function IconListNumbers(props) {
|
|
62
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
63
159
|
}
|
|
64
160
|
function IconUnlink(props) {
|
|
65
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
66
171
|
}
|
|
67
172
|
function IconBlockquote(props) {
|
|
68
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
69
182
|
}
|
|
70
183
|
function IconAlignLeft(props) {
|
|
71
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
72
190
|
}
|
|
73
191
|
function IconAlignRight(props) {
|
|
74
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
75
198
|
}
|
|
76
199
|
function IconAlignCenter(props) {
|
|
77
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
78
206
|
}
|
|
79
207
|
function IconAlignJustified(props) {
|
|
80
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
81
214
|
}
|
|
82
215
|
function IconSubscript(props) {
|
|
83
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
84
221
|
}
|
|
85
222
|
function IconSuperscript(props) {
|
|
86
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
87
228
|
}
|
|
88
229
|
function IconCode(props) {
|
|
89
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
90
236
|
}
|
|
91
237
|
function IconHighlight(props) {
|
|
92
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
93
245
|
}
|
|
94
246
|
function IconLineDashed(props) {
|
|
95
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
96
253
|
}
|
|
97
254
|
function IconCircleOff(props) {
|
|
98
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
99
260
|
}
|
|
100
261
|
function IconColorPicker(props) {
|
|
101
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
102
267
|
}
|
|
103
268
|
function IconX(props) {
|
|
104
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
105
274
|
}
|
|
106
275
|
function IconPalette(props) {
|
|
107
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
108
283
|
}
|
|
109
284
|
function IconCheck(props) {
|
|
110
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
111
289
|
}
|
|
112
290
|
function IconLink(props) {
|
|
113
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
114
297
|
}
|
|
115
298
|
function IconExternalLink(props) {
|
|
116
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
117
305
|
}
|
|
118
306
|
function IconArrowBackUp(props) {
|
|
119
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
120
312
|
}
|
|
121
313
|
function IconArrowForwardUp(props) {
|
|
122
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
123
319
|
}
|
|
124
320
|
function IconListCheck(props) {
|
|
125
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
126
330
|
}
|
|
127
331
|
function IconIndentIncrease(props) {
|
|
128
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
129
339
|
}
|
|
130
340
|
function IconIndentDecrease(props) {
|
|
131
|
-
return /* @__PURE__ */
|
|
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
|
+
] });
|
|
132
348
|
}
|
|
133
349
|
|
|
134
350
|
exports.IconAlignCenter = IconAlignCenter;
|