import React from "react";
import Link, { LinkProps } from "next/link";
import Image, { ImageProps } from "next/image";
interface LogoProps {
label?: string;
className?: string;
imageProps?: ImageProps;
}
function Logo({ imageProps, ...props }: LogoProps & LinkProps) {
return (
{/* */}
);
}
export default Logo;