Skip to content

Commit 911876f

Browse files
committed
add editor dev logo
1 parent d42eab5 commit 911876f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

components/Logo.tsx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)