Skip to content

Commit bde8716

Browse files
committed
update sqlite logo
1 parent 0d7eabe commit bde8716

2 files changed

Lines changed: 25 additions & 6 deletions

File tree

www/src/components/ui/svgs/sqliteWordmark.tsx

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,31 @@
11
import type { SVGProps } from "react";
22

33
const SQLite = (props: SVGProps<SVGSVGElement>) => (
4-
<svg {...props} preserveAspectRatio="xMidYMid" viewBox="0 0 512 228">
4+
<svg
5+
{...props}
6+
preserveAspectRatio="xMidYMid"
7+
viewBox="0 0 512 228"
8+
>
59
<defs>
6-
<linearGradient x1="57.7%" y1="2%" x2="57.7%" y2="94.4%" id="sqlite__a">
7-
<stop stopColor="#97D9F6" offset="0%" />
8-
<stop stopColor="#0F80CC" offset="92%" />
9-
<stop stopColor="#0F80CC" offset="100%" />
10+
<linearGradient
11+
x1="57.7%"
12+
y1="2%"
13+
x2="57.7%"
14+
y2="94.4%"
15+
id="sqlite__a"
16+
>
17+
<stop
18+
stopColor="#97D9F6"
19+
offset="0%"
20+
/>
21+
<stop
22+
stopColor="#0F80CC"
23+
offset="92%"
24+
/>
25+
<stop
26+
stopColor="#0F80CC"
27+
offset="100%"
28+
/>
1029
</linearGradient>
1130
</defs>
1231
<path

www/src/routes/(main)/_pathlessLayout/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import { Highlighter } from "@/components/ui/highlighter";
1414
import { MongodbWordmarkDark } from "@/components/ui/svgs/mongodbWordmarkDark";
1515
import { MysqlWordmarkDark } from "@/components/ui/svgs/mysqlWordmarkDark";
1616
import { PostgresqlWordmarkDark } from "@/components/ui/svgs/postgresqlWordmarkDark";
17-
import { SqlServer } from "@/components/ui/svgs/sqlServer";
1817
import { SQLite } from "@/components/ui/svgs/sqliteWordmark";
18+
import { SqlServer } from "@/components/ui/svgs/sqlServer";
1919
import { cn } from "@/lib/utils";
2020

2121
export const Route = createFileRoute("/(main)/_pathlessLayout/")({

0 commit comments

Comments
 (0)