Skip to content

Commit

Permalink
Merge branch 'main' into mw-grid-fix-visible-range-with-row-start
Browse files Browse the repository at this point in the history
  • Loading branch information
vineethasok authored May 2, 2024
2 parents 5a20ae9 + 981139b commit 54b42df
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 6 deletions.
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 2 additions & 0 deletions src/components/Icon/IconCommon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions src/components/Icon/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export const ICON_NAMES = [
"horizontal-loading",
"home",
"http",
"http-monitoring",
"info-in-circle",
"information",
"insert-row",
Expand Down
26 changes: 26 additions & 0 deletions src/components/icons/HttpMonitoring.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { SVGAttributes } from "react";

const HttpMonitoring = (props: SVGAttributes<SVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
{...props}
>
<path d="M6 10H7.85L10.018 14L13.982 6L16.15 10H18" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M3 15V5C3 3.895 3.895 3 5 3H19C20.105 3 21 3.895 21 5V15" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M3 21.8002V18.2002" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M5.87988 18.2002V21.8002" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M5.88 20H3" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M10.92 18.2002H8.04004" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M9.48047 18.2002V21.8002" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M18.1201 18.2002V21.8002" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M15.9601 18.2002H13.0801" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M14.5195 18.2002V21.8002" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M18.1201 18.2002H19.8751C20.4961 18.2002 21.0001 18.7042 21.0001 19.3252V19.3252C21.0001 19.9462 20.4961 20.4502 19.8751 20.4502H18.1201" stroke="#161517" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
);

export default HttpMonitoring;

0 comments on commit 54b42df

Please sign in to comment.