We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d42eab5 commit 911876fCopy full SHA for 911876f
components/Logo.tsx
@@ -0,0 +1,21 @@
1
+import Link from "next/link";
2
+import { PencilRulerIcon } from "lucide-react";
3
+
4
+import { cn } from "@/lib/utils";
5
6
+interface LogoProps {
7
+ color?: string;
8
+}
9
10
+export default function Logo({ color }: LogoProps) {
11
+ return (
12
+ <Link href="/">
13
+ <div className="flex flex-row space-x-2 items-center justify-center">
14
+ <PencilRulerIcon size={30} className={color} />
15
+ <span className={cn("font-medium text-lg text-white", color)}>
16
+ EditorSetup
17
+ </span>
18
+ </div>
19
+ </Link>
20
+ );
21
0 commit comments