Spaces:
Running
Running
File size: 534 Bytes
3a909c0 0f1e910 3a909c0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import React from 'react';
import { cn } from '@/lib/utils';
interface LogoProps extends React.HTMLAttributes<HTMLDivElement> {
iconOnly?: boolean;
}
const Logo: React.FC<LogoProps> = ({
className,
iconOnly = false
}) => {
return <div className={cn("flex items-center gap-2", className)}>
<img src="/lovable-uploads/5e648747-34b7-4d8f-93fd-4dbd00aeeefc.png" alt="LeLab Logo" className="h-8 w-8" />
{!iconOnly && <span className="font-bold text-white text-2xl">LeLab</span>}
</div>;
};
export default Logo;
|