@plone/components
Version:
ReactJS components for Plone
1,378 lines (1,314 loc) • 101 kB
JavaScript
"use client"
// src/components/icons/AddIcon.tsx
import "react";
// src/components/Icon/Icon.tsx
import React from "react";
import { useSlotProps } from "@react-spectrum/utils";
import { filterDOMProps } from "@react-aria/utils";
import clsx from "clsx";
import { tv } from "tailwind-variants";
var icon = tv({
base: "q icon",
variants: {
size: {
"2xs": "icon-2xs",
xs: "icon-xs",
sm: "icon-sm",
base: "icon-base",
lg: "icon-lg",
xl: "icon-xl",
"2xl": "icon-2xl",
"3xl": "icon-3xl"
}
}
});
function Icon(props) {
props = useSlotProps(props, "icon");
const { children, size, "aria-label": ariaLabel, ...otherProps } = props;
let { "aria-hidden": ariaHidden } = props;
if (!ariaHidden) {
ariaHidden = void 0;
}
const color = props.color?.startsWith("--") ? `var(${props.color})` : props.color || "currentColor";
return React.cloneElement(children, {
...filterDOMProps(otherProps),
focusable: "false",
"aria-label": ariaLabel,
"aria-hidden": ariaLabel ? ariaHidden || void 0 : true,
role: "img",
className: icon({
size,
className: clsx(children.props.className, props.className)
}),
style: { fill: color, ...otherProps.style }
});
}
// src/components/icons/AddIcon.tsx
import { jsx } from "react/jsx-runtime";
var AddIcon = (props) => {
return /* @__PURE__ */ jsx(Icon, { ...props, children: /* @__PURE__ */ jsx(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx("path", { d: "M13 3H11V11H3V13H11V21H13V13H21V11H13V3Z" })
}
) });
};
// src/components/icons/AligncenterIcon.tsx
import "react";
import { jsx as jsx2 } from "react/jsx-runtime";
var AligncenterIcon = (props) => {
return /* @__PURE__ */ jsx2(Icon, { ...props, children: /* @__PURE__ */ jsx2(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx2("path", { d: "M21 7H3V5H21V7ZM17 13H7V11H17V13ZM5 19H19V17H5V19Z" })
}
) });
};
// src/components/icons/AlignleftIcon.tsx
import "react";
import { jsx as jsx3 } from "react/jsx-runtime";
var AlignleftIcon = (props) => {
return /* @__PURE__ */ jsx3(Icon, { ...props, children: /* @__PURE__ */ jsx3(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx3("path", { d: "M21 7H3V5H21V7ZM13 13H3V11H13V13ZM3 19H17V17H3V19Z" })
}
) });
};
// src/components/icons/AlignrightIcon.tsx
import "react";
import { jsx as jsx4 } from "react/jsx-runtime";
var AlignrightIcon = (props) => {
return /* @__PURE__ */ jsx4(Icon, { ...props, children: /* @__PURE__ */ jsx4(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx4("path", { d: "M21 7H3V5H21V7ZM21 13H11V11H21V13ZM7 19H21V17H7V19Z" })
}
) });
};
// src/components/icons/ArchiveIcon.tsx
import "react";
import { jsx as jsx5, jsxs } from "react/jsx-runtime";
var ArchiveIcon = (props) => {
return /* @__PURE__ */ jsx5(Icon, { ...props, children: /* @__PURE__ */ jsxs(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx5("path", { d: "M8 13H16V11H8V13Z" }),
/* @__PURE__ */ jsx5(
"path",
{
fillRule: "evenodd",
d: "M3 3H21V9H20V21H4V9H3V3ZM6 9H18V19H6V9ZM19 5V7H5V5H19Z",
clipRule: "evenodd"
}
)
]
}
) });
};
// src/components/icons/ArrowdownIcon.tsx
import "react";
import { jsx as jsx6 } from "react/jsx-runtime";
var ArrowdownIcon = (props) => {
return /* @__PURE__ */ jsx6(Icon, { ...props, children: /* @__PURE__ */ jsx6(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx6("path", { d: "M6.70718 13.2929L5.29297 14.7071L12.0001 21.4142L18.7072 14.7071L17.293 13.2929L13.0001 17.5858L13.0001 3L11.0001 3L11.0001 17.5858L6.70718 13.2929Z" })
}
) });
};
// src/components/icons/ArrowleftIcon.tsx
import "react";
import { jsx as jsx7 } from "react/jsx-runtime";
var ArrowleftIcon = (props) => {
return /* @__PURE__ */ jsx7(Icon, { ...props, children: /* @__PURE__ */ jsx7(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx7("path", { d: "M10.7073 6.70718L9.29305 5.29297L2.58594 12.0001L9.29304 18.7072L10.7073 17.293L6.41437 13.0001L21.0002 13.0001V11.0001L6.41436 11.0001L10.7073 6.70718Z" })
}
) });
};
// src/components/icons/ArrowrightIcon.tsx
import "react";
import { jsx as jsx8 } from "react/jsx-runtime";
var ArrowrightIcon = (props) => {
return /* @__PURE__ */ jsx8(Icon, { ...props, children: /* @__PURE__ */ jsx8(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx8("path", { d: "M13.2929 17.293L14.7071 18.7072L21.4142 12.0001L14.7071 5.29297L13.2929 6.70718L17.5858 11.0001H3V13.0001H17.5858L13.2929 17.293Z" })
}
) });
};
// src/components/icons/ArrowtoprightIcon.tsx
import "react";
import { jsx as jsx9 } from "react/jsx-runtime";
var ArrowtoprightIcon = (props) => {
return /* @__PURE__ */ jsx9(Icon, { ...props, children: /* @__PURE__ */ jsx9(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx9("path", { d: "M15.5859 7H9.5V5H19V14.5H17V8.4143L6.70718 18.7071L5.29297 17.2929L15.5859 7Z" })
}
) });
};
// src/components/icons/ArrowupIcon.tsx
import "react";
import { jsx as jsx10 } from "react/jsx-runtime";
var ArrowupIcon = (props) => {
return /* @__PURE__ */ jsx10(Icon, { ...props, children: /* @__PURE__ */ jsx10(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx10("path", { d: "M17.293 10.7073L18.7072 9.29305L12.0001 2.58594L5.29297 9.29304L6.70718 10.7073L11.0001 6.41437L11.0001 21.0002H13.0001L13.0001 6.41436L17.293 10.7073Z" })
}
) });
};
// src/components/icons/AttachmentIcon.tsx
import "react";
import { jsx as jsx11 } from "react/jsx-runtime";
var AttachmentIcon = (props) => {
return /* @__PURE__ */ jsx11(Icon, { ...props, children: /* @__PURE__ */ jsx11(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx11("path", { d: "M10 4C8.34315 4 7 5.34315 7 7V15C7 17.7614 9.23858 20 12 20C14.7614 20 17 17.7614 17 15V4H19V15C19 18.866 15.866 22 12 22C8.13401 22 5 18.866 5 15V7C5 4.23858 7.23858 2 10 2C12.7614 2 15 4.23858 15 7V15C15 16.6569 13.6569 18 12 18C10.3431 18 9 16.6569 9 15L9 7L11 7L11 15C11 15.5523 11.4477 16 12 16C12.5523 16 13 15.5523 13 15V7C13 5.34315 11.6569 4 10 4Z" })
}
) });
};
// src/components/icons/AutomatedcontentIcon.tsx
import "react";
import { jsx as jsx12 } from "react/jsx-runtime";
var AutomatedcontentIcon = (props) => {
return /* @__PURE__ */ jsx12(Icon, { ...props, children: /* @__PURE__ */ jsx12(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx12("path", { d: "M20 8C18.8954 8 18 7.10457 18 6 18 4.89543 18.8954 4 20 4 21.1046 4 22 4.89543 22 6 22 7.10457 21.1046 8 20 8ZM18 12C18 13.1046 18.8954 14 20 14 21.1046 14 22 13.1046 22 12 22 10.8954 21.1046 10 20 10 18.8954 10 18 10.8954 18 12ZM18 18C18 19.1046 18.8954 20 20 20 21.1046 20 22 19.1046 22 18 22 16.8954 21.1046 16 20 16 18.8954 16 18 16.8954 18 18ZM16 5 10 5V19H16V17H12V13L16 13V11L12 11V7H16V5ZM5.5 8.5 2 12 5.5 15.5 9 12 5.5 8.5Z" })
}
) });
};
// src/components/icons/BackgroundIcon.tsx
import "react";
import { jsx as jsx13 } from "react/jsx-runtime";
var BackgroundIcon = (props) => {
return /* @__PURE__ */ jsx13(Icon, { ...props, children: /* @__PURE__ */ jsx13(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx13(
"path",
{
fillRule: "evenodd",
d: "M18 6H6V18H18V6ZM4 4V20H20V4H4Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/BinIcon.tsx
import "react";
import { jsx as jsx14, jsxs as jsxs2 } from "react/jsx-runtime";
var BinIcon = (props) => {
return /* @__PURE__ */ jsx14(Icon, { ...props, children: /* @__PURE__ */ jsxs2(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx14("path", { d: "M9 18V8H11V18H9ZM13 8V18H15V8H13Z" }),
/* @__PURE__ */ jsx14(
"path",
{
fillRule: "evenodd",
d: "M13.5 4C13.5 3.17157 12.8284 2.5 12 2.5C11.1716 2.5 10.5 3.17157 10.5 4H4V6H5V19C5 20.6569 6.34315 22 8 22H16C17.6569 22 19 20.6569 19 19V6H20V4H13.5ZM7 19V6H17V19C17 19.5523 16.5523 20 16 20H8C7.44772 20 7 19.5523 7 19Z",
clipRule: "evenodd"
}
)
]
}
) });
};
// src/components/icons/BlindIcon.tsx
import "react";
import { jsx as jsx15 } from "react/jsx-runtime";
var BlindIcon = (props) => {
return /* @__PURE__ */ jsx15(Icon, { ...props, children: /* @__PURE__ */ jsx15(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx15(
"path",
{
fillRule: "evenodd",
d: "M5.92572 11.6379C7.28054 12.8798 9.29877 14.0001 12 14.0001C14.7012 14.0001 16.7195 12.8798 18.0743 11.6379C18.7544 11.0145 19.2581 10.3679 19.5858 9.83533C19.75 9.56862 19.8631 9.34158 19.932 9.1709C19.9771 9.05914 19.993 8.99662 19.9982 8.97587L19.9982 8.97582L19.9983 8.97576C19.9996 8.97052 20.0002 8.96798 20.0005 8.96802C20.0008 8.96806 20.0007 8.97041 20.0005 8.97496L20.0005 8.97506L20.0005 8.97518L20.0005 8.97534C20.0003 8.98071 20 8.989 20 9.00005H22C22 9.32108 21.894 9.65317 21.7868 9.91905C21.6681 10.2132 21.5 10.5409 21.2892 10.8835C20.9404 11.4502 20.456 12.0884 19.8359 12.7168L21.1426 14.274L19.6105 15.5596L18.3111 14.011C17.5099 14.5769 16.5733 15.0803 15.5025 15.439L15.9537 17.3931L14.0049 17.843L13.5551 15.8945C13.0587 15.963 12.5403 16.0001 12 16.0001C11.4577 16.0001 10.9375 15.9628 10.4395 15.8938L9.98878 17.846L8.04004 17.3961L8.49226 15.4373C7.41782 15.0767 6.47855 14.5704 5.67574 14.0017L4.36837 15.5597L2.83629 14.2741L4.15272 12.7053C3.53814 12.0806 3.05746 11.4468 2.71084 10.8835C2.49997 10.5409 2.33188 10.2132 2.21323 9.91905C2.10598 9.65317 2 9.32108 2 9.00005H4C4 8.98874 3.99969 8.98032 3.99949 8.97496V8.97495C3.99932 8.9704 3.99924 8.96806 3.99949 8.96802C3.99976 8.96798 4.00042 8.97055 4.00177 8.97587C4.00705 8.99663 4.02295 9.05915 4.06802 9.1709C4.13687 9.34158 4.25003 9.56862 4.41416 9.83533C4.74188 10.3679 5.24565 11.0145 5.92572 11.6379Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/BoldIcon.tsx
import "react";
import { jsx as jsx16 } from "react/jsx-runtime";
var BoldIcon = (props) => {
return /* @__PURE__ */ jsx16(Icon, { ...props, children: /* @__PURE__ */ jsx16(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx16("path", { d: "M4.83252 20.9999H14.2185C17.6505 20.9999 20.0945 19.0239 20.0945 16.1639C20.0945 14.1879 18.8725 12.5239 16.7925 11.5879C18.3785 10.7559 19.3145 9.42994 19.3145 7.60994C19.3145 5.00994 17.0785 3.13794 13.8805 3.13794H4.83252V20.9999ZM8.65452 10.3399V6.41394H12.9445C14.3485 6.41394 15.3625 7.24594 15.3625 8.36394C15.3625 9.50794 14.3485 10.3399 12.9445 10.3399H8.65452ZM8.65452 17.7239V13.3559H13.5165C15.0505 13.3559 16.1425 14.2659 16.1425 15.5399C16.1425 16.8139 15.0505 17.7239 13.5165 17.7239H8.65452Z" })
}
) });
};
// src/components/icons/CalendarIcon.tsx
import "react";
import { jsx as jsx17 } from "react/jsx-runtime";
var CalendarIcon = (props) => {
return /* @__PURE__ */ jsx17(Icon, { ...props, children: /* @__PURE__ */ jsx17(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx17(
"path",
{
fillRule: "evenodd",
d: "M7 2V4H3V21H21V4H17V2H15V4H9V2H7ZM19 6V8H5V6H19ZM5 10V19H19V10H5Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/CheckboxIcon.tsx
import "react";
import { jsx as jsx18 } from "react/jsx-runtime";
var CheckboxIcon = (props) => {
return /* @__PURE__ */ jsx18(Icon, { ...props, children: /* @__PURE__ */ jsx18(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx18(
"path",
{
fillRule: "evenodd",
d: "M18.4395 5.25928L20.5608 7.3806L9.50011 18.4413L3.43945 12.3806L5.56077 10.2593L9.50011 14.1986L18.4395 5.25928Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/ChevrondownIcon.tsx
import "react";
import { jsx as jsx19 } from "react/jsx-runtime";
var ChevrondownIcon = (props) => {
return /* @__PURE__ */ jsx19(Icon, { ...props, children: /* @__PURE__ */ jsx19(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx19(
"path",
{
fill: "currentcolor",
d: "M5.29297 9.70718L6.70718 8.29297L12.0001 13.5859L17.293 8.29297L18.7072 9.70718L12.0001 16.4143L5.29297 9.70718Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/ChevronleftIcon.tsx
import "react";
import { jsx as jsx20 } from "react/jsx-runtime";
var ChevronleftIcon = (props) => {
return /* @__PURE__ */ jsx20(Icon, { ...props, children: /* @__PURE__ */ jsx20(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx20(
"path",
{
fillRule: "evenodd",
d: "M14.293 18.7072L15.7073 17.293L10.4144 12.0001L15.7073 6.70718L14.293 5.29297L7.58594 12.0001L14.293 18.7072Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/ChevronrightIcon.tsx
import "react";
import { jsx as jsx21 } from "react/jsx-runtime";
var ChevronrightIcon = (props) => {
return /* @__PURE__ */ jsx21(Icon, { ...props, children: /* @__PURE__ */ jsx21(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx21(
"path",
{
fillRule: "evenodd",
d: "M9.70718 18.7072L8.29297 17.293L13.5859 12.0001L8.29297 6.70718L9.70718 5.29297L16.4143 12.0001L9.70718 18.7072Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/ChevronupIcon.tsx
import "react";
import { jsx as jsx22 } from "react/jsx-runtime";
var ChevronupIcon = (props) => {
return /* @__PURE__ */ jsx22(Icon, { ...props, children: /* @__PURE__ */ jsx22(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx22(
"path",
{
fill: "currentcolor",
d: "M18.707 14.2928L17.2928 15.707L11.9999 10.4141L6.70703 15.707L5.29282 14.2928L11.9999 7.58571L18.707 14.2928Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/CloseIcon.tsx
import "react";
import { jsx as jsx23 } from "react/jsx-runtime";
var CloseIcon = (props) => {
return /* @__PURE__ */ jsx23(Icon, { ...props, children: /* @__PURE__ */ jsx23(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx23("path", { d: "M12.0001 13.4143L18.293 19.7072L19.7072 18.293L13.4143 12.0001L19.7072 5.70719L18.293 4.29298L12.0001 10.5859L5.70719 4.29297L4.29298 5.70718L10.5859 12.0001L4.29297 18.293L5.70718 19.7072L12.0001 13.4143Z" })
}
) });
};
// src/components/icons/CodeIcon.tsx
import "react";
import { jsx as jsx24 } from "react/jsx-runtime";
var CodeIcon = (props) => {
return /* @__PURE__ */ jsx24(Icon, { ...props, children: /* @__PURE__ */ jsx24(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx24("path", { d: "M6.29304 7.29297 7.70726 8.70718 4.41436 12.0001 7.70726 15.293 6.29304 16.7072 1.58594 12.0001 6.29304 7.29297ZM14.8943 8.44728 10.8943 16.4473 9.10547 15.5529 13.1055 7.55286 14.8943 8.44728ZM16.2927 15.2931 17.707 16.7073 22.4141 12.0002 17.707 7.29306 16.2927 8.70728 19.5856 12.0002 16.2927 15.2931Z" })
}
) });
};
// src/components/icons/CollectionIcon.tsx
import "react";
import { jsx as jsx25 } from "react/jsx-runtime";
var CollectionIcon = (props) => {
return /* @__PURE__ */ jsx25(Icon, { ...props, children: /* @__PURE__ */ jsx25(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx25(
"path",
{
fillRule: "evenodd",
d: "M17 3H7V5H17V3ZM5 7H12H19V9H15.4649H12H8.53513H5V7ZM5 11H3V21H21V11H19H16H14C14 12.1046 13.1046 13 12 13C10.8954 13 10 12.1046 10 11H8H5ZM12 15C10.5194 15 9.22675 14.1956 8.53513 13H5V19H19V13H15.4649C14.7733 14.1956 13.4806 15 12 15Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/ColumnafterIcon.tsx
import "react";
import { jsx as jsx26, jsxs as jsxs3 } from "react/jsx-runtime";
var ColumnafterIcon = (props) => {
return /* @__PURE__ */ jsx26(Icon, { ...props, children: /* @__PURE__ */ jsxs3(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx26("path", { d: "M3 11L3 13H5L5 11H3Z" }),
/* @__PURE__ */ jsx26(
"path",
{
fillRule: "evenodd",
d: "M21 21H11V3L21 3V21ZM13 19V5H19V19H13Z",
clipRule: "evenodd"
}
),
/* @__PURE__ */ jsx26("path", { d: "M3 9 3 7H5V9H3ZM3 19 3 21H5V19H3ZM3 17 3 15H5V17H3ZM3 3 3 5H5V3L3 3ZM7 5V3L9 3V5H7ZM7 19V21H9V19H7Z" })
]
}
) });
};
// src/components/icons/ColumnbeforeIcon.tsx
import "react";
import { jsx as jsx27, jsxs as jsxs4 } from "react/jsx-runtime";
var ColumnbeforeIcon = (props) => {
return /* @__PURE__ */ jsx27(Icon, { ...props, children: /* @__PURE__ */ jsxs4(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx27(
"path",
{
fillRule: "evenodd",
d: "M13 21H3L3 3L13 3V21ZM5 19L5 5H11V19H5Z",
clipRule: "evenodd"
}
),
/* @__PURE__ */ jsx27("path", { d: "M19 11V13H21V11H19ZM19 9V7H21V9H19ZM19 19V21H21V19H19ZM19 17V15H21V17H19ZM19 3V5H21V3L19 3ZM15 5V3L17 3V5H15ZM15 19V21H17V19H15Z" })
]
}
) });
};
// src/components/icons/ColumndeleteIcon.tsx
import "react";
import { jsx as jsx28, jsxs as jsxs5 } from "react/jsx-runtime";
var ColumndeleteIcon = (props) => {
return /* @__PURE__ */ jsx28(Icon, { ...props, children: /* @__PURE__ */ jsxs5(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx28("path", { d: "M9 5H15V15H17V3H7V21H11V19H9V5Z" }),
/* @__PURE__ */ jsx28("path", { d: "M16.0001 21.4142L14.2072 23.2071L12.793 21.7929L14.5859 20L12.793 18.2071L14.2072 16.7929L16.0001 18.5858L17.793 16.7929L19.2072 18.2071L17.4143 20L19.2072 21.7929L17.793 23.2071L16.0001 21.4142Z" })
]
}
) });
};
// src/components/icons/ColumnsIcon.tsx
import "react";
import { jsx as jsx29 } from "react/jsx-runtime";
var ColumnsIcon = (props) => {
return /* @__PURE__ */ jsx29(Icon, { ...props, children: /* @__PURE__ */ jsx29(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx29(
"path",
{
fillRule: "evenodd",
d: "M3 21V3H21V21H3ZM13 5H19V19H13V5ZM11 5H5V19H11V5Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/CopyIcon.tsx
import "react";
import { jsx as jsx30, jsxs as jsxs6 } from "react/jsx-runtime";
var CopyIcon = (props) => {
return /* @__PURE__ */ jsx30(Icon, { ...props, children: /* @__PURE__ */ jsxs6(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx30("path", { d: "M15 4V7H18V16H17V18H20V6L16.25 2H8V5H10V4H15Z" }),
/* @__PURE__ */ jsx30(
"path",
{
fillRule: "evenodd",
d: "M16 10L12.25 6H4V22H16V10ZM11 8H6V20H14V11H11V8Z",
clipRule: "evenodd"
}
)
]
}
) });
};
// src/components/icons/CutIcon.tsx
import "react";
import { jsx as jsx31 } from "react/jsx-runtime";
var CutIcon = (props) => {
return /* @__PURE__ */ jsx31(Icon, { ...props, children: /* @__PURE__ */ jsx31(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx31(
"path",
{
fillRule: "evenodd",
d: "M13.4143 12.0001L14.9681 13.5539C15.5636 13.202 16.2582 13.0001 17 13.0001C19.2091 13.0001 21 14.791 21 17.0001C21 19.2092 19.2091 21.0001 17 21.0001C14.7909 21.0001 13 19.2092 13 17.0001C13 16.2583 13.2019 15.5636 13.5539 14.9681L12.0001 13.4143L10.4462 14.9682C10.7981 15.5637 11 16.2583 11 17.0001C11 19.2092 9.20914 21.0001 7 21.0001C4.79086 21.0001 3 19.2092 3 17.0001C3 14.791 4.79086 13.0001 7 13.0001C7.74183 13.0001 8.4365 13.202 9.03202 13.5539L10.5859 12.0001L3.79297 5.20718L5.20718 3.79297L12.0001 10.5859L18.793 3.793L20.2072 5.20721L13.4143 12.0001ZM5 17.0001C5 15.8955 5.89543 15.0001 7 15.0001C8.10457 15.0001 9 15.8955 9 17.0001C9 18.1047 8.10457 19.0001 7 19.0001C5.89543 19.0001 5 18.1047 5 17.0001ZM15 17.0001C15 15.8955 15.8954 15.0001 17 15.0001C18.1046 15.0001 19 15.8955 19 17.0001C19 18.1047 18.1046 19.0001 17 19.0001C15.8954 19.0001 15 18.1047 15 17.0001Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/DashIcon.tsx
import "react";
import { jsx as jsx32 } from "react/jsx-runtime";
var DashIcon = (props) => {
return /* @__PURE__ */ jsx32(Icon, { ...props, children: /* @__PURE__ */ jsx32(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx32("path", { d: "M6 10.5H18V13.5H6z" })
}
) });
};
// src/components/icons/DiscussionIcon.tsx
import "react";
import { jsx as jsx33 } from "react/jsx-runtime";
var DiscussionIcon = (props) => {
return /* @__PURE__ */ jsx33(Icon, { ...props, children: /* @__PURE__ */ jsx33(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx33(
"path",
{
fillRule: "evenodd",
d: "M2 8C2 5.79086 3.79086 4 6 4H14C16.2091 4 18 5.79086 18 8V9C20.2091 9 22 10.7909 22 13V15C22 16.4806 21.1956 17.7733 20 18.4649V21.5L17.5 19H14C11.7909 19 10 17.2091 10 15H6.5L4 17.5V14.4649C2.8044 13.7733 2 12.4806 2 11V8ZM6 6H14C15.1046 6 16 6.89543 16 8V11C16 12.1046 15.1046 13 14 13H6C4.89543 13 4 12.1046 4 11V8C4 6.89543 4.89543 6 6 6ZM12 15C12 16.1046 12.8954 17 14 17H18C19.1046 17 20 16.1046 20 15V13C20 11.8954 19.1046 11 18 11C18 13.2091 16.2091 15 14 15H12Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/DraggableIcon.tsx
import "react";
import { jsx as jsx34 } from "react/jsx-runtime";
var DraggableIcon = (props) => {
return /* @__PURE__ */ jsx34(Icon, { ...props, children: /* @__PURE__ */ jsx34(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx34(
"path",
{
fillRule: "evenodd",
d: "M9 7C10.1046 7 11 6.10457 11 5C11 3.89543 10.1046 3 9 3C7.89543 3 7 3.89543 7 5C7 6.10457 7.89543 7 9 7ZM9 14C10.1046 14 11 13.1046 11 12C11 10.8954 10.1046 10 9 10C7.89543 10 7 10.8954 7 12C7 13.1046 7.89543 14 9 14ZM11 19C11 20.1046 10.1046 21 9 21C7.89543 21 7 20.1046 7 19C7 17.8954 7.89543 17 9 17C10.1046 17 11 17.8954 11 19ZM15 7C16.1046 7 17 6.10457 17 5C17 3.89543 16.1046 3 15 3C13.8954 3 13 3.89543 13 5C13 6.10457 13.8954 7 15 7ZM17 12C17 13.1046 16.1046 14 15 14C13.8954 14 13 13.1046 13 12C13 10.8954 13.8954 10 15 10C16.1046 10 17 10.8954 17 12ZM15 21C16.1046 21 17 20.1046 17 19C17 17.8954 16.1046 17 15 17C13.8954 17 13 17.8954 13 19C13 20.1046 13.8954 21 15 21Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/EditIcon.tsx
import "react";
import { jsx as jsx35, jsxs as jsxs7 } from "react/jsx-runtime";
var EditIcon = (props) => {
return /* @__PURE__ */ jsx35(Icon, { ...props, children: /* @__PURE__ */ jsxs7(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx35("path", { d: "M18 12.8286V17.9999H6V5.99994H11.1718L13.1718 3.99994H4V19.9999H20V10.8286L18 12.8286Z" }),
/* @__PURE__ */ jsx35(
"path",
{
fillRule: "evenodd",
d: "M13 14.9999L8 15.9999L9 10.9999L17.5858 2.41416C18.3668 1.63311 19.6332 1.63311 20.4142 2.41415L21.5858 3.58573C22.3668 4.36678 22.3668 5.63311 21.5858 6.41415L13 14.9999ZM17.5857 7.58582L12.014 13.1575L10.5495 13.4504L10.8424 11.986L16.4141 6.41424L17.5857 7.58582ZM18.9999 6.1716L20.1716 4.99994L19 3.82837L17.8283 5.00003L18.9999 6.1716Z",
clipRule: "evenodd"
}
)
]
}
) });
};
// src/components/icons/EyeIcon.tsx
import "react";
import { jsx as jsx36, jsxs as jsxs8 } from "react/jsx-runtime";
var EyeIcon = (props) => {
return /* @__PURE__ */ jsx36(Icon, { ...props, children: /* @__PURE__ */ jsxs8(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx36("path", { d: "M12 14.5C13.3807 14.5 14.5 13.3807 14.5 12C14.5 10.6193 13.3807 9.5 12 9.5C10.6193 9.5 9.5 10.6193 9.5 12C9.5 13.3807 10.6193 14.5 12 14.5Z" }),
/* @__PURE__ */ jsx36(
"path",
{
fillRule: "evenodd",
d: "M12 5C8.70123 5 6.21946 6.37976 4.57428 7.88785C3.75435 8.63944 3.13312 9.43033 2.71084 10.1165C2.49997 10.4592 2.33188 10.7868 2.21323 11.081C2.10598 11.3469 2 11.679 2 12C2 12.321 2.10598 12.6531 2.21323 12.919C2.33188 13.2132 2.49997 13.5408 2.71084 13.8835C3.13312 14.5697 3.75435 15.3606 4.57428 16.1122C6.21946 17.6202 8.70123 19 12 19C15.2988 19 17.7805 17.6202 19.4257 16.1122C20.2456 15.3606 20.8669 14.5697 21.2892 13.8835C21.5 13.5408 21.6681 13.2132 21.7868 12.919C21.894 12.6531 22 12.321 22 12C22 11.679 21.894 11.3469 21.7868 11.081C21.6681 10.7868 21.5 10.4592 21.2892 10.1165C20.8669 9.43033 20.2456 8.63944 19.4257 7.88785C17.7805 6.37976 15.2988 5 12 5ZM4.06802 12.1708C4.03445 12.0876 4.01707 12.0317 4.0082 12C4.01707 11.9683 4.03445 11.9124 4.06802 11.8292C4.13687 11.6585 4.25003 11.4314 4.41416 11.1647C4.74188 10.6322 5.24565 9.98556 5.92572 9.36215C7.28054 8.12024 9.29877 7 12 7C14.7012 7 16.7195 8.12024 18.0743 9.36215C18.7544 9.98556 19.2581 10.6322 19.5858 11.1647C19.75 11.4314 19.8631 11.6585 19.932 11.8292C19.9655 11.9124 19.9829 11.9683 19.9918 12C19.9829 12.0317 19.9655 12.0876 19.932 12.1708C19.8631 12.3415 19.75 12.5686 19.5858 12.8353C19.2581 13.3678 18.7544 14.0144 18.0743 14.6378C16.7195 15.8798 14.7012 17 12 17C9.29877 17 7.28054 15.8798 5.92572 14.6378C5.24565 14.0144 4.74188 13.3678 4.41416 12.8353C4.25003 12.5686 4.13687 12.3415 4.06802 12.1708Z",
clipRule: "evenodd"
}
)
]
}
) });
};
// src/components/icons/FilterIcon.tsx
import "react";
import { jsx as jsx37, jsxs as jsxs9 } from "react/jsx-runtime";
var FilterIcon = (props) => {
return /* @__PURE__ */ jsx37(Icon, { ...props, children: /* @__PURE__ */ jsxs9(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx37("path", { d: "M7 8V10H17V8H7ZM9 14V12H15V14H9ZM11 16V18H13V16H11Z" }),
/* @__PURE__ */ jsx37(
"path",
{
fillRule: "evenodd",
d: "M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z",
clipRule: "evenodd"
}
)
]
}
) });
};
// src/components/icons/FolderIcon.tsx
import "react";
import { jsx as jsx38 } from "react/jsx-runtime";
var FolderIcon = (props) => {
return /* @__PURE__ */ jsx38(Icon, { ...props, children: /* @__PURE__ */ jsx38(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx38(
"path",
{
fillRule: "evenodd",
d: "M9.41421 4H2V20H22V6H11.4142L9.41421 4ZM4 18V8H20V18H4Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/FooterIcon.tsx
import "react";
import { jsx as jsx39, jsxs as jsxs10 } from "react/jsx-runtime";
var FooterIcon = (props) => {
return /* @__PURE__ */ jsx39(Icon, { ...props, children: /* @__PURE__ */ jsxs10(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx39("path", { d: "M16 16H8V18H16V16Z" }),
/* @__PURE__ */ jsx39(
"path",
{
fillRule: "evenodd",
d: "M4 22V2H20V22H4ZM6 4H18V20H6V4Z",
clipRule: "evenodd"
}
)
]
}
) });
};
// src/components/icons/ForegroundIcon.tsx
import "react";
import { jsx as jsx40 } from "react/jsx-runtime";
var ForegroundIcon = (props) => {
return /* @__PURE__ */ jsx40(Icon, { ...props, children: /* @__PURE__ */ jsx40(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx40(
"path",
{
stroke: "#000",
strokeWidth: "2",
d: "M3.74844 19L12.0002 4.97231L20.2516 19H3.74844Z"
}
)
}
) });
};
// src/components/icons/FullscreenIcon.tsx
import "react";
import { jsx as jsx41 } from "react/jsx-runtime";
var FullscreenIcon = (props) => {
return /* @__PURE__ */ jsx41(Icon, { ...props, children: /* @__PURE__ */ jsx41(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx41("path", { d: "M21 3V9H19V5L15 5V3L21 3ZM3 3H9V5H5V9H3V3ZM3 21V15H5V19H9V21H3ZM15 21H21V15H19V19H15V21ZM12 10C10.8954 10 10 10.8954 10 12 10 13.1046 10.8954 14 12 14 13.1046 14 14 13.1046 14 12 14 10.8954 13.1046 10 12 10Z" })
}
) });
};
// src/components/icons/HighlightIcon.tsx
import "react";
import { jsx as jsx42, jsxs as jsxs11 } from "react/jsx-runtime";
var HighlightIcon = (props) => {
return /* @__PURE__ */ jsx42(Icon, { ...props, children: /* @__PURE__ */ jsxs11(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx42("path", { d: "M9 7H15V9H13V13H11V9H9V7Z" }),
/* @__PURE__ */ jsx42(
"path",
{
fillRule: "evenodd",
d: "M3 17V3H21V17H3ZM5 5H19V15H5V5Z",
clipRule: "evenodd"
}
),
/* @__PURE__ */ jsx42("path", { d: "M19 19H5V21H19V19Z" })
]
}
) });
};
// src/components/icons/HistoryIcon.tsx
import "react";
import { jsx as jsx43, jsxs as jsxs12 } from "react/jsx-runtime";
var HistoryIcon = (props) => {
return /* @__PURE__ */ jsx43(Icon, { ...props, children: /* @__PURE__ */ jsxs12(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx43("path", { d: "M15.4998 5.93786C12.3243 4.1045 8.30946 5.04192 6.25478 8H8V10H3V5H5V6.34086C7.73535 2.94898 12.6079 1.95882 16.4998 4.20581C20.8044 6.69109 22.2793 12.1954 19.794 16.5C17.3087 20.8047 11.8044 22.2795 7.49979 19.7943C5.40842 18.5868 3.9841 16.6647 3.35878 14.5166L5.27907 13.9576C5.76607 15.6305 6.87253 17.1227 8.49979 18.0622C11.8478 19.9952 16.129 18.8481 18.062 15.5C19.995 12.152 18.8478 7.87086 15.4998 5.93786Z" }),
/* @__PURE__ */ jsx43("path", { d: "M12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14Z" })
]
}
) });
};
// src/components/icons/HomeIcon.tsx
import "react";
import { jsx as jsx44 } from "react/jsx-runtime";
var HomeIcon = (props) => {
return /* @__PURE__ */ jsx44(Icon, { ...props, children: /* @__PURE__ */ jsx44(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx44(
"path",
{
fillRule: "evenodd",
d: "M21.5855 9.68946L12 2.7666L2.41455 9.68946L3.58553 11.3108L12 5.23367L20.4146 11.3108L21.5855 9.68946ZM7 12.0001H5V21.0001H11V16.0001H13V21.0001H19V12.0001H17V19.0001H15V14.0001H9V19.0001H7V12.0001Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/ImagefitIcon.tsx
import "react";
import { jsx as jsx45, jsxs as jsxs13 } from "react/jsx-runtime";
var ImagefitIcon = (props) => {
return /* @__PURE__ */ jsx45(Icon, { ...props, children: /* @__PURE__ */ jsxs13(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx45("path", { d: "M20 3H4V5H20V3Z" }),
/* @__PURE__ */ jsx45(
"path",
{
fillRule: "evenodd",
d: "M4 7V17H20V7H4ZM18 9H6V15H18V9Z",
clipRule: "evenodd"
}
),
/* @__PURE__ */ jsx45("path", { d: "M4 19H20V21H4V19Z" })
]
}
) });
};
// src/components/icons/ImagefullIcon.tsx
import "react";
import { jsx as jsx46, jsxs as jsxs14 } from "react/jsx-runtime";
var ImagefullIcon = (props) => {
return /* @__PURE__ */ jsx46(Icon, { ...props, children: /* @__PURE__ */ jsxs14(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx46("path", { d: "M9.70726 7.70712L8.29304 6.29291L4.58594 10L8.29304 13.7071L9.70726 12.2929L8.41435 11H15.5856L14.2927 12.2929L15.707 13.7071L19.4141 9.99999L15.707 6.29288L14.2927 7.70709L15.5857 9H8.41438L9.70726 7.70712Z" }),
/* @__PURE__ */ jsx46(
"path",
{
fillRule: "evenodd",
d: "M2 3V17H22V3H2ZM20 5H4V15H20V5Z",
clipRule: "evenodd"
}
),
/* @__PURE__ */ jsx46("path", { d: "M4 19H20V21H4V19Z" })
]
}
) });
};
// src/components/icons/ImageIcon.tsx
import "react";
import { jsx as jsx47, jsxs as jsxs15 } from "react/jsx-runtime";
var ImageIcon = (props) => {
return /* @__PURE__ */ jsx47(Icon, { ...props, children: /* @__PURE__ */ jsxs15(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx47("path", { d: "M18 10C18 11.1046 17.1046 12 16 12C14.8954 12 14 11.1046 14 10C14 8.89543 14.8954 8 16 8C17.1046 8 18 8.89543 18 10Z" }),
/* @__PURE__ */ jsx47(
"path",
{
fillRule: "evenodd",
d: "M2 20V4H22V20H2ZM4 6H20V17.5857L16.0001 13.5858L14.0001 15.5858L8.00008 9.58582L4 13.5859V6ZM4 16.4143V18H13.5858L8.00008 12.4142L4 16.4143ZM14.4143 18H17.5858L16.0001 16.4142L14.4143 18Z",
clipRule: "evenodd"
}
)
]
}
) });
};
// src/components/icons/ImageleftIcon.tsx
import "react";
import { jsx as jsx48, jsxs as jsxs16 } from "react/jsx-runtime";
var ImageleftIcon = (props) => {
return /* @__PURE__ */ jsx48(Icon, { ...props, children: /* @__PURE__ */ jsxs16(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx48(
"path",
{
fillRule: "evenodd",
d: "M2 5V15H14V5H2ZM12 7H4V13H12V7Z",
clipRule: "evenodd"
}
),
/* @__PURE__ */ jsx48("path", { d: "M22 17V19H2V17H22ZM22 5H16V7H22V5ZM16 9H22V11H16V9ZM22 13H16V15H22V13Z" })
]
}
) });
};
// src/components/icons/ImagenarrowIcon.tsx
import "react";
import { jsx as jsx49, jsxs as jsxs17 } from "react/jsx-runtime";
var ImagenarrowIcon = (props) => {
return /* @__PURE__ */ jsx49(Icon, { ...props, children: /* @__PURE__ */ jsxs17(
"svg",
{
width: "24",
height: "24",
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
children: [
/* @__PURE__ */ jsx49("path", { d: "M7 9L8 7V17L7 15H17L16 17V7L17 9H7ZM17 7V12V14V16V17H7V7H17Z" }),
/* @__PURE__ */ jsx49("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 21H19V19H5V21Z" }),
/* @__PURE__ */ jsx49("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 5H19V3H5V5Z" })
]
}
) });
};
// src/components/icons/ImagerightIcon.tsx
import "react";
import { jsx as jsx50, jsxs as jsxs18 } from "react/jsx-runtime";
var ImagerightIcon = (props) => {
return /* @__PURE__ */ jsx50(Icon, { ...props, children: /* @__PURE__ */ jsxs18(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx50(
"path",
{
fillRule: "evenodd",
d: "M10 5V15H22V5H10ZM20 7H12V13H20V7Z",
clipRule: "evenodd"
}
),
/* @__PURE__ */ jsx50("path", { d: "M22 17V19H2V17H22ZM8 5H2V7H8V5ZM2 9H8V11H2V9ZM8 13H2V15H8V13Z" })
]
}
) });
};
// src/components/icons/ImagewideIcon.tsx
import "react";
import { jsx as jsx51, jsxs as jsxs19 } from "react/jsx-runtime";
var ImagewideIcon = (props) => {
return /* @__PURE__ */ jsx51(Icon, { ...props, children: /* @__PURE__ */ jsx51(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsxs19("g", { fillRule: "evenodd", children: [
/* @__PURE__ */ jsx51(
"path",
{
fillRule: "nonzero",
d: "M2,9 L3,7 L3,17 L2,15 L22,15 L21,17 L21,7 L22,9 L2,9 Z M22,7 L22,17 L2,17 L2,7 L22,7 Z"
}
),
/* @__PURE__ */ jsx51("polygon", { points: "5 21 19 21 19 19 5 19" }),
/* @__PURE__ */ jsx51("polygon", { points: "5 5 19 5 19 3 5 3" })
] })
}
) });
};
// src/components/icons/InfoIcon.tsx
import "react";
import { jsx as jsx52, jsxs as jsxs20 } from "react/jsx-runtime";
var InfoIcon = (props) => {
return /* @__PURE__ */ jsx52(Icon, { ...props, children: /* @__PURE__ */ jsxs20(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx52("path", { d: "M13 16H14V18H10V16H11V12H10V10H13V16ZM12 5.5C11.1716 5.5 10.5 6.17157 10.5 7 10.5 7.82843 11.1716 8.5 12 8.5 12.8284 8.5 13.5 7.82843 13.5 7 13.5 6.17157 12.8284 5.5 12 5.5Z" }),
/* @__PURE__ */ jsx52(
"path",
{
fillRule: "evenodd",
d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22ZM12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20Z",
clipRule: "evenodd"
}
)
]
}
) });
};
// src/components/icons/ItalicIcon.tsx
import "react";
import { jsx as jsx53 } from "react/jsx-runtime";
var ItalicIcon = (props) => {
return /* @__PURE__ */ jsx53(Icon, { ...props, children: /* @__PURE__ */ jsx53(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx53(
"path",
{
fillRule: "evenodd",
d: "M10 3H17V5H14.3584L11.4443 19H14V21L11.028 21H9L7 21V19H9.4163L12.3304 5H10V3Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/LanguageIcon.tsx
import "react";
import { jsx as jsx54 } from "react/jsx-runtime";
var LanguageIcon = (props) => {
return /* @__PURE__ */ jsx54(Icon, { ...props, children: /* @__PURE__ */ jsx54(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx54(
"path",
{
fillRule: "evenodd",
d: "M13 3H11V6H4V8H6.14603C6.72201 10.8754 8.4029 13.2122 10.3922 15.0269C8.05005 16.8465 5.43103 18.0192 3.70898 18.5433L4.29131 20.4566C6.30162 19.8448 9.32436 18.4761 11.9749 16.3239C14.5162 18.201 17.3216 19.4054 19.2194 19.9599L19.7803 18.0401C18.1527 17.5646 15.7289 16.535 13.4937 14.954C15.3226 13.1144 16.8284 10.8003 17.3604 8H20V6H13V3ZM8.19558 8H15.3165C14.8002 10.2269 13.5262 12.1292 11.9131 13.7052C10.155 12.1472 8.7535 10.2439 8.19558 8Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/LeadingIcon.tsx
import "react";
import { jsx as jsx55, jsxs as jsxs21 } from "react/jsx-runtime";
var LeadingIcon = (props) => {
return /* @__PURE__ */ jsx55(Icon, { ...props, children: /* @__PURE__ */ jsxs21(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx55("path", { d: "M12.9258 9.2258L12 7L11.0742 9.2258L8.6713 9.41844L10.5021 10.9867L9.94275 13.3316L12 12.075L14.0572 13.3316L13.4979 10.9867L15.3287 9.41844L12.9258 9.2258Z" }),
/* @__PURE__ */ jsx55(
"path",
{
fillRule: "evenodd",
d: "M12 21L23 10L18 3L6 3L1 10L12 21ZM16.9708 5L20.3878 9.7838L12 18.1716L3.61223 9.7838L7.02924 5L16.9708 5Z",
clipRule: "evenodd"
}
)
]
}
) });
};
// src/components/icons/LeadingimageIcon.tsx
import "react";
import { jsx as jsx56 } from "react/jsx-runtime";
var LeadingimageIcon = (props) => {
return /* @__PURE__ */ jsx56(Icon, { ...props, children: /* @__PURE__ */ jsx56(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx56(
"path",
{
fillRule: "evenodd",
d: "M12 21L1 10L6 3L18 3L23 10L12 21ZM20.3878 9.7838L16.9708 5L7.02924 5L3.61223 9.7838L5.64752 11.8191L8.95092 8.45923L12.4176 12.0173L14.9116 9.49744C14.1243 9.45168 13.5 8.79875 13.5 8C13.5 7.17157 14.1716 6.5 15 6.5C15.8284 6.5 16.5 7.17157 16.5 8C16.5 8.82843 15.8284 9.5 15 9.5C14.9927 9.5 14.9853 9.49995 14.978 9.49984L17.8007 12.3708L20.3878 9.7838ZM12 18.1716L7.06179 13.2334L8.94444 11.3185L12.4063 14.8717L14.939 12.3129L16.3865 13.7851L12 18.1716Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/LinkIcon.tsx
import "react";
import { jsx as jsx57, jsxs as jsxs22 } from "react/jsx-runtime";
var LinkIcon = (props) => {
return /* @__PURE__ */ jsx57(Icon, { ...props, children: /* @__PURE__ */ jsxs22(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: [
/* @__PURE__ */ jsx57("path", { d: "M15 7V10H17V7C17 4.23858 14.7614 2 12 2 9.23858 2 7 4.23858 7 7V10H9V7C9 5.34315 10.3431 4 12 4 13.6569 4 15 5.34315 15 7ZM15 17V14H17V17C17 19.7614 14.7614 22 12 22 9.23858 22 7 19.7614 7 17V14H9V17C9 18.6569 10.3431 20 12 20 13.6569 20 15 18.6569 15 17Z" }),
/* @__PURE__ */ jsx57("path", { d: "M13 8H11V16H13V8Z" })
]
}
) });
};
// src/components/icons/ListIcon.tsx
import "react";
import { jsx as jsx58 } from "react/jsx-runtime";
var ListIcon = (props) => {
return /* @__PURE__ */ jsx58(Icon, { ...props, children: /* @__PURE__ */ jsx58(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx58("path", { d: "M2 6C2 4.89542 2.89545 4 4 4 5.10455 4 6 4.89542 6 6 6 7.10455 5.10455 8 4 8 2.89545 8 2 7.10455 2 6ZM22 5H8V7H22V5ZM22 11H8V13H22V11ZM8 17H22V19H8V17ZM4 10C2.89545 10 2 10.8954 2 12 2 13.1046 2.89545 14 4 14 5.10455 14 6 13.1046 6 12 6 10.8954 5.10455 10 4 10ZM4 16C2.89545 16 2 16.8954 2 18 2 19.1046 2.89545 20 4 20 5.10455 20 6 19.1046 6 18 6 16.8954 5.10455 16 4 16Z" })
}
) });
};
// src/components/icons/ListnumbersIcon.tsx
import "react";
import { jsx as jsx59 } from "react/jsx-runtime";
var ListnumbersIcon = (props) => {
return /* @__PURE__ */ jsx59(Icon, { ...props, children: /* @__PURE__ */ jsx59(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx59("path", { d: "M4.97748 7.99993H3.81348V5.18593L3.12348 5.60593 2.66748 4.80193 4.04748 3.87793H4.97748V7.99993ZM22 4.99994H8V6.99994H22V4.99994ZM22 10.9999H8V12.9999H22V10.9999ZM8 16.9999H22V18.9999H8V16.9999ZM2.33421 14H5.63421V12.962H4.11621L4.65021 12.62C5.38221 12.152 5.59821 11.732 5.59821 11.192 5.59821 10.394 4.93821 9.80597 3.96021 9.80597 3.27621 9.80597 2.71821 10.082 2.26221 10.622L2.98221 11.348C3.30021 11.03 3.57621 10.862 3.93021 10.862 4.20021 10.862 4.39821 11.012 4.39821 11.24 4.39821 11.456 4.29621 11.642 3.86421 11.954L2.33421 13.058V14ZM5.66987 18.824C5.66987 19.556 5.00987 20.078 3.97787 20.078 3.19187 20.078 2.59787 19.802 2.21387 19.394L2.86787 18.62C3.17387 18.908 3.55787 19.04 3.91187 19.04 4.28387 19.04 4.46987 18.902 4.46987 18.716 4.46987 18.518 4.33187 18.41 3.83987 18.416L3.34187 18.422V17.45H3.83387C4.21787 17.45 4.39187 17.348 4.39187 17.162 4.39187 16.958 4.18187 16.844 3.84587 16.844 3.50387 16.844 3.20987 17.006 2.94587 17.252L2.30387 16.538C2.66387 16.124 3.17987 15.806 3.97187 15.806 4.99187 15.806 5.57987 16.292 5.57987 16.94 5.57987 17.384 5.29187 17.738 4.82387 17.876 5.29187 17.984 5.66987 18.314 5.66987 18.824Z" })
}
) });
};
// src/components/icons/MailIcon.tsx
import "react";
import { jsx as jsx60 } from "react/jsx-runtime";
var MailIcon = (props) => {
return /* @__PURE__ */ jsx60(Icon, { ...props, children: /* @__PURE__ */ jsx60(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx60(
"path",
{
fillRule: "evenodd",
d: "M2 20V4H22V20H2ZM18.5859 6H5.41427L12.0001 12.5858L18.5859 6ZM4 7.41415V18H20V7.4143L12.0001 15.4142L4 7.41415Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/MandatoryIcon.tsx
import "react";
import { jsx as jsx61 } from "react/jsx-runtime";
var MandatoryIcon = (props) => {
return /* @__PURE__ */ jsx61(Icon, { ...props, children: /* @__PURE__ */ jsx61(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
children: /* @__PURE__ */ jsx61(
"path",
{
fillRule: "evenodd",
d: "M12 18C15.3137 18 18 15.3137 18 12C18 8.68629 15.3137 6 12 6C8.68629 6 6 8.68629 6 12C6 15.3137 8.68629 18 12 18Z",
clipRule: "evenodd"
}
)
}
) });
};
// src/components/icons/MapIcon.tsx
import "react";
import { jsx as jsx62, jsxs as jsxs23 } from "react/jsx-runtime";
var MapIcon = (props) => {
return /* @__PURE__ */ jsx62(Icon, { ...props, children: /* @__PURE__ */ jsxs23(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0