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