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