a lot
This commit is contained in:
@@ -1,7 +1,15 @@
|
||||
export function Logo() {
|
||||
import { cn } from '@/utils/cn';
|
||||
|
||||
interface LogoProps {
|
||||
className?: string;
|
||||
}
|
||||
|
||||
export function Logo({ className }: LogoProps) {
|
||||
return (
|
||||
<div className="text-xl font-medium flex gap-2 items-center">
|
||||
<img src="/logo.svg" className="max-h-10" />
|
||||
<div
|
||||
className={cn('text-xl font-medium flex gap-2 items-center', className)}
|
||||
>
|
||||
<img src="/logo.svg" className="max-h-8 rounded-md" />
|
||||
openpanel.dev
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user