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 ( {/* Logo */} Follow us on Twitter {label !== undefined ? ( {label} ) : ( <> )} ); } export default Logo;