@mantine/tiptap
Version:
Rich text editor based on tiptap
402 lines (398 loc) • 20.8 kB
JavaScript
'use client';
'use strict';
var jsxRuntime = require('react/jsx-runtime');
function IconBase(props) {
return /* @__PURE__ */ jsxRuntime.jsx(
"svg",
{
...props,
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
strokeWidth: "1.5",
stroke: "currentColor",
fill: "none",
strokeLinecap: "round",
strokeLinejoin: "round"
}
);
}
function IconBold(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 5h6a3.5 3.5 0 0 1 0 7h-6z" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7" })
] });
}
function IconItalic(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 5l6 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 19l6 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 5l-4 14" })
] });
}
function IconUnderline(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 5v5a5 5 0 0 0 10 0v-5" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 19h14" })
] });
}
function IconStrikethrough(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 12l14 0" }),
/* @__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" })
] });
}
function IconClearFormatting(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 15l4 4m0 -4l-4 4" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 6v-1h11v1" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 19l4 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 5l-4 14" })
] });
}
function IconH1(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 18v-8l-2 2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6v12" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v12" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 18h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h8" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h2" })
] });
}
function IconH2(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__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" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6v12" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v12" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 18h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h8" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h2" })
] });
}
function IconH3(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 14a2 2 0 1 0 -2 -2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 16a2 2 0 1 0 2 -2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6v12" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v12" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 18h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h8" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h2" })
] });
}
function IconH4(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 18v-8l-4 6h5" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6v12" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v12" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 18h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h8" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h2" })
] });
}
function IconH5(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 18h2a2 2 0 1 0 0 -4h-2v-4h4" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6v12" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v12" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 18h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h8" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h2" })
] });
}
function IconH6(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 14a2 2 0 1 0 0 4a2 2 0 0 0 0 -4z" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 12a2 2 0 1 0 -4 0v4" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6v12" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v12" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 18h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h8" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 6h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h2" })
] });
}
function IconList(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 6l11 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 12l11 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 18l11 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 6l0 .01" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 12l0 .01" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 18l0 .01" })
] });
}
function IconListNumbers(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6h9" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 12h9" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 18h8" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 16a2 2 0 1 1 4 0c0 .591 -.5 1 -1 1.5l-3 2.5h4" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 10v-6l-2 2" })
] });
}
function IconUnlink(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 22v-2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 15l6 -6" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" }),
/* @__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" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 17h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 7h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 2v2" })
] });
}
function IconBlockquote(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 15h15" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 19h-15" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 11h6" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 7h-6" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 9h1a1 1 0 1 1 -1 1v-2.5a2 2 0 0 1 2 -2" })
] });
}
function IconAlignLeft(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6l16 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12l10 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 18l14 0" })
] });
}
function IconAlignRight(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6l16 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 12l10 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 18l14 0" })
] });
}
function IconAlignCenter(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6l16 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 12l8 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 18l12 0" })
] });
}
function IconAlignJustified(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6l16 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12l16 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 18l12 0" })
] });
}
function IconSubscript(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 7l8 10m-8 0l8 -10" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 20h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" })
] });
}
function IconSuperscript(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 7l8 10m-8 0l8 -10" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 11h-4l3.5 -4a1.73 1.73 0 0 0 -3.5 -2" })
] });
}
function IconCode(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 8l-4 4l4 4" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 8l4 4l-4 4" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 4l-4 16" })
] });
}
function IconHighlight(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 5.5l4 4" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.5 13.5l4 4" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 15v4h-8l4 -4z" })
] });
}
function IconLineDashed(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 12h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 12h2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 12h2" })
] });
}
function IconCircleOff(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__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" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 3l18 18" })
] });
}
function IconColorPicker(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 7l6 6" }),
/* @__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" })
] });
}
function IconX(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 6l-12 12" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 6l12 12" })
] });
}
function IconPalette(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__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" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.5 10.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" })
] });
}
function IconCheck(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 12l5 5l10 -10" })
] });
}
function IconLink(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 15l6 -6" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" }),
/* @__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" })
] });
}
function IconExternalLink(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__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" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 13l9 -9" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 4h5v5" })
] });
}
function IconArrowBackUp(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 14l-4 -4l4 -4" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 10h11a4 4 0 1 1 0 8h-1" })
] });
}
function IconArrowForwardUp(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 14l4 -4l-4 -4" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 10h-11a4 4 0 1 0 0 8h1" })
] });
}
function IconListCheck(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.5 5.5l1.5 1.5l2.5 -2.5" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.5 11.5l1.5 1.5l2.5 -2.5" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.5 17.5l1.5 1.5l2.5 -2.5" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6l9 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 12l9 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 18l9 0" })
] });
}
function IconIndentIncrease(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 6l-11 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 12l-7 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 18l-11 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 8l4 4l-4 4" })
] });
}
function IconIndentDecrease(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 6l-7 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 12l-9 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 18l-7 0" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 8l-4 4l4 4" })
] });
}
function IconBraces(props) {
return /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
/* @__PURE__ */ jsxRuntime.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"
}
),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 11l-2 2 2 2" }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 11l2 2-2 2" })
] });
}
exports.IconAlignCenter = IconAlignCenter;
exports.IconAlignJustified = IconAlignJustified;
exports.IconAlignLeft = IconAlignLeft;
exports.IconAlignRight = IconAlignRight;
exports.IconArrowBackUp = IconArrowBackUp;
exports.IconArrowForwardUp = IconArrowForwardUp;
exports.IconBase = IconBase;
exports.IconBlockquote = IconBlockquote;
exports.IconBold = IconBold;
exports.IconBraces = IconBraces;
exports.IconCheck = IconCheck;
exports.IconCircleOff = IconCircleOff;
exports.IconClearFormatting = IconClearFormatting;
exports.IconCode = IconCode;
exports.IconColorPicker = IconColorPicker;
exports.IconExternalLink = IconExternalLink;
exports.IconH1 = IconH1;
exports.IconH2 = IconH2;
exports.IconH3 = IconH3;
exports.IconH4 = IconH4;
exports.IconH5 = IconH5;
exports.IconH6 = IconH6;
exports.IconHighlight = IconHighlight;
exports.IconIndentDecrease = IconIndentDecrease;
exports.IconIndentIncrease = IconIndentIncrease;
exports.IconItalic = IconItalic;
exports.IconLineDashed = IconLineDashed;
exports.IconLink = IconLink;
exports.IconList = IconList;
exports.IconListCheck = IconListCheck;
exports.IconListNumbers = IconListNumbers;
exports.IconPalette = IconPalette;
exports.IconStrikethrough = IconStrikethrough;
exports.IconSubscript = IconSubscript;
exports.IconSuperscript = IconSuperscript;
exports.IconUnderline = IconUnderline;
exports.IconUnlink = IconUnlink;
exports.IconX = IconX;
//# sourceMappingURL=Icons.cjs.map