Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .changeset/add-biglake-metastore-logo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
"@clickhouse/click-ui": minor
---

Add BigLake Metastore logo

Added the `BigLakeMetastore` logo to the logo library:

- New `Biglake-Metastore.tsx` SVG component under `src/components/Assets/Logos/`
- Registered in both `LogosDark` and `LogosLight` system files
- Added `BigLakeMetastore` to the logo types
25 changes: 25 additions & 0 deletions src/components/Assets/Logos/Biglake-Metastore.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import type { SVGAssetProps } from '@/types';

const Biglake_Metastore = (props: SVGAssetProps) => (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
{...props}
width="64"
height="64"
>
<path
fill="none"
d="M0 0h512v512H0z"
/>
<path
fill="#9aa0a6"
d="M155.24 255.523c-11.135 0-21.995 1.79-32.254 5.226l-38.85-74.169c-4.096-7.817-13.754-10.834-21.568-6.741-7.817 4.095-10.835 13.752-6.741 21.568l38.865 74.199a103 103 0 0 0-11.037 9.569c-19.122 19.12-29.652 44.544-29.652 71.585s10.531 52.464 29.652 71.585c19.12 19.121 44.543 29.652 71.585 29.652s52.465-10.531 71.585-29.652c39.466-39.473 39.469-103.7 0-143.17-19.12-19.121-44.544-29.652-71.585-29.652m48.989 150.226c-13.086 13.086-30.484 20.292-48.989 20.292s-35.903-7.206-48.989-20.292-20.292-30.484-20.292-48.989 7.206-35.903 20.292-48.989c5-5 10.633-9.133 16.713-12.342q.059-.028.119-.058l.025-.015c9.796-5.141 20.752-7.877 32.132-7.877 18.506 0 35.903 7.207 48.989 20.292s20.292 30.483 20.292 48.989-7.207 35.903-20.292 48.989M456.172 310.593l-38.865-74.198a103 103 0 0 0 11.038-9.57c19.122-19.12 29.652-44.544 29.652-71.585s-10.53-52.464-29.652-71.585c-19.12-19.12-44.545-29.652-71.585-29.652s-52.464 10.531-71.585 29.652c-39.472 39.472-39.472 103.698 0 143.17 19.12 19.121 44.544 29.652 71.585 29.652 11.136 0 21.995-1.79 32.255-5.226l38.85 74.169c2.854 5.45 8.413 8.567 14.167 8.567 2.499 0 5.034-.587 7.4-1.828 7.818-4.094 10.835-13.751 6.74-21.567ZM307.771 204.229c-13.084-13.086-20.292-30.483-20.292-48.989s7.207-35.903 20.292-48.989 30.484-20.292 48.989-20.292 35.903 7.206 48.989 20.292 20.292 30.484 20.292 48.989-7.206 35.903-20.292 48.989a69.5 69.5 0 0 1-16.825 12.399l-.006.003-.003.002c-9.802 5.149-20.766 7.888-32.154 7.888-18.506 0-35.903-7.207-48.989-20.292z"
/>
<path
fill="#4285f4"
d="M356.76 54.003c-27.041 0-52.465 10.531-71.585 29.652-19.121 19.12-29.652 44.544-29.652 71.585 0 21.638 6.749 42.235 19.24 59.401l-83.135 83.135c5.337 3.522 6.499 4.277 12.601 9.995 27.879 26.118 27.012 70.965 0 97.978-13.086 13.086-30.484 20.292-48.989 20.292s-35.903-7.206-48.989-20.292l-22.596 22.596c19.12 19.121 44.544 29.652 71.585 29.652s52.465-10.531 71.585-29.652c19.121-19.12 29.652-44.544 29.652-71.585 0-21.638-6.749-42.235-19.24-59.401l83.134-83.134c-3.873-2.619-6.619-4.107-12.6-9.996-27.222-26.801-27.012-70.965 0-97.978 13.086-13.086 30.484-20.292 48.989-20.292s35.903 7.206 48.989 20.292l22.596-22.596c-19.12-19.121-44.544-29.652-71.585-29.652"
/>
</svg>
);
export default Biglake_Metastore;
2 changes: 2 additions & 0 deletions src/components/Assets/Logos/system/LogosDark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import AWS_S3 from '../AWS_S3';
import Azure from '../Azure';
import Azure_Blob_Storage from '../Azure_Blob_Storage';
import Azure_Event_Hub from '../Azure_Event_Hub';
import Biglake_Metastore from '../Biglake-Metastore';
import Bigquery from '../Bigquery';
import Clickhouse from '../Clickhouse';
import Cloudflare from '../Cloudflare';
Expand Down Expand Up @@ -94,6 +95,7 @@ const LogosDark: Record<LogoName, ComponentType<SVGAssetProps>> = {
azure: Azure,
'azure-blob-storage': Azure_Blob_Storage,
'azure-event-hub': Azure_Event_Hub,
'biglake-metastore': Biglake_Metastore,
bigquery: Bigquery,
clickhouse: Clickhouse,
cloudflare: Cloudflare,
Expand Down
2 changes: 2 additions & 0 deletions src/components/Assets/Logos/system/LogosLight.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import AWS_S3 from '../AWS_S3';
import Azure from '../Azure';
import Azure_Blob_Storage from '../Azure_Blob_Storage';
import Azure_Event_Hub from '../Azure_Event_Hub';
import Biglake_Metastore from '../Biglake-Metastore';
import Bigquery from '../Bigquery';
import Clickhouse from '../Clickhouse';
import Cloudflare from '../Cloudflare';
Expand Down Expand Up @@ -94,6 +95,7 @@ const LogosLight: Record<LogoName, ComponentType<SVGAssetProps>> = {
azure: Azure,
'azure-blob-storage': Azure_Blob_Storage,
'azure-event-hub': Azure_Event_Hub,
'biglake-metastore': Biglake_Metastore,
bigquery: Bigquery,
clickhouse: Clickhouse,
cloudflare: Cloudflare,
Expand Down
1 change: 1 addition & 0 deletions src/components/Assets/Logos/system/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export type LogoName =
| 'azure'
| 'azure-blob-storage'
| 'azure-event-hub'
| 'biglake-metastore'
| 'bigquery'
| 'clickhouse'
| 'cloudflare'
Expand Down
Loading