Skip to content

Commit b0495af

Browse files
authored
Adds MariaDB logo (#659)
1 parent 7a3d499 commit b0495af

File tree

4 files changed

+25
-1
lines changed

4 files changed

+25
-1
lines changed

src/components/Logos/LogosDark.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ import Iceberg from "./Iceberg";
3737
import Jdbc from "./Jdbc";
3838
import Kafka from "./KafkaDark";
3939
import Kubenetes from "./Kubenetes";
40+
import MariaDB from "./MariaDB";
4041
import Metabase from "./Metabase";
4142
import Microsoft from "./Microsoft";
4243
import MongoDb from "./MongoDb";
@@ -94,6 +95,7 @@ const LogosDark: Record<LogoName, (props: SVGAttributes<SVGElement>) => JSX.Elem
9495
jdbc: Jdbc,
9596
kafka: Kafka,
9697
kubenetes: Kubenetes,
98+
mariadb: MariaDB,
9799
metabase: Metabase,
98100
microsoft: Microsoft,
99101
mongodb: MongoDb,

src/components/Logos/LogosLight.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ import Iceberg from "./Iceberg";
3737
import Jdbc from "./Jdbc";
3838
import Kafka from "./KafkaLight";
3939
import Kubenetes from "./Kubenetes";
40+
import MariaDB from "./MariaDB";
4041
import Metabase from "./Metabase";
4142
import Microsoft from "./Microsoft";
4243
import MongoDb from "./MongoDb";
@@ -94,6 +95,7 @@ const LogosLight: Record<LogoName, (props: SVGAttributes<SVGElement>) => JSX.Ele
9495
jdbc: Jdbc,
9596
kafka: Kafka,
9697
kubenetes: Kubenetes,
98+
mariadb: MariaDB,
9799
metabase: Metabase,
98100
microsoft: Microsoft,
99101
mongodb: MongoDb,

src/components/Logos/MariaDB.tsx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { SVGAttributes } from "react";
2+
3+
const MariaDB = (props: SVGAttributes<SVGElement>) => (
4+
<svg
5+
width="64"
6+
height="64"
7+
viewBox="0 0 64 64"
8+
fill="none"
9+
xmlns="http://www.w3.org/2000/svg"
10+
{...props}
11+
>
12+
<path
13+
fill="#003343"
14+
d="M61.76 12.4c-1.81.77-2.13.82-4.48 1-1.73.11-2 .14-3.2.53-2.03.67-3.73 2.02-5.41 4.24a57.3 57.3 0 0 0-3.34 5.25c0 .15-1.73 2.64-2.42 3.5a14.12 14.12 0 0 1-5.71 4.23c-2.05.93-3.28 1.38-10.93 3.9a71.8 71.8 0 0 0-6.32 2.27c-2.33 1.24-4.34 3-5.87 5.14-2.67 3.5-2.61 3.5-8.13 2.51-.6-.07-1.2-.13-1.79-.15-1.73-.14-2.72.1-3.55.87l-.61.58.48.21a16 16 0 0 1 1.5 1.06c.6.5 1.25.95 1.94 1.33a6 6 0 0 1-.61.93c-1.15 1.53-1.58 2.3-1.52 2.75.05.45.08.45 1.14.45 1.39 0 2.19-.13 3.36-.53a51.34 51.34 0 0 0 7.42-3.7c2.08-1.33 4.58-2.66 5.22-2.79 2.8-.55 5.67-.6 8.48-.16.27.03.99.13 1.6.16a7.6 7.6 0 0 1 1.23.21c.05.03 1.25.1 2.67.16 2.48.05 2.93 0 3.46-.53a9.9 9.9 0 0 0 1.34-2.6c.53-1.69 1.06-2.43.96-1.3a16.6 16.6 0 0 1-1.92 6.4 19.55 19.55 0 0 1-2.48 3.7c-.86.9-.83.95.24.82a13.81 13.81 0 0 0 5.6-2.17 18.2 18.2 0 0 0 5.81-8.03c.3-.71.59-.58.5.22l-.15 1.32-.08.87.93-.53c2.21-1.27 3.79-3.33 5.68-7.65.61-1.35 2.35-7.73 2.85-10.51.19-.93.43-1.86.72-2.76a4.5 4.5 0 0 1 1.28-2.28c.51-.53 1.68-1.48 2.62-2.12 1.92-1.35 2.53-2 3.17-3.2.53-1.11.75-3 .35-3.6-.35-.53-.75-.53-2.03 0Z"
15+
/>
16+
</svg>
17+
);
18+
19+
export default MariaDB;

src/components/Logos/types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,5 @@ export type LogoName =
5252
| "upstash"
5353
| "warpstream"
5454
| "cloudflare"
55-
| "databricks";
55+
| "databricks"
56+
| "mariadb";

0 commit comments

Comments
 (0)