Skip to content

Commit f6f4583

Browse files
amychen1776claude
andcommitted
feat: add BigLake Metastore logo
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent e7656b0 commit f6f4583

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import type { SVGAssetProps } from '@/types';
2+
3+
const Biglake_Metastore = (props: SVGAssetProps) => (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
viewBox="0 0 512 512"
7+
{...props}
8+
width="64"
9+
height="64"
10+
>
11+
<path
12+
fill="none"
13+
d="M0 0h512v512H0z"
14+
/>
15+
<path
16+
fill="#9aa0a6"
17+
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"
18+
/>
19+
<path
20+
fill="#4285f4"
21+
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"
22+
/>
23+
</svg>
24+
);
25+
export default Biglake_Metastore;

src/components/Assets/Logos/system/LogosDark.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import AWS_S3 from '../AWS_S3';
2020
import Azure from '../Azure';
2121
import Azure_Blob_Storage from '../Azure_Blob_Storage';
2222
import Azure_Event_Hub from '../Azure_Event_Hub';
23+
import Biglake_Metastore from '../Biglake-Metastore';
2324
import Bigquery from '../Bigquery';
2425
import Clickhouse from '../Clickhouse';
2526
import Cloudflare from '../Cloudflare';
@@ -94,6 +95,7 @@ const LogosDark: Record<LogoName, ComponentType<SVGAssetProps>> = {
9495
azure: Azure,
9596
'azure-blob-storage': Azure_Blob_Storage,
9697
'azure-event-hub': Azure_Event_Hub,
98+
'biglake-metastore': Biglake_Metastore,
9799
bigquery: Bigquery,
98100
clickhouse: Clickhouse,
99101
cloudflare: Cloudflare,

src/components/Assets/Logos/system/LogosLight.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import AWS_S3 from '../AWS_S3';
2020
import Azure from '../Azure';
2121
import Azure_Blob_Storage from '../Azure_Blob_Storage';
2222
import Azure_Event_Hub from '../Azure_Event_Hub';
23+
import Biglake_Metastore from '../Biglake-Metastore';
2324
import Bigquery from '../Bigquery';
2425
import Clickhouse from '../Clickhouse';
2526
import Cloudflare from '../Cloudflare';
@@ -94,6 +95,7 @@ const LogosLight: Record<LogoName, ComponentType<SVGAssetProps>> = {
9495
azure: Azure,
9596
'azure-blob-storage': Azure_Blob_Storage,
9697
'azure-event-hub': Azure_Event_Hub,
98+
'biglake-metastore': Biglake_Metastore,
9799
bigquery: Bigquery,
98100
clickhouse: Clickhouse,
99101
cloudflare: Cloudflare,

src/components/Assets/Logos/system/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export type LogoName =
1818
| 'azure'
1919
| 'azure-blob-storage'
2020
| 'azure-event-hub'
21+
| 'biglake-metastore'
2122
| 'bigquery'
2223
| 'clickhouse'
2324
| 'cloudflare'

0 commit comments

Comments
 (0)