ByteBrief / src /components /logo.tsx
Gigishot's picture
Upload 68 files
78aa7cb verified
Raw
History Blame Contribute Delete
369 Bytes
import { FileText } from 'lucide-react';
import { cn } from '@/lib/utils';
import Link from 'next/link';
export function Logo({ className }: { className?: string }) {
return (
<Link href="/" className={cn("flex items-center gap-2", className)}>
<FileText className="h-6 w-6" />
<span className="text-xl font-bold">ByteBrief</span>
</Link>
);
}