From 67d4c2dd8b0112b237f76f6d4541669f5ac2f1c3 Mon Sep 17 00:00:00 2001 From: Loft Bot <73976634+loft-bot@users.noreply.github.com> Date: Wed, 27 Nov 2024 06:42:20 +0000 Subject: [PATCH] [skip ci] repo-sync --- .gitignore | 3 ++- src/DragAreaIcon.tsx | 14 +++++++++++ src/RegexIcon.tsx | 14 +++++++++++ src/images/drag-area.svg | 3 +++ src/images/regex.svg | 4 ++++ src/images/vcluster-platform-logo.svg | 22 +++++++++++++++++ src/index.tsx | 34 +++++++++++++++++++++++++++ 7 files changed, 93 insertions(+), 1 deletion(-) create mode 100644 src/DragAreaIcon.tsx create mode 100644 src/RegexIcon.tsx create mode 100644 src/images/drag-area.svg create mode 100644 src/images/regex.svg create mode 100644 src/images/vcluster-platform-logo.svg diff --git a/.gitignore b/.gitignore index fd4f2b0..328e234 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules -.DS_Store +lib +yarn-error.log diff --git a/src/DragAreaIcon.tsx b/src/DragAreaIcon.tsx new file mode 100644 index 0000000..f8ff0d6 --- /dev/null +++ b/src/DragAreaIcon.tsx @@ -0,0 +1,14 @@ +import React, { forwardRef } from "react" + +import Icon from "./Icon" +import { ReactComponent as DragArea } from "./images/drag-area.svg" + +export const DragAreaIcon = forwardRef< + SVGSVGElement, + { + className?: string + style?: React.CSSProperties + } +>(function InnerDragAreaIcon(props, ref) { + return +}) diff --git a/src/RegexIcon.tsx b/src/RegexIcon.tsx new file mode 100644 index 0000000..064582e --- /dev/null +++ b/src/RegexIcon.tsx @@ -0,0 +1,14 @@ +import React, { forwardRef } from "react" + +import Icon from "./Icon" +import { ReactComponent as Expand } from "./images/regex.svg" + +export const RegexIcon = forwardRef< + SVGSVGElement, + { + className?: string + style?: React.CSSProperties + } +>(function InnerRegexIcon(props, ref) { + return +}) diff --git a/src/images/drag-area.svg b/src/images/drag-area.svg new file mode 100644 index 0000000..79b02de --- /dev/null +++ b/src/images/drag-area.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/images/regex.svg b/src/images/regex.svg new file mode 100644 index 0000000..1e7490d --- /dev/null +++ b/src/images/regex.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/vcluster-platform-logo.svg b/src/images/vcluster-platform-logo.svg new file mode 100644 index 0000000..af4dc48 --- /dev/null +++ b/src/images/vcluster-platform-logo.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/index.tsx b/src/index.tsx index 8642dcc..d6aedc9 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -32,10 +32,36 @@ export { EditPencilIcon } from "./EditPencil" export { VClusterRocketIcon } from "./VClusterRocket" export * from "./ExternallyDeployedIcons" export { ExpandIcon } from "./ExpandIcon" +export { RegexIcon } from "./RegexIcon" +export { DragAreaIcon } from "./DragAreaIcon" + +export const AlignLeftOutlined = createLazyIconComponent( + lazy(() => import("@ant-design/icons/AlignLeftOutlined")) +) +export const CheckSquareOutlined = createLazyIconComponent( + lazy(() => import("@ant-design/icons/CheckSquareOutlined")) +) + +export const FontSizeOutlined = createLazyIconComponent( + lazy(() => import("@ant-design/icons/FontSizeOutlined")) +) + +export const FieldBinaryOutlined = createLazyIconComponent( + lazy(() => import("@ant-design/icons/FieldBinaryOutlined")) +) export const LeftOutlined = createLazyIconComponent( lazy(() => import("@ant-design/icons/LeftOutlined")) ) + +export const BarsOutlined = createLazyIconComponent( + lazy(() => import("@ant-design/icons/BarsOutlined")) +) + +export const ColumnWidthOutlined = createLazyIconComponent( + lazy(() => import("@ant-design/icons/ColumnWidthOutlined")) +) + export const RightOutlined = createLazyIconComponent( lazy(() => import("@ant-design/icons/RightOutlined")) ) @@ -168,6 +194,10 @@ export const UserOutlined = createLazyIconComponent( lazy(() => import("@ant-design/icons/UserOutlined")) ) +export const CalendarOutlined = createLazyIconComponent( + lazy(() => import("@ant-design/icons/CalendarOutlined")) +) + export const AppstoreAddOutlined = createLazyIconComponent( lazy(() => import("@ant-design/icons/AppstoreAddOutlined")) ) @@ -268,6 +298,10 @@ export const InfoCircleOutlined = createLazyIconComponent( lazy(() => import("@ant-design/icons/InfoCircleOutlined")) ) +export const FileSyncOutlined = createLazyIconComponent( + lazy(() => import("@ant-design/icons/FileSyncOutlined")) +) + export const FileProtectOutlined = createLazyIconComponent( lazy(() => import("@ant-design/icons/FileProtectOutlined")) )