interface LogoProps { className?: string; size?: number; } export function Logo({ className = '', size = 40 }: LogoProps) { return ( {/* Left V-shape (lighter green) */} {/* Center chevron (medium green) */} {/* Right V-shape (darker green) */} {/* Bottom connection left */} {/* Bottom connection right */} ); }