UNPKG

@plone/components

Version:

ReactJS components for Plone

1,242 lines (1,189 loc) 118 kB
"use client" "use strict"; var __create = Object.create; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __getProtoOf = Object.getPrototypeOf; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( // If the importer is in node compatibility mode or this is not an ESM // file that has been converted to a CommonJS file using a Babel- // compatible transform (i.e. "__esModule" has not been set), then set // "default" to the CommonJS "module.exports" for node compatibility. isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod )); var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // src/components/icons/index.ts var icons_exports = {}; __export(icons_exports, { AddIcon: () => AddIcon, AligncenterIcon: () => AligncenterIcon, AlignleftIcon: () => AlignleftIcon, AlignrightIcon: () => AlignrightIcon, ArchiveIcon: () => ArchiveIcon, ArrowdownIcon: () => ArrowdownIcon, ArrowleftIcon: () => ArrowleftIcon, ArrowrightIcon: () => ArrowrightIcon, ArrowtoprightIcon: () => ArrowtoprightIcon, ArrowupIcon: () => ArrowupIcon, AttachmentIcon: () => AttachmentIcon, AutomatedcontentIcon: () => AutomatedcontentIcon, BackgroundIcon: () => BackgroundIcon, BinIcon: () => BinIcon, BlindIcon: () => BlindIcon, BoldIcon: () => BoldIcon, CalendarIcon: () => CalendarIcon, CheckboxIcon: () => CheckboxIcon, ChevrondownIcon: () => ChevrondownIcon, ChevronleftIcon: () => ChevronleftIcon, ChevronrightIcon: () => ChevronrightIcon, ChevronupIcon: () => ChevronupIcon, CloseIcon: () => CloseIcon, CodeIcon: () => CodeIcon, CollectionIcon: () => CollectionIcon, ColumnafterIcon: () => ColumnafterIcon, ColumnbeforeIcon: () => ColumnbeforeIcon, ColumndeleteIcon: () => ColumndeleteIcon, ColumnsIcon: () => ColumnsIcon, CopyIcon: () => CopyIcon, CutIcon: () => CutIcon, DashIcon: () => DashIcon, DiscussionIcon: () => DiscussionIcon, DraggableIcon: () => DraggableIcon, EditIcon: () => EditIcon, EyeIcon: () => EyeIcon, FilterIcon: () => FilterIcon, FolderIcon: () => FolderIcon, FooterIcon: () => FooterIcon, ForegroundIcon: () => ForegroundIcon, FullscreenIcon: () => FullscreenIcon, HighlightIcon: () => HighlightIcon, HistoryIcon: () => HistoryIcon, HomeIcon: () => HomeIcon, ImageIcon: () => ImageIcon, ImagefitIcon: () => ImagefitIcon, ImagefullIcon: () => ImagefullIcon, ImageleftIcon: () => ImageleftIcon, ImagenarrowIcon: () => ImagenarrowIcon, ImagerightIcon: () => ImagerightIcon, ImagewideIcon: () => ImagewideIcon, InfoIcon: () => InfoIcon, ItalicIcon: () => ItalicIcon, LanguageIcon: () => LanguageIcon, LeadingIcon: () => LeadingIcon, LeadingimageIcon: () => LeadingimageIcon, LinkIcon: () => LinkIcon, ListIcon: () => ListIcon, ListnumbersIcon: () => ListnumbersIcon, MailIcon: () => MailIcon, MandatoryIcon: () => MandatoryIcon, MapIcon: () => MapIcon, MenuIcon: () => MenuIcon, MergedIcon: () => MergedIcon, MoreoptionsIcon: () => MoreoptionsIcon, NavigationIcon: () => NavigationIcon, NewsIcon: () => NewsIcon, OutIcon: () => OutIcon, PageIcon: () => PageIcon, ParagraphIcon: () => ParagraphIcon, PasteIcon: () => PasteIcon, PauseIcon: () => PauseIcon, PencilIcon: () => PencilIcon, PlayIcon: () => PlayIcon, PropertiesIcon: () => PropertiesIcon, QuotesIcon: () => QuotesIcon, RadiobuttonIcon: () => RadiobuttonIcon, RedoIcon: () => RedoIcon, RenameIcon: () => RenameIcon, ReverseIcon: () => ReverseIcon, ReviewIcon: () => ReviewIcon, RowafterIcon: () => RowafterIcon, RowbeforeIcon: () => RowbeforeIcon, RowdeleteIcon: () => RowdeleteIcon, SearchIcon: () => SearchIcon, SecurityIcon: () => SecurityIcon, SettingsIcon: () => SettingsIcon, ShareIcon: () => ShareIcon, SliderIcon: () => SliderIcon, SocialIcon: () => SocialIcon, SpacerIcon: () => SpacerIcon, StateIcon: () => StateIcon, SubtitleIcon: () => SubtitleIcon, TableIcon: () => TableIcon, TagIcon: () => TagIcon, TextIcon: () => TextIcon, ThumbnailsIcon: () => ThumbnailsIcon, TitleIcon: () => TitleIcon, TocIcon: () => TocIcon, UndoIcon: () => UndoIcon, UploadIcon: () => UploadIcon, UserIcon: () => UserIcon, VideoIcon: () => VideoIcon, VoltoIcon: () => VoltoIcon, WidthDefaultIcon: () => WidthDefaultIcon, WidthFullIcon: () => WidthFullIcon, WidthLayoutIcon: () => WidthLayoutIcon, WidthNarrowIcon: () => WidthNarrowIcon, WindowedIcon: () => WindowedIcon, WorldIcon: () => WorldIcon }); module.exports = __toCommonJS(icons_exports); // src/components/icons/AddIcon.tsx var import_react2 = require("react"); // src/components/Icon/Icon.tsx var import_react = __toESM(require("react"), 1); var import_utils = require("@react-spectrum/utils"); var import_utils2 = require("@react-aria/utils"); var import_clsx = __toESM(require("clsx"), 1); var import_tailwind_variants = require("tailwind-variants"); var icon = (0, import_tailwind_variants.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 = (0, import_utils.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 import_react.default.cloneElement(children, { ...(0, import_utils2.filterDOMProps)(otherProps), focusable: "false", "aria-label": ariaLabel, "aria-hidden": ariaLabel ? ariaHidden || void 0 : true, role: "img", className: icon({ size, className: (0, import_clsx.default)(children.props.className, props.className) }), style: { fill: color, ...otherProps.style } }); } // src/components/icons/AddIcon.tsx var import_jsx_runtime = require("react/jsx-runtime"); var AddIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M13 3H11V11H3V13H11V21H13V13H21V11H13V3Z" }) } ) }); }; // src/components/icons/AligncenterIcon.tsx var import_react3 = require("react"); var import_jsx_runtime2 = require("react/jsx-runtime"); var AligncenterIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M21 7H3V5H21V7ZM17 13H7V11H17V13ZM5 19H19V17H5V19Z" }) } ) }); }; // src/components/icons/AlignleftIcon.tsx var import_react4 = require("react"); var import_jsx_runtime3 = require("react/jsx-runtime"); var AlignleftIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M21 7H3V5H21V7ZM13 13H3V11H13V13ZM3 19H17V17H3V19Z" }) } ) }); }; // src/components/icons/AlignrightIcon.tsx var import_react5 = require("react"); var import_jsx_runtime4 = require("react/jsx-runtime"); var AlignrightIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M21 7H3V5H21V7ZM21 13H11V11H21V13ZM7 19H21V17H7V19Z" }) } ) }); }; // src/components/icons/ArchiveIcon.tsx var import_react6 = require("react"); var import_jsx_runtime5 = require("react/jsx-runtime"); var ArchiveIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 13H16V11H8V13Z" }), /* @__PURE__ */ (0, import_jsx_runtime5.jsx)( "path", { fillRule: "evenodd", d: "M3 3H21V9H20V21H4V9H3V3ZM6 9H18V19H6V9ZM19 5V7H5V5H19Z", clipRule: "evenodd" } ) ] } ) }); }; // src/components/icons/ArrowdownIcon.tsx var import_react7 = require("react"); var import_jsx_runtime6 = require("react/jsx-runtime"); var ArrowdownIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("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 var import_react8 = require("react"); var import_jsx_runtime7 = require("react/jsx-runtime"); var ArrowleftIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("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 var import_react9 = require("react"); var import_jsx_runtime8 = require("react/jsx-runtime"); var ArrowrightIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("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 var import_react10 = require("react"); var import_jsx_runtime9 = require("react/jsx-runtime"); var ArrowtoprightIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M15.5859 7H9.5V5H19V14.5H17V8.4143L6.70718 18.7071L5.29297 17.2929L15.5859 7Z" }) } ) }); }; // src/components/icons/ArrowupIcon.tsx var import_react11 = require("react"); var import_jsx_runtime10 = require("react/jsx-runtime"); var ArrowupIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("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 var import_react12 = require("react"); var import_jsx_runtime11 = require("react/jsx-runtime"); var AttachmentIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("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 var import_react13 = require("react"); var import_jsx_runtime12 = require("react/jsx-runtime"); var AutomatedcontentIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("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 var import_react14 = require("react"); var import_jsx_runtime13 = require("react/jsx-runtime"); var BackgroundIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)( "path", { fillRule: "evenodd", d: "M18 6H6V18H18V6ZM4 4V20H20V4H4Z", clipRule: "evenodd" } ) } ) }); }; // src/components/icons/BinIcon.tsx var import_react15 = require("react"); var import_jsx_runtime14 = require("react/jsx-runtime"); var BinIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { d: "M9 18V8H11V18H9ZM13 8V18H15V8H13Z" }), /* @__PURE__ */ (0, import_jsx_runtime14.jsx)( "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 var import_react16 = require("react"); var import_jsx_runtime15 = require("react/jsx-runtime"); var BlindIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)( "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 var import_react17 = require("react"); var import_jsx_runtime16 = require("react/jsx-runtime"); var BoldIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("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 var import_react18 = require("react"); var import_jsx_runtime17 = require("react/jsx-runtime"); var CalendarIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)( "path", { fillRule: "evenodd", d: "M7 2V4H3V21H21V4H17V2H15V4H9V2H7ZM19 6V8H5V6H19ZM5 10V19H19V10H5Z", clipRule: "evenodd" } ) } ) }); }; // src/components/icons/CheckboxIcon.tsx var import_react19 = require("react"); var import_jsx_runtime18 = require("react/jsx-runtime"); var CheckboxIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)( "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 var import_react20 = require("react"); var import_jsx_runtime19 = require("react/jsx-runtime"); var ChevrondownIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)( "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 var import_react21 = require("react"); var import_jsx_runtime20 = require("react/jsx-runtime"); var ChevronleftIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)( "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 var import_react22 = require("react"); var import_jsx_runtime21 = require("react/jsx-runtime"); var ChevronrightIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)( "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 var import_react23 = require("react"); var import_jsx_runtime22 = require("react/jsx-runtime"); var ChevronupIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)( "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 var import_react24 = require("react"); var import_jsx_runtime23 = require("react/jsx-runtime"); var CloseIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("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 var import_react25 = require("react"); var import_jsx_runtime24 = require("react/jsx-runtime"); var CodeIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("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 var import_react26 = require("react"); var import_jsx_runtime25 = require("react/jsx-runtime"); var CollectionIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)( "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 var import_react27 = require("react"); var import_jsx_runtime26 = require("react/jsx-runtime"); var ColumnafterIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M3 11L3 13H5L5 11H3Z" }), /* @__PURE__ */ (0, import_jsx_runtime26.jsx)( "path", { fillRule: "evenodd", d: "M21 21H11V3L21 3V21ZM13 19V5H19V19H13Z", clipRule: "evenodd" } ), /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M3 9 3 7H5V9H3ZM3 19 3 21H5V19H3ZM3 17 3 15H5V17H3ZM3 3 3 5H5V3L3 3ZM7 5V3L9 3V5H7ZM7 19V21H9V19H7Z" }) ] } ) }); }; // src/components/icons/ColumnbeforeIcon.tsx var import_react28 = require("react"); var import_jsx_runtime27 = require("react/jsx-runtime"); var ColumnbeforeIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)( "path", { fillRule: "evenodd", d: "M13 21H3L3 3L13 3V21ZM5 19L5 5H11V19H5Z", clipRule: "evenodd" } ), /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M19 11V13H21V11H19ZM19 9V7H21V9H19ZM19 19V21H21V19H19ZM19 17V15H21V17H19ZM19 3V5H21V3L19 3ZM15 5V3L17 3V5H15ZM15 19V21H17V19H15Z" }) ] } ) }); }; // src/components/icons/ColumndeleteIcon.tsx var import_react29 = require("react"); var import_jsx_runtime28 = require("react/jsx-runtime"); var ColumndeleteIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M9 5H15V15H17V3H7V21H11V19H9V5Z" }), /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("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 var import_react30 = require("react"); var import_jsx_runtime29 = require("react/jsx-runtime"); var ColumnsIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)( "path", { fillRule: "evenodd", d: "M3 21V3H21V21H3ZM13 5H19V19H13V5ZM11 5H5V19H11V5Z", clipRule: "evenodd" } ) } ) }); }; // src/components/icons/CopyIcon.tsx var import_react31 = require("react"); var import_jsx_runtime30 = require("react/jsx-runtime"); var CopyIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M15 4V7H18V16H17V18H20V6L16.25 2H8V5H10V4H15Z" }), /* @__PURE__ */ (0, import_jsx_runtime30.jsx)( "path", { fillRule: "evenodd", d: "M16 10L12.25 6H4V22H16V10ZM11 8H6V20H14V11H11V8Z", clipRule: "evenodd" } ) ] } ) }); }; // src/components/icons/CutIcon.tsx var import_react32 = require("react"); var import_jsx_runtime31 = require("react/jsx-runtime"); var CutIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)( "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 var import_react33 = require("react"); var import_jsx_runtime32 = require("react/jsx-runtime"); var DashIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M6 10.5H18V13.5H6z" }) } ) }); }; // src/components/icons/DiscussionIcon.tsx var import_react34 = require("react"); var import_jsx_runtime33 = require("react/jsx-runtime"); var DiscussionIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)( "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 var import_react35 = require("react"); var import_jsx_runtime34 = require("react/jsx-runtime"); var DraggableIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)( "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 var import_react36 = require("react"); var import_jsx_runtime35 = require("react/jsx-runtime"); var EditIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "M18 12.8286V17.9999H6V5.99994H11.1718L13.1718 3.99994H4V19.9999H20V10.8286L18 12.8286Z" }), /* @__PURE__ */ (0, import_jsx_runtime35.jsx)( "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 var import_react37 = require("react"); var import_jsx_runtime36 = require("react/jsx-runtime"); var EyeIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("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__ */ (0, import_jsx_runtime36.jsx)( "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 var import_react38 = require("react"); var import_jsx_runtime37 = require("react/jsx-runtime"); var FilterIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M7 8V10H17V8H7ZM9 14V12H15V14H9ZM11 16V18H13V16H11Z" }), /* @__PURE__ */ (0, import_jsx_runtime37.jsx)( "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 var import_react39 = require("react"); var import_jsx_runtime38 = require("react/jsx-runtime"); var FolderIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)( "path", { fillRule: "evenodd", d: "M9.41421 4H2V20H22V6H11.4142L9.41421 4ZM4 18V8H20V18H4Z", clipRule: "evenodd" } ) } ) }); }; // src/components/icons/FooterIcon.tsx var import_react40 = require("react"); var import_jsx_runtime39 = require("react/jsx-runtime"); var FooterIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M16 16H8V18H16V16Z" }), /* @__PURE__ */ (0, import_jsx_runtime39.jsx)( "path", { fillRule: "evenodd", d: "M4 22V2H20V22H4ZM6 4H18V20H6V4Z", clipRule: "evenodd" } ) ] } ) }); }; // src/components/icons/ForegroundIcon.tsx var import_react41 = require("react"); var import_jsx_runtime40 = require("react/jsx-runtime"); var ForegroundIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)( "path", { stroke: "#000", strokeWidth: "2", d: "M3.74844 19L12.0002 4.97231L20.2516 19H3.74844Z" } ) } ) }); }; // src/components/icons/FullscreenIcon.tsx var import_react42 = require("react"); var import_jsx_runtime41 = require("react/jsx-runtime"); var FullscreenIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("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 var import_react43 = require("react"); var import_jsx_runtime42 = require("react/jsx-runtime"); var HighlightIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("path", { d: "M9 7H15V9H13V13H11V9H9V7Z" }), /* @__PURE__ */ (0, import_jsx_runtime42.jsx)( "path", { fillRule: "evenodd", d: "M3 17V3H21V17H3ZM5 5H19V15H5V5Z", clipRule: "evenodd" } ), /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("path", { d: "M19 19H5V21H19V19Z" }) ] } ) }); }; // src/components/icons/HistoryIcon.tsx var import_react44 = require("react"); var import_jsx_runtime43 = require("react/jsx-runtime"); var HistoryIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("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__ */ (0, import_jsx_runtime43.jsx)("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 var import_react45 = require("react"); var import_jsx_runtime44 = require("react/jsx-runtime"); var HomeIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)( "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 var import_react46 = require("react"); var import_jsx_runtime45 = require("react/jsx-runtime"); var ImagefitIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("path", { d: "M20 3H4V5H20V3Z" }), /* @__PURE__ */ (0, import_jsx_runtime45.jsx)( "path", { fillRule: "evenodd", d: "M4 7V17H20V7H4ZM18 9H6V15H18V9Z", clipRule: "evenodd" } ), /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("path", { d: "M4 19H20V21H4V19Z" }) ] } ) }); }; // src/components/icons/ImagefullIcon.tsx var import_react47 = require("react"); var import_jsx_runtime46 = require("react/jsx-runtime"); var ImagefullIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("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__ */ (0, import_jsx_runtime46.jsx)( "path", { fillRule: "evenodd", d: "M2 3V17H22V3H2ZM20 5H4V15H20V5Z", clipRule: "evenodd" } ), /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { d: "M4 19H20V21H4V19Z" }) ] } ) }); }; // src/components/icons/ImageIcon.tsx var import_react48 = require("react"); var import_jsx_runtime47 = require("react/jsx-runtime"); var ImageIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("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__ */ (0, import_jsx_runtime47.jsx)( "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 var import_react49 = require("react"); var import_jsx_runtime48 = require("react/jsx-runtime"); var ImageleftIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)( "svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", children: [ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)( "path", { fillRule: "evenodd", d: "M2 5V15H14V5H2ZM12 7H4V13H12V7Z", clipRule: "evenodd" } ), /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M22 17V19H2V17H22ZM22 5H16V7H22V5ZM16 9H22V11H16V9ZM22 13H16V15H22V13Z" }) ] } ) }); }; // src/components/icons/ImagenarrowIcon.tsx var import_react50 = require("react"); var import_jsx_runtime49 = require("react/jsx-runtime"); var ImagenarrowIcon = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(Icon, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)( "svg", { width: "24", height: "24", viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", children: [ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M7 9L8 7V17L7 15H17L16 17V7L17 9H7ZM17 7V12V14V16V17H7V7H17Z" }), /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 21H19V19H5V21Z" }), /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 5H19V3H5V5Z" }) ] } ) }); }; // src/components/icons/Imagerig