import React from "react"; import Icon from "./Icon"; import Link from "next/link"; interface LogoProps { label?: string; className?: string; } function Logo({ label, className }: LogoProps) { return ( {/* Logo */} {label !== undefined ? ( {label} ) : ( <> )} ); } export default Logo;