import React from "react"; import styles from './Logo.module.css' interface LogoProps { href: string; } const Logo: React.FC = ({href}) => { return ( ); }; export default Logo;