@mantine/tiptap 9.0.0-alpha.5 → 9.0.0-alpha.7

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 (74) hide show
  1. package/cjs/RichTextEditor.cjs +99 -112
  2. package/cjs/RichTextEditor.cjs.map +1 -1
  3. package/cjs/RichTextEditor.context.cjs +7 -8
  4. package/cjs/RichTextEditor.context.cjs.map +1 -1
  5. package/cjs/RichTextEditor.module.cjs +21 -0
  6. package/cjs/RichTextEditor.module.cjs.map +1 -0
  7. package/cjs/RichTextEditorContent/RichTextEditorContent.cjs +44 -43
  8. package/cjs/RichTextEditorContent/RichTextEditorContent.cjs.map +1 -1
  9. package/cjs/RichTextEditorControl/RichTextEditorColorControl.cjs +26 -26
  10. package/cjs/RichTextEditorControl/RichTextEditorColorControl.cjs.map +1 -1
  11. package/cjs/RichTextEditorControl/RichTextEditorColorPickerControl.cjs +127 -129
  12. package/cjs/RichTextEditorControl/RichTextEditorColorPickerControl.cjs.map +1 -1
  13. package/cjs/RichTextEditorControl/RichTextEditorControl.cjs +60 -82
  14. package/cjs/RichTextEditorControl/RichTextEditorControl.cjs.map +1 -1
  15. package/cjs/RichTextEditorControl/RichTextEditorLinkControl.cjs +120 -132
  16. package/cjs/RichTextEditorControl/RichTextEditorLinkControl.cjs.map +1 -1
  17. package/cjs/RichTextEditorControl/RichTextEditorSourceCodeControl.cjs +34 -37
  18. package/cjs/RichTextEditorControl/RichTextEditorSourceCodeControl.cjs.map +1 -1
  19. package/cjs/RichTextEditorControl/controls.cjs +240 -186
  20. package/cjs/RichTextEditorControl/controls.cjs.map +1 -1
  21. package/cjs/RichTextEditorControlsGroup/RichTextEditorControlsGroup.cjs +24 -23
  22. package/cjs/RichTextEditorControlsGroup/RichTextEditorControlsGroup.cjs.map +1 -1
  23. package/cjs/RichTextEditorToolbar/RichTextEditorToolbar.cjs +26 -36
  24. package/cjs/RichTextEditorToolbar/RichTextEditorToolbar.cjs.map +1 -1
  25. package/cjs/_virtual/_rolldown/runtime.cjs +24 -0
  26. package/cjs/extensions/Link.cjs +12 -19
  27. package/cjs/extensions/Link.cjs.map +1 -1
  28. package/cjs/extensions/TaskList.cjs +16 -23
  29. package/cjs/extensions/TaskList.cjs.map +1 -1
  30. package/cjs/icons/Icons.cjs +536 -289
  31. package/cjs/icons/Icons.cjs.map +1 -1
  32. package/cjs/index.cjs +57 -62
  33. package/cjs/labels.cjs +51 -55
  34. package/cjs/labels.cjs.map +1 -1
  35. package/esm/RichTextEditor.context.mjs +6 -5
  36. package/esm/RichTextEditor.context.mjs.map +1 -1
  37. package/esm/RichTextEditor.mjs +58 -70
  38. package/esm/RichTextEditor.mjs.map +1 -1
  39. package/esm/RichTextEditor.module.mjs +21 -0
  40. package/esm/RichTextEditor.module.mjs.map +1 -0
  41. package/esm/RichTextEditorContent/RichTextEditorContent.mjs +42 -40
  42. package/esm/RichTextEditorContent/RichTextEditorContent.mjs.map +1 -1
  43. package/esm/RichTextEditorControl/RichTextEditorColorControl.mjs +25 -24
  44. package/esm/RichTextEditorControl/RichTextEditorColorControl.mjs.map +1 -1
  45. package/esm/RichTextEditorControl/RichTextEditorColorPickerControl.mjs +126 -127
  46. package/esm/RichTextEditorControl/RichTextEditorColorPickerControl.mjs.map +1 -1
  47. package/esm/RichTextEditorControl/RichTextEditorControl.mjs +58 -79
  48. package/esm/RichTextEditorControl/RichTextEditorControl.mjs.map +1 -1
  49. package/esm/RichTextEditorControl/RichTextEditorLinkControl.mjs +117 -128
  50. package/esm/RichTextEditorControl/RichTextEditorLinkControl.mjs.map +1 -1
  51. package/esm/RichTextEditorControl/RichTextEditorSourceCodeControl.mjs +33 -35
  52. package/esm/RichTextEditorControl/RichTextEditorSourceCodeControl.mjs.map +1 -1
  53. package/esm/RichTextEditorControl/controls.mjs +179 -124
  54. package/esm/RichTextEditorControl/controls.mjs.map +1 -1
  55. package/esm/RichTextEditorControlsGroup/RichTextEditorControlsGroup.mjs +22 -20
  56. package/esm/RichTextEditorControlsGroup/RichTextEditorControlsGroup.mjs.map +1 -1
  57. package/esm/RichTextEditorToolbar/RichTextEditorToolbar.mjs +24 -33
  58. package/esm/RichTextEditorToolbar/RichTextEditorToolbar.mjs.map +1 -1
  59. package/esm/extensions/Link.mjs +10 -13
  60. package/esm/extensions/Link.mjs.map +1 -1
  61. package/esm/extensions/TaskList.mjs +16 -21
  62. package/esm/extensions/TaskList.mjs.map +1 -1
  63. package/esm/icons/Icons.mjs +535 -286
  64. package/esm/icons/Icons.mjs.map +1 -1
  65. package/esm/index.mjs +14 -14
  66. package/esm/labels.mjs +51 -53
  67. package/esm/labels.mjs.map +1 -1
  68. package/package.json +3 -3
  69. package/cjs/RichTextEditor.module.css.cjs +0 -7
  70. package/cjs/RichTextEditor.module.css.cjs.map +0 -1
  71. package/cjs/index.cjs.map +0 -1
  72. package/esm/RichTextEditor.module.css.mjs +0 -5
  73. package/esm/RichTextEditor.module.css.mjs.map +0 -1
  74. package/esm/index.mjs.map +0 -1
@@ -1,362 +1,611 @@
1
- 'use client';
2
- import { jsxs, jsx } from 'react/jsx-runtime';
3
-
1
+ "use client";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ //#region packages/@mantine/tiptap/src/icons/Icons.tsx
4
4
  function IconBase(props) {
5
- return /* @__PURE__ */ jsx(
6
- "svg",
7
- {
8
- ...props,
9
- xmlns: "http://www.w3.org/2000/svg",
10
- viewBox: "0 0 24 24",
11
- strokeWidth: "1.5",
12
- stroke: "currentColor",
13
- fill: "none",
14
- strokeLinecap: "round",
15
- strokeLinejoin: "round"
16
- }
17
- );
5
+ return /* @__PURE__ */ jsx("svg", {
6
+ ...props,
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ viewBox: "0 0 24 24",
9
+ strokeWidth: "1.5",
10
+ stroke: "currentColor",
11
+ fill: "none",
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round"
14
+ });
18
15
  }
19
16
  function IconBold(props) {
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
- ] });
17
+ return /* @__PURE__ */ jsxs(IconBase, {
18
+ ...props,
19
+ children: [
20
+ /* @__PURE__ */ jsx("path", {
21
+ stroke: "none",
22
+ d: "M0 0h24v24H0z",
23
+ fill: "none"
24
+ }),
25
+ /* @__PURE__ */ jsx("path", { d: "M7 5h6a3.5 3.5 0 0 1 0 7h-6z" }),
26
+ /* @__PURE__ */ jsx("path", { d: "M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7" })
27
+ ]
28
+ });
25
29
  }
26
30
  function IconItalic(props) {
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
- ] });
31
+ return /* @__PURE__ */ jsxs(IconBase, {
32
+ ...props,
33
+ children: [
34
+ /* @__PURE__ */ jsx("path", {
35
+ stroke: "none",
36
+ d: "M0 0h24v24H0z",
37
+ fill: "none"
38
+ }),
39
+ /* @__PURE__ */ jsx("path", { d: "M11 5l6 0" }),
40
+ /* @__PURE__ */ jsx("path", { d: "M7 19l6 0" }),
41
+ /* @__PURE__ */ jsx("path", { d: "M14 5l-4 14" })
42
+ ]
43
+ });
33
44
  }
34
45
  function IconUnderline(props) {
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
- ] });
46
+ return /* @__PURE__ */ jsxs(IconBase, {
47
+ ...props,
48
+ children: [
49
+ /* @__PURE__ */ jsx("path", {
50
+ stroke: "none",
51
+ d: "M0 0h24v24H0z",
52
+ fill: "none"
53
+ }),
54
+ /* @__PURE__ */ jsx("path", { d: "M7 5v5a5 5 0 0 0 10 0v-5" }),
55
+ /* @__PURE__ */ jsx("path", { d: "M5 19h14" })
56
+ ]
57
+ });
40
58
  }
41
59
  function IconStrikethrough(props) {
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
- ] });
60
+ return /* @__PURE__ */ jsxs(IconBase, {
61
+ ...props,
62
+ children: [
63
+ /* @__PURE__ */ jsx("path", {
64
+ stroke: "none",
65
+ d: "M0 0h24v24H0z",
66
+ fill: "none"
67
+ }),
68
+ /* @__PURE__ */ jsx("path", { d: "M5 12l14 0" }),
69
+ /* @__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" })
70
+ ]
71
+ });
47
72
  }
48
73
  function IconClearFormatting(props) {
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
- ] });
74
+ return /* @__PURE__ */ jsxs(IconBase, {
75
+ ...props,
76
+ children: [
77
+ /* @__PURE__ */ jsx("path", {
78
+ stroke: "none",
79
+ d: "M0 0h24v24H0z",
80
+ fill: "none"
81
+ }),
82
+ /* @__PURE__ */ jsx("path", { d: "M17 15l4 4m0 -4l-4 4" }),
83
+ /* @__PURE__ */ jsx("path", { d: "M7 6v-1h11v1" }),
84
+ /* @__PURE__ */ jsx("path", { d: "M7 19l4 0" }),
85
+ /* @__PURE__ */ jsx("path", { d: "M13 5l-4 14" })
86
+ ]
87
+ });
56
88
  }
57
89
  function IconH1(props) {
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
- ] });
90
+ return /* @__PURE__ */ jsxs(IconBase, {
91
+ ...props,
92
+ children: [
93
+ /* @__PURE__ */ jsx("path", {
94
+ stroke: "none",
95
+ d: "M0 0h24v24H0z",
96
+ fill: "none"
97
+ }),
98
+ /* @__PURE__ */ jsx("path", { d: "M19 18v-8l-2 2" }),
99
+ /* @__PURE__ */ jsx("path", { d: "M4 6v12" }),
100
+ /* @__PURE__ */ jsx("path", { d: "M12 6v12" }),
101
+ /* @__PURE__ */ jsx("path", { d: "M11 18h2" }),
102
+ /* @__PURE__ */ jsx("path", { d: "M3 18h2" }),
103
+ /* @__PURE__ */ jsx("path", { d: "M4 12h8" }),
104
+ /* @__PURE__ */ jsx("path", { d: "M3 6h2" }),
105
+ /* @__PURE__ */ jsx("path", { d: "M11 6h2" })
106
+ ]
107
+ });
69
108
  }
70
109
  function IconH2(props) {
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
- ] });
110
+ return /* @__PURE__ */ jsxs(IconBase, {
111
+ ...props,
112
+ children: [
113
+ /* @__PURE__ */ jsx("path", {
114
+ stroke: "none",
115
+ d: "M0 0h24v24H0z",
116
+ fill: "none"
117
+ }),
118
+ /* @__PURE__ */ jsx("path", { d: "M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0" }),
119
+ /* @__PURE__ */ jsx("path", { d: "M4 6v12" }),
120
+ /* @__PURE__ */ jsx("path", { d: "M12 6v12" }),
121
+ /* @__PURE__ */ jsx("path", { d: "M11 18h2" }),
122
+ /* @__PURE__ */ jsx("path", { d: "M3 18h2" }),
123
+ /* @__PURE__ */ jsx("path", { d: "M4 12h8" }),
124
+ /* @__PURE__ */ jsx("path", { d: "M3 6h2" }),
125
+ /* @__PURE__ */ jsx("path", { d: "M11 6h2" })
126
+ ]
127
+ });
82
128
  }
83
129
  function IconH3(props) {
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
- ] });
130
+ return /* @__PURE__ */ jsxs(IconBase, {
131
+ ...props,
132
+ children: [
133
+ /* @__PURE__ */ jsx("path", {
134
+ stroke: "none",
135
+ d: "M0 0h24v24H0z",
136
+ fill: "none"
137
+ }),
138
+ /* @__PURE__ */ jsx("path", { d: "M19 14a2 2 0 1 0 -2 -2" }),
139
+ /* @__PURE__ */ jsx("path", { d: "M17 16a2 2 0 1 0 2 -2" }),
140
+ /* @__PURE__ */ jsx("path", { d: "M4 6v12" }),
141
+ /* @__PURE__ */ jsx("path", { d: "M12 6v12" }),
142
+ /* @__PURE__ */ jsx("path", { d: "M11 18h2" }),
143
+ /* @__PURE__ */ jsx("path", { d: "M3 18h2" }),
144
+ /* @__PURE__ */ jsx("path", { d: "M4 12h8" }),
145
+ /* @__PURE__ */ jsx("path", { d: "M3 6h2" }),
146
+ /* @__PURE__ */ jsx("path", { d: "M11 6h2" })
147
+ ]
148
+ });
96
149
  }
97
150
  function IconH4(props) {
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
- ] });
151
+ return /* @__PURE__ */ jsxs(IconBase, {
152
+ ...props,
153
+ children: [
154
+ /* @__PURE__ */ jsx("path", {
155
+ stroke: "none",
156
+ d: "M0 0h24v24H0z",
157
+ fill: "none"
158
+ }),
159
+ /* @__PURE__ */ jsx("path", { d: "M20 18v-8l-4 6h5" }),
160
+ /* @__PURE__ */ jsx("path", { d: "M4 6v12" }),
161
+ /* @__PURE__ */ jsx("path", { d: "M12 6v12" }),
162
+ /* @__PURE__ */ jsx("path", { d: "M11 18h2" }),
163
+ /* @__PURE__ */ jsx("path", { d: "M3 18h2" }),
164
+ /* @__PURE__ */ jsx("path", { d: "M4 12h8" }),
165
+ /* @__PURE__ */ jsx("path", { d: "M3 6h2" }),
166
+ /* @__PURE__ */ jsx("path", { d: "M11 6h2" })
167
+ ]
168
+ });
109
169
  }
110
170
  function IconH5(props) {
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
- ] });
171
+ return /* @__PURE__ */ jsxs(IconBase, {
172
+ ...props,
173
+ children: [
174
+ /* @__PURE__ */ jsx("path", {
175
+ stroke: "none",
176
+ d: "M0 0h24v24H0z",
177
+ fill: "none"
178
+ }),
179
+ /* @__PURE__ */ jsx("path", { d: "M17 18h2a2 2 0 1 0 0 -4h-2v-4h4" }),
180
+ /* @__PURE__ */ jsx("path", { d: "M4 6v12" }),
181
+ /* @__PURE__ */ jsx("path", { d: "M12 6v12" }),
182
+ /* @__PURE__ */ jsx("path", { d: "M11 18h2" }),
183
+ /* @__PURE__ */ jsx("path", { d: "M3 18h2" }),
184
+ /* @__PURE__ */ jsx("path", { d: "M4 12h8" }),
185
+ /* @__PURE__ */ jsx("path", { d: "M3 6h2" }),
186
+ /* @__PURE__ */ jsx("path", { d: "M11 6h2" })
187
+ ]
188
+ });
122
189
  }
123
190
  function IconH6(props) {
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
- ] });
191
+ return /* @__PURE__ */ jsxs(IconBase, {
192
+ ...props,
193
+ children: [
194
+ /* @__PURE__ */ jsx("path", {
195
+ stroke: "none",
196
+ d: "M0 0h24v24H0z",
197
+ fill: "none"
198
+ }),
199
+ /* @__PURE__ */ jsx("path", { d: "M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z" }),
200
+ /* @__PURE__ */ jsx("path", { d: "M21 12a2 2 0 1 0 -4 0v4" }),
201
+ /* @__PURE__ */ jsx("path", { d: "M4 6v12" }),
202
+ /* @__PURE__ */ jsx("path", { d: "M12 6v12" }),
203
+ /* @__PURE__ */ jsx("path", { d: "M11 18h2" }),
204
+ /* @__PURE__ */ jsx("path", { d: "M3 18h2" }),
205
+ /* @__PURE__ */ jsx("path", { d: "M4 12h8" }),
206
+ /* @__PURE__ */ jsx("path", { d: "M3 6h2" }),
207
+ /* @__PURE__ */ jsx("path", { d: "M11 6h2" })
208
+ ]
209
+ });
136
210
  }
137
211
  function IconList(props) {
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
- ] });
212
+ return /* @__PURE__ */ jsxs(IconBase, {
213
+ ...props,
214
+ children: [
215
+ /* @__PURE__ */ jsx("path", {
216
+ stroke: "none",
217
+ d: "M0 0h24v24H0z",
218
+ fill: "none"
219
+ }),
220
+ /* @__PURE__ */ jsx("path", { d: "M9 6l11 0" }),
221
+ /* @__PURE__ */ jsx("path", { d: "M9 12l11 0" }),
222
+ /* @__PURE__ */ jsx("path", { d: "M9 18l11 0" }),
223
+ /* @__PURE__ */ jsx("path", { d: "M5 6l0 .01" }),
224
+ /* @__PURE__ */ jsx("path", { d: "M5 12l0 .01" }),
225
+ /* @__PURE__ */ jsx("path", { d: "M5 18l0 .01" })
226
+ ]
227
+ });
147
228
  }
148
229
  function IconListNumbers(props) {
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
- ] });
230
+ return /* @__PURE__ */ jsxs(IconBase, {
231
+ ...props,
232
+ children: [
233
+ /* @__PURE__ */ jsx("path", {
234
+ stroke: "none",
235
+ d: "M0 0h24v24H0z",
236
+ fill: "none"
237
+ }),
238
+ /* @__PURE__ */ jsx("path", { d: "M11 6h9" }),
239
+ /* @__PURE__ */ jsx("path", { d: "M11 12h9" }),
240
+ /* @__PURE__ */ jsx("path", { d: "M12 18h8" }),
241
+ /* @__PURE__ */ jsx("path", { d: "M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4" }),
242
+ /* @__PURE__ */ jsx("path", { d: "M6 10v-6l-2 2" })
243
+ ]
244
+ });
157
245
  }
158
246
  function IconUnlink(props) {
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
- ] });
247
+ return /* @__PURE__ */ jsxs(IconBase, {
248
+ ...props,
249
+ children: [
250
+ /* @__PURE__ */ jsx("path", {
251
+ stroke: "none",
252
+ d: "M0 0h24v24H0z",
253
+ fill: "none"
254
+ }),
255
+ /* @__PURE__ */ jsx("path", { d: "M17 22v-2" }),
256
+ /* @__PURE__ */ jsx("path", { d: "M9 15l6 -6" }),
257
+ /* @__PURE__ */ jsx("path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" }),
258
+ /* @__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" }),
259
+ /* @__PURE__ */ jsx("path", { d: "M20 17h2" }),
260
+ /* @__PURE__ */ jsx("path", { d: "M2 7h2" }),
261
+ /* @__PURE__ */ jsx("path", { d: "M7 2v2" })
262
+ ]
263
+ });
169
264
  }
170
265
  function IconBlockquote(props) {
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
- ] });
266
+ return /* @__PURE__ */ jsxs(IconBase, {
267
+ ...props,
268
+ children: [
269
+ /* @__PURE__ */ jsx("path", {
270
+ stroke: "none",
271
+ d: "M0 0h24v24H0z",
272
+ fill: "none"
273
+ }),
274
+ /* @__PURE__ */ jsx("path", { d: "M6 15h15" }),
275
+ /* @__PURE__ */ jsx("path", { d: "M21 19h-15" }),
276
+ /* @__PURE__ */ jsx("path", { d: "M15 11h6" }),
277
+ /* @__PURE__ */ jsx("path", { d: "M21 7h-6" }),
278
+ /* @__PURE__ */ jsx("path", { d: "M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2" }),
279
+ /* @__PURE__ */ jsx("path", { d: "M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2" })
280
+ ]
281
+ });
180
282
  }
181
283
  function IconAlignLeft(props) {
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
- ] });
284
+ return /* @__PURE__ */ jsxs(IconBase, {
285
+ ...props,
286
+ children: [
287
+ /* @__PURE__ */ jsx("path", {
288
+ stroke: "none",
289
+ d: "M0 0h24v24H0z",
290
+ fill: "none"
291
+ }),
292
+ /* @__PURE__ */ jsx("path", { d: "M4 6l16 0" }),
293
+ /* @__PURE__ */ jsx("path", { d: "M4 12l10 0" }),
294
+ /* @__PURE__ */ jsx("path", { d: "M4 18l14 0" })
295
+ ]
296
+ });
188
297
  }
189
298
  function IconAlignRight(props) {
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
- ] });
299
+ return /* @__PURE__ */ jsxs(IconBase, {
300
+ ...props,
301
+ children: [
302
+ /* @__PURE__ */ jsx("path", {
303
+ stroke: "none",
304
+ d: "M0 0h24v24H0z",
305
+ fill: "none"
306
+ }),
307
+ /* @__PURE__ */ jsx("path", { d: "M4 6l16 0" }),
308
+ /* @__PURE__ */ jsx("path", { d: "M10 12l10 0" }),
309
+ /* @__PURE__ */ jsx("path", { d: "M6 18l14 0" })
310
+ ]
311
+ });
196
312
  }
197
313
  function IconAlignCenter(props) {
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
- ] });
314
+ return /* @__PURE__ */ jsxs(IconBase, {
315
+ ...props,
316
+ children: [
317
+ /* @__PURE__ */ jsx("path", {
318
+ stroke: "none",
319
+ d: "M0 0h24v24H0z",
320
+ fill: "none"
321
+ }),
322
+ /* @__PURE__ */ jsx("path", { d: "M4 6l16 0" }),
323
+ /* @__PURE__ */ jsx("path", { d: "M8 12l8 0" }),
324
+ /* @__PURE__ */ jsx("path", { d: "M6 18l12 0" })
325
+ ]
326
+ });
204
327
  }
205
328
  function IconAlignJustified(props) {
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
- ] });
329
+ return /* @__PURE__ */ jsxs(IconBase, {
330
+ ...props,
331
+ children: [
332
+ /* @__PURE__ */ jsx("path", {
333
+ stroke: "none",
334
+ d: "M0 0h24v24H0z",
335
+ fill: "none"
336
+ }),
337
+ /* @__PURE__ */ jsx("path", { d: "M4 6l16 0" }),
338
+ /* @__PURE__ */ jsx("path", { d: "M4 12l16 0" }),
339
+ /* @__PURE__ */ jsx("path", { d: "M4 18l12 0" })
340
+ ]
341
+ });
212
342
  }
213
343
  function IconSubscript(props) {
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
- ] });
344
+ return /* @__PURE__ */ jsxs(IconBase, {
345
+ ...props,
346
+ children: [
347
+ /* @__PURE__ */ jsx("path", {
348
+ stroke: "none",
349
+ d: "M0 0h24v24H0z",
350
+ fill: "none"
351
+ }),
352
+ /* @__PURE__ */ jsx("path", { d: "M5 7l8 10m-8 0l8 -10" }),
353
+ /* @__PURE__ */ jsx("path", { d: "M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" })
354
+ ]
355
+ });
219
356
  }
220
357
  function IconSuperscript(props) {
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
- ] });
358
+ return /* @__PURE__ */ jsxs(IconBase, {
359
+ ...props,
360
+ children: [
361
+ /* @__PURE__ */ jsx("path", {
362
+ stroke: "none",
363
+ d: "M0 0h24v24H0z",
364
+ fill: "none"
365
+ }),
366
+ /* @__PURE__ */ jsx("path", { d: "M5 7l8 10m-8 0l8 -10" }),
367
+ /* @__PURE__ */ jsx("path", { d: "M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" })
368
+ ]
369
+ });
226
370
  }
227
371
  function IconCode(props) {
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
- ] });
372
+ return /* @__PURE__ */ jsxs(IconBase, {
373
+ ...props,
374
+ children: [
375
+ /* @__PURE__ */ jsx("path", {
376
+ stroke: "none",
377
+ d: "M0 0h24v24H0z",
378
+ fill: "none"
379
+ }),
380
+ /* @__PURE__ */ jsx("path", { d: "M7 8l-4 4l4 4" }),
381
+ /* @__PURE__ */ jsx("path", { d: "M17 8l4 4l-4 4" }),
382
+ /* @__PURE__ */ jsx("path", { d: "M14 4l-4 16" })
383
+ ]
384
+ });
234
385
  }
235
386
  function IconHighlight(props) {
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
- ] });
387
+ return /* @__PURE__ */ jsxs(IconBase, {
388
+ ...props,
389
+ children: [
390
+ /* @__PURE__ */ jsx("path", {
391
+ stroke: "none",
392
+ d: "M0 0h24v24H0z",
393
+ fill: "none"
394
+ }),
395
+ /* @__PURE__ */ jsx("path", { d: "M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4" }),
396
+ /* @__PURE__ */ jsx("path", { d: "M12.5 5.5l4 4" }),
397
+ /* @__PURE__ */ jsx("path", { d: "M4.5 13.5l4 4" }),
398
+ /* @__PURE__ */ jsx("path", { d: "M21 15v4h-8l4 -4z" })
399
+ ]
400
+ });
243
401
  }
244
402
  function IconLineDashed(props) {
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
- ] });
403
+ return /* @__PURE__ */ jsxs(IconBase, {
404
+ ...props,
405
+ children: [
406
+ /* @__PURE__ */ jsx("path", {
407
+ stroke: "none",
408
+ d: "M0 0h24v24H0z",
409
+ fill: "none"
410
+ }),
411
+ /* @__PURE__ */ jsx("path", { d: "M5 12h2" }),
412
+ /* @__PURE__ */ jsx("path", { d: "M17 12h2" }),
413
+ /* @__PURE__ */ jsx("path", { d: "M11 12h2" })
414
+ ]
415
+ });
251
416
  }
252
417
  function IconCircleOff(props) {
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
- ] });
418
+ return /* @__PURE__ */ jsxs(IconBase, {
419
+ ...props,
420
+ children: [
421
+ /* @__PURE__ */ jsx("path", {
422
+ stroke: "none",
423
+ d: "M0 0h24v24H0z",
424
+ fill: "none"
425
+ }),
426
+ /* @__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" }),
427
+ /* @__PURE__ */ jsx("path", { d: "M3 3l18 18" })
428
+ ]
429
+ });
258
430
  }
259
431
  function IconColorPicker(props) {
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
- ] });
432
+ return /* @__PURE__ */ jsxs(IconBase, {
433
+ ...props,
434
+ children: [
435
+ /* @__PURE__ */ jsx("path", {
436
+ stroke: "none",
437
+ d: "M0 0h24v24H0z",
438
+ fill: "none"
439
+ }),
440
+ /* @__PURE__ */ jsx("path", { d: "M11 7l6 6" }),
441
+ /* @__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" })
442
+ ]
443
+ });
265
444
  }
266
445
  function IconX(props) {
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
- ] });
446
+ return /* @__PURE__ */ jsxs(IconBase, {
447
+ ...props,
448
+ children: [
449
+ /* @__PURE__ */ jsx("path", {
450
+ stroke: "none",
451
+ d: "M0 0h24v24H0z",
452
+ fill: "none"
453
+ }),
454
+ /* @__PURE__ */ jsx("path", { d: "M18 6l-12 12" }),
455
+ /* @__PURE__ */ jsx("path", { d: "M6 6l12 12" })
456
+ ]
457
+ });
272
458
  }
273
459
  function IconPalette(props) {
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
- ] });
460
+ return /* @__PURE__ */ jsxs(IconBase, {
461
+ ...props,
462
+ children: [
463
+ /* @__PURE__ */ jsx("path", {
464
+ stroke: "none",
465
+ d: "M0 0h24v24H0z",
466
+ fill: "none"
467
+ }),
468
+ /* @__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" }),
469
+ /* @__PURE__ */ jsx("path", { d: "M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
470
+ /* @__PURE__ */ jsx("path", { d: "M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
471
+ /* @__PURE__ */ jsx("path", { d: "M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" })
472
+ ]
473
+ });
281
474
  }
282
475
  function IconCheck(props) {
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
- ] });
476
+ return /* @__PURE__ */ jsxs(IconBase, {
477
+ ...props,
478
+ children: [/* @__PURE__ */ jsx("path", {
479
+ stroke: "none",
480
+ d: "M0 0h24v24H0z",
481
+ fill: "none"
482
+ }), /* @__PURE__ */ jsx("path", { d: "M5 12l5 5l10 -10" })]
483
+ });
287
484
  }
288
485
  function IconLink(props) {
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
- ] });
486
+ return /* @__PURE__ */ jsxs(IconBase, {
487
+ ...props,
488
+ children: [
489
+ /* @__PURE__ */ jsx("path", {
490
+ stroke: "none",
491
+ d: "M0 0h24v24H0z",
492
+ fill: "none"
493
+ }),
494
+ /* @__PURE__ */ jsx("path", { d: "M9 15l6 -6" }),
495
+ /* @__PURE__ */ jsx("path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" }),
496
+ /* @__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" })
497
+ ]
498
+ });
295
499
  }
296
500
  function IconExternalLink(props) {
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
- ] });
501
+ return /* @__PURE__ */ jsxs(IconBase, {
502
+ ...props,
503
+ children: [
504
+ /* @__PURE__ */ jsx("path", {
505
+ stroke: "none",
506
+ d: "M0 0h24v24H0z",
507
+ fill: "none"
508
+ }),
509
+ /* @__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" }),
510
+ /* @__PURE__ */ jsx("path", { d: "M11 13l9 -9" }),
511
+ /* @__PURE__ */ jsx("path", { d: "M15 4h5v5" })
512
+ ]
513
+ });
303
514
  }
304
515
  function IconArrowBackUp(props) {
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
- ] });
516
+ return /* @__PURE__ */ jsxs(IconBase, {
517
+ ...props,
518
+ children: [
519
+ /* @__PURE__ */ jsx("path", {
520
+ stroke: "none",
521
+ d: "M0 0h24v24H0z",
522
+ fill: "none"
523
+ }),
524
+ /* @__PURE__ */ jsx("path", { d: "M9 14l-4 -4l4 -4" }),
525
+ /* @__PURE__ */ jsx("path", { d: "M5 10h11a4 4 0 1 1 0 8h-1" })
526
+ ]
527
+ });
310
528
  }
311
529
  function IconArrowForwardUp(props) {
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
- ] });
530
+ return /* @__PURE__ */ jsxs(IconBase, {
531
+ ...props,
532
+ children: [
533
+ /* @__PURE__ */ jsx("path", {
534
+ stroke: "none",
535
+ d: "M0 0h24v24H0z",
536
+ fill: "none"
537
+ }),
538
+ /* @__PURE__ */ jsx("path", { d: "M15 14l4 -4l-4 -4" }),
539
+ /* @__PURE__ */ jsx("path", { d: "M19 10h-11a4 4 0 1 0 0 8h1" })
540
+ ]
541
+ });
317
542
  }
318
543
  function IconListCheck(props) {
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
- ] });
544
+ return /* @__PURE__ */ jsxs(IconBase, {
545
+ ...props,
546
+ children: [
547
+ /* @__PURE__ */ jsx("path", {
548
+ stroke: "none",
549
+ d: "M0 0h24v24H0z",
550
+ fill: "none"
551
+ }),
552
+ /* @__PURE__ */ jsx("path", { d: "M3.5 5.5l1.5 1.5l2.5 -2.5" }),
553
+ /* @__PURE__ */ jsx("path", { d: "M3.5 11.5l1.5 1.5l2.5 -2.5" }),
554
+ /* @__PURE__ */ jsx("path", { d: "M3.5 17.5l1.5 1.5l2.5 -2.5" }),
555
+ /* @__PURE__ */ jsx("path", { d: "M11 6l9 0" }),
556
+ /* @__PURE__ */ jsx("path", { d: "M11 12l9 0" }),
557
+ /* @__PURE__ */ jsx("path", { d: "M11 18l9 0" })
558
+ ]
559
+ });
328
560
  }
329
561
  function IconIndentIncrease(props) {
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
- ] });
562
+ return /* @__PURE__ */ jsxs(IconBase, {
563
+ ...props,
564
+ children: [
565
+ /* @__PURE__ */ jsx("path", {
566
+ stroke: "none",
567
+ d: "M0 0h24v24H0z",
568
+ fill: "none"
569
+ }),
570
+ /* @__PURE__ */ jsx("path", { d: "M20 6l-11 0" }),
571
+ /* @__PURE__ */ jsx("path", { d: "M20 12l-7 0" }),
572
+ /* @__PURE__ */ jsx("path", { d: "M20 18l-11 0" }),
573
+ /* @__PURE__ */ jsx("path", { d: "M4 8l4 4l-4 4" })
574
+ ]
575
+ });
337
576
  }
338
577
  function IconIndentDecrease(props) {
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
- ] });
578
+ return /* @__PURE__ */ jsxs(IconBase, {
579
+ ...props,
580
+ children: [
581
+ /* @__PURE__ */ jsx("path", {
582
+ stroke: "none",
583
+ d: "M0 0h24v24H0z",
584
+ fill: "none"
585
+ }),
586
+ /* @__PURE__ */ jsx("path", { d: "M20 6l-7 0" }),
587
+ /* @__PURE__ */ jsx("path", { d: "M20 12l-9 0" }),
588
+ /* @__PURE__ */ jsx("path", { d: "M20 18l-7 0" }),
589
+ /* @__PURE__ */ jsx("path", { d: "M8 8l-4 4l4 4" })
590
+ ]
591
+ });
346
592
  }
347
593
  function IconBraces(props) {
348
- return /* @__PURE__ */ jsxs(IconBase, { ...props, children: [
349
- /* @__PURE__ */ jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
350
- /* @__PURE__ */ jsx(
351
- "path",
352
- {
353
- d: "M19 3v16a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V7.914\n a1 1 0 0 1 .293-.707l3.914-3.914A1 1 0 0 1 9.914 3H18\n a1 1 0 0 1 1 1Z"
354
- }
355
- ),
356
- /* @__PURE__ */ jsx("path", { d: "M10 11l-2 2 2 2" }),
357
- /* @__PURE__ */ jsx("path", { d: "M14 11l2 2-2 2" })
358
- ] });
359
- }
594
+ return /* @__PURE__ */ jsxs(IconBase, {
595
+ ...props,
596
+ children: [
597
+ /* @__PURE__ */ jsx("path", {
598
+ stroke: "none",
599
+ d: "M0 0h24v24H0z",
600
+ fill: "none"
601
+ }),
602
+ /* @__PURE__ */ jsx("path", { d: "M19 3v16a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V7.914\n a1 1 0 0 1 .293-.707l3.914-3.914A1 1 0 0 1 9.914 3H18\n a1 1 0 0 1 1 1Z" }),
603
+ /* @__PURE__ */ jsx("path", { d: "M10 11l-2 2 2 2" }),
604
+ /* @__PURE__ */ jsx("path", { d: "M14 11l2 2-2 2" })
605
+ ]
606
+ });
607
+ }
608
+ //#endregion
609
+ export { IconAlignCenter, IconAlignJustified, IconAlignLeft, IconAlignRight, IconArrowBackUp, IconArrowForwardUp, IconBlockquote, IconBold, IconBraces, 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 };
360
610
 
361
- export { IconAlignCenter, IconAlignJustified, IconAlignLeft, IconAlignRight, IconArrowBackUp, IconArrowForwardUp, IconBase, IconBlockquote, IconBold, IconBraces, 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 };
362
- //# sourceMappingURL=Icons.mjs.map
611
+ //# sourceMappingURL=Icons.mjs.map