diff --git a/package-lock.json b/package-lock.json index 646c3914..6263ce8b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@clickhouse/click-ui", - "version": "0.0.134", + "version": "0.0.136", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@clickhouse/click-ui", - "version": "0.0.134", + "version": "0.0.136", "license": "Apache-2.0", "dependencies": { "@radix-ui/react-accordion": "^1.1.2", @@ -18736,9 +18736,9 @@ } }, "node_modules/vite": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.2.tgz", - "integrity": "sha512-tBCZBNSBbHQkaGyhGCDUGqeo2ph8Fstyp6FMSvTtsXeZSPpSMGlviAOav2hxVTqFcx8Hj/twtWKsMJXNY0xI8w==", + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.3.tgz", + "integrity": "sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==", "dev": true, "dependencies": { "esbuild": "^0.18.10", diff --git a/package.json b/package.json index 359b0e35..ab8a1b49 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@clickhouse/click-ui", - "version": "0.0.134", + "version": "0.0.136", "description": "Official ClickHouse design system react library", "type": "module", "license": "Apache-2.0", diff --git a/src/components/Icon/IconCommon.tsx b/src/components/Icon/IconCommon.tsx index 58792399..33e5a995 100644 --- a/src/components/Icon/IconCommon.tsx +++ b/src/components/Icon/IconCommon.tsx @@ -62,6 +62,7 @@ import Gift from "@/components/icons/Gift"; import Home from "@/components/icons/Home"; import HorizontalLoading from "@/components/icons/HorizontalLoading"; import Http from "@/components/icons/Http"; +import HttpMonitoring from "@/components/icons/HttpMonitoring"; import Integrations from "@/components/icons/Integrations"; import LightBulb from "@/components/icons/LightBulb"; import Lightening from "@/components/icons/Lightening"; @@ -198,6 +199,7 @@ export const ICONS_MAP = { home: Home, "horizontal-loading": HorizontalLoading, http: Http, + "http-monitoring": HttpMonitoring, "info-in-circle": InfoInCircleIcon, information: InformationIcon, "insert-row": InsertRowIcon, diff --git a/src/components/Icon/types.ts b/src/components/Icon/types.ts index 797796a7..e42be32c 100644 --- a/src/components/Icon/types.ts +++ b/src/components/Icon/types.ts @@ -77,6 +77,7 @@ export const ICON_NAMES = [ "horizontal-loading", "home", "http", + "http-monitoring", "info-in-circle", "information", "insert-row", diff --git a/src/components/icons/HttpMonitoring.tsx b/src/components/icons/HttpMonitoring.tsx new file mode 100644 index 00000000..e84acfba --- /dev/null +++ b/src/components/icons/HttpMonitoring.tsx @@ -0,0 +1,26 @@ +import { SVGAttributes } from "react"; + +const HttpMonitoring = (props: SVGAttributes) => ( + + + + + + + + + + + + + +); + +export default HttpMonitoring;